/* =========================================
   CSS変数
========================================= */
:root {
  --c-text:        #3c2a1f;
  --c-text-muted:  #6a584c;
  --c-primary:     #b08a57;
  --c-border:      #e0d5ca;
  --c-bg:          #fdf8f2;
}

/*------------------- ヘッダー -------------------*/
header{
	position:absolute; 
	z-index:10; left:0; top:0; width:100%;
	box-sizing:border-box; 
	position: relative;
	top: 0;
	z-index: 10;
}

/* 横並び骨組み */
header .h_inbox{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;background: #ffffffad;}

/* 左：ロゴ＋H1 */
header .h_left{width:min(40%,520px)}
header .h_logo{
  display:flex;
  align-items: flex-start;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  header .h_logo {
    display: none;
  }
}
header .h_left .h_logo img{width:auto;max-width:45%;height:auto}
header h1{
  color: var(--c-text);
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing:.14em; line-height:1.4;
  border-radius:4px;
	padding-left: 10px;
}

/* 右：縦積みコンテナ */
.h_right{display:flex;align-items:flex-start;}
.h_stack{display:flex;flex-direction:column;gap:10px}

/* ベージュの情報バッジ */
.info-badge .badge-inner{
  position:relative;
  display:flex; align-items:center; gap:10px;
  background:#e4cdb7; /* ベージュ */
  color:#5b4634; padding:10px 14px; border-radius:8px;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
}
.info-badge .badge-ttl{font-weight:700; font-size:clamp(13px,1.1vw,14px)}
.info-badge .badge-sub{font-size:clamp(12px,.95vw,13px)}
.info-badge .badge-sub .sun{color:#c64a5d; font-weight:700}
.info-badge .badge-time{font-size:clamp(11px,.9vw,12px); opacity:.85}
.info-badge .badge-leaf{margin-left:auto; color:#9b7c63}

/* CTA 共通 */
.h_contact{display:flex; align-items:stretch;}
.cta{
  display:flex; 
  flex-direction:column; 
  justify-content:center;
  min-width: 240px; 
  text-decoration:none; 
  color:#fff;
  padding:8px 12px; 
  box-shadow:0 2px 8px rgba(0,0,0,.08);
  text-align: center;
}
.cta .cta-lbl{font-size:clamp(12px,1vw,13px); opacity:.95}
.cta .cta-main{
  display:flex; 
  align-items:center; gap:8px;
  margin-top:2px; 
  line-height:1;
  justify-content: center;
}
.cta .ico{display:inline-flex}
.cta .num{font-weight:800; letter-spacing:.04em; font-size:clamp(16px,1.5vw,20px)}
.cta .cta-note{font-size:clamp(10px,.8vw,12px); opacity:.9; margin-top:3px}

/* TEL */
.cta-tel{
	background:linear-gradient(135deg, #6d8d7c 0%, #6d8d7c 45%, #6d8d7c 100%);
}
.cta-tel:hover{
	background: #4a90e2;
  color: #fff;
  filter:brightness(0.98);
}

/* WEB */
.cta-web{
	background:#b3cbc0;
}
.cta-web .num{
  font-weight:700;
}
.cta-web:hover{
	background: #a2cffe;
  filter:brightness(0.98);
  color: #fff;
}

/* LINE */
.cta-line{
	background:#64b172;
	color: #fff;
/*   min-width: 170px; */
}
.cta-line .num{
  font-weight:700;
}
.cta-line:hover{
  background: #7dc58a;
  filter:brightness(0.98);
  color: #fff;
}

/* 右端：メニューボタン */
.menu-btn{
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  justify-content:center;
  gap:6px; 
  padding: 19px 12px; 
  min-width:88px;
  background: #b5ab9f;
  color:#fff; 
  border:none;
  box-shadow:0 2px 8px rgba(0,0,0,.08); 
  cursor:pointer;
}
.menu-btn .menu-text{font-size:12px; letter-spacing:.08em}
.menu-btn .bars{display:flex; flex-direction:column; gap:5px; width:30px}
.menu-btn .bars span{display:block; height:2px; background:#fff; border-radius:2px}

/* Tablet */
@media (max-width: 992px){
  header .h_left{width:52%}
  .cta{min-width:220px}
}

/* Mobile */
@media (max-width: 768px){
  header .h_inbox{flex-wrap:wrap; gap:10px}
  header .h_left{width:100%}
  header .h_logo{gap:10px}
  header .h_left .h_logo img{max-width:180px}
  header h1{font-size:12px; letter-spacing:normal;padding-left: 10px;}

  .h_right{width:100%; align-items:stretch}
  .h_stack{flex:1}
  .info-badge{order:1}
  .h_contact{order:2; gap:2px}
  .cta{flex:1; min-width:auto;padding: 5px;}
  .menu-btn{order:3; margin-left:auto; min-width:76px}
  .cta .cta-main {flex-direction: column;}
  .cta-line{height: 65px;}
}
@media screen and (min-width: 769px) {
  .h_inbox {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .h_inbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
  }

  body {
    padding-top: 56px;
  }
}

/* モバイルヘッダー：ロゴ＋ハンバーガー横並び */
@media screen and (max-width: 768px) {
  .flex_head {
    display: flex !important;
	  flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 15px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    height: 70px;
  }

  .sp_headlogo {
    height: 60px;
    width: auto;
    display: block;
  }
}
/* =========================================
   ナビ
========================================= */
/* ------------- ロゴ＋ナビのラッパー ------------- */
.nav-header {
  display: flex;
  align-items: stretch;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  position: relative;
  z-index: 5;
  transition: .3s ease;
}

.nav-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15;
}

/* ------------- ロゴ ------------- */
.m-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 24px;
  border-right: 1px solid var(--c-border);
  width: 20%;
}

.m-logo img {
  height: auto;
  width: auto;
	filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(600%) hue-rotate(340deg) brightness(105%);
}

/* ------------- ナビ本体 ------------- */
.nav{
  flex: 1;
  display:flex; align-items:center;
  font-size: 0.98rem;
}

/* スクロール固定用クラス（JS互換） */
.nav.fixed{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  background:#fff;
  z-index:15;
}

/* リスト：均等配置＋区切り線 */
.nav-list{
  display:flex; justify-content:space-between; gap:0;
  width:100%; list-style:none; margin:0; padding:0;
  border-left:1px solid var(--c-border);
}
.nav-item{
  position:relative;
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--c-border);
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* リンク：縦並びで中央寄せ（上：日本語／下：英字） */
.nav-item > a,
.nav-item > p{
  display:flex; 
  flex-direction:column; 
  align-items:center; 
  justify-content:center;
  font-size: 15px;
  text-decoration:none; color:var(--c-text-muted);
  font-weight:700; letter-spacing:.08em;
  padding:18px 10px 16px;
  position:relative;
  /* 下線アニメ（背景サイズで） */
  background: linear-gradient(var(--c-primary) 0 0) bottom / 0 2px no-repeat;
  transition: background-size .25s ease, color .25s ease, opacity .25s ease;
	line-height: 150%;
}

/* 下段の英字は data-en から生成 */
.nav-item > a::after,
.nav-item > p::after{
  content: attr(data-en);
  display:block; margin-top:8px;
  font-weight:600; letter-spacing:.18em;
	font-size:14px;
	color: #6d8d7c;
  text-transform: lowercase;
}

/* ホバー：文字色＋下線を伸ばす */
.nav-item > a:hover,
.nav-item > p:hover{
  color:#7a5a2f; /* ほんのりブラウン寄り（好みで調整） */
  background-size: 100% 2px;
}

/* アクティブ状態（任意：クラス .is-current を付与） */
.nav-item.is-current > a,
.nav-item.is-current > p{
  color:#7a5a2f;
  background-size:100% 2px;
}
@media (max-width: 800px) {
  .nav-header {
    display: none;
  }
}

/* ------------- ドロップダウン ------------- */
.has-dropdown .dropdown{
  position:absolute; top:100%; left:50%;
  transform:translate(-50%, 12px);
  background:#fff; list-style:none; margin:0; padding:10px 0;
  min-width:220px; border-radius:10px;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  opacity:0; visibility:hidden; transition:.25s ease;
  border:1px solid var(--c-border);
}
.has-dropdown:hover .dropdown{
  opacity:1; visibility:visible; transform:translate(-50%, 8px);
  z-index:20;
}
.dropdown li{padding:0}
.dropdown li a{
  display:block; padding:10px 5px;
  color:var(--c-text-muted); font-weight:600; font-size:14px;
  text-decoration:none; transition:.2s ease;
}
.dropdown li a:hover{
  background:var(--c-bg);
  color:var(--c-text);
  padding-left:22px;
}

/* ------------- レスポンシブ ------------- */
@media (max-width: 1024px){
  .nav-item > a{padding:16px 8px}
  .nav-item > a::after{font-size:13px; letter-spacing:.16em}
}
@media (max-width: 840px){
  .nav-list{flex-wrap:wrap}
  .nav-item{flex:1 1 33.33%}
}
@media (max-width: 600px){
  .nav-item{flex:1 1 50%}
  .nav-item > a{padding:14px 6px}
}

/* ----------------------------------------------------
タブレット用（768px〜1024px）
---------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
}

/* ----------------------------------------------------
スマホ用（〜767px）
---------------------------------------------------- */
@media (max-width: 768px) {

}

/*------------------- ハンバーガーメニュー -------------------*/

/* ハンバーガーアイコン */
.drawer-hamburger {
  position: relative;
  background: #b08a57;
  width: 85px;
  height: 75px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10001;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.drawer-hamburger-icon {
  width: 24px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
  top: 8px;
}

span.menu_txt {
  top: 12px;
  position: relative;
  line-height: 1;
}

.drawer-hamburger-icon::before,
.drawer-hamburger-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.drawer-hamburger-icon::before {
  top: -8px;
}

.drawer-hamburger-icon::after {
  top: 8px;
}

.menu_txt::before {
  content: 'MENU';
  font-size: 10px;
  margin-top: 6px;
  letter-spacing: 0.08em;
	line-height: 2.5rem;
}

#drawer-checkbox:checked + #drawer-icon .drawer-hamburger-icon {
  background: transparent;
}

#drawer-checkbox:checked + #drawer-icon .drawer-hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

#drawer-checkbox:checked + #drawer-icon .drawer-hamburger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

#drawer-checkbox:checked + #drawer-icon .menu_txt::before {
  content: 'CLOSE';
}

/* 非表示チェックボックス */
#drawer-checkbox {
  position: fixed;
  top: -100px;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* 背景クリック用 */
#drawer-close {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  position: fixed;
  inset: 0;
  background: rgba(40, 30, 20, 0.36);
  z-index: 9998;
}

#drawer-checkbox:checked ~ #drawer-close {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー全体 */
#drawer-content {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-16px);
  width: min(1180px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  background: linear-gradient(180deg, #fffdf9 0%, #f8f3eb 100%);
  z-index: 10000;
  overflow-y: auto;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

#drawer-checkbox:checked ~ #drawer-content {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* メニュー内レイアウト */
.drawer-nav {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}

.drw_menu,
.drw_info,
.drw_contact {
  background: #fff;
  border: 1px solid #ede4d6;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(176, 138, 87, 0.08);
}

.drw_info,
.drw_contact {
  margin-bottom: 24px;
}

.drw_index {
  font-weight: 700;
	font-size: 1.6rem;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  color: #b08a57;
  border-bottom: 1px solid #eadfce;
  padding-bottom: 10px;
}

/* サイトマップ */
.com_sp_menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  padding: 0;
  margin: 0;
}

.com_sp_menu li,
.com_medical li {
  margin-bottom: 0.6em;
  font-size: 1rem;
}

.com_sp_menu > li,
.com_medical > li {
  list-style: none;
}

li.littl {
	font-size: 1.6rem;
  font-weight: 700;
  color: #6f5532;
  margin: 0 0 8px;
  padding: 0;
  border-left: 4px solid #b08a57;
  padding-left: 10px;
}

/* 各見出しの直後のリンク群を見やすく */
.com_sp_menu li:not(.littl),
.com_medical li:not(.littl) {
  position: relative;
  padding-left: 0;
  list-style: none;
  margin-bottom: 10px;
}

.com_sp_menu li:not(.littl)::before,
.com_medical li:not(.littl)::before {
  display: none;
}

.com_sp_menu li a,
.com_medical li a {
  display: block;
  padding: 12px 14px;
  border: 1px solid #eee4d6;
  border-radius: 12px;
  background: #fcfaf6;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
  transition: all 0.25s ease;
}

.com_sp_menu li a:hover,
.com_medical li a:hover {
  background: #f3eadb;
  border-color: #d8bc92;
  color: #6f5532;
  transform: translateY(-1px);
}

/* 住所 */
.drw_info address {
  font-style: normal;
  line-height: 1.9;
  color: #333;
	font-size:1.6rem;
}

/* 診療時間 */
.footer-schedule {
  margin-top: 20px;
  padding: 18px;
  background: #fcfaf6;
  border: 1px solid #eee4d6;
  border-radius: 16px;
}

.footer-schedule > p:first-child {
  font-weight: 700;
  color: #6f5532;
  margin-bottom: 12px;
}

.drw_info .schedule-table {
  margin: 10px 0;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  background: #fff;
}

.drw_info .schedule-table th,
.drw_info .schedule-table td {
  border: 1px solid #e8dccb;
  padding: 8px 6px;
  text-align: center;
}

.drw_info .schedule-table th {
	background: #6d8d7c;
  font-weight: 700;
}

.drw_info .schedule-table td:first-child {
  text-align: left;
  background: #fcfaf6;
  font-weight: 500;
}

.note {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin-top: 6px;
}

/* 予約導線 */
.com_contact dd {
  margin: 0;
}

.telp {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #6f5532;
  margin-bottom: 16px;
}

.telp i {
  margin: 0 8px 0 0;
}

.web-reserve a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  width: 100%;
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(135deg, #b08a57 0%, #9a7444 100%);
  color: #fff;
  padding: 0.9em 1.2em;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 24px rgba(176, 138, 87, 0.22);
}

.web-reserve a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(176, 138, 87, 0.28);
}

.web-reserve a span {
  margin-left: 0.35em;
}

/* PCのサイトマップ段組み */
@media (min-width: 1280px) {
  .com_sp_menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* タブレット */
@media (max-width: 1023px) {
  #drawer-content {
    width: calc(100% - 24px);
    top: 12px;
    max-height: calc(100vh - 24px);
    padding: 24px 20px;
    border-radius: 20px;
  }

  .drawer-nav {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .com_sp_menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .drawer-hamburger {
    height: 65px;
    width: 74px;
  }

  #drawer-content {
    top: 0;
    left: 0;
    transform: translateY(-16px);
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
    padding: 82px 0 24px;
  }

  #drawer-checkbox:checked ~ #drawer-content {
    transform: translateY(0);
  }

  .drw_menu,
  .drw_info,
  .drw_contact {
    padding: 18px 16px;
    border-radius: 16px;
  }

  .drw_index {
    margin-bottom: 14px;
  }

  .com_sp_menu {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  li.littl {
    margin-top: 8px;
    margin-bottom: 6px;
  }

  .com_sp_menu li a,
  .com_medical li a {
	  padding: 8px 14px;
	  font-size: 1.5rem;
  }

  .telp {
    font-size: 1.7rem;
  }

  .web-reserve a {
    min-height: 56px;
    font-size: 1rem;
  }

  .drw_info .schedule-table {
    font-size: 0.76rem;
  }

  .drw_info .schedule-table th,
  .drw_info .schedule-table td {
    padding: 6px 4px;
  }
}
/*==================================================================================================================================

  *ファーストビュー

==================================================================================================================================*/
/* ========================================
  入れ歯専門サイト FV
======================================== */

.denture-fv {
  width: 100%;
  overflow: hidden;
  background: #fffaf0;
  color: #3c2a1f;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
}

.denture-fv * {
  box-sizing: border-box;
}

.denture-fv a {
  color: inherit;
  text-decoration: none;
}

.denture-fv img {
  max-width: 100%;
  height: auto;
  display: block;
}

.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

/* =========================
  Main Visual
========================= */

.denture-fv__main {
  position: relative;
  min-height: 470px;
  background:
    radial-gradient(circle at 80% 8%, rgba(246, 229, 155, .45) 0, rgba(246, 229, 155, 0) 28%),
    linear-gradient(90deg, #fffaf0 0%, #fff8eb 43%, rgba(255, 248, 235, .3) 58%, rgba(255, 255, 255, 0) 100%);
	height: 80vh;
}

.denture-fv__main::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58%;
  height: 150px;
  background:
    repeating-radial-gradient(
      ellipse at left bottom,
      rgba(226, 178, 95, .26) 0,
      rgba(226, 178, 95, .26) 1px,
      transparent 2px,
      transparent 12px
    );
  opacity: .45;
  pointer-events: none;
}

.denture-fv__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/top/mainpc.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right top;
  z-index: 0;
}

.denture-fv__content {
  position: relative;
  z-index: 2;
  width: 70%;
  padding: 100px 0 34px 5.2%;
}

.denture-fv__label {
  display: inline-block;
  margin: 0 0 21px;
  padding: 7px 24px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #eb8d28 0%, #e86e36 100%);
  color: #fff;
  font-size: clamp(13px, 1.25vw, 17px);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
}

.denture-fv__title {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: .08em;
}

.denture-fv__title-small {
  display: block;
  font-size: clamp(29px, 3.35vw, 45px);
  color: #3c2a1f;
}

.denture-fv__title-main {
  display: block;
  margin-top: 8px;
  color: #e86f38;
  font-size: clamp(43px, 5.15vw, 66px);
  letter-spacing: .1em;
}

.denture-fv__lead {
  position: relative;
  display: inline-block;
  margin: 13px 0 27px;
  padding-bottom: 12px;
  color: #3c2a1f;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
}

.denture-fv__lead::before,
.denture-fv__lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  background: #6b4a2f;
}

.denture-fv__lead::before {
  left: 0;
  width: calc(100% - 22px);
}

.denture-fv__lead::after {
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  bottom: -4px;
}

.denture-fv__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 540px;
}

.denture-fv__point {
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(230, 176, 93, .45);
  border-radius: 50%;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 4px 18px rgba(158, 112, 49, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-align: center;
  padding: 18px 10px;
}

.denture-fv__point-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}

.denture-fv__point-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.denture-fv__point-main {
  margin: 0;
  color: #3c2a1f;
  font-size: clamp(13px, 1.15vw, 16px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .04em;
}

.denture-fv__point-sub {
  margin: 4px 0 0;
  color: #6a584c;
  font-size: clamp(10px, .95vw, 12px);
  font-weight: 700;
  line-height: 1.45;
}

/* 動画バッジ */

.denture-fv__movie {
  position: absolute;
  right: 4.1%;
  top: 237px;
  z-index: 3;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 236, 166, .8);
  border: 2px solid #e7bd51;
  box-shadow: 0 6px 24px rgba(161, 113, 41, .12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #4d3324;
	gap: 5px;
}

.denture-fv__movie-small {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
}

.denture-fv__movie-main {
  margin-top: 5px;
  color: #e77333;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .08em;
}

.denture-fv__movie-sub {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 800;
}

.denture-fv__movie-play {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 5px;
  border-radius: 50%;
  background: #e87432;
}

.denture-fv__movie-play::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  border-left: 6px solid #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* =========================
  Info / CTA
========================= */

.denture-fv__info {
  position: relative;
  z-index: 4;
  background: linear-gradient(90deg, #f2aa27 0%, #ee902e 47%, #e97035 100%);
  color: #fff;
}

.denture-fv__info-list {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.35fr 1.2fr;
  align-items: center;
  width: 85%;
  min-height: 88px;
  margin: 0 auto;
  padding: 0 22px;
}

.denture-fv__info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 66px;
  padding: 12px 15px;
  border-right: 1px solid rgba(255, 255, 255, .32);
}

.denture-fv__info-item:first-child {
  padding-left: 0;
}

.denture-fv__info-item:last-child {
  border-right: 0;
}

.denture-fv__info-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.denture-fv__info-icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.denture-fv__info-item p {
	margin: 0;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: .04em;
}

.denture-fv__info-item span {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 800;
}

.denture-fv__cta-wrap {
  position: absolute;
  right: 2.1%;
  top: -110px;
  width: min(31.5%, 420px);
}

.denture-fv__cta {
  position: relative;
  min-height: 70px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 52px 10px 24px;
  box-shadow: 0 8px 20px rgba(110, 70, 15, .16);
}

.denture-fv__cta--reserve {
  background: linear-gradient(90deg, #6abf45 0%, #4a9e2a 100%);
  border: 1px solid rgba(255, 255, 255, .5);
}

.denture-fv__cta--tel {
  display: none;
  background: linear-gradient(90deg, #f49a28 0%, #eb6e2f 100%);
}

.denture-fv__cta-icon {
  flex: 0 0 32px;
  width: 32px;
}

.denture-fv__cta-text {
  color: #fff;
  font-size: clamp(17px, 1.65vw, 22px);
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.35;
  text-align: center;
}

.denture-fv__cta-text small {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.denture-fv__cta-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.denture-fv__cta-arrow::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 9px;
  width: 9px;
  height: 9px;
  border-top: 3px solid #e97533;
  border-right: 3px solid #e97533;
  transform: rotate(45deg);
}

/* =========================
  Tablet
========================= */

@media screen and (max-width: 1100px) {
  .denture-fv__content {
    width: 58%;
    padding-left: 3.5%;
  }

  .denture-fv__points {
    gap: 12px;
  }

  .denture-fv__movie {
    right: 2.5%;
    width: 145px;
    height: 145px;
  }

  .denture-fv__info-item {
    padding-inline: 12px;
    gap: 10px;
  }

  .denture-fv__info-icon {
    flex-basis: 43px;
    width: 43px;
    height: 43px;
  }

  .denture-fv__info-item p {
    font-size: 11px;
  }

  .denture-fv__info-item span {
    font-size: 13px;
  }

  .denture-fv__cta-wrap {
    width: 32%;
  }
}

/* =========================
  Mobile
========================= */

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }

  .denture-fv {
    background: #fff;
  }

  .denture-fv__main {
    min-height: 336px;
    background:
      linear-gradient(90deg, rgba(255, 250, 237, .98) 0%, rgba(255, 250, 237, .94) 48%, rgba(255, 250, 237, .18) 78%, rgba(255, 255, 255, 0) 100%);
	  height: 65vh;
  }

  .denture-fv__main::before {
    display: none;
  }

  .denture-fv__bg {
    background-image: url("../images/top/fv-person-sp.png");
    background-size: auto 100%;
    background-position: right top;
    opacity: .98;
  }

  .denture-fv__content {
    width: 100%;
    padding: 45px 15px 14px;
  }

  .denture-fv__label {
    margin-bottom: 12px;
    padding: 5px 15px 6px;
	  font-size: 13px;
    letter-spacing: .04em;
  }

  .denture-fv__title {
    line-height: 1.12;
    letter-spacing: .05em;
  }

  .denture-fv__title-small {
    font-size: clamp(24px, 7vw, 32px);
  }

  .denture-fv__title-main {
    font-size: 35px;
    letter-spacing: .06em;
    margin: 20px 0;
  }

  .denture-fv__lead {
    margin: 9px 0 18px;
    padding-bottom: 8px;
    font-size: clamp(17px, 4.8vw, 22px);
    line-height: 1.38;
    letter-spacing: .05em;
  }

  .denture-fv__lead::before {
    width: calc(100% - 16px);
  }

  .denture-fv__lead::after {
    width: 8px;
    height: 8px;
    bottom: -3px;
  }

  .denture-fv__points {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 360px;
  }

  .denture-fv__point {
    width: 100%;
    padding: 11px 5px;
    background: rgba(255, 255, 255, .82);
  }

  .denture-fv__point-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
  }

  .denture-fv__point-main {
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .denture-fv__point-sub {
    display: none;
  }

  .denture-fv__movie {
    right: 14px;
	  top: 209px;
    width: 96px;
    height: 96px;
    border-width: 1px;
  }

  .denture-fv__movie-small {
    font-size: 9px;
  }

  .denture-fv__movie-main {
    margin-top: 2px;
    font-size: 16px;
  }

  .denture-fv__movie-sub {
    margin-top: 3px;
    font-size: 9px;
  }

  .denture-fv__movie-play {
    width: 14px;
    height: 14px;
    margin-top: 3px;
  }

  .denture-fv__movie-play::before {
    left: 5px;
    top: 4px;
    border-left-width: 5px;
    border-top-width: 3px;
    border-bottom-width: 3px;
  }

  .denture-fv__info {
    background: #fff;
    padding: 0 15px 14px;
  }

  .denture-fv__info-list {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    min-height: initial;
    margin: 0;
    padding: 8px 0;
    border: 1px solid #9cc27e;
    border-radius: 7px 7px 0 0;
    background: #fff;
    overflow: hidden;
  }

  .denture-fv__info-item {
    display: block;
    min-height: initial;
    padding: 8px 5px;
    border-right: 1px solid #d7decf;
    text-align: center;
  }

  .denture-fv__info-item:first-child {
    padding-left: 5px;
  }

  .denture-fv__info-item:last-child {
    border-right: 0;
  }

  .denture-fv__info-icon {
    width: 25px;
    height: 25px;
    margin: 0 auto 5px;
    background: none;
    border-radius: 0;
    flex-basis: auto;
  }

  .denture-fv__info-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
  }

  .denture-fv__info-item p {
    color: #3c2a1f;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0;
  }

  .denture-fv__info-item span {
    color: #3c2a1f;
    font-size: 10px;
    line-height: 1.35;
    margin-bottom: 0;
  }

  .denture-fv__info-sub {
    display: none;
  }

  .denture-fv__cta-wrap {
    position: static;
    width: 100%;
    margin-top: 9px;
  }

  .denture-fv__cta {
    min-height: 39px;
    border-radius: 6px;
    padding: 6px 38px 6px 16px;
    gap: 10px;
  }

  .denture-fv__cta + .denture-fv__cta {
    margin-top: 8px;
  }

  .denture-fv__cta--reserve {
    background: linear-gradient(90deg, #8fb44c 0%, #6ea141 100%);
    border: 0;
  }

  .denture-fv__cta--tel {
    display: flex;
  }

  .denture-fv__cta-icon {
    flex-basis: 24px;
    width: 24px;
  }

  .denture-fv__cta-text {
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: .05em;
  }

  .denture-fv__cta-text small {
    font-size: 8px;
    letter-spacing: .08em;
  }

  .denture-fv__cta-arrow {
    right: 14px;
    width: 18px;
    height: 18px;
  }

  .denture-fv__cta-arrow::before {
    left: 6px;
    top: 5px;
    width: 6px;
    height: 6px;
    border-top-width: 2px;
    border-right-width: 2px;
  }
}

/* かなり狭い端末用 */
@media screen and (max-width: 374px) {
  .denture-fv__content {
    padding-inline: 12px;
  }

  .denture-fv__title-small {
    font-size: 22px;
  }

  .denture-fv__title-main {
    font-size: 39px;
  }

  .denture-fv__lead {
    font-size: 16px;
  }

  .denture-fv__point-main {
    font-size: 10px;
  }

  .denture-fv__movie {
    width: 86px;
    height: 86px;
    right: 10px;
  }

  .denture-fv__cta-text {
    font-size: 13px;
  }
}
/* ========================================
  こんなお悩みありませんか
======================================== */
.denture-trouble {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.95) 45%, rgba(255,255,255,.5) 100%),
    #fffaf2;
  color: #3e2d22;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.denture-trouble::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -90px;
  width: 620px;
  height: 240px;
  background: repeating-linear-gradient(
    -18deg,
    rgba(232, 169, 74, .22) 0,
    rgba(232, 169, 74, .22) 1px,
    transparent 1px,
    transparent 10px
  );
  border-radius: 50%;
  transform: rotate(-4deg);
  pointer-events: none;
}

.denture-trouble__wrap {
  position: relative;
  max-width: 100%;
  min-height: 717px;
  margin: 0 auto;
  padding: 48px 92px 44px;
  box-sizing: border-box;
}

.denture-trouble__inner {
    width: 90%;
    margin: auto;
}

.denture-trouble__bg-person {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 465px;
  overflow: hidden;
  z-index: 0;
}

.denture-trouble__bg-person::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.55) 28%, rgba(255,255,255,.1) 62%),
    linear-gradient(180deg, rgba(255,255,255,0) 58%, rgba(255,255,255,.95) 100%);
}

.denture-trouble__bg-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.denture-trouble__content {
  position: relative;
  z-index: 2;
  width: 650px;
}

.denture-trouble__en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 18px;
  color: #df9446;
  font-size: 13px;
  letter-spacing: .36em;
  line-height: 1;
  font-weight: 500;
}

.denture-trouble__en span,
.denture-trouble__en i {
  display: block;
  width: 88px;
  height: 1px;
  background: #e9c58d;
}

.denture-trouble__en i::before {
  content: "♧";
  display: inline-block;
  margin-left: 12px;
  color: #df9446;
  font-size: 18px;
  line-height: 0;
  transform: rotate(180deg);
}
.denture-trouble__heading {
  position: relative;
  z-index: 1;
}

.denture-trouble__heading h2 {
  margin: 0 0 18px;
  color: #3c2a1e;
  font-size: 47px;
  line-height: 1.33;
  letter-spacing: .08em;
  font-weight: 600;
  text-align: center;
}

.denture-trouble__heading h2 em {
  color: #ee8435;
  font-style: normal;
  font-size: 1.22em;
}

.denture-trouble__lead {
  margin: 0 0 24px;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  color: #3f342d;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .12em;
  font-weight: 600;
  text-align: center;
}

.denture-trouble__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 18px;
}

.denture-trouble__card {
  position: relative;
  min-height: 142px;
  padding: 23px 13px 16px;
  border: 1px solid #f3cfa7;
  border-radius: 10px;
  background: rgba(255,255,255,.78);
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 8px 24px rgba(157, 105, 47, .04);
}

.denture-trouble__check {
  position: absolute;
  top: 12px;
  left: 13px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5b14b, #e77628);
}

.denture-trouble__check::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 8px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.denture-trouble__icon {
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
}

.denture-trouble__icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.denture-trouble__card p {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  color: #3b3029;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .05em;
  font-weight: 700;
}

.denture-trouble__card em {
  color: #ea7130;
  font-style: normal;
}

.denture-trouble__message {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 390px;
  width: 40%;
  min-height: 295px;
}

.denture-trouble__family {
  position: absolute;
  right: 150px;
  top: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(86, 62, 34, .14);
}

.denture-trouble__family img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.denture-trouble__copy {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding-bottom: 16px;
  color: #3d2b20;
  font-size: 27px;
  line-height: 1.75;
  letter-spacing: .12em;
  font-weight: 600;
  text-shadow: 0 0 12px rgba(255,255,255,.8);
}

.denture-trouble__copy::before,
.denture-trouble__copy::after {
  content: "✦";
  position: absolute;
  color: #efbd68;
  font-size: 26px;
}

.denture-trouble__copy::before {
  left: -42px;
  top: 5px;
}

.denture-trouble__copy::after {
  right: -42px;
  bottom: 4px;
}

.denture-trouble__copy span {
  display: block;
}

.denture-trouble__copy em {
  color: #ea7130;
  font-style: normal;
  font-size: 1.1em;
}

.denture-trouble__copy::marker {
  display: none;
}

.denture-trouble__bottom {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 575px;
  align-items: center;
  gap: 44px;
  margin-top: 38px;
  padding: 16px 48px 16px 30px;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 32px rgba(118, 82, 39, .12);
}

.denture-trouble__plan {
  display: flex;
  align-items: center;
  gap: 24px;
}

.denture-trouble__heart {
  position: relative;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 22px rgba(118, 82, 39, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.denture-trouble__heart img {
  width: 43px;
  height: 43px;
  object-fit: contain;
  display: block;
}

.denture-trouble__plan p {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  color: #4b3c33;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: .12em;
  font-weight: 700;
}

.denture-trouble__plan em {
  color: #ea7130;
  font-style: normal;
}

.denture-trouble__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  height: 78px;
  padding: 0 70px 0 46px;
  border-radius: 12px;
  background: linear-gradient(90deg, #f4a22f 0%, #f25524 100%);
  color: #fff;
  text-decoration: none;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 29px;
  letter-spacing: .16em;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(219, 91, 33, .26);
  box-sizing: border-box;
  transition: transform .25s ease, box-shadow .25s ease;
}

.denture-trouble__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(219, 91, 33, .36);
  color: #fff;
}

.denture-trouble__calendar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.denture-trouble__calendar img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
}

.denture-trouble__btn i {
  position: absolute;
  right: 28px;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.denture-trouble__btn i::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-top: 4px solid #ef7130;
  border-right: 4px solid #ef7130;
  transform: rotate(45deg);
}

.sp-only {
  display: none;
}

@media screen and (max-width: 900px) {
  .denture-trouble {
    background:
      linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 62%, #fffaf4 100%);
  }

  .denture-trouble::before {
    right: -190px;
    bottom: 70px;
    width: 380px;
    height: 180px;
    opacity: .75;
  }

  .denture-trouble__wrap {
    max-width: 474px;
    min-height: auto;
    padding: 24px 25px 17px;
  }

  .denture-trouble__bg-person {
    top: 0;
    right: 0;
    width: 58%;
    height: 275px;
  }

  .denture-trouble__bg-person::after {
    background:
      linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.35) 46%, rgba(255,255,255,.05) 100%),
      linear-gradient(180deg, rgba(255,255,255,0) 54%, rgba(255,255,255,.96) 100%);
  }

  .denture-trouble__content {
    width: 100%;
  }

  .denture-trouble__en {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: .3em;
  }

  .denture-trouble__en span,
  .denture-trouble__en i {
    width: 42px;
  }
  .denture-trouble__heading {

  }
  .denture-trouble__heading h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 17px;
    font-size: 33px;
    line-height: 1.28;
    letter-spacing: .08em;
  }

  .denture-trouble__heading h2 em {
    font-size: 1.26em;
  }

  .denture-trouble__lead {
    width: 248px;
    margin-bottom: 17px;
    font-size: 15px;
    line-height: 1.85;
    letter-spacing: .08em;
  }

  .denture-trouble__lead br:first-child {
    display: none;
  }

  .denture-trouble__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .denture-trouble__card {
    min-height: 119px;
    padding: 21px 8px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,.82);
  }

  .denture-trouble__check {
    top: 11px;
    left: 10px;
    width: 18px;
    height: 18px;
  }

  .denture-trouble__check::before {
    left: 5px;
    top: 4px;
    width: 7px;
    height: 4px;
  }

  .denture-trouble__icon {
    height: 48px;
    margin-bottom: 6px;
  }

  .denture-trouble__icon svg {
    width: 54px;
    height: 54px;
    stroke-width: 2.3;
  }

  .denture-trouble__card p {
    font-size: 12px;
    line-height: 1.55;
    letter-spacing: .04em;
  }

  .denture-trouble__message {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    min-height: 174px;
    margin-top: 18px;
  }

  .denture-trouble__family {
    right: auto;
    left: 0;
    top: -565px;
    width: 100px;
    height: 100px;
  }

  .denture-trouble__copy {
    right: 4px;
    left: auto;
    bottom: 0;
    width: 100%;
    padding-bottom: 14px;
    font-size: 23px;
    line-height: 1.65;
    letter-spacing: .08em;
    border-bottom: 3px dotted #b3c97b;
  }

  .denture-trouble__copy::before {
    left: -30px;
    top: -25px;
    font-size: 22px;
  }

  .denture-trouble__copy::after {
    right: -16px;
    bottom: 45px;
    font-size: 18px;
  }

  .denture-trouble__bottom {
    display: block;
    margin-top: 11px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .denture-trouble__plan {
    gap: 14px;
    margin: 0 -3px 17px;
    padding: 17px 20px;
    border-radius: 13px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 8px 24px rgba(118, 82, 39, .1);
  }

  .denture-trouble__heart {
    width: 58px;
    height: 58px;
  }

  .denture-trouble__heart::before {
    color: #9cb64d;
    font-size: 40px;
    line-height: 52px;
  }

  .denture-trouble__plan p {
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .08em;
  }

  .denture-trouble__btn {
    width: 100%;
    height: 69px;
    gap: 22px;
    padding: 0 58px 0 28px;
    border-radius: 7px;
    font-size: 23px;
    letter-spacing: .16em;
  }

  .denture-trouble__calendar {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,.3);
  }

  .denture-trouble__btn i {
    right: 20px;
    width: 35px;
    height: 35px;
  }
  .denture-trouble__btn i::before {
    left: 12px;
    top: 12px;
  }

  .sp-only {
    display: block;
  }
}

@media screen and (max-width: 450px) {
  .denture-trouble__plan {
    padding: 10px;
    gap:10px;
  }

  .denture-trouble__wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  .denture-trouble__inner {
    width: 100%;
    margin: auto;
}

  .denture-trouble__heading h2 {
    font-size: 25px;
  }

  .denture-trouble__lead {
    width: 100%;
    padding-left: 30%;
    text-align: left;
  }

  .denture-trouble__btn {
    font-size: 21px;
    letter-spacing: .12em;
    gap:10px;
  }
}

/* =========================================
   目指すこと
========================================= */
.denture-message {
  position: relative;
  overflow: hidden;
  padding: 28px 30px 35px;
  padding: 48px 92px 44px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.86) 45%, rgba(255,255,255,.36) 100%),
    #fffaf0;
  color: #3b2a20;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
}

.denture-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 8% 20%, rgba(222, 154, 58, .22) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(222, 154, 58, .16) 0 1px, transparent 1px);
  background-size: 42px 42px, 55px 55px;
  pointer-events: none;
}

.denture-message::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: 105px;
  width: 760px;
  height: 190px;
  border-radius: 50%;
  border-top: 1px solid rgba(221, 178, 88, .35);
  transform: rotate(-8deg);
  pointer-events: none;
}

.denture-message__inner {
  position: relative;
  z-index: 1;
  /* width: 90%; */
  margin: 0 auto;
}

.denture-message__main {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-start;
  width: 90%;
 margin: auto;
}

.denture-message__content {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  z-index: 2;
  width: 58%;
  padding: 0 0 0 52px;
  gap: 10px;
}

.denture-message__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 520px;
  margin: 0 0 24px;
  padding: 10px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ed7d38 0%, #e65b2d 100%);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.2;
}

.denture-message__title {
  writing-mode: vertical-rl;
  margin: 0;
  color: #3d2b22;
  font-size: 47px;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: .08em;
}

.denture-message__title span {
  color: #e87136;
  font-size: 1.06em;
}

/* .denture-message__line {
  width: 490px;
  height: 1px;
  margin: 18px 0 20px;
  background: #c49350;
} */

.denture-message__lead {
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: .05em;
  writing-mode: vertical-rl;
}

.denture-message__lead strong {
  display: inline-block;
  color: #e87136;
  font-weight: 700;
}


.denture-message__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

 .denture-point {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 85%;
  margin: 32px auto 0;
  padding: 0;
}

.denture-point__item {
  position: relative;
  /* min-height: 232px; */
  padding: 28px 20px 30px;
  background: rgba(255, 253, 246, 0.78);
  border: 1px solid rgba(214, 171, 91, 0.42);
  border-radius: 6px;
}

.denture-point__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.denture-point__icon {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
}

.denture-point__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.denture-point__title-wrap {
  flex: 1;
  padding-top: 0;
}

.denture-point__num {
  margin: -4px 0 4px;
  color: #bd8736;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 34px;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.08em;
}

.denture-point__title {
  margin: 0;
  color: #332824;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.62;
  letter-spacing: 0.08em;
}

.denture-point__title span {
  color: #e66d35;
}

.denture-point__line {
  width: 118px;
  height: 1px;
  margin: 10px 0 23px 100px;
  background: #e3c498;
}

.denture-point__text {
  margin: 0;
  color: #2f2825;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 2.05;
  letter-spacing: 0.08em;
}

/* SP */
@media (max-width: 767px) {
  .denture-point {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 22px;
    margin: 20px auto;
    max-width: 90%;
  }

  .denture-point__item {
    min-height: auto;
    padding: 18px 20px 20px;
    border-radius: 5px;
  }

  .denture-point__head {
    gap: 14px;
  }

  .denture-point__icon {
    width: 52px;
    height: 52px;
  }

  .denture-point__num {
    margin: -2px 0 2px;
    font-size: 26px;
  }

  .denture-point__title {
    font-size: 17px;
    line-height: 1.55;
    letter-spacing: 0.05em;
  }

  .denture-point__line {
    width: 82px;
    margin: 12px 0 14px 66px;
  }

  .denture-point__text {
    padding-left: 0;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
}

/* bottom */
.denture-message__bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px auto 0;
  padding: 11px 38px;
  border: 1px solid rgba(208, 158, 70, .75);
  border-radius: 999px;
  background: rgba(255, 253, 246, .82);
}

.denture-message__bottom-text {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.denture-message__bottom-text img {
  width: 42px;
  height: auto;
}

.denture-message__bottom-text p {
  margin: 0;
  color: #5a4234;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .08em;
}

.denture-message__bottom-text span {
  color: #e87136;
}

.denture-message__leaf {
  width: 170px;
  height: auto;
}

/* SP */
@media (max-width: 767px) {
  .denture-message {
    padding: 14px 10px 20px;
  }

  /* .denture-message__inner {
    max-width: 480px;
  } */

  .denture-message__main {
    display: block;
    min-height: auto;
    padding: 0;
    width: 100%;
  }

  .denture-message__content {
    width: 100%;
    padding: 10px;
  }

  .denture-message__label {
    display: flex;
    min-width: 0;
    width: fit-content;
    margin: 0 auto 12px;
    padding: 6px 18px;
    font-size: 11px;
    letter-spacing: .08em;
  }

  .denture-message__title {
    position: relative;
    z-index: 2;
    font-size: 25px;
    line-height: 1.33;
    letter-spacing: .06em;
  }

  .denture-message__line {
    width: 190px;
    margin: 10px 0 12px;
  }

  .denture-message__lead {
    position: relative;
    z-index: 2;
    max-width: 95%;
    font-size: 15px;
    line-height: 1.75;
    letter-spacing: .02em;
  }

  .denture-message__visual {
    top: 0;
    right: -10px;
    width: 56%;
    height: 215px;
  }

  .denture-message__visual::before {
    background: linear-gradient(90deg, #fffaf0 0%, rgba(255,250,240,.65) 20%, rgba(255,250,240,0) 52%);
  }

  .denture-message__visual::after {
    background: linear-gradient(180deg, rgba(255,250,240,0) 54%, #fffaf0 100%);
  }

  .denture-message__visual img {
    object-position: center top;
  }

  .denture-message__cards {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
  }

  .denture-message__card {
    min-height: 112px;
    border: 1px solid rgba(229, 180, 110, .65);
    border-radius: 17px;
    background: rgba(255,255,255,.72);
  }

  .denture-message__card-text {
    width: 58%;
    padding: 12px 5px 10px 20px;
  }

  .denture-message__num {
    margin-bottom: 0;
    font-size: 27px;
  }

  .denture-message__icon {
    position: absolute;
    left: 20px;
    top: 46px;
    width: 34px;
    height: 34px;
  }

  .denture-message__card h3 {
    margin: 0 0 8px 48px;
    font-size: 16px;
    line-height: 1.42;
    letter-spacing: .03em;
  }

  .denture-message__card h3::after {
    display: none;
  }

  .denture-message__card p:not(.denture-message__num) {
    margin-left: 48px;
    font-size: 9px;
    line-height: 1.65;
    letter-spacing: 0;
  }

  .denture-message__card-img {
    width: 44%;
  }

  .denture-message__card-img::before {
    background: linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.35) 45%, rgba(255,255,255,0) 100%);
  }

  .denture-message__bottom {
    margin-top: 8px;
    padding: 9px 12px;
    border-radius: 16px;
  }

  .denture-message__bottom-text {
    flex-direction: column;
    gap: 8px;
  }

  .denture-message__bottom-text img {
    width: 24px;
  }

  .denture-message__bottom-text p {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .04em;
  }

  .denture-message__leaf {
    width: 54px;
  }
}


/* =========================================
   背景の寂しさを抑える装飾追加
========================================= */
.denture-message {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.48) 100%),
    linear-gradient(180deg, #fffaf0 0%, #fff7e9 100%);
}

/* うっすら紙っぽい粒感 */
.denture-message::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    radial-gradient(circle, rgba(214, 157, 73, .20) 1px, transparent 1px),
    radial-gradient(circle, rgba(214, 157, 73, .10) 1px, transparent 1px);
  background-size: 34px 34px, 58px 58px;
  background-position: 0 0, 18px 24px;
  opacity: .55;
  pointer-events: none;
}

/* 右下の流れる曲線 */
.denture-message::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: 135px;
  z-index: -1;
  width: 880px;
  height: 260px;
  border-top: 1px solid rgba(205, 151, 70, .34);
  border-radius: 50%;
  transform: rotate(-7deg);
  pointer-events: none;
}

/* 背景用の追加装飾 */
.denture-message__inner::before,
.denture-message__inner::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

/* 左上の小さな光 */
.denture-message__inner::before {
  left: 0;
  top: 95px;
  width: 70px;
  height: 70px;
  background:
    linear-gradient(rgba(217, 156, 62, .38), rgba(217, 156, 62, .38)) center / 1px 70px no-repeat,
    linear-gradient(90deg, rgba(217, 156, 62, .38), rgba(217, 156, 62, .38)) center / 70px 1px no-repeat;
  opacity: .6;
}

/* 右下の淡い丸ぼかし */
.denture-message__inner::after {
  right: 2%;
  bottom: 95px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 176, 87, .16) 0%, rgba(236, 176, 87, 0) 70%);
}
.denture-point__item {
  background:
    linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(255,252,244,.76) 100%);
  border: 1px solid rgba(214, 171, 91, 0.46);
  box-shadow: 0 10px 28px rgba(107, 72, 34, .045);
}

.denture-point__item::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(214, 171, 91, .12);
  pointer-events: none;
}

/* =========================================
  目指すこと / premium design
========================================= */
.denture-message {
  position: relative;
  overflow: hidden;
  padding: 42px 72px 44px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 244, 214, .85) 0, rgba(255, 244, 214, 0) 34%),
    radial-gradient(circle at 90% 18%, rgba(239, 201, 129, .25) 0, rgba(239, 201, 129, 0) 32%),
    linear-gradient(180deg, #fffaf0 0%, #fff7eb 100%);
  color: #3b2a20;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
}

.denture-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(202, 150, 75, .16) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .55;
  pointer-events: none;
}

.denture-message::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -65px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(203, 158, 79, .28);
  border-radius: 50%;
  pointer-events: none;
}

.denture-message__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* label */
.denture-message__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 520px;
  margin: 0 0 28px;
  padding: 10px 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c86a3b 0%, #e66a33 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(172, 96, 48, .18);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.3;
}

/* main */
.denture-message__main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .75fr);
  align-items: start;
  gap: 46px;
  width: 100%;
  margin: 0 auto;
}


/* content */
.denture-message__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 20px;
  width: 100%;
  min-height: 430px;
  padding: 44px 18px 30px 38px;
}

/* large decorative ring */
.denture-message__content::before {
  content: "";
  position: absolute;
  right: -28px;
  top: 0;
  width: 280px;
  height: 380px;
  border: 1px solid rgba(197, 150, 73, .34);
  border-radius: 50%;
  transform: rotate(9deg);
  pointer-events: none;
}

.denture-message__content::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 18px;
  width: 210px;
  height: 120px;
  background:
    linear-gradient(145deg, transparent 0 42%, rgba(202, 158, 84, .22) 43% 44%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(202, 158, 84, .12), rgba(202, 158, 84, 0) 68%);
  opacity: .75;
  pointer-events: none;
}

/* ornament */
.denture-message__ornament {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.denture-message__crest {
  position: absolute;
  right: 68px;
  top: 0;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(198, 151, 76, .42);
  border-radius: 50%;
  background: rgba(255, 253, 246, .58);
}

.denture-message__crest::before,
.denture-message__crest::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 34px;
  border-top: 1px solid rgba(198, 151, 76, .55);
  border-radius: 50%;
}

.denture-message__crest::before {
  left: 12px;
  transform: rotate(-35deg);
}

.denture-message__crest::after {
  right: 12px;
  transform: rotate(35deg);
}

.denture-message__crest img {
  width: 28px;
  height: auto;
  opacity: .82;
}

.denture-message__sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
}

.denture-message__sparkle::before,
.denture-message__sparkle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: rgba(196, 145, 63, .62);
  transform: translate(-50%, -50%);
}

.denture-message__sparkle::before {
  width: 1px;
  height: 18px;
}

.denture-message__sparkle::after {
  width: 18px;
  height: 1px;
}

.denture-message__sparkle--01 {
  right: 12px;
  top: 96px;
}

.denture-message__sparkle--02 {
  left: 28px;
  top: 155px;
  transform: scale(.72);
}

.denture-message__botanical {
  position: absolute;
  right: -8px;
  bottom: 20px;
  width: 190px;
  height: 120px;
  opacity: .5;
  background:
    radial-gradient(ellipse at 18% 70%, rgba(198, 151, 76, .46) 0 4px, transparent 5px),
    radial-gradient(ellipse at 34% 58%, rgba(198, 151, 76, .42) 0 5px, transparent 6px),
    radial-gradient(ellipse at 50% 46%, rgba(198, 151, 76, .38) 0 5px, transparent 6px),
    radial-gradient(ellipse at 65% 35%, rgba(198, 151, 76, .34) 0 4px, transparent 5px);
}

.denture-message__botanical::before {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 26px;
  width: 160px;
  height: 70px;
  border-bottom: 1px solid rgba(198, 151, 76, .58);
  border-radius: 50%;
  transform: rotate(-18deg);
}

/* vertical text */
.denture-message__title {
  position: relative;
  z-index: 2;
  writing-mode: vertical-rl;
  margin: 0;
  color: #3b2a22;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: .08em;
}

.denture-message__title span {
  color: #dd6631;
  font-size: 1.08em;
}

.denture-message__lead {
  position: relative;
  z-index: 2;
  writing-mode: vertical-rl;
  margin: 0;
  color: #332824;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 2.05;
  letter-spacing: .055em;
}

.denture-message__lead strong {
  color: #dd6631;
  font-weight: 700;
}

/* point cards */
.denture-point {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 94%;
  max-width: 1180px;
  margin: 28px auto 0;
}

.denture-point__item {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  padding: 26px 24px 28px;
  border: 1px solid rgba(206, 158, 82, .42);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,251,240,.72)),
    #fffdf7;
  box-shadow:
    0 16px 30px rgba(119, 83, 42, .08),
    inset 0 0 0 1px rgba(255,255,255,.72);
}

.denture-point__item::before {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 170px;
  height: 140px;
  border-bottom: 1px solid rgba(203, 158, 84, .24);
  border-radius: 50%;
  transform: rotate(-20deg);
}

.denture-point__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.denture-point__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d97036 0%, #b9602d 100%);
  box-shadow: 0 8px 16px rgba(171, 91, 43, .18);
}

.denture-point__icon img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.denture-point__num {
  margin: 0 0 5px;
  color: #b48338;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: .08em;
}

.denture-point__title {
  margin: 0;
  color: #332824;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.62;
  letter-spacing: .08em;
}

.denture-point__title span {
  color: #dd6631;
}

.denture-point__line {
  position: relative;
  width: 120px;
  height: 1px;
  margin: 14px 0 20px 92px;
  background: rgba(200, 154, 82, .46);
}

.denture-point__line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  background: #c99c52;
  transform: translate(-50%, -50%) rotate(45deg);
}

.denture-point__text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #2f2825;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.95;
  letter-spacing: .07em;
}

/* bottom */
.denture-message__bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 20px auto 0;
  padding: 13px 42px;
  border: 1px solid rgba(203, 158, 84, .62);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.74), rgba(255,250,239,.82));
  box-shadow: 0 12px 26px rgba(119, 83, 42, .06);
}

.denture-message__bottom::before {
  content: "";
  position: absolute;
  left: 70px;
  top: 50%;
  width: 120px;
  height: 34px;
  border-top: 1px solid rgba(205, 161, 85, .35);
  border-radius: 50%;
  transform: translateY(-50%) rotate(-8deg);
}

.denture-message__bottom-text {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 auto;
  text-align: center;
}

.denture-message__bottom-text img {
  width: 34px;
  height: auto;
}

.denture-message__bottom-text p {
  margin: 0;
  color: #5a4234;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .08em;
}

.denture-message__bottom-text span {
  color: #dd6631;
}

.denture-message__leaf {
  width: 155px;
  height: auto;
  opacity: .72;
}

/* responsive */
@media (max-width: 1024px) {
  .denture-message {
    padding: 36px 28px 38px;
  }

  .denture-message__main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .denture-message__visual {
    height: 390px;
  }

  .denture-message__content {
    min-height: auto;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .denture-message {
    padding: 24px 14px 28px;
  }

  .denture-message::after {
    right: -210px;
    top: -120px;
    width: 360px;
    height: 360px;
  }

  .denture-message__label {
    display: flex;
    min-width: 0;
    width: fit-content;
    margin: 0 auto 18px;
    padding: 7px 16px;
    font-size: 12px;
    letter-spacing: .08em;
  }

  .denture-message__main {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .denture-message__visual {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 42% 58% 46% 54% / 12% 16% 84% 88%;
  }

  .denture-message__content {
    display: block;
    padding: 22px 10px 12px;
    text-align: center;
  }

  .denture-message__content::before {
    right: 0;
    top: 0;
    width: 190px;
    height: 190px;
    opacity: .55;
  }

  .denture-message__title,
  .denture-message__lead {
    writing-mode: horizontal-tb;
  }

  .denture-message__title {
    font-size: 26px;
    line-height: 1.65;
    letter-spacing: .08em;
  }

  .denture-message__lead {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }

  .denture-message__crest {
    right: 12px;
    top: -4px;
    width: 54px;
    height: 54px;
    opacity: .55;
  }

  .denture-message__botanical {
    display: none;
  }

  .denture-point {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
  }

  .denture-point__item {
    min-height: auto;
    padding: 20px 18px 22px;
    border-radius: 9px;
  }

  .denture-point__head {
    gap: 13px;
  }

  .denture-point__icon {
    width: 58px;
    height: 58px;
  }

  .denture-point__num {
    font-size: 27px;
  }

  .denture-point__title {
    font-size: 17px;
    line-height: 1.55;
  }

  .denture-point__line {
    width: 84px;
    margin: 12px 0 15px 72px;
  }

  .denture-point__text {
    font-size: 15px;
    line-height: 1.85;
    letter-spacing: .04em;
  }

  .denture-message__bottom {
    margin-top: 14px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .denture-message__bottom::before {
    display: none;
  }

  .denture-message__bottom-text {
    display: block;
  }

  .denture-message__bottom-text p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .04em;
  }
}


/* =========================================
   動画ブロック
========================================= */
.denture-video {
  position: relative;
  padding: 48px 20px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
    linear-gradient(180deg, #fff8e9 0%, #fffdf7 48%, #fff7e6 100%);
  overflow: hidden;
}

.denture-video::before,
.denture-video::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 200, 104, 0.13);
  filter: blur(2px);
  pointer-events: none;
}

.denture-video::before {
  left: -70px;
  bottom: 20px;
}

.denture-video::after {
  right: -80px;
  top: 20px;
}

.denture-video__inner {
  position: relative;
  z-index: 1;
  max-width: 90%;
  margin: 0 auto;
  padding: 34px 25px 30px;
  background: rgba(255, 255, 255, 0.58);
  /* border: 1px solid rgba(232, 177, 88, 0.55); */
  /* border-radius: 18px; */
  box-shadow: 0 10px 30px rgba(156, 98, 35, 0.08);
}

.denture-video__label-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -58px;
  margin-bottom: 20px;
}

/* .denture-video__label {
  position: relative;
  min-width: 560px;
  margin: 0;
  padding: 8px 48px;
  color: #5c3f2a;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  background: rgba(255, 252, 243, 0.96);
  border-top: 2px solid #e9a947;
  border-bottom: 2px solid #e9a947;
}

.denture-video__label::before,
.denture-video__label::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 36px;
  height: calc(100% + 4px);
  border-top: 2px solid #e9a947;
  border-bottom: 2px solid #e9a947;
}

.denture-video__label::before {
  left: -22px;
  transform: skewX(24deg);
  border-left: 2px solid #e9a947;
}

.denture-video__label::after {
  right: -22px;
  transform: skewX(-24deg);
  border-right: 2px solid #e9a947;
} */

.denture-video__main {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 10px;
  align-items: center;
}

.denture-video__title {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 16px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  line-height: 1.22;
}

.denture-video__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 83%;
  height: 9px;
  background: url("../images/top/title-line.svg") left center / 100% 100% no-repeat;
}

.denture-video__title span {
  display: block;
  color: #ed7f37;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.denture-video__title small {
  display: block;
  margin-top: 4px;
  color: #4f3423;
  font-size: clamp(27px, 3.2vw, 39px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.denture-video__lead {
  margin: 0 0 18px;
  color: #4c3829;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.denture-video__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.denture-video__point {
  min-height: 140px;
  padding: 16px 10px 12px;
  text-align: center;
  background: rgba(255, 252, 245, 0.85);
  border: 1px solid rgba(232, 184, 105, 0.55);
  border-radius: 14px;
}

.denture-video__point-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.denture-video__point p {
  margin: 0;
}

.denture-video__point strong {
  display: block;
  color: #ed7f37;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.denture-video__point span {
  display: block;
  margin-top: 5px;
  color: #4c3829;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.denture-video__movie {
  position: relative;
}

.denture-video__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(112, 70, 29, 0.12);
}

.denture-video__iframe {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}

.denture-video__iframe iframe {
  width: 100%;
  height: 100%;
  display: block;
}
/* 
.denture-video__thumb > img {
  display: block;
  width: 100%;
  aspect-ratio: 520 / 300;
  object-fit: cover;
} */

.denture-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 16px rgba(98, 64, 35, 0.12);
}

.denture-video__play img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.denture-video__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 10px 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  background: rgba(79, 56, 39, 0.48);
}

.denture-video__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 92%;
  max-width: 500px;
  margin: 22px auto 0;
  padding: 17px 24px 18px;
  color: #fff;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  background: linear-gradient(180deg, #ff9a34 0%, #f26b1d 100%);
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(195, 85, 18, 0.2), 0 12px 24px rgba(212, 97, 25, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.denture-video__btn:hover {
  color: #fff;
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(195, 85, 18, 0.18), 0 8px 18px rgba(212, 97, 25, 0.22);
}

.denture-video__btn span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
}

.denture-video__btn img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.denture-video__btn::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -11px;
  width: 54px;
  height: 42px;
  background: url("../images/top/btn-deco.svg") center / contain no-repeat;
}

.denture-video__bottom {
  position: relative;
  display: grid;
  grid-template-columns: 25% 1fr 40%;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding: 18px 30px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(154, 99, 37, 0.08);
}

.denture-video__bottom::before,
.denture-video__bottom::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background: url("../images/top/icon-sparkle.svg") center / contain no-repeat;
}

.denture-video__bottom::before {
  left: 22px;
  bottom: 14px;
}

.denture-video__bottom::after {
  right: 28px;
  top: 28px;
}

.denture-video__bottom-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.denture-video__doctor {
  /* display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  background: #fff;
  border: 1px solid rgba(232, 184, 105, 0.42);
  border-radius: 50%; */
}

.denture-video__doctor img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.denture-video__bottom-head p {
  margin: 0;
  color: #5b402e;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.denture-video__bottom-list {
  position: relative;
  margin: 0;
  padding: 0 0 0 25px;
  list-style: none;
  border-left: 1px solid rgba(217, 164, 83, 0.35);
}

.denture-video__bottom-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5a3c27;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.denture-video__bottom-list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.denture-video__bottom-message {
  margin: 0;
  padding-left: 24px;
  color: #5a3c27;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
  border-left: 1px solid rgba(217, 164, 83, 0.35);
}

.denture-video__bottom-message::first-line {
  color: #dd7b36;
}

.pc-only {
  display: inline;
}

.sp-only {
  display: none;
}

/* ------------------------------
  Tablet
------------------------------ */
@media screen and (max-width: 1024px) {
  .denture-video__inner {
    padding: 32px 28px 28px;
  }

  .denture-video__main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .denture-video__movie {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .denture-video__bottom {
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .denture-video__bottom-list,
  .denture-video__bottom-message {
    padding-left: 0;
    border-left: none;
  }
}

/* ------------------------------
  SP
------------------------------ */
@media screen and (max-width: 767px) {
  .denture-video {
    padding: 28px 10px;
  }

  .denture-video__inner {
    padding: 24px 14px 22px;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  .denture-video__label-wrap {
    margin-top: -43px;
    margin-bottom: 18px;
  }

  .denture-video__label {
    min-width: 0;
    width: calc(100% - 20px);
    padding: 7px 16px;
    font-size: 16px;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  .denture-video__label::before,
  .denture-video__label::after {
    width: 24px;
  }

  .denture-video__label::before {
    left: -14px;
  }

  .denture-video__label::after {
    right: -14px;
  }

  .denture-video__title {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .denture-video__title::after {
    width: 100%;
    height: 7px;
  }

  .denture-video__title span {
    font-size: 42px;
    line-height: 1.18;
    letter-spacing: 0.05em;
  }

  .denture-video__title small {
    margin-top: 8px;
    font-size: 27px;
    letter-spacing: 0.06em;
  }

  .denture-video__lead {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.85;
    letter-spacing: 0.035em;
  }

  .denture-video__points {
    gap: 8px;
  }

  .denture-video__point {
    min-height: 104px;
    padding: 10px 6px 8px;
    border-radius: 10px;
  }

  .denture-video__point-icon {
    width: 31px;
    height: 31px;
    margin-bottom: 5px;
  }

  .denture-video__point strong {
    font-size: 12px;
    line-height: 1.45;
  }

  .denture-video__point span {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.45;
  }

  .denture-video__thumb {
    border-radius: 6px;
  }

  .denture-video__thumb > img {
    aspect-ratio: 392 / 208;
  }

  .denture-video__play {
    width: 72px;
    height: 72px;
  }

  .denture-video__play img {
    width: 28px;
    height: 28px;
  }

  .denture-video__caption {
    padding: 8px 10px;
    font-size: 12px;
  }

  .denture-video__btn {
    width: 100%;
    margin-top: 12px;
    padding: 14px 18px 15px;
    font-size: 24px;
    gap: 12px;
  }

  .denture-video__btn span {
    width: 38px;
    height: 38px;
  }

  .denture-video__btn::after {
    right: -10px;
    top: -12px;
    width: 42px;
    height: 34px;
  }

  .denture-video__bottom {
    display: grid;
    /* grid-template-columns: 0.9fr 1.4fr; */
    gap: 12px 14px;
    margin-top: 16px;
    padding: 14px 14px 16px;
    border-radius: 20px;
  }

  .denture-video__bottom-head {
    gap: 10px;
    flex-direction: column;
  }

  /* .denture-video__doctor {
    width: 52px;
    height: 52px;
  } */

  .denture-video__doctor img {
    width: 31px;
    height: 31px;
  }

  .denture-video__bottom-head p {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }

  .denture-video__bottom-list li {
    gap: 5px;
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.02em;
    font-weight: normal;
  }

  .denture-video__bottom-message {
    grid-column: 1 / -1;
    padding: 10px 0 0;
    font-size: 15px;
    line-height: 1.85;
    text-align: center;
    letter-spacing: 0.05em;
    border-left: none;
    border-top: 1px solid rgba(217, 164, 83, 0.28);
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline;
  }
}

/* ------------------------------
  Small SP
------------------------------ */
@media screen and (max-width: 420px) {
  .denture-video__label {
    font-size: 14px;
  }

  .denture-video__title span {
    font-size: 30px;
  }

  .denture-video__title small {
    font-size: 24px;
  }

  .denture-video__btn {
    font-size: 21px;
  }

  .denture-video__points {
    gap: 6px;
    grid-template-columns: repeat(1, 1fr);
  }

  .denture-video__point strong {
    font-size: 17px;
  }

  .denture-video__point span {
    font-size: 15px;
  }
}

/* =========================================
   当院が扱う入れ歯
========================================= */
.gds-section {
  position: relative;
  overflow: hidden;
  background: #fbf6e8;
  color: #3f3029;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
}

.gds-section__bg {
  position: relative;
  padding: 56px 92px 34px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.74) 46%, rgba(255,255,255,.34) 100%),
    url("../images/top/bg-gds.jpg") center / cover no-repeat;
}

.gds-section__inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.gds-section__head {
  display: grid;
  grid-template-columns: 56% 44%;
  align-items: start;
  min-height: 420px;
}

.gds-section__title-wrap {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.gds-section__sub {
  position: relative;
  display: inline-block;
  margin: 0 0 6px;
  padding-top: 18px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.2;
}

.gds-section__sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 54px;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d9a33d 18%, #d9a33d 82%, transparent);
}

.gds-section__title {
  margin: 0 0 24px;
  font-size: 50px;
  line-height: 1.08;
  letter-spacing: .06em;
  font-weight: 500;
}

.gds-section__title span {
  color: #e97837;
  font-size: 50px;
}

.gds-section__lead {
  margin: 0;
  font-size: 27px;
  line-height: 1.75;
  letter-spacing: .1em;
  font-weight: 600;
}

.gds-section__lead em {
  color: #e97837;
  font-style: normal;
  background: linear-gradient(transparent 72%, rgba(233, 120, 55, .24) 72%);
}

.gds-section__visual {
  position: absolute;
    top: -28px;
    right: -124px;
    width: 75%;
    height: auto;
    z-index: 1;
    overflow: hidden;
}

.gds-section__denture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.gds-section__circle {
  position: absolute;
  right: 8px;
  top: 122px;
  width: 148px;
  height: 148px;
  border: 1px solid #d59c2f;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 250, 238, .72);
  box-shadow: 0 0 0 4px rgba(255, 250, 238, .55);
}

.gds-section__circle p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
  font-weight: 600;
}

.gds-section__circle span {
  color: #e97837;
}

.gds-feature {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -10px;
}

.gds-feature__item {
  position: relative;
  min-height: 235px;
  padding: 20px 24px 24px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(232, 207, 144, .7);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(146, 94, 33, .08);
}

.gds-feature__num {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, #fff7c9 0%, #f4d672 70%, #deb64a 100%);
  border: 1px solid rgba(204, 153, 45, .45);
  font-size: 18px;
  color: #5a4424;
}

.gds-feature__icon {
  height: 58px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}

.gds-feature__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.gds-feature__item h3 {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(230, 148, 66, .45);
  color: #e97837;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: .08em;
  font-weight: 600;
}

.gds-feature__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .06em;
  font-weight: 600;
}

.gds-technician {
  display: grid;
  grid-template-columns: 1fr 640px;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 16px 24px;
  border: 1px solid #eca64e;
  border-radius: 4px;
  background: rgba(255, 247, 224, .72);
}

.gds-technician__map {
  width: 106px;
  height: 106px;
}

.gds-technician__map img {
  width: 100%;
  height: auto;
}

.gds-technician__text {
  margin: 0;
  font-size: 22px;
  line-height: 1.65;
  letter-spacing: .14em;
  font-weight: 600;
}

.gds-technician__text span {
  color: #e97837;
}

.gds-technician__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gds-technician__list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-left: 1px dotted rgba(210, 159, 74, .65);
}

.gds-technician__list img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.gds-technician__list span {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .05em;
}

.gds-section__bottom {
  position: relative;
  width: fit-content;
  margin: 22px auto 0;
  padding: 0 42px;
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: .16em;
  font-weight: 600;
}

.gds-section__bottom::before,
.gds-section__bottom::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 190px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c99a43);
}

.gds-section__bottom::before {
  right: 100%;
}

.gds-section__bottom::after {
  left: 100%;
  transform: scaleX(-1);
}

.sp-only {
  display: none;
}

/* tablet */
@media (max-width: 1024px) {
  .gds-section__head {
    grid-template-columns: 50% 50%;
  }

  .gds-section__denture {
    top: -20px;
    right: -40px;
    width: min(100%, 420px);
  }

  .gds-feature {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gds-technician {
    grid-template-columns: 100px 1fr;
  }

  .gds-technician__list {
    grid-column: 1 / -1;
  }
}

/* sp */
@media (max-width: 767px) {
  .gds-section__bg {
    padding: 28px 10px 26px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.76) 48%, rgba(255,255,255,.92) 100%),
      url("../images/top/bg-gds-sp.jpg") top center / cover no-repeat;
  }

  .gds-section__inner {
    width: calc(100% - 32px);
  }

  .gds-section__head {
    display: block;
    min-height: 265px;
    position: relative;
  }

  .gds-section__title-wrap {
    padding-top: 50px;
  }

  .gds-section__sub {
    font-size: 22px;
    margin-bottom: 3px;
    padding-top: 14px;
  }

  .gds-section__sub::before {
    left: 22px;
    width: 170px;
  }

  .gds-section__title {
    width: 60%;
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1.18;
  }

  .gds-section__lead {
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: .08em;
  }

  .gds-section__visual {
position: absolute;
        inset: 0;
        pointer-events: none;
        width: 75%;
        height: 22%;
        margin-left: 30%;
  }

  .gds-section__denture {
    top: 10px;
    right: -12px;
    width: 270px;
  }

  .gds-section__circle {
    top: 154px;
    right: 4px;
    width: 102px;
    height: 102px;
  }

  .gds-section__circle p {
    font-size: 11px;
    line-height: 1.55;
  }

  .gds-feature {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
    margin-top: 8px;
  }

  .gds-feature__item {
    min-height: 198px;
    padding: 16px 14px 18px;
    border-radius: 9px;
  }

  .gds-feature__num {
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .gds-feature__icon {
    height: 48px;
    margin-bottom: 9px;
  }

  .gds-feature__icon img {
    width: 48px;
    height: 48px;
  }

  .gds-feature__item h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    letter-spacing: .04em;
  }

  .gds-feature__item p {
    line-height: 1.9;
    letter-spacing: .04em;
    text-align: left;
  }

  .gds-technician {
    grid-template-columns: 74px 1fr;
    gap: 12px;
    margin-top: 16px;
    padding: 12px 14px;
  }

  .gds-technician__map {
    width: 74px;
    height: 74px;
  }

  .gds-technician__text {
    font-size: 18px;
    line-height: 1.65;
    letter-spacing: .08em;
  }

  .gds-technician__list {
    display: none;
  }

  .gds-section__bottom {
    margin-top: 16px;
    padding: 0;
    font-size: 15px;
    letter-spacing: .08em;
  }

  .gds-section__bottom::before,
  .gds-section__bottom::after {
    display: none;
  }

  .sp-only {
    display: block;
  }

}

@media (max-width: 450px) {
  .gds-section__inner {
    width: calc(100% - 24px);
  }

  .gds-section__title {
    font-size: 30px;
    width: 100%;
  }
  .gds-section__title span {
    font-size: 30px;
  }

  .gds-section__denture {
    width: 100%;
  }

  .gds-feature__item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .gds-feature__item h3 {
    font-size: 17px;
  }
}
/* =========================================
   保険の入れ歯と自費の入れ歯のちがい
========================================= */
.denture-compare {
  position: relative;
  overflow: hidden;
  padding: 64px 20px 46px;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.95) 0 14%, transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, #fff7e9 45%, #fff3df 100%);
  color: #4d382a;
}

.denture-compare::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: 40px;
  width: 120%;
  height: 170px;
  background:
    repeating-radial-gradient(ellipse at center, rgba(238, 171, 70, .2) 0 1px, transparent 2px 12px);
  opacity: .45;
  transform: rotate(-6deg);
  pointer-events: none;
}


.denture-compare__inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.denture-compare__content {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  gap: 20px;
}

.denture-compare__text {
  position: relative;
}

.denture-compare__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 10px 24px;
  margin: 0 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f28a28 0%, #f36a20 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
}

.denture-compare__title {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 40px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .14em;
  color: #47372f;
}

.denture-compare__title span {
  color: #eb7a35;
  font-size: 1.15em;
}

.denture-compare__line {
  position: relative;
  width: 100%;
  max-width: 410px;
  height: 1px;
  margin: 26px 0 20px;
  background: #eaa15f;
}

.denture-compare__line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef8a35;
  transform: translate(-50%, -50%);
}

.denture-compare__lead {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 2;
  font-weight: 600;
  letter-spacing: .08em;
  color: #4d4037;
}

.denture-compare__points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.denture-compare__points li {
  min-height: auto;
  padding: 21px 16px 21px;
  border: 1px solid rgba(232, 168, 92, .45);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 18px rgba(137, 92, 38, .08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.denture-compare__point-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto 7px;
}

.denture-compare__point-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.denture-compare__points span:last-child {
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
  color: #3f342d;
}

.denture-compare__visual {
  display: none;
}

.denture-compare__table-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(122, 77, 29, .12);
}

.denture-compare__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: rgba(255, 255, 255, .88);
}

.denture-compare__table th,
.denture-compare__table td {
  border: 1px solid rgba(220, 180, 118, .45);
  padding: 20px 18px;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 700;
  letter-spacing: .06em;
}

.denture-compare__table thead th {
  padding: 20px 14px;
  font-size: 17px;
  line-height: 1.5;
}

.denture-compare__table thead th:nth-child(1) {
  background: rgba(255, 252, 244, .92);
  color: #4b3a32;
}

.denture-compare__table thead th:nth-child(2) {
  background: linear-gradient(135deg, #b99a65 0%, #aa8a56 100%);
  color: #fff;
}

.denture-compare__table thead th:nth-child(3) {
  background: linear-gradient(135deg, #f28a26 0%, #f36a20 100%);
  color: #fff;
}

.denture-compare__table thead small {
  font-size: 13px;
  font-weight: 700;
}

.denture-compare__table tbody th {
  width: 22%;
  color: #4b3a32;
  background: rgba(255, 250, 239, .88);
}

.denture-compare__table tbody td:nth-child(2) {
  color: #4d4037;
  background: rgba(255, 255, 255, .76);
}

.denture-compare__table tbody td:nth-child(3) {
  color: #e97835;
  background: rgba(255, 250, 243, .8);
}

.denture-compare__table strong {
  color: #e97835;
  font-weight: 800;
}

.table-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* width: 34px;
  height: 34px; */
  margin: 0 12px 0 0;
  vertical-align: middle;
}

.table-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.denture-compare__btn-wrap {
  position: relative;
  z-index: 1;
  margin-top: 42px;
  text-align: center;
}

.denture-compare__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 430px;
  min-height: 68px;
  padding: 0 76px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f29a2d 0%, #f05c1e 100%);
  color: #fff;
  text-decoration: none;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: .18em;
  box-shadow: 0 12px 24px rgba(226, 105, 33, .26);
  transition: transform .25s ease, box-shadow .25s ease;
}

.denture-compare__btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(226, 105, 33, .32);
}

.denture-compare__btn i {
  position: absolute;
  right: 34px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
}

.denture-compare__btn i::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-top: 3px solid #f07628;
  border-right: 3px solid #f07628;
  transform: rotate(45deg);
}

/* 差し色：自然にグリーンを追加 */
.denture-compare__points li:nth-child(3) {
  border-color: rgba(120, 182, 81, .35);
}

.denture-compare__points li:nth-child(3) .denture-compare__point-icon {
  filter: drop-shadow(0 3px 5px rgba(120, 182, 81, .18));
}

.pc-only {
  display: inline;
}

/* SP */
@media screen and (max-width: 767px) {
  .denture-compare__inner {
    width: 100%;
  }
  .denture-compare {
    padding: 10px 16px 38px;
  }

  .denture-compare::before {
    bottom: 8px;
    height: 110px;
    opacity: .35;
  }

  .denture-compare__content {
    display: block;
  }

  .denture-compare__label {
    min-width: auto;
    padding: 8px 18px;
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: .05em;
  }

  .denture-compare__title {
    font-size: 25px;
    line-height: 1.45;
    letter-spacing: .08em;
    text-align: center;
  }

  .denture-compare__title span {
    font-size: 1.08em;
  }

  .denture-compare__line {
    max-width: 260px;
    margin: 14px auto 13px;
  }

  .denture-compare__lead {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .04em;
  }

  .denture-compare__visual {
    display: block;
    position: absolute;
    top: 34px;
    right: -16px;
    width: 52%;
    max-width: 240px;
    z-index: -1;
    opacity: .95;
  }

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

  .denture-compare__points {
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin-top: 12px;
  }

  .denture-compare__points li {
    min-height: 84px;
    padding: 9px 4px 7px;
  }

  .denture-compare__point-icon {
    width: 27px;
    height: 27px;
    margin-bottom: 5px;
  }

  .denture-compare__points span:last-child {
    font-size: 10px;
    line-height: 1.45;
  }

  .denture-compare__table-wrap {
    margin-top: 14px;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(122, 77, 29, .1);
  }

  .denture-compare__table th,
  .denture-compare__table td {
    padding: 10px 6px;
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: .02em;
  }

  .denture-compare__table thead th {
    padding: 10px 5px;
    font-size: 11px;
  }

  .denture-compare__table thead small {
    font-size: 9px;
  }

  .denture-compare__table tbody th {
    width: 25%;
  }

  .table-icon {

    margin: 0 4px 0 0;
  }

  .table-icon img {
    width: 30px;
    height: 30px;
  }

  .denture-compare__btn-wrap {
    margin-top: 18px;
  }

  .denture-compare__btn {
    min-width: 262px;
    min-height: 48px;
    padding: 0 54px;
    font-size: 16px;
    letter-spacing: .14em;
  }

  .denture-compare__btn i {
    right: 25px;
    width: 20px;
    height: 20px;
  }

  .denture-compare__btn i::before {
    left: 7px;
    top: 5px;
    width: 6px;
    height: 6px;
    border-width: 2px;
  }
  .denture-compare__table tbody td:nth-child(2),
  .denture-compare__table tbody td:nth-child(3) {
    text-align: left;
    font-weight: normal;
  }

  .pc-only {
    display: none;
  }
}
/* =========================================
   選択し
========================================= */
.denture-choice {
  position: relative;
  overflow: hidden;
  padding: 72px 0 52px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 215, 138, 0.26) 0, rgba(255, 215, 138, 0) 25%),
    radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, #fffaf0 0%, #fff6e5 48%, #fffaf2 100%);
  color: #3b2b20;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
}

.denture-choice::before,
.denture-choice::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.45;
}

.denture-choice::before {
  width: 340px;
  height: 340px;
  right: -90px;
  top: -80px;
  border-radius: 50%;
  border: 1px solid rgba(225, 142, 49, 0.22);
}

.denture-choice::after {
  width: 180px;
  height: 180px;
  right: 4%;
  bottom: 8%;
  background-image: radial-gradient(circle, rgba(232, 168, 85, 0.35) 1px, transparent 1px);
  background-size: 18px 18px;
}

.denture-choice__inner {
  width: 90%;
    margin: 0 auto;
    position: relative;
}

.denture-choice__head {
  text-align: center;
  margin-bottom: 28px;
}

.denture-choice__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  margin: 0 auto 18px;
  padding: 6px 28px;
  border: 1px solid #e9a24e;
  border-radius: 999px;
  color: #d97b2e;
  background: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.denture-choice__head-main {
  position: relative;
}

.denture-choice__title {
  margin: 0;
  color: #2c241e;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.denture-choice__title span {
  color: #e47d38;
  font-size: 1.18em;
}

.denture-choice__lead {
  margin: 22px 0 0;
  color: #4d3c30;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.08em;
}

.denture-choice__badge {
  position: absolute;
  right: 0;
  top: -24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 154px;
  border: 1px solid rgba(227, 151, 55, 0.55);
  border-radius: 50%;
  background: rgba(255, 240, 203, 0.72);
  box-shadow: inset 0 0 0 8px rgba(255, 250, 236, 0.65);
}

.denture-choice__badge img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
	display:none;
}

.denture-choice__badge p {
  margin: 0;
  color: #de7d30;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.denture-choice__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.denture-choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 48px 16px 16px;
  border: 1px solid rgba(226, 159, 78, 0.62);
  border-radius: 12px;
  background: rgba(255, 253, 246, 0.78);
  box-shadow: 0 10px 24px rgba(126, 76, 28, 0.08);
}

.denture-choice-card__ribbon {
  position: absolute;
  top: 10px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2b04a 0%, #ee8d34 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.denture-choice-card:nth-child(n + 2) .denture-choice-card__ribbon {
  border: 1px solid #efb16a;
  background: rgba(255, 255, 255, 0.72);
  color: #df7f32;
}

.denture-choice-card__image {
  order: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 158px;
  margin: 0 0 4px;
}

.denture-choice-card__image img {
  width: 100%;
  max-width: 270px;
  height: auto;
  object-fit: contain;
}

.denture-choice-card__title {
  order: 1;
  margin: 0 0 2px;
  color: #3a2a22;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.28;
  text-align: center;
  letter-spacing: 0.12em;
}

.denture-choice-card__title span {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.denture-choice-card__body {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.denture-choice-card__block h4 {
  display: flex;
  align-items: center;
justify-content: center;
  gap: 7px;
  margin: 0 0 8px;
  color: #e08a32;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.denture-choice-card__block h4 img {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
	margin:0;
}

.denture-choice-card__block ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.denture-choice-card__block li {
  position: relative;
  padding-left: 18px;
  color: #46392f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.denture-choice-card__block li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #e79235;
  font-weight: 700;
}

.denture-choice-card__block--note,
.denture-choice-card__block--caution {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(248, 236, 205, 0.56);
}

.denture-choice-card__block--caution h4 {
  color: #7a613e;
}

.denture-choice-card__block--caution li::before {
  color: #7d6140;
}

.denture-choice__message {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: 18px;
  /* max-width: 680px; */
  margin: 26px auto 0;
  padding: 10px 24px;
  border: 1px solid rgba(229, 159, 72, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.denture-choice__message-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #f5d99a;
}

.denture-choice__message-icon img {
  width: 34px;
  height: 34px;
}

.denture-choice__message p {
  margin: 0;
  color: #3f332a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.pc-only {
  display: inline;
}

@media screen and (max-width: 767px) {
  .denture-choice {
    padding: 34px 0 30px;
  }

  .denture-choice__inner {
    width: calc(100% - 28px);
  }

  .denture-choice__head {
    margin-bottom: 20px;
    text-align: left;
  }

  .denture-choice__label {
    display: flex;
    width: fit-content;
    min-width: 0;
    margin: 0 auto 14px;
    padding: 5px 18px;
    font-size: 15px;
    text-align: center;
  }

  .denture-choice__head-main {
    display: block;
  }

  .denture-choice__title {
    font-size: 28px;
    line-height: 1.45;
    letter-spacing: 0.1em;
  }

  .denture-choice__title span {
    font-size: 1.08em;
  }

  .denture-choice__lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.06em;
  }

  .denture-choice__badge {
    display: none;
  }

  .denture-choice__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* カード：縦積みのシンプルなレイアウト */
  .denture-choice-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 48px 18px 18px;
    border-radius: 12px;
  }

  /* リボン：カード上部を横断するバナーに */
  .denture-choice-card__ribbon {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    border-radius: 12px 12px 0 0;
    padding: 10px 14px;
    font-size: 13px;
    min-height: auto;
    letter-spacing: 0.04em;
  }

  /* 画像：中央寄せ、余裕のあるサイズ */
  .denture-choice-card__image {
    order: 1;
    display: flex;
    justify-content: center;
    height: auto;
    margin: 0 0 14px;
  }

  .denture-choice-card__image img {
    max-width: 190px;
    width: 100%;
  }

  /* タイトル：中央寄せ、区切り線付き */
  .denture-choice-card__title {
    order: 2;
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-align: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(214, 171, 91, 0.4);
  }

  .denture-choice-card__title span {
    display: block;
    font-size: 15px;
    margin-top: 4px;
    letter-spacing: 0.06em;
  }

  /* ボディ：縦積み */
  .denture-choice-card__body {
    order: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .denture-choice-card__block--note,
  .denture-choice-card__block--caution {
    margin: 0;
    padding: 12px 14px;
  }

  .denture-choice-card__block h4 {
    gap: 6px;
    margin-bottom: 8px;
    font-size: 17px;
  }

  .denture-choice-card__block h4 img {
    width: 17px;
    height: 17px;
  }

  .denture-choice-card__block ul {
    gap: 5px;
  }

  .denture-choice-card__block li {
    padding-left: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .denture-choice__message {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    max-width: none;
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .denture-choice__message-icon {
    width: 42px;
    height: 42px;
  }

  .denture-choice__message-icon img {
    width: 28px;
    height: 28px;
  }

  .denture-choice__message p {
    font-size: 15px;
    line-height: 1.75;
    font-weight: normal;
  }

  .pc-only {
    display: none;
  }
}

@media screen and (max-width: 430px) {
  .denture-choice__title {
    font-size: 25px;
    text-align: center;
  }

  .denture-choice-card {
    padding: 44px 14px 16px;
  }

  .denture-choice-card__image img {
    max-width: 160px;
  }

  .denture-choice-card__title {
    font-size: 20px;
  }
}

/* =========================================
  噛める入れ歯は、食事・嚥下・健康を支える大切な治療です
========================================= */
.denture-video {
  position: relative;
  padding: 90px 20px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 240, 214, 0.55), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(255, 248, 232, 0.7), transparent 30%),
    #fbf7ef;
  color: #3d332c;
  overflow: hidden;
}

.denture-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 90, 50, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 90, 50, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}



.denture-health__heading {
  max-width: 620px;
  margin-bottom: 34px;
}

.denture-video__label {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #e8d7ba;
  color: #5b4633;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.denture-video__title {
  margin: 0 0 22px;
  color: #3c3029;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.denture-video__title span {
  color: #d96a32;
  font-weight: 600;
}

.denture-video__lead {
  margin: 0;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.05em;
}

.denture-video__main {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 10px;
  align-items: center;
  margin-bottom: -18px;
}

.denture-video__text {
  position: relative;
  z-index: 2;
}

.denture-video__text p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* .denture-video__movie-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px 16px 18px;
  border-radius: 999px;
  background: #d96a32;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(168, 93, 43, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.denture-video__movie-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(168, 93, 43, 0.28);
} */

.denture-video__play {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
}

.denture-video__play img {
  width: 22px;
  height: 22px;
}

.denture-video__movie-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.denture-health__visual {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
}

.denture-health__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(251, 247, 239, 0.92), transparent);
}

.denture-health__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 420;
  object-fit: cover;
}

.denture-health__role {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 38px 34px 34px;
  border: 1px solid rgba(213, 154, 74, 0.46);
  border-radius: 18px;
  background: rgba(255, 252, 246, 0.82);
  box-shadow: 0 14px 40px rgba(110, 76, 38, 0.07);
}

.denture-health__role-title {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  margin: 0;
  padding: 8px 36px;
  background: #f2e2c6;
  color: #3d332c;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 24px;
  letter-spacing: 0.12em;
}

.denture-health__role-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.denture-health__role-item {
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.denture-health__role-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 0;
  width: 1px;
  height: calc(100% - 22px);
  background: repeating-linear-gradient(
    to bottom,
    rgba(217, 106, 50, 0.45) 0,
    rgba(217, 106, 50, 0.45) 4px,
    transparent 4px,
    transparent 9px
  );
}

.denture-health__role-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.denture-health__num {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d96a32;
  color: #fff;
  font-size: 14px;
  font-family: Georgia, serif;
}

.denture-health__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.denture-health__role-item h3 {
  margin: 0 0 12px;
  color: #3d332c;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.denture-health__role-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.denture-health__message {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 24px 40px;
  border-radius: 16px;
  background:
    url("../images/top/illust-leaf.svg") left 22px bottom 12px / 72px auto no-repeat,
    linear-gradient(90deg, rgba(251, 234, 197, 0.72), rgba(255, 252, 244, 0.9));
  border: 1px solid rgba(213, 154, 74, 0.38);
}

.denture-health__message::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 12px;
  width: 78px;
  height: 62px;
  background: url("../images/top/illust-leaf.svg") center / contain no-repeat;
  transform: scaleX(-1);
  opacity: 0.75;
}

.denture-health__message-badge {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid #d96a32;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: #d96a32;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}

.denture-health__message p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.denture-health__message span {
  color: #d96a32;
  font-weight: 600;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 900px) {
  .denture-video {
    padding: 64px 18px;
  }

  .denture-video__main {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-bottom: 34px;
  }

  .denture-health__heading {
    margin-bottom: 24px;
  }

  .denture-health__visual {
    width: 100%;
    border-radius: 18px;
  }

  .denture-health__role {
    padding: 30px 22px 26px;
  }

  .denture-health__role-title {
    position: static;
    transform: rotate(-1deg);
    display: table;
    margin: -6px auto 22px;
    font-size: 22px;
  }

  .denture-health__role-list {
    grid-template-columns: 1fr;
  }

  .denture-health__role-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    column-gap: 18px;
    padding: 22px 0;
    text-align: left;
  }

  .denture-health__role-item:not(:last-child) {
    border-bottom: 1px dashed rgba(217, 106, 50, 0.35);
  }

  .denture-health__role-item:not(:last-child)::after {
    display: none;
  }

  .denture-health__role-head {
    grid-row: 1 / 3;
    flex-direction: column;
    gap: 8px;
    margin: 0;
  }

  .denture-health__icon {
    width: 58px;
    height: 58px;
  }

  .denture-health__role-item h3 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .denture-health__message {
    align-items: flex-start;
    gap: 16px;
    padding: 24px 18px;
    background:
      url("../images/top/illust-leaf.svg") left 12px bottom 10px / 58px auto no-repeat,
      linear-gradient(180deg, rgba(251, 234, 197, 0.72), rgba(255, 252, 244, 0.9));
  }

  .denture-health__message::after {
    width: 58px;
    height: 48px;
    right: 12px;
  }

  .denture-health__message-badge {
    width: 66px;
    height: 66px;
    font-size: 14px;
  }

  .denture-health__message p {
    font-size: 15px;
    line-height: 1.9;
  }
}

@media screen and (max-width: 600px) {
  .denture-health__role-title {
    transform: rotate(0deg);
  }
  .denture-video {
    padding: 52px 16px;
  }

  .denture-video__label {
    font-size: 13px;
  }

  .denture-video__title {
    font-size: 31px;
    line-height: 1.5;
  }

  .denture-video__lead,
  .denture-video__text p {
    font-size: 14px;
    line-height: 2;
  }

  .denture-video__movie-link {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
  }

  .denture-video__movie-text {
    font-size: 14px;
  }

  .denture-health__role {
    border-radius: 16px;
  }

  .denture-health__role-item {
    grid-template-columns: 72px 1fr;
    column-gap: 10px;
  }

  .denture-health__num {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .denture-health__icon {
    width: 50px;
    height: 50px;
  }

  .denture-health__role-item h3 {
    font-size: 17px;
  }

  .denture-health__role-item p {
    font-size: 15px;
  }

  .denture-health__message {
    display: block;
  }

  .denture-health__message-badge {
    margin-bottom: 14px;
  }

  .sp-only {
    display: block;
  }
}
/* =========================================
   噛める入れ歯は〜健康セクション
========================================= */
.denture-health {
  position: relative;
  padding: 80px 20px 90px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 240, 214, 0.55), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(255, 248, 232, 0.72), transparent 32%),
    #fbf7ef;
  color: #3d332c;
  overflow: hidden;
}

.denture-health::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 90, 50, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 90, 50, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.denture-health__inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.denture-health__hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-start;
  margin-bottom: -20px;
}

.denture-health__heading {
  position: relative;
  z-index: 2;
  width: 56%;
  max-width: 660px;
  padding-top: 10px;
}

.denture-health__title {
  margin: 0 0 22px;
  color: #3c3029;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.denture-health__title span {
  color: #d96a32;
  font-weight: 600;
}

.denture-health__lead {
  margin: 0;
  color: #3d332c;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.04em;
}

.denture-health__visual {
  position: absolute;
  top: -34px;
  right: -26px;
  z-index: 1;
  width: 58%;
  max-width: 680px;
  border-radius: 0;
  overflow: visible;
}

.denture-health__visual::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 0;
  width: 46%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #fbf7ef 0%,
    rgba(251, 247, 239, 0.92) 36%,
    rgba(251, 247, 239, 0.55) 68%,
    transparent 100%
  );
  pointer-events: none;
}

.denture-health__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: 2;
  background: linear-gradient(
    to top,
    #fbf7ef 0%,
    rgba(251, 247, 239, 0.88) 38%,
    transparent 100%
  );
  pointer-events: none;
}

.denture-health__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 720 / 420;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) brightness(1.04);
}

@media screen and (max-width: 767px) {
  .denture-health {
    padding: 48px 0 52px;
  }

  .denture-health__inner {
    width: calc(100% - 28px);
  }

  /* hero を縦積みflex に。heading を display:contents で解体し
     title(1) → visual(2) → lead(3) の順に並べる */
  .denture-health__hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    margin-bottom: 28px;
  }

  .denture-health__heading {
    display: contents;
  }

  .denture-health__title {
    order: 1;
    width: 100%;
    padding-top: 0;
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .denture-health__visual {
    order: 2;
    position: static;
    width: 100%;
    max-width: none;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
  }

  .denture-health__visual::before,
  .denture-health__visual::after {
    display: none;
  }

  .denture-health__lead {
    order: 3;
    font-size: 15px;
    line-height: 2;
    margin: 0;
  }
}
/* =========================================
 見た目も自然な入れ歯を目指します
========================================= */
.denture-natural {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 225, 164, 0.45) 0, rgba(255, 225, 164, 0) 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 238, 196, 0.6) 0, rgba(255, 238, 196, 0) 30%),
    linear-gradient(180deg, #fffaf0 0%, #fff7e8 100%);
  color: #4a3429;
}

.denture-natural,
.denture-natural * {
  box-sizing: border-box;
}

.denture-natural img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.denture-natural__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 80px, 1320px);
  margin: 0 auto;
}

/* =========================
  heading
========================= */

.denture-natural__heading {
  margin-bottom: 34px;
  text-align: center;
}

.denture-natural__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 470px;
  margin: 0 0 24px;
  padding: 11px 34px;
  border: 1px solid rgba(210, 152, 58, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #4a3429;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.denture-natural__label::before,
.denture-natural__label::after {
  content: "✦";
  display: inline-block;
  color: #dba54f;
  font-size: 15px;
  line-height: 1;
}

.denture-natural__label::before {
  margin-right: 16px;
}

.denture-natural__label::after {
  margin-left: 16px;
}

.denture-natural__title {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
  color: #3f2c25;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(42px, 4.3vw, 58px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.12em;
}

.denture-natural__title span {
  color: #e87535;
}

.denture-natural__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 62%;
  max-width: 720px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(212, 161, 75, 0) 0%,
    rgba(212, 161, 75, 0.85) 18%,
    rgba(212, 161, 75, 0.85) 82%,
    rgba(212, 161, 75, 0) 100%
  );
}

.denture-natural__lead {
  margin: 18px 0 0;
  color: #4a3429;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.denture-natural__lead span,
.denture-natural__lead strong {
  color: #e87535;
}

/* =========================
  body
========================= */

.denture-natural__body {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.denture-natural__points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.denture-natural__point {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 168px;
  padding: 28px 30px;
  border: 1px solid rgba(222, 181, 111, 0.48);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(118, 84, 42, 0.08);
}

.denture-natural__point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff6da 0%, #fbe8b9 100%);
  box-shadow: inset 0 0 0 1px rgba(222, 162, 65, 0.32);
}

.denture-natural__point-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.denture-natural__point-content {
  position: relative;
  padding-left: 22px;
}

.denture-natural__point-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(221, 159, 62, 0.85) 0,
    rgba(221, 159, 62, 0.85) 3px,
    transparent 3px,
    transparent 7px
  );
}

.denture-natural__point-number {
  margin: 0 0 4px;
  color: #c59a32;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}

.denture-natural__point-title {
  margin: 0 0 12px;
  color: #e87535;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.denture-natural__point-text {
  margin: 0;
  color: #4a3429;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

/* =========================
  visual
========================= */

.denture-natural__visual {
  position: relative;
  overflow: hidden;
  min-height: 516px;
  /* border: 1px solid rgba(222, 181, 111, 0.65); */
  /* border-radius: 22px; */
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 24px rgba(118, 84, 42, 0.08);
}

.denture-natural__main-image {
  position: relative;
  /* height: 300px; */
  overflow: hidden;
}

.denture-natural__main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 250, 240, 0) 40%,
    rgba(255, 250, 240, 0.55) 100%
  );
  pointer-events: none;
}

.denture-natural__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.denture-natural__catch {
  position: absolute;
  right: 34px;
  top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 172px;
  height: 172px;
  border: 1px solid rgba(198, 151, 54, 0.78);
  border-radius: 50%;
  background: rgba(255, 243, 203, 0.84);
  box-shadow: 0 8px 18px rgba(118, 84, 42, 0.12);
  text-align: center;
}

.denture-natural__catch p {
  margin: 0;
  color: #4a3429;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.08em;
}

.denture-natural__catch span {
  color: #e87535;
}

.denture-natural__comparison {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: -18px 24px 0;
  padding: 18px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
}

.denture-natural__comparison-item {
  min-width: 0;
}

.denture-natural__comparison-label {
  position: relative;
  z-index: 1;
  width: 78%;
  margin: 0 auto -8px;
  padding: 6px 12px;
  border-radius: 10px 10px 0 0;
  background: #b7a288;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.08em;
}

.denture-natural__comparison-item:last-child .denture-natural__comparison-label {
  background: #e87535;
}

.denture-natural__comparison-image {
  overflow: hidden;
  border-radius: 8px;
}

.denture-natural__comparison-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.denture-natural__comparison-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.denture-natural__comparison-arrow span {
  display: block;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid #e87535;
}

.denture-natural__note {
  margin: 12px 26px 20px;
  color: #6d5a4f;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: right;
}

/* =========================
  message
========================= */

.denture-natural__message {
  position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 215px;
    gap: 0;
    align-items: center;
    margin: 28px 0 0;
    padding: 20px 50px 20px;
    /* border-radius: 24px; */
    background: radial-gradient(circle at 88% 50%, rgba(255, 230, 182, 0.48) 0, rgba(255, 230, 182, 0) 38%), rgba(255, 255, 255, 0.48);
}

.denture-natural__message::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 28px;
  width: 48px;
  height: 74px;
  border-left: 2px solid rgba(204, 158, 72, 0.42);
  border-radius: 50%;
  transform: rotate(24deg);
}

.denture-natural__message-title {
  margin: 0 0 12px;
  color: #3f2c25;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.denture-natural__message-title span {
  color: #e87535;
}

.denture-natural__message-text {
  margin: 0;
  color: #4a3429;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

.denture-natural__message-image {
  text-align: right;
}

/* .denture-natural__message-image img {
  width: 260px;
  max-width: 100%;
} */

/* =========================
  decoration
========================= */

.denture-natural::before,
.denture-natural::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 230, 172, 0.45) 0, rgba(255, 230, 172, 0) 68%);
  pointer-events: none;
}

.denture-natural::before {
  left: -60px;
  top: -80px;
}

.denture-natural::after {
  right: -60px;
  bottom: -80px;
}

/* =========================
  tablet
========================= */

@media screen and (max-width: 1024px) {
  .denture-natural {
    padding: 68px 0 60px;
  }

  .denture-natural__inner {
    width: min(100% - 48px, 920px);
  }

  .denture-natural__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .denture-natural__visual {
    order: -1;
  }

  .denture-natural__points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .denture-natural__point {
    display: block;
    min-height: auto;
    padding: 24px 18px;
    text-align: center;
  }

  .denture-natural__point-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 16px;
  }

  .denture-natural__point-icon img {
    width: 48px;
    height: 48px;
  }

  .denture-natural__point-content {
    padding-left: 0;
  }

  .denture-natural__point-content::before {
    display: none;
  }

  .denture-natural__point-number {
    font-size: 28px;
  }

  .denture-natural__point-title {
    font-size: 20px;
  }

  .denture-natural__message {
    padding: 28px 36px;
  }
}

/* =========================
  SP
========================= */

@media screen and (max-width: 767px) {
  .denture-natural {
    padding: 56px 10px 48px;
  }

  .denture-natural__inner {
    width: calc(100% - 15px);
  }

  .denture-natural__heading {
    margin-bottom: 26px;
  }

  .denture-natural__label {
    min-width: 0;
    width: 100%;
    padding: 8px 18px;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .denture-natural__label::before {
    margin-right: 10px;
  }

  .denture-natural__label::after {
    margin-left: 10px;
  }

  .denture-natural__title {
    padding-bottom: 16px;
    font-size: 34px;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .denture-natural__title::after {
    width: 86%;
  }

  .denture-natural__lead {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }

  .denture-natural__lead br {
    display: none;
  }

  .denture-natural__body {
    gap: 24px;
  }

  .denture-natural__visual {
    min-height: 0;
  }

  .denture-natural__main-image {
    height: 230px;
  }

  .denture-natural__catch {
    right: 14px;
    top: 132px;
    width: 116px;
    height: 116px;
  }

  .denture-natural__catch p {
    font-size: 13px;
    line-height: 1.65;
    letter-spacing: 0.05em;
  }

  .denture-natural__comparison {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 16px 14px 0;
    padding: 14px;
  }

  .denture-natural__comparison-label {
    width: 88%;
    font-size: 13px;
  }

  .denture-natural__comparison-image img {
    height: auto;
    aspect-ratio: 2.7 / 1;
  }

  .denture-natural__comparison-arrow span {
    border-top: 16px solid #e87535;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-bottom: 0;
  }

  .denture-natural__note {
    margin: 10px 16px 18px;
    font-size: 11px;
  }

  .denture-natural__points {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .denture-natural__point {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px 16px;
    border-radius: 16px;
    text-align: left;
  }

  .denture-natural__point-icon {
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .denture-natural__point-icon img {
    width: 38px;
    height: 38px;
  }

  .denture-natural__point-number {
    margin-bottom: 4px;
    font-size: 23px;
  }

  .denture-natural__point-title {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.45;
  }

  .denture-natural__point-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .denture-natural__message {
    display: block;
    margin-top: 24px;
    padding: 28px 20px 24px;
    border-radius: 18px;
    text-align: left;
  }

  .denture-natural__message::before {
    left: auto;
    right: 22px;
    top: 20px;
    width: 38px;
    height: 58px;
  }

  .denture-natural__message-title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: 0.1em;
  }

  .denture-natural__message-text {
    font-size: 15px;
    line-height: 1.9;
  }

  .denture-natural__message-text br {
    display: none;
  }

  .denture-natural__message-image {
    margin-top: 20px;
    text-align: center;
  }

}

/*==================================================================================================================================

  *選ばれる理由

==================================================================================================================================*/
.dream-ttlbloc {
  margin: 30px auto;
}

.dreamttl {
  position: relative;
  margin: 30px 0;
  font-size: 50px;
  line-height: 1.4;
  text-align: center;
  color: #3f2c25;
  text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.6);
}

.dreamttl .mini {
  font-size: 25px;
}

.dream-ttlbloc p {
  text-align: center;
  margin: 18px 0 0;
    color: #4a3429;
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.08em;
}

.dream-ttlbloc p .underline {
  text-decoration: none;
  border-bottom: 2px solid rgba(208, 110, 50, 0.45);
}

.problemspan {
  background: linear-gradient(135deg, #c05a18 0%, #d96a32 30%, #f4a22f 55%, #e07838 70%, #c86020 88%, #a84a10 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  filter: drop-shadow(0 3px 8px rgba(200, 100, 50, 0.22));
}

/* セクションの背景 */
.sedai {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  z-index: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 245, 230, 0.92) 20%,
    rgba(255, 248, 238, 0.92) 80%,
    rgba(255, 255, 255, 1) 100%
  );
}

.sedai::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 1;
}

.sedai::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 1;
}

.idx_inr {
  position: relative;
  display: block;
  margin: 0 auto;
}

.idx_box {
  position: relative;
  display: block;
}

.idx_lst li {
  position: relative;
  display: block;
  padding-left: 1em;
  margin-bottom: .5em;
  background-repeat: no-repeat;
  background-position: 0 .4em;
  background-size: .8em auto;
}

.sedai .idx_inr {
  max-width: 1400px;
  width: 100%;
  padding: 36px 0;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 100% 0;
  background-color: #fff;
}

.sedai .idx_inr:nth-of-type(2) {
  background-position: 0 0;
}

.sedai .idx_box {
  max-width: 858px;
  margin: 0 auto 0 0;
  padding: 30px 24px 24px 65px;
  color: #2f3a2b;
  background-color: rgba(255, 255, 255, 0.72);
  box-shadow: 3px 3px 8px rgba(112, 134, 94, 0.14);
}

.sedai .idx_inr:nth-of-type(2) .idx_box,
.sedai .idx_inr:nth-of-type(4) .idx_box {
  margin: 0 0 0 auto;
  box-shadow: -3px 3px 8px rgba(200, 100, 50, 0.14);
}

.sedai_ttl {
  position: relative;
  margin: 0 0 24px;
  font-size: 26.87px;
  border-bottom: 1px solid #c07038;
  color: #3d2b20;
}

.sedai_ttl span {
  font-size: 35px;
  color: #d96a32;
}

.sedai_ttl::before {
  content: "";
  display: block;
  position: absolute;
  width: 99px;
  aspect-ratio: 1 / 1;
  left: -45px;
  top: -24px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.sedai_lead {
  display: flex;
  align-items: center;
  width: 60%;
  padding: 0 0 16px;
  margin: 0 auto 15px 0;
}

.sedai_lead p {
  display: block;
  color: #4d3c30;
}

.sedai_lead p i {
  display: block;
}

.sedai_lead p .ja {
  font-size: 27.52px;
}

.sedai_lead p .en {
  font-size: 39.63px;
  font-weight: 700;
}

.sedai_lead figure {
  flex: 1;
}

.sedai .idx_lst {
  font-size: 15px;
  color: #4d3c30;
}

.sedai .idx_lst li {
  line-height: 1.3;
}

.sedai .idx_lst li::before {
  content: "●";
  position: relative;
  top: 3px;
  margin-right: 10px;
  font-size: 20px;
  color: #7A9C90;
}

.sedai .idx_lst li span {
  display: block;
}

.sedai .idx_lst li em {
  font-weight: 600;
  font-size: 19px;
}

.sedai01 li em,
.sedai02 li em,
.sedai03 li em,
.sedai04 li em,
.sedai05 li em {
  color: #d96a32;
}

.sedai_fig {
  position: absolute;
}

.sedai .idx_gnr_btn {
  width: unset;
  left: unset;
  right: 36px;
  bottom: 20px;
}

.idx_gnr_01 {
  background-image: url(../images/top/reason_1.png);
  background-repeat: no-repeat;
}

.idx_gnr_01 .sedai_lead p {
  margin-right: 42px;
}

.idx_gnr_01 .sedai_lead figure img {
  width: 109px;
  aspect-ratio: 109 / 149;
}

.idx_gnr_01 .sedai_fig {
  width: 366px;
  right: 0;
  bottom: 20px;
}

.idx_gnr_01 .sedai_fig img {
  aspect-ratio: 366 / 272;
  padding: 10px;
  max-width: 80%;
}

.idx_gnr_02 {
  background-image: url(../images/top/reason_2.png);
  background-repeat: no-repeat;
}

.idx_gnr_02 .sedai_lead p {
  margin-right: 36px;
}

.idx_gnr_02 .sedai_lead figure img {
  width: 103px;
  aspect-ratio: 103 / 138;
}

.idx_gnr_02 .idx_lst li:nth-of-type(2) span:nth-of-type(2) {
  margin-left: -.4em;
}

.idx_gnr_02 .sedai_fig {
  width: 377px;
  right: 10px;
  bottom: 20px;
}

.idx_gnr_02 .sedai_fig img {
  aspect-ratio: 378 / 269;
  max-width: 80%;
}

.idx_gnr_03 {
  background-image: url(../images/top/reason_3.png);
  background-repeat: no-repeat;
}

.idx_gnr_03 .sedai_lead p {
  margin-right: 30px;
}

.idx_gnr_03 .sedai_lead figure img {
  width: 117px;
  aspect-ratio: 117 / 144;
}

.idx_gnr_03 .idx_lst li:nth-of-type(2),
.idx_gnr_03 .idx_lst li:nth-of-type(3) {
  padding-left: 1em;
}

.idx_gnr_03 .sedai_fig {
  width: 377px;
  right: 10px;
  bottom: 20px;
}

.idx_gnr_03 .sedai_fig img {
  aspect-ratio: 377 / 269;
  max-width: 80%;
}

.idx_gnr_04 {
  background-image: url(../images/top/reason_4.png);
  background-repeat: no-repeat;
}

.idx_gnr_04 .sedai_lead p {
  margin-right: 30px;
}

.idx_gnr_04 .sedai_lead figure img {
  width: 117px;
  aspect-ratio: 117 / 144;
}

.idx_gnr_04 .idx_lst li:nth-of-type(2),
.idx_gnr_04 .idx_lst li:nth-of-type(3) {
  padding-left: 1em;
}

.idx_gnr_04 .sedai_fig {
  width: 377px;
  right: 10px;
  bottom: 20px;
}

.idx_gnr_04 .sedai_fig img {
  aspect-ratio: 377 / 269;
  max-width: 80%;
}

.idx_gnr_05 {
  background-image: url(../images/top/reason_5.png);
  background-repeat: no-repeat;
}

.idx_gnr_05 .sedai_lead p {
  margin-right: 30px;
}

.idx_gnr_05 .sedai_lead figure img {
  width: 117px;
  aspect-ratio: 117 / 144;
}

.idx_gnr_05 .idx_lst li:nth-of-type(2),
.idx_gnr_05 .idx_lst li:nth-of-type(3) {
  padding-left: 1em;
}

.idx_gnr_05 .sedai_fig {
  width: 345px;
  right: 10px;
  bottom: 20px;
}

.idx_gnr_05 .sedai_fig img {
/*   aspect-ratio: 377 / 269; */
  max-width: 80%;
}


/* ================================
   モバイル
================================ */
@media screen and (max-width: 767px) {

  .dream-ttlbloc {
    margin: 30px 10px;
  }

  .dreamttl {
    font-size: 25px;
  }

  .dreamttl .mini {
    font-size: 16px;
  }

  .sedai {
    padding: 95px 0;
  }

  .sedai .idx_inr {
    width: 100%;
    padding: 10px;
    margin-bottom: 30px;
    background-size: auto 100%;
    background-position: 100% 0;
  }

  .sedai .idx_inr:nth-of-type(2) {
    background-position: 0 0;
  }

  .sedai .idx_box {
    max-width: 100%;
    margin: 0;
    padding: 10px;
  }

  .sedai .idx_inr:nth-of-type(2) .idx_box,
  .sedai .idx_inr:nth-of-type(4) .idx_box {
    margin: 0;
  }

  .sedai_ttl {
    margin: 0 0 24px;
    padding: 0 5px 10px;
    font-size: 2.0rem;
  }

  .sedai_ttl span {
    font-size: 2.3rem;
  }

  .sedai_lead {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 0 16px;
    margin: 0;
  }
  .dream-ttlbloc p {
    font-size: 15px;
  }

  .sedai_lead p .ja {
    font-size: 27.52px;
  }

  .sedai_lead p .en {
    font-size: 39.63px;
  }

  .sedai .idx_lst {
    font-size: 15px;
  }

  .sedai .idx_lst li {
    line-height: 1.3;
  }

  .sedai .idx_lst li span {
    display: block;
  }

  .sedai .idx_lst li em {
    font-size: 16px;
  }

  .sedai_fig {
    position: static;
    width: 100%;
    margin: 10px 0;
  }

  .sedai .idx_gnr_btn {
    right: 36px;
    bottom: 20px;
  }
	
.sedai .idx_lst li::before {
  margin-right: 5px;
}

  .idx_gnr_01 {
    background-image: none;
  }

  .idx_gnr_01 .sedai_lead p {
    margin-right: 0;
  }

  .idx_gnr_01 .sedai_lead figure img {
    width: 109px;
    aspect-ratio: 109 / 149;
  }

  .idx_gnr_01 .sedai_fig {
    width: 100%;
  }

  .idx_gnr_01 .sedai_fig img {
    aspect-ratio: 366 / 272;
    padding: 10px;
  }

  .idx_gnr_02 {
    background-image: none;
  }

  .idx_gnr_02 .sedai_lead p {
    margin-right: 0;
  }

  .idx_gnr_02 .sedai_lead figure img {
    width: 103px;
    aspect-ratio: 103 / 138;
  }

  .idx_gnr_03 {
    background-image: none;
  }

  .idx_gnr_03 .sedai_lead p {
    margin-right: 0;
  }

  .idx_gnr_03 .sedai_lead figure img {
    width: 117px;
    aspect-ratio: 117 / 144;
  }

  .idx_gnr_04 {
    background-image: none;
  }

  .idx_gnr_04 .sedai_lead p {
    margin-right: 0;
  }

  .idx_gnr_04 .sedai_lead figure img {
    width: 117px;
    aspect-ratio: 117 / 144;
  }

  .idx_gnr_05 {
    background-image: none;
  }

  .idx_gnr_05 .sedai_lead p {
    margin-right: 0;
  }

  .idx_gnr_05 .sedai_lead figure img {
    width: 117px;
    aspect-ratio: 117 / 144;
  }

  .idx_gnr_05 .idx_lst li:nth-of-type(2),
  .idx_gnr_05 .idx_lst li:nth-of-type(3) {
    padding-left: 0;
  }
	
	.idx_gnr_03 .idx_lst li:nth-of-type(2),
.idx_gnr_03 .idx_lst li:nth-of-type(3) {
  padding-left: 0;
}
	
		.idx_gnr_04 .idx_lst li:nth-of-type(2),
.idx_gnr_04 .idx_lst li:nth-of-type(3) {
  padding-left: 0;
}
	
.idx_lst li {
  padding-left: 0;
}
.idx_gnr_02 .sedai_fig,
.idx_gnr_03 .sedai_fig {
	width:100%;
	}

}

/* -------------------
   sedai内のボタンデザイン
------------------- */
.sedai .btn03{
  margin-top: 24px;
}

.sedai .btn03 a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 1em 3.2em 1em 1.6em;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.6;
  text-decoration: none;
  background: linear-gradient(135deg, #e87432 0%, #d96a32 100%);
  border: 1px solid rgba(200, 100, 50, 0.7);
  box-shadow:
    0 10px 24px rgba(200, 100, 50, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    opacity .2s ease;
  overflow: hidden;
}

/* 内側の細いライン */
.sedai .btn03 a::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

/* 右矢印 */
.sedai .btn03 a::after {
  content: "→";
  position: absolute;
  right: 1.2em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 400;
  transition: transform .2s ease;
}

/* hover */
.sedai .btn03 a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(200, 100, 50, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #d96a32 0%, #c05a20 100%);
}

.sedai .btn03 a:hover::after {
  transform: translateY(-50%) translateX(4px);
}

/* モバイル */
@media screen and (max-width: 767px) {
  .sedai .btn03 a {
    display: flex;
    width: 100%;
    min-width: 0;
    padding: .95em 2.8em .95em 1.2em;
    font-size: 14px;
  }

  .sedai .btn03 a::after {
    right: 1em;
  }

}

/*==================================================================================================================================

  *担当歯科医師紹介ブロック

==================================================================================================================================*/
.denture-staff {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background:
  radial-gradient(circle at 18% 18%, rgba(255,255,255,.65), transparent 34%),
  linear-gradient(180deg, rgba(251,248,239,.68) 0%, rgba(246,238,219,.68) 100%),
  url("../images/top/doctor_backireba.png") center center / cover no-repeat;
color: #3f2118;
}

.denture-staff__inner {
  margin: 0 30px;
}

.denture-staff__head {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-bottom: 32px;
  margin-left: 2%;
}

.denture-staff__lead {
  display: inline-block;
  margin: 0 0 14px;
  padding: 0.28em 0.9em;
  color: #ef7a1a;
  font-size: clamp(18px, 1.2vw, 24px);
  letter-spacing: 0.12em;
  background: rgba(255, 252, 242, 0.84);
  box-shadow: 0 18px 45px rgba(154, 91, 35, 0.12);
}

.denture-staff__title {
  margin: 0 0 26px;
  color: #3f2118;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(36px, 4.2vw, 68px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.55);
}

.denture-staff__title::first-letter {
  color: #ef7a1a;
}

.denture-staff__checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.denture-staff__checklist li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 40px;
  color: #4d3028;
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
}

.denture-staff__checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 24px;
  height: 24px;
  border: 1px solid #ef7a1a;
  border-radius: 50%;
  color: #ef7a1a;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  background: #fffaf0;
  box-sizing: border-box;
}

/* メインカード */
.denture-staff__card {
  position: relative;
  padding: 40px 42px 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 242, 0.86) 0%, rgba(255, 252, 242, 0.96) 100%);
  border: 1px solid #efc79b;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(154, 91, 35, 0.12);
  overflow: hidden;
}

/* 背景の薄いグリッド感 */
.denture-staff__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(239, 122, 26, 0.04) 0,
      rgba(239, 122, 26, 0.04) 1px,
      transparent 1px,
      transparent 12px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(239, 122, 26, 0.035) 0,
      rgba(239, 122, 26, 0.035) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity: 0.55;
  pointer-events: none;
}

/* 右上の斜め装飾 */
.denture-staff__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 260px;
  background:
    linear-gradient(
      155deg,
      rgba(239, 122, 26, 0.10) 0%,
      rgba(255,255,255,0) 38%,
      rgba(239, 122, 26, 0.18) 72%,
      rgba(239, 122, 26, 0.05) 100%
    );
  clip-path: polygon(34% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/* 人物写真 */
.denture-staff__photo {
  position: absolute;
  left: 42px;
  top: 44px;
  width: 32%;
  z-index: 2;
}

.denture-staff__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(154, 91, 35, 0.16);
}

/* テキストエリア */
.denture-staff__content {
  position: relative;
  z-index: 3;
  margin-left: 38%;
  padding-top: 42px;
  padding-bottom: 48px;
}

.denture-staff__position {
  margin: 0 0 16px;
  color: #8a5b43;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.denture-staff__name {
  margin: 0 0 24px;
  color: #3f2118;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(36px, 3.2vw, 58px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.denture-staff__name span {
  display: block;
  margin-top: 8px;
  margin-left: 120px;
  color: #e9a15b;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 1.8vw, 32px);
  letter-spacing: 0.04em;
}

.denture-staff__message {
  margin: 0 0 18px;
  color: #ef7a1a;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.denture-staff__text {
  margin: 0 0 14px;
  color: #5a4038;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 2.05;
  letter-spacing: 0.04em;
}

/* 下部情報帯 */
.denture-staff__bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 28px 34px;
  background: linear-gradient(90deg, #ef7a1a 0%, #f4a256 48%, #ef7a1a 100%);
}

.denture-staff__bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.10) 0,
      rgba(255,255,255,0.10) 1px,
      transparent 1px,
      transparent 8px
    );
  opacity: 0.25;
  pointer-events: none;
}

.denture-staff__bottom-col {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  background: rgba(255, 252, 242, 0.94);
  border-radius: 6px;
}

.denture-staff__bottom-ttl {
  margin: 0 0 12px;
  color: #3f2118;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.denture-staff__bottom-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.denture-staff__bottom-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 1em;
  color: #5a4038;
  font-size: 15px;
  line-height: 1.8;
  font-family: "Noto Serif JP", serif;
}

.denture-staff__bottom-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #ef7a1a;
}

/* ========================================
   タブレット
======================================== */
@media screen and (max-width: 1100px) {
  .denture-staff__photo {
    width: 32%;
    left: 28px;
  }

  .denture-staff__content {
    margin-left: 36%;
    padding-top: 28px;
  }
}

/* ========================================
   モバイル
======================================== */
@media screen and (max-width: 767px) {
  .denture-staff {
    padding: 70px 16px;
  }

  .denture-staff__inner {
    margin: 0;
  }

  .denture-staff__head {
    margin-left: 0;
    margin-bottom: 24px;
  }

  .denture-staff__lead {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .denture-staff__title {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.45;
  }

  .denture-staff__checklist li {
    padding-left: 34px;
    font-size: 15px;
    line-height: 1.7;
  }

  .denture-staff__checklist li::before {
    width: 22px;
    height: 22px;
    line-height: 20px;
  }

  .denture-staff__card {
    padding: 18px 16px 0;
    border-radius: 10px;
  }

  .denture-staff__card::after {
    width: 62%;
    height: 170px;
  }

  .denture-staff__photo {
    position: static;
    width: 100%;
    max-width: 290px;
    margin: 0 auto 20px;
  }

  .denture-staff__content {
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 24px;
  }

  .denture-staff__position {
    font-size: 14px;
  }

  .denture-staff__name {
    font-size: 31px;
    margin-bottom: 18px;
  }

  .denture-staff__name span {
    margin-left: 88px;
    font-size: 22px;
  }

  .denture-staff__message {
    font-size: 16px;
    line-height: 1.8;
  }

  .denture-staff__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .denture-staff__bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    margin: 0 -16px;
  }

  .denture-staff__bottom-col {
    padding: 14px;
  }

  .denture-staff__bottom-ttl {
    font-size: 15px;
  }

  .denture-staff__bottom-list li {
    font-size: 14px;
  }
}

/*==================================================================================================================================

  *入れ歯治療の流れブロック

==================================================================================================================================*/
.denture-flow {
  position: relative;
  padding: 70px 20px 80px;
  overflow: hidden;
  color: #3f2118;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.95), transparent 34%),
    linear-gradient(180deg, #fbf8ef 0%, #f6eedb 100%);
}

.denture-flow::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background:
    radial-gradient(circle at 85% 40%, rgba(239,122,26,.12), transparent 28%),
    linear-gradient(135deg, transparent 0%, rgba(239,122,26,.08) 100%);
  pointer-events: none;
}

.denture-flow__inner {
  position: relative;
  z-index: 1;
  max-width: 1640px;
  margin: 0 auto;
}

/* heading */
.denture-flow__head {
  position: relative;
  z-index: 3;
  max-width: 770px;
}

.denture-flow__lead {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 24px;
  color: #ef7a1a;
  font-size: clamp(18px, 1.7vw, 30px);
  font-weight: 500;
  letter-spacing: .18em;
}

.denture-flow__lead::before,
.denture-flow__lead::after {
  content: "";
  width: 62px;
  height: 10px;
  background:
    radial-gradient(circle, #ef7a1a 2px, transparent 3px) left center / 14px 10px repeat-x;
  opacity: .8;
}

.denture-flow__title {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 65px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: .12em;
}

.denture-flow__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74%;
  height: 2px;
  background-image: linear-gradient(to right, #ef7a1a 42%, transparent 42%);
  background-size: 7px 2px;
  background-repeat: repeat-x;
}

.denture-flow__title span {
  color: #ef7a1a;
}

.denture-flow__text {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  line-height: 1.8;
  letter-spacing: .16em;
}

/* visual */
.denture-flow__visual {
  position: absolute;
  top: -70px;
  right: 0;
  width: 56%;
  height: 390px;
  overflow: hidden;
  border-bottom-left-radius: 18px;
}

.denture-flow__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251,248,239,1) 0%, rgba(251,248,239,.65) 22%, rgba(251,248,239,0) 50%),
    linear-gradient(180deg, rgba(251,248,239,0) 65%, rgba(251,248,239,1) 100%);
}

.denture-flow__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.denture-flow__bubble {
  position: absolute;
  left: 8%;
  bottom: 60px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border: 1px solid #efc79b;
  border-radius: 50%;
  background: rgba(255, 252, 242, .88);
  box-shadow: 0 14px 30px rgba(154, 91, 35, .10);
  text-align: center;
}

.denture-flow__bubble p {
  margin: 0;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .1em;
}

.denture-flow__bubble span {
  color: #ef7a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
}

/* steps */
.denture-flow__list {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin: 48px 0 30px;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.denture-flow__item {
  position: relative;
  min-height: 350px;
  padding: 0 28px 32px;
  border: 1px solid #efc79b;
  border-radius: 10px;
  background: rgba(255, 252, 242, .82);
  box-shadow: 0 12px 26px rgba(154, 91, 35, .08);
  text-align: center;
}

.denture-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  height: 34px;
  transform: translateY(-50%);
  background: #ef9b42;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 22% 50%);
  z-index: 2;
}

.denture-flow__num {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: -10px auto 22px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #ff8a18 0%, #ef6f00 100%);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .04em;
  font-family: "Noto Serif JP", serif;
}

.denture-flow__icon {
  display: grid;
  place-items: center;
  width: 135px;
  height: 135px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 0 0 6px rgba(239,122,26,.06);
}

.denture-flow__icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.denture-flow__body h3 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  line-height: 1.55;
  letter-spacing: .16em;
}

.denture-flow__body h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 92px;
  height: 1px;
  transform: translateX(-50%);
  background: #e8c293;
}

.denture-flow__body h3::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 7px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #ef7a1a;
}

.denture-flow__body p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .12em;
  text-align: left;
}

/* message */
.denture-flow__message {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 48px;
  min-height: 150px;
  padding: 24px 72px;
  border: 1px solid #efc79b;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255,245,219,.92) 0%, rgba(255,252,242,.82) 48%, rgba(255,235,184,.82) 100%);
  box-shadow: 0 12px 26px rgba(154, 91, 35, .08);
  overflow: hidden;
}

.denture-flow__message::after {
  content: "";
  position: absolute;
  right: 70px;
  bottom: 15px;
  width: 190px;
  height: 90px;
  border-radius: 60% 40% 70% 30%;
  background: rgba(161, 187, 102, .18);
  transform: rotate(-12deg);
}

.denture-flow__message-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255,255,255,.82);
}

.denture-flow__message-icon img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.denture-flow__message p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(27px, 2.5vw, 42px);
  line-height: 1.65;
  letter-spacing: .12em;
}

.denture-flow__message span {
  color: #ef7a1a;
}

.sp-only {
  display: none;
}

/* ========================================
   タブレット
======================================== */
@media screen and (max-width: 1200px) {
  .denture-flow__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 320px;
    margin-top: 30px;
    border-radius: 18px;
  }

  .denture-flow__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .denture-flow__item:not(:last-child)::after {
    display: none;
  }
}

/* ========================================
   モバイル
======================================== */
@media screen and (max-width: 767px) {
  .denture-flow {
    padding: 38px 16px 54px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .denture-flow__inner {
    max-width: 390px;
  }

  .denture-flow__head {
    max-width: none;
    text-align: center;
  }

  .denture-flow__lead {
    justify-content: center;
    width: fit-content;
    margin: 0 auto 22px;
    padding: 7px 18px;
    border: 1px solid #efc79b;
    border-radius: 999px;
    background: rgba(255,252,242,.82);
    font-size: 15px;
    letter-spacing: .12em;
  }

  .denture-flow__lead::before,
  .denture-flow__lead::after {
    width: 28px;
  }

  .denture-flow__title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 35px;
    line-height: 1.3;
    letter-spacing: .1em;
  }

  .denture-flow__title::after {
    left: 50%;
    width: 92%;
    transform: translateX(-50%);
    background-image: linear-gradient(to right, #9fba6d 42%, transparent 42%);
  }

  .denture-flow__text {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: .08em;
    text-align: left;
  }

  .denture-flow__visual {
    position: relative;
    width: 100%;
    height: 245px;
    margin: 20px 0 22px;
    border-radius: 12px;
  }

  .denture-flow__visual::before {
    background:
      linear-gradient(90deg, rgba(251,248,239,.9) 0%, rgba(251,248,239,.15) 42%, rgba(251,248,239,0) 72%),
      linear-gradient(180deg, rgba(251,248,239,0) 60%, rgba(251,248,239,.55) 100%);
  }

  .denture-flow__visual img {
    object-position: center;
  }

  .denture-flow__bubble {
    left: 18px;
    bottom: 28px;
    width: 130px;
    height: 130px;
  }

  .denture-flow__bubble p {
    font-size: 13px;
    line-height: 1.7;
  }

  .denture-flow__bubble span {
    font-size: 22px;
  }

  .denture-flow__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 0 22px;
  }

  .denture-flow__item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "num body"
      "icon body";
    align-items: center;
    column-gap: 18px;
    row-gap: 10px;
    min-height: auto;
    padding: 18px 18px;
    text-align: left;
  }

  .denture-flow__num {
    grid-area: num;
    width: 58px;
    height: 58px;
    margin: 0 auto;
    font-size: 23px;
  }

  .denture-flow__icon {
    grid-area: icon;
    width: 74px;
    height: 74px;
    margin: 0 auto;
  }

  .denture-flow__icon img {
    width: 44px;
    height: 44px;
  }

  .denture-flow__body {
    grid-area: body;
    min-width: 0;
    padding-left: 18px;
    border-left: 1px dotted #efc79b;
  }

  .denture-flow__body h3 {
    margin-bottom: 8px;
    padding-bottom: 0;
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: 0.04em;
    word-break: keep-all;
  }

  .denture-flow__body h3::before,
  .denture-flow__body h3::after {
    display: none;
  }

  .denture-flow__body p {
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .denture-flow__item:not(:last-child)::after {
    display: block;
    top: auto;
    right: auto;
    left: 50%;
    bottom: -22px;
    width: 30px;
    height: 22px;
    transform: translateX(-50%) rotate(90deg);
    background: #8fa75f;
    z-index: 4;
  }

  .denture-flow__message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-height: auto;
    padding: 24px 20px 26px;
    border-radius: 10px;
    text-align: center;
  }

  .denture-flow__message-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto;
  }

  .denture-flow__message-icon img {
    width: 58px;
    height: 58px;
  }

  .denture-flow__message p {
    margin: 0;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .denture-flow__message span {
    display: inline;
    color: #ef7a1a;
  }

  .denture-flow__message::after {
    right: 12px;
    bottom: 8px;
    width: 118px;
    height: 62px;
  }
}

/*==================================================================================================================================

  *料金についてブロック

==================================================================================================================================*/
.denture-price {
  position: relative;
  padding: 64px 20px 82px;
  overflow: hidden;
  color: #3f2118;
  background:
    radial-gradient(circle at 20% 16%, rgba(255,255,255,.95), transparent 34%),
    linear-gradient(180deg, #fbf8ef 0%, #f6eedb 100%);
}

.denture-price::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #efc79b;
  border-radius: 0 0 18px 18px;
  pointer-events: none;
}

.denture-price::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 520px;
  height: 260px;
  border-radius: 60% 40% 70% 30%;
  background: rgba(239, 122, 26, .08);
  transform: rotate(-12deg);
  pointer-events: none;
}

.denture-price__inner {
  position: relative;
  z-index: 1;
  max-width: 1640px;
  margin: 0 auto;
}

/* heading */
.denture-price__head {
  position: relative;
  z-index: 3;
  width: 58%;
  text-align: center;
}

.denture-price__lead {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
  color: #ef7a1a;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 500;
  letter-spacing: .18em;
}

.denture-price__lead::before,
.denture-price__lead::after {
  content: "";
  width: 62px;
  height: 10px;
  background:
    radial-gradient(circle, #ef7a1a 2px, transparent 3px) left center / 14px 10px repeat-x;
  opacity: .8;
}

.denture-price__title {
  position: relative;
  margin: 0 0 32px;
  padding-bottom: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 65px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .18em;
}

.denture-price__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 72%;
  height: 2px;
  transform: translateX(-50%);
  background-image: linear-gradient(to right, #ef7a1a 42%, transparent 42%);
  background-size: 7px 2px;
  background-repeat: repeat-x;
}

.denture-price__catch {
  margin: 0 0 34px;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  line-height: 1.65;
  letter-spacing: .13em;
  text-align: left;
}

.denture-price__catch span {
  color: #ef7a1a;
}

/* visual */
.denture-price__visual {
  position: absolute;
  top: -64px;
  right: -20px;
  width: 47%;
  height: 445px;
  overflow: hidden;
  border-bottom-left-radius: 18px;
}

.denture-price__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251,248,239,1) 0%, rgba(251,248,239,.42) 35%, rgba(251,248,239,0) 70%),
    linear-gradient(180deg, rgba(251,248,239,0) 62%, rgba(251,248,239,.95) 100%);
}

.denture-price__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* price card */
.denture-price__main {
  position: relative;
  z-index: 4;
  width: 68%;
  margin-bottom: 32px;
  padding: 30px 36px 26px;
  border: 1px solid #efc79b;
  border-radius: 12px;
  background-color: #ffffff;
  background-image: radial-gradient(circle, #fbab2545 1px, transparent 1px);
  background-position: 0 0;
  background-size: 12px 12px;
  box-shadow: 0 12px 26px rgba(154, 91, 35, .08);
}

.denture-price__label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 370px;
  min-height: 42px;
  margin-bottom: 20px;
  padding: 8px 24px;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(90deg, #bf8b12 0%, #d9a526 100%);
  font-size: clamp(16px, 1.15vw, 22px);
  font-weight: 700;
  letter-spacing: .08em;
  font-family: "Noto Serif JP", serif;
}

.denture-price__fee {
  display: flex;
  align-items: baseline;
  gap: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9d2ad;
}

.denture-price__name {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(30px, 2.3vw, 44px);
  line-height: 1.3;
  letter-spacing: .12em;
}

.denture-price__name span {
  font-size: .72em;
}

.denture-price__amount {
  margin: 0;
  color: #3f2118;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3.8vw, 62px);
  line-height: 1;
  white-space: nowrap;
}

.denture-price__amount span {
  color: #ef7a1a;
  font-size: 1.3em;
  letter-spacing: .04em;
}

.denture-price__amount small {
  display: inline-block;
  margin-left: 12px;
  font-size: .34em;
  vertical-align: middle;
}

.denture-price__note {
  margin: 18px 0 0;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.8;
  letter-spacing: .08em;
}

/* points */
.denture-price__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 30px;
}

.denture-price__point {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 26px;
  min-height: 205px;
  padding: 26px 30px;
  border: 1px solid #efc79b;
  border-radius: 12px;
  background: rgba(255, 252, 242, .82);
  box-shadow: 0 12px 26px rgba(154, 91, 35, .07);
}

.denture-price__point-icon {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(255,255,255,.74);
  box-shadow: inset 0 0 0 6px rgba(239,122,26,.06);
}

.denture-price__point-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.denture-price__point-body h3 {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(25px, 2vw, 36px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .12em;
}

.denture-price__point-body h3 span {
  color: #ef7a1a;
}

.denture-price__point-body p {
  margin: 0;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: .08em;
}

/* cta */
.denture-price__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 34px;
  padding: 20px 36px;
  border: 1px dotted #ef9b42;
  border-radius: 12px;
  background: rgba(255, 252, 242, .72);
}

.denture-price__cta-text {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 28px;
}

.denture-price__cta-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 24px rgba(154, 91, 35, .10);
}

.denture-price__cta-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.denture-price__cta-text p {
  margin: 0;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .1em;
}

.denture-price__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 86px;
  padding: 18px 88px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(90deg, #a8d76f 0%, #79B652 45%, #5f9f3d 100%);
  box-shadow: 0 12px 24px rgba(239, 122, 26, .22);
  font-size: clamp(25px, 2vw, 38px);
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .25s ease, transform .25s ease;
  font-family: "Noto Serif JP", serif;
}

.denture-price__button:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.denture-price__button-icon {
  font-size: 16px;
}

.denture-price__button-arrow {
  position: absolute;
  right: 34px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #ef7a1a;
  background: #fff;
  font-size: 44px;
  line-height: 1;
}

.sp-only {
  display: none;
}

/* ========================================
   タブレット
======================================== */
@media screen and (max-width: 1200px) {
  .denture-price__head {
    width: 100%;
  }

  .denture-price__catch {
    text-align: center;
  }

  .denture-price__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 340px;
    margin-bottom: 24px;
    border-radius: 16px;
  }

  .denture-price__main {
    width: 100%;
  }

  .denture-price__points {
    grid-template-columns: 1fr;
  }

  .denture-price__point {
    min-height: auto;
  }

  .denture-price__cta {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   モバイル
======================================== */
@media screen and (max-width: 767px) {
  .denture-price {
    padding: 38px 14px 48px;
  }

  .denture-price::before {
    border-radius: 0 0 12px 12px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .denture-price__inner {
    max-width: 390px;
  }

  .denture-price__head {
    text-align: center;
  }

  .denture-price__lead {
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 15px;
    letter-spacing: .12em;
  }

  .denture-price__lead::before,
  .denture-price__lead::after {
    width: 32px;
  }

  .denture-price__title {
    margin-bottom: 22px;
    padding-bottom: 20px;
    font-size: 40px;
    letter-spacing: .16em;
  }

  .denture-price__title::after {
    width: 72%;
    background-image: linear-gradient(to right, #9fba6d 42%, transparent 42%);
  }

  .denture-price__catch {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: .12em;
    text-align: center;
  }

  .denture-price__visual {
    height: 245px;
    margin-bottom: 22px;
    border-radius: 12px;
  }

  .denture-price__visual::before {
    background:
      linear-gradient(180deg, rgba(251,248,239,0) 52%, rgba(251,248,239,.68) 100%);
  }

  .denture-price__main {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    margin-bottom: 18px;
    padding: 20px 18px 18px;
    border-radius: 10px;
    text-align: center;
  }

  .denture-price__label {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    min-height: 36px;
    margin-bottom: 16px;
    padding: 8px 12px;
    font-size: 15px;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .denture-price__fee {
    display: block;
    width: 100%;
    min-width: 0;
    padding-bottom: 16px;
  }

  .denture-price__name {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .denture-price__amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .denture-price__amount span {
    font-size: 50px;
    letter-spacing: 0.02em;
  }

  .denture-price__amount small {
    margin-left: 6px;
    font-size: 13px;
  }

  .denture-price__note {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-align: left;
  }

  .denture-price__points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 18px;
  }

  .denture-price__point {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    min-height: auto;
    padding: 22px 20px 24px;
    border-radius: 10px;
    text-align: center;
  }

  .denture-price__point-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto;
  }

  .denture-price__point-icon img {
    width: 48px;
    height: 48px;
  }

  .denture-price__point-body {
    width: 100%;
  }

  .denture-price__point-body h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.55;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .denture-price__point-body p {
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: 0.06em;
    text-align: left;
  }

  .denture-price__cta {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 16px;
    border: 1px solid #a8bf74;
    border-radius: 10px;
  }

  .denture-price__cta-text {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
  }

  .denture-price__cta-icon {
    width: 68px;
    height: 68px;
  }

  .denture-price__cta-icon img {
    width: 42px;
    height: 42px;
  }

  .denture-price__cta-text p {
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: .06em;
  }

  .denture-price__button {
    gap: 14px;
    min-height: 66px;
    padding: 14px 58px 14px 22px;
    border-radius: 9px;
    font-size: 19px;
    letter-spacing: .06em;
    font-weight: 400;
  }

  .denture-price__button-arrow {
    right: 18px;
    width: 38px;
    height: 38px;
    font-size: 34px;
  }
}

/*==================================================================================================================================

  *症例・動画紹介ブロック

==================================================================================================================================*/
.denture-case {
  position: relative;
  padding: 70px 20px 84px;
  overflow: hidden;
  color: #3f2118;
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #f2b3620a 2px, transparent 2px), linear-gradient(#f2b3620a 2px, transparent 2px);
  background-position: 10px 10px;
  background-size: 22px 22px;
}
}

.denture-case::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background:
    radial-gradient(circle at 88% 30%, rgba(121, 182, 82, .13), transparent 28%),
    linear-gradient(135deg, transparent 0%, rgba(239, 122, 26, .08) 100%);
  pointer-events: none;
}

.denture-case__inner {
  position: relative;
  z-index: 1;
  max-width: 1640px;
  margin: 0 auto;
}

/* heading */
.denture-case__head {
  margin-bottom: 36px;
  text-align: center;
}

.denture-case__lead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 560px;
  min-height: 56px;
  margin: 0 0 28px;
  padding: 8px 34px;
  border: 1px solid #ef9b42;
  border-radius: 999px;
  color: #ef7a1a;
  background: rgba(255, 252, 242, .78);
  font-size: clamp(18px, 1.4vw, 25px);
  font-weight: 700;
  letter-spacing: .16em;
}

.denture-case__lead-icon {
  color: #79B652;
  font-size: 26px;
}

.denture-case__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  margin: 0 0 34px;
  font-family: "Noto Serif JP", serif;
  font-size: 65px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .18em;
}

.denture-case__title::before,
.denture-case__title::after {
  content: "";
  width: 260px;
  height: 2px;
  background-image: linear-gradient(to right, #ef9b42 42%, transparent 42%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.denture-case__catch {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 35px;
  line-height: 1.6;
  letter-spacing: .12em;
}

.denture-case__catch span {
  color: #ef7a1a;
}

/* contents */
.denture-case__contents {
  display: grid;
  grid-template-columns: 3fr .95fr;
  gap: 22px;
  align-items: stretch;
}

.denture-case__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.denture-case__card,
.denture-case__movie {
  position: relative;
  border: 1px solid #efc79b;
  border-radius: 12px;
  background: rgba(255, 252, 242, .86);
  box-shadow: 0 12px 28px rgba(154, 91, 35, .08);
  overflow: hidden;
}

.denture-case__card {
  padding: 28px 28px 24px;
}

.denture-case__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  min-height: 34px;
  margin: 0 auto 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #ff941f 0%, #ef7a1a 100%);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .12em;
  font-family: "Noto Serif JP", serif;
}

.denture-case__card-title {
  margin: 0 0 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .12em;
  text-align: center;
}

/* before after photos */
.denture-case__photos {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.denture-case__photos figure {
  margin: 0;
}

.denture-case__photos img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.denture-case__photos figcaption {
  margin-top: 10px;
  color: #3f2118;
  font-size: 14px;
  text-align: center;
  letter-spacing: .08em;
}

.denture-case__photos figure:last-child figcaption {
  color: #ef7a1a;
}

.denture-case__arrow {
  position: absolute;
  left: 50%;
  top: calc(50% - 14px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #fff;
  background: #ef7a1a;
  box-shadow: 0 8px 18px rgba(239, 122, 26, .24);
  font-size: 34px;
  line-height: 1;
}

.denture-case__text {
  margin: 0 0 22px;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .1em;
}

.denture-case__point {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 14px 18px;
  border: 1px solid #efc79b;
  border-radius: 10px;
  background: rgba(255, 249, 236, .76);
}

.denture-case__point-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid #79B652;
  border-radius: 50%;
  color: #79B652;
  font-size: 24px;
}

.denture-case__point p {
  margin: 0;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .08em;
}

/* movie */
.denture-case__movie {
  padding: 15px 26px;
  background:
    linear-gradient(180deg, rgba(255, 246, 219, .86), rgba(255, 252, 242, .92));
  text-align: center;
}

.denture-case__movie-ribbon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 260px;
  min-height: 42px;
  margin-bottom: 24px;
  padding: 8px 28px;
  color: #fff;
  background: linear-gradient(90deg, #79B652 0%, #5e9d3e 100%);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
  transform: rotate(-4deg);
  
}

.denture-case__movie-title {
  margin: 0 0 22px;
  color: #ef7a1a;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 2.1vw, 37px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .12em;
}

.denture-case__movie-visual {
  position: relative;
  margin-bottom: 24px;
}

.denture-case__movie-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16; /* Shorts向け */
  overflow: hidden;
  border-radius: 16px;
}

.denture-case__movie-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.denture-case__play {
  position: absolute;
  left: 20%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 26px rgba(154, 91, 35, .15);
  cursor: pointer;
}

.denture-case__play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 28px solid #79B652;
}

.denture-case__movie-text {
  margin: 0;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: .08em;
}

/* note */
.denture-case__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 28px 0 26px;
  font-size: 16px;
  letter-spacing: .12em;
}

.denture-case__note::before,
.denture-case__note::after {
  content: "";
  width: 230px;
  height: 2px;
  background-image: linear-gradient(to right, #79B652 42%, transparent 42%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

/* button */
.denture-case__button-wrap {
  display: flex;
  justify-content: center;
}

.denture-case__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: min(100%, 700px);
  min-height: 86px;
  padding: 18px 96px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(90deg, #f6b21f 0%, #ef7a1a 48%, #ef6f00 100%);
  box-shadow: 0 14px 26px rgba(239, 122, 26, .22);
  font-size: clamp(27px, 2vw, 38px);
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  transition: opacity .25s ease, transform .25s ease;
  font-family: "Noto Serif JP", serif;
}

.denture-case__button:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.denture-case__button-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #79B652;
  background: #fff;
  font-size: 22px;
}

.denture-case__button-arrow {
  position: absolute;
  right: 34px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #ef7a1a;
  background: #fff;
  font-size: 44px;
  line-height: 1;
}

.sp-only {
  display: none;
}

/* ========================================
   タブレット
======================================== */
@media screen and (max-width: 1200px) {
  .denture-case__contents {
    grid-template-columns: 1fr;
  }

  .denture-case__cards {
    grid-template-columns: 1fr;
  }

  .denture-case__movie {
    /* display: grid; */
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 24px;
    text-align: left;
  }

  .denture-case__movie-ribbon,
  .denture-case__movie-title,
  .denture-case__movie-text {
    grid-column: 1;
  }

  .denture-case__movie-visual {
    grid-column: 2;
    grid-row: 1 / 4;
    margin-bottom: 0;
  }
}

/* ========================================
   モバイル
======================================== */
@media screen and (max-width: 767px) {
  .denture-case {
    padding: 42px 14px 54px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .denture-case__inner {
    max-width: 390px;
  }

  .denture-case__head {
    margin-bottom: 26px;
  }

  .denture-case__lead {
    min-width: 0;
    width: fit-content;
    min-height: 44px;
    margin-bottom: 20px;
    padding: 8px 18px;
    gap: 10px;
    font-size: 15px;
    letter-spacing: .08em;
  }

  .denture-case__lead-icon {
    font-size: 22px;
  }

  .denture-case__title {
    gap: 0;
    margin-bottom: 22px;
    padding-bottom: 18px;
    font-size: 40px;
    line-height: 1.28;
    letter-spacing: .12em;
  }

  .denture-case__title::before,
  .denture-case__title::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 88%;
    transform: translateX(-50%);
    background-image: linear-gradient(to right, #79B652 42%, transparent 42%);
  }

  .denture-case__title::before {
    display: none;
  }

  .denture-case__catch {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: .08em;
  }

  .denture-case__contents {
    display: block;
  }

  .denture-case__cards {
    display: grid;
    gap: 16px;
  }

  .denture-case__card {
    padding: 18px 16px 20px;
    border-radius: 10px;
  }

  .denture-case__label {
    width: 116px;
    min-height: 34px;
    margin: 0 0 12px;
    font-size: 15px;
  }

  .denture-case__card-title {
    /* margin: -42px 0 14px; */
    /* padding-left: 135px; */
    font-size: 24px;
    line-height: 1.45;
    letter-spacing: .08em;
    text-align: left;
  }

  .denture-case__photos {
    gap: 10px;
    margin-bottom: 12px;
  }

  .denture-case__photos img {
    aspect-ratio: 1.45 / 1;
    border-radius: 6px;
  }

  .denture-case__photos figcaption {
    margin-top: 7px;
    font-size: 12px;
  }

  .denture-case__arrow {
    top: calc(50% - 10px);
    width: 38px;
    height: 38px;
    font-size: 30px;
  }

  .denture-case__text {
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: .06em;
  }

  .denture-case__point {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    min-height: auto;
    padding: 12px 14px;
  }

  .denture-case__point-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .denture-case__point p {
    font-size: 16px;
    line-height: 1.7;
  }

  .denture-case__movie {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    gap: 12px 16px;
    margin-top: 16px;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
  }

  .denture-case__movie-ribbon {
    /* grid-column: 1 / -1; */
    min-width: 0;
    width: fit-content;
    min-height: 34px;
    padding: 6px 16px;
    font-size: 16px;
    letter-spacing: .06em;
  }

  .denture-case__movie-title {
    grid-column: 1;
    margin: 0;
    font-size: 22px;
    line-height: 1.55;
  }

  .denture-case__movie-visual {
    grid-column: 1 / -1;
    grid-row: auto;
    margin: 0;
  }

  .denture-case__movie-visual img {
    aspect-ratio: 1.9 / 1;
  }

  .denture-case__play {
    left: 20%;
    width: 82px;
    height: 52px;
    border-radius: 999px;
  }

  .denture-case__play span {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 20px;
  }

  .denture-case__movie-text {
    grid-column: 1 / -1;
    font-size: 16px;
    line-height: 1.9;
  }

  .denture-case__note {
    gap: 12px;
    margin: 24px 0 18px;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .08em;
    text-align: center;
  }

  .denture-case__note::before,
  .denture-case__note::after {
    width: 54px;
  }

  .denture-case__button {
    gap: 18px;
    min-height: 68px;
    padding: 14px 62px 14px 24px;
    border-radius: 10px;
    font-size: 20px;
    letter-spacing: .08em;
    font-weight: 400;
  }

  .denture-case__button-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .denture-case__button-arrow {
    right: 18px;
    width: 38px;
    height: 38px;
    font-size: 34px;
  }
}

/*==================================================================================================================================

  *ご家族からの無料相談ブロック

==================================================================================================================================*/
.denture-family {
  position: relative;
  padding: 70px 20px 76px;
  overflow: hidden;
  color: #3f2118;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.94), transparent 34%),
    linear-gradient(180deg, #fbf8ef 0%, #fffcf6 100%);
}

.denture-family::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -90px;
  height: 250px;
  background:
    repeating-radial-gradient(
      ellipse at 50% 100%,
      rgba(239, 122, 26, .14) 0 1px,
      transparent 1px 18px
    );
  opacity: .35;
  pointer-events: none;
}

.denture-family__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1640px);
  margin: 0 auto;
}

/* ========================================
   見出し
======================================== */
.denture-family__head {
  position: relative;
  z-index: 3;
  width: 70%;
}

.denture-family__lead {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  padding: 10px 42px;
  border: 1px solid #efc79b;
  border-radius: 999px;
  color: #3f2118;
  background: rgba(255, 252, 242, .78);
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 700;
  letter-spacing: .1em;
}

.denture-family__lead-icon {
  color: #79B652;
  font-size: 28px;
}

.denture-family__title {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 30px;
  font-family: "Noto Serif JP", serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
}

.denture-family__title span {
  color: #ef7a1a;
  font-size: 1.15em;
}

.denture-family__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 2px;
  background-image: linear-gradient(to right, #79B652 42%, transparent 42%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.denture-family__text {
  margin: 0 0 34px;
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .1em;
}

/* ========================================
   メイン画像
======================================== */
.denture-family__visual {
  overflow: visible;
  position: absolute;
  top: -70px;
  right: -20px;
  width: 49%;
  height: 440px;
  border-bottom-left-radius: 18px;
}

.denture-family__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251,248,239,1) 0%, rgba(251,248,239,.46) 38%, rgba(251,248,239,0) 70%),
    linear-gradient(180deg, rgba(251,248,239,0) 65%, rgba(251,248,239,.95) 100%);
  border-bottom-left-radius: 18px;
  pointer-events: none;
}

.denture-family__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 18px;
}

.denture-family__circle {
  position: absolute;
  right: 70px;
  bottom: -70px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border: 1px solid #efc79b;
  border-radius: 50%;
  background: rgba(255, 252, 242, .9);
  box-shadow: 0 14px 30px rgba(154, 91, 35, .12);
  text-align: center;
}

.denture-family__circle span {
  color: #79B652;
  font-size: 35px;
  line-height: 1;
}

.denture-family__circle p {
  margin: 0;
  font-size: 16px;
  /* line-height: 1.75; */
  font-weight: 700;
  letter-spacing: .08em;
  margin-top: -60px;
}

.denture-family__circle strong {
  color: #ef7a1a;
  font-weight: 700;
}

/* ========================================
   PC：お悩み＋メッセージを横並びにする
======================================== */
.denture-family__content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 58% 1fr;
  gap: 34px;
  align-items: stretch;
}

/* HTMLに .denture-family__content がない場合でも崩れないように */
.denture-family__trouble {
  position: relative;
  z-index: 4;
  width: 58%;
}

.denture-family__trouble-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 18px;
  color: #79B652;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 1.9vw, 32px);
  font-weight: 700;
  letter-spacing: .12em;
}

.denture-family__trouble-title::before,
.denture-family__trouble-title::after {
  content: "";
  width: 46px;
  height: 2px;
  background: #79B652;
  transform: rotate(55deg);
}

.denture-family__trouble-title::after {
  transform: rotate(-55deg);
}

.denture-family__trouble-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.denture-family__trouble-card {
  position: relative;
  min-height: 250px;
  padding: 30px 26px 38px;
  border: 1px solid #efc79b;
  border-radius: 12px;
  background: rgba(255, 252, 242, .84);
  box-shadow: 0 12px 26px rgba(154, 91, 35, .08);
  text-align: center;
}

.denture-family__trouble-icon {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.76);
  box-shadow: inset 0 0 0 6px rgba(121, 182, 82, .08);
  color: #79B652;
  font-size: 42px;
}

.denture-family__trouble-icon img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.denture-family__trouble-body h3 {
  margin: 0 0 18px;
  color: #ef7a1a;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(19px, 1.45vw, 25px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
}

.denture-family__trouble-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: .06em;
}

.denture-family__trouble-arrow {
  position: absolute;
  right: 22px;
  top: 50%;
  display: none;
  color: #79B652;
  font-size: 44px;
  transform: translateY(-50%);
}

/* ========================================
   メッセージ
   absoluteをやめて重なり防止
======================================== */
.denture-family__message {
  position: relative;
  z-index: 4;
  display: grid;
  align-items: center;
  gap: 34px;
  width: 32%;
  min-height: 190px;
  margin-left: auto;
  margin-top: -250px;
  padding: 28px 46px;
  border: 1px solid #79B652;
  background:
    radial-gradient(circle at 92% 18%, rgba(189, 221, 169, 0.18) 0 18%, transparent 19%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, .35) 0,
      rgba(255, 255, 255, .35) 6px,
      rgba(251, 248, 239, .25) 6px,
      rgba(251, 248, 239, .25) 12px
    ),
    linear-gradient(135deg, rgba(255, 252, 242, .94) 0%, rgba(248, 244, 229, .9) 100%);
  box-shadow: 0 14px 32px rgba(154, 91, 35, .12);
  overflow: hidden;
}

.denture-family__message::before {
  content: "";
  position: absolute;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 0 999px 999px 0;
  background: #79B652;
}

.denture-family__message::after {
  content: "Support";
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(121, 182, 82, .12);
  font-family: "Noto Serif JP", serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  pointer-events: none;
}

.denture-family__message-body p:first-child {
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.6;
  letter-spacing: .1em;
}

.denture-family__message-body p:last-child {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .06em;
}

.denture-family__message-body span {
  color: #ef7a1a;
}

/* ========================================
   CTA
======================================== */
.denture-family__cta {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding: 22px 48px;
  border: 1px solid #efc79b;
  border-radius: 12px;
  background: rgba(255, 249, 236, .88);
  box-shadow: 0 12px 26px rgba(154, 91, 35, .08);
}

.denture-family__cta-lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 700;
  letter-spacing: .08em;
}

.denture-family__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 86px;
  padding: 18px 88px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(90deg, #f6b21f 0%, #ef7a1a 45%, #ef6f00 100%);
  box-shadow: 0 14px 28px rgba(239, 122, 26, .22);
  font-size: clamp(26px, 2.2vw, 40px);
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
}

.denture-family__button-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #79B652;
  background: #fff;
  font-size: 28px;
}

.denture-family__button-arrow {
  position: absolute;
  right: 34px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #ef7a1a;
  background: #fff;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.denture-family__cta-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: #79B652;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .08em;
}

/* ========================================
   下部サポート
======================================== */
.denture-family__support {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.denture-family__support li {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
  border-right: 1px dotted #efc79b;
}

.denture-family__support li:last-child {
  border-right: 0;
}

.denture-family__support-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.25), transparent 34%),
    linear-gradient(135deg, #8dc76b 0%, #79B652 52%, #5e9b40 100%);
  font-size: 26px;
  box-shadow: 0 10px 20px rgba(121, 182, 82, .22);
}

.denture-family__support-icon i {
  color: #fff;
  line-height: 1;
}

.denture-family__support p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: .06em;
}

.sp-only {
  display: none;
}

/* ========================================
   タブレット
======================================== */
@media screen and (max-width: 1200px) {
  .denture-family__head,
  .denture-family__trouble {
    width: 100%;
  }

  .denture-family__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 360px;
    margin: 28px 0;
    border-radius: 16px;
  }

  .denture-family__message {
    width: 98%;
    margin: 24px 0 0;
  }

  .denture-family__cta {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ========================================
   モバイル
======================================== */
@media screen and (max-width: 767px) {
  .denture-family {
    padding: 42px 14px 54px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .denture-family__inner {
    width: min(100%, 390px);
  }

  .denture-family__head {
    text-align: center;
  }

  .denture-family__lead {
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 18px;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .08em;
  }

  .denture-family__lead-icon {
    font-size: 22px;
  }

  .denture-family__title {
    margin-bottom: 20px;
    padding-bottom: 22px;
    font-size: 25px;
    line-height: 1.65;
    letter-spacing: .06em;
  }

  .denture-family__title span {
    font-size: 25px;
  }

  .denture-family__title::after {
    left: 50%;
    width: 92%;
    transform: translateX(-50%);
  }

  .denture-family__text {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }

  .denture-family__visual {
    height: 260px;
    margin: 18px 0 26px;
    border-radius: 12px;
  }

  .denture-family__visual::before {
    background:
      linear-gradient(180deg, rgba(251,248,239,0) 60%, rgba(251,248,239,.78) 100%);
  }

  .denture-family__visual img {
    object-position: center;
  }

  .denture-family__circle {
    left: 10px;
    bottom: 14px;
    width: 135px;
    height: 135px;
  }

  .denture-family__circle span {
    font-size: 26px;
  }

  .denture-family__circle p {
    font-size: 12px;
    /* line-height: 1.7; */
  }

  .denture-family__trouble-title {
    margin-bottom: 14px;
    font-size: 16px;
    gap: 0px;
  }

  .denture-family__trouble-title::before,
  .denture-family__trouble-title::after {
    width: 34px;
  }

  .denture-family__trouble-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .denture-family__trouble-card {
    display: block;
    grid-template-columns: 84px 1fr 22px;
    align-items: center;
    gap: 16px;
    min-height: auto;
    padding: 16px 18px;
    text-align: left;
  }

  .denture-family__trouble-icon {
    display: none;
  }

  .denture-family__trouble-icon img {
    width: 44px;
    height: 44px;
  }

  .denture-family__trouble-body h3 {
    margin-bottom: 6px;
    font-size: 20px;
    line-height: 1.45;
  }

  .denture-family__trouble-body p {
    font-size: 13px;
    line-height: 1.75;
  }

  .denture-family__trouble-arrow {
    display: block;
    right: 18px;
    font-size: 38px;
  }

  .denture-family__message {
    display: block;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    margin-top: 16px;
    padding: 18px;
    border-color: rgba(121, 182, 82, .38);
  }


  .denture-family__message-body p:first-child {
    font-size: 22px;
    line-height: 1.55;
  }

  .denture-family__message-body p:last-child {
    font-size: 16px;
    line-height: 1.8;
  }

  .denture-family__cta {
    display: block;
    margin-top: 18px;
    padding: 18px 16px;
    border-radius: 12px;
    text-align: center;
  }

  .denture-family__cta-lead {
    display: inline-block;
    margin: -34px auto 10px;
    padding: 7px 24px;
    color: #fff;
    background: #79B652;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
  }

  .denture-family__button {
    gap: 12px;
    min-height: 68px;
    padding: 14px 58px 14px 18px;
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .05em;
    font-weight: 400;
  }

  .denture-family__button-icon {
    width: 48px;
    height: 48px;
    font-size: 23px;
  }

  .denture-family__button-arrow {
    right: 18px;
    width: 38px;
    height: 38px;
    font-size: 34px;
  }

  .denture-family__cta-note {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.7;
  }

  .denture-family__support {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    margin-top: 14px;
    border-radius: 10px;
    overflow: hidden;
  }

  .denture-family__support li {
    display: block;
    padding: 14px 10px;
    border-right: 1px dotted rgba(121, 182, 82, .55);
    background: rgba(255, 252, 242, .78);
    text-align: center;
  }

  .denture-family__support span {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
    font-size: 22px;
  }

  .denture-family__support p {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: .03em;
  }
}

/*==================================================================================================================================

  *博多駅徒歩3分のむらつ歯科クリニックへ

==================================================================================================================================*/
.denture-access {
  position: relative;
  padding: 78px 20px 76px;
  overflow: hidden;
  color: #3f2118;
/*   background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.9), transparent 34%),
    linear-gradient(180deg, #fbf8ef 0%, #f6eedb 100%);*/
}

.denture-access::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -110px;
  height: 280px;
  background:
    repeating-radial-gradient(
      ellipse at 50% 100%,
      rgba(239, 122, 26, .14) 0 1px,
      transparent 1px 18px
    );
  opacity: .36;
  pointer-events: none;
}

.denture-access::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 170px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(121, 182, 82, .12);
  filter: blur(2px);
  pointer-events: none;
}

.denture-access__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1640px);
  margin: 0 auto;
}

/* heading */
.denture-access__head {
  margin-bottom: 42px;
  text-align: center;
}

.denture-access__lead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 24px;
  color: #79B652;
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 700;
  letter-spacing: .16em;
}

.denture-access__lead::before,
.denture-access__lead::after {
  content: "";
  width: 62px;
  height: 10px;
  background:
    radial-gradient(circle, #79B652 2px, transparent 3px) left center / 14px 10px repeat-x;
  opacity: .78;
}

.denture-access__title {
  margin: 0 0 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .12em;
}

.denture-access__title span {
  position: relative;
  display: inline-block;
  color: #ef7a1a;
}

.denture-access__title span::after {
  content: "";
  position: absolute;
  left: 0;
  right: .08em;
  bottom: .04em;
  z-index: -1;
  height: .32em;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(121, 182, 82, .25) 0,
      rgba(121, 182, 82, .25) 5px,
      rgba(255, 255, 255, .32) 5px,
      rgba(255, 255, 255, .32) 10px
    );
}

.denture-access__catch {
  margin: 0;
  font-size: clamp(19px, 1.55vw, 28px);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: .12em;
}

.denture-access__catch span {
  color: #ef7a1a;
  font-weight: 700;
}

/* main layout */
.denture-access__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, .75fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 34px;
}

/* visual */
.denture-access__visual-area {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-height: 460px;
}

.denture-access__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #efc79b;
  border-radius: 22px;
  background: #fffaf2;
  box-shadow: 0 16px 34px rgba(154, 91, 35, .12);
}

.denture-access__photo::before {
  content: "CLINIC";
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  color: rgba(255,255,255,.86);
  font-family: "Noto Serif JP", serif;
  font-size: 64px;
  letter-spacing: .16em;
  line-height: 1;
}

.denture-access__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(63, 33, 24, 0) 54%, rgba(63, 33, 24, .36) 100%);
  pointer-events: none;
}

.denture-access__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.denture-access__map-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  padding: 16px;
  border: 1px solid #efc79b;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(121, 182, 82, .16), transparent 32%),
    rgba(255, 252, 242, .88);
  box-shadow: 0 16px 34px rgba(154, 91, 35, .1);
}

.denture-access__map-label {
  margin: 0;
  color: #79B652;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .22em;
  text-align: center;
}

.denture-access__map {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #fffaf2;
}

.denture-access__map img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

/* side */
.denture-access__side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

.denture-access__station {
  position: relative;
  padding: 34px 34px 30px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff !important;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .26), transparent 30%),
    linear-gradient(135deg, #8dc76b 0%, #79B652 48%, #5e9b40 100%);
  box-shadow: 0 16px 30px rgba(121, 182, 82, .24);
}

.denture-access__station p,
.denture-access__station span,
.denture-access__station-main,
.denture-access__station-main span,
.denture-access__station-sub,
.denture-access__station-text {
  color: #fff !important;
}

.denture-access__station::after {
  content: "3min";
  position: absolute;
  right: 18px;
  bottom: -8px;
  color: rgba(255,255,255,.18);
  font-family: "Noto Serif JP", serif;
  font-size: 86px;
  line-height: 1;
  letter-spacing: .04em;
}

.denture-access__station-sub {
  margin: 0 0 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: .22em;
}

.denture-access__station-main {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.35;
  letter-spacing: .1em;
}

.denture-access__station-main span {
  font-size: 1.2em;
}

.denture-access__station-text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .08em;
}

.denture-access__points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.denture-access__point {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 16px 22px;
  border: 1px solid #efc79b;
  border-radius: 18px;
  background: rgba(255, 252, 242, .88);
  box-shadow: 0 10px 22px rgba(154, 91, 35, .07);
}

.denture-access__point-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ef7a1a;
  background: #fff;
  box-shadow: inset 0 0 0 5px rgba(239, 122, 26, .08);
  font-size: 26px;
  line-height: 1;
}

.denture-access__point-icon i {
  color: inherit;
  line-height: 1;
}

.denture-access__point h3 {
  margin: 0 0 4px;
  color: #3f2118;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .08em;
}

.denture-access__point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .05em;
}

/* lower */
.denture-access__lower {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, .75fr);
  gap: 24px;
  align-items: stretch;
}

.denture-access__info {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
  margin: 0;
}

.denture-access__address,
.denture-access__hours {
  display: block;
  padding: 24px 26px;
}

.denture-access__info-body h3,
.denture-access__hours h3 {
  margin: 0 0 12px;
  color: #ef7a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
}

.denture-access__info-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .06em;
}

.denture-access__hours-body {
  width: 100%;
  min-width: 0;
}

.denture-access__hours table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fffaf2;
  font-size: 13px;
  text-align: center;
}

.denture-access__hours th,
.denture-access__hours td {
  padding: 8px 9px;
  border: 1px solid rgba(239, 199, 155, .85);
}

.denture-access__hours thead th,
.denture-access__hours tbody th {
  color: #5a3122;
  font-weight: 700;
  background: #fff8ee;
}

.denture-access__hours td {
  color: #79B652;
  font-weight: 700;
}

.denture-access__hours-note {
  margin: 10px 0 0;
  color: #6a4a3a;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: .04em;
}

.denture-access__hours-note span {
  margin-left: 10px;
}

/* CTA */
.denture-access__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 24px 22px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 16%, rgba(255,255,255,.25), transparent 30%),
    linear-gradient(135deg, #f7b55d 0%, #df8a4f 46%, #c86d34 100%);
  box-shadow: 0 16px 30px rgba(200, 109, 52, .24);
  text-align: center;
}

.denture-access__cta::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
}

.denture-access__cta-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: .24em;
  opacity: .9;
}

.denture-access__cta-lead {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .08em;
}

.denture-access__button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 14px 70px 14px 24px;
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
}

.denture-access__button-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #df8a4f;
  background: #fff;
  font-size: 38px;
  line-height: 1;
}

.denture-access__tel {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px auto 0;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #6a4a3a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.denture-access__tel span {
  color: #79B652;
}

/* bottom note */
.denture-access__bottom-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 26px auto 0;
  color: #6a4a3a;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .08em;
  text-align: center;
}

.denture-access__bottom-note::before,
.denture-access__bottom-note::after {
  content: "";
  flex: 1;
  max-width: 150px;
  height: 2px;
  background-image: linear-gradient(to right, #79B652 42%, transparent 42%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.denture-access__bottom-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #79B652;
  font-size: 20px;
}

.denture-access__bottom-text {
  flex-shrink: 0;
}

.sp-only {
  display: none;
}

/* tablet */
@media screen and (max-width: 1200px) {
  .denture-access__layout {
    grid-template-columns: 1fr;
  }

  .denture-access__side {
    grid-template-columns: .8fr 1.2fr;
    grid-template-rows: auto;
  }

  .denture-access__lower {
    grid-template-columns: 1fr;
  }

  .denture-access__info {
    grid-template-columns: 1fr 1fr;
  }
}

/* mobile */
@media screen and (max-width: 767px) {
  .denture-access {
    padding: 44px 14px 54px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .denture-access__inner {
    width: min(100%, 390px);
  }

  .denture-access__head {
    margin-bottom: 26px;
  }

  .denture-access__lead {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 15px;
    letter-spacing: .1em;
  }

  .denture-access__lead::before,
  .denture-access__lead::after {
    width: 32px;
  }

  .denture-access__title {
    margin-bottom: 18px;
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: .08em;
  }

  .denture-access__catch {
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: .08em;
  }

  .denture-access__layout {
    display: block;
    margin-bottom: 16px;
  }

  .denture-access__visual-area {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    margin-bottom: 14px;
  }

  .denture-access__photo {
    border-radius: 14px;
  }

  .denture-access__photo::before {
    left: 18px;
    bottom: 14px;
    font-size: 38px;
  }

  .denture-access__photo img {
    min-height: auto;
    height: 220px;
  }

  .denture-access__map-card {
    display: grid;
    /* grid-template-columns: 86px 1fr; */
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
  }

  .denture-access__map-label {
    justify-self: center;
    font-size: 20px;
    letter-spacing: .18em;
  }

  .denture-access__map iframe {
    min-height: auto;
    height: 210px;
  }

  .denture-access__side {
    display: block;
  }

  .denture-access__station {
    margin-bottom: 12px;
    padding: 24px 22px;
    border-radius: 16px;
  }

  .denture-access__station::after {
    right: 8px;
    bottom: -4px;
    font-size: 62px;
  }

  .denture-access__station-main {
    font-size: 34px;
  }

  .denture-access__station-text {
    font-size: 14px;
  }

  .denture-access__points {
    gap: 10px;
  }

  .denture-access__point {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 14px 16px;
    border-radius: 14px;
  }

  .denture-access__point-icon {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }

  .denture-access__point h3 {
    font-size: 18px;
  }

  .denture-access__point p {
    font-size: 13px;
  }

  .denture-access__lower {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .denture-access__info {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .denture-access__address,
  .denture-access__hours {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
  }

  .denture-access__info-icon {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .denture-access__info-body h3,
  .denture-access__hours h3 {
    font-size: 17px;
  }

  .denture-access__info-body p {
    font-size: 14px;
  }

  .denture-access__hours {
    overflow-x: auto;
  }

  .denture-access__hours table {
    min-width: 470px;
    font-size: 13px;
  }

  .denture-access__hours th,
  .denture-access__hours td {
    padding: 7px 8px;
  }

  .denture-access__hours-note {
    min-width: 470px;
    font-size: 12px;
  }

  .denture-access__cta {
    padding: 22px 16px 16px;
    border-radius: 18px;
  }

  .denture-access__button {
    min-height: 66px;
    padding: 12px 54px 12px 18px;
    font-size: 17px;
    font-weight: 500;
  }

  .denture-access__button-arrow {
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 32px;
  }

  .denture-access__tel {
    width: 100%;
    padding: 8px 10px;
    font-size: 12px;
  }

  .denture-access__bottom-note {
    gap: 8px;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.7;
  }

  .denture-access__bottom-note::before,
  .denture-access__bottom-note::after {
    max-width: 42px;
  }

  .denture-access__bottom-icon {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .denture-access__bottom-text {
    flex: 1;
  }
}


/*==================================================================================================================================

  *よくある質問ブロック

==================================================================================================================================*/
.denture-faq {
  position: relative;
  padding: 74px 20px 78px;
  overflow: hidden;
  color: #3f2118;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.94), transparent 34%),
    linear-gradient(180deg, #fbf8ef 0%, #f6eedb 100%);
}

.denture-faq::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -90px;
  height: 250px;
  background:
    repeating-radial-gradient(
      ellipse at 50% 100%,
      rgba(239, 122, 26, .14) 0 1px,
      transparent 1px 18px
    );
  opacity: .35;
  pointer-events: none;
}

.denture-faq__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1380px);
  margin: 0 auto;
}

/* ========================================
   heading
======================================== */
.denture-faq__head {
  margin-bottom: 42px;
  text-align: center;
}

.denture-faq__lead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 420px;
  min-height: 44px;
  margin: 0 0 26px;
  padding: 8px 34px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #f6a51d 0%, #ef7a1a 48%, #ef6f00 100%);
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 700;
  letter-spacing: .12em;
}

.denture-faq__title {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .18em;
}

.denture-faq__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 520px;
  height: 2px;
  transform: translateX(-50%);
  background-image: linear-gradient(to right, #ef9b42 42%, transparent 42%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.denture-faq__title::before {
  content: "♡";
  position: absolute;
  left: 50%;
  bottom: -16px;
  z-index: 1;
  transform: translateX(-50%);
  color: #ef7a1a;
  background: #fbf8ef;
  font-size: 28px;
  line-height: 1;
}

.denture-faq__catch {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: .1em;
}

.denture-faq__catch span {
  color: #ef7a1a;
}

/* ========================================
   FAQ
======================================== */
.denture-faq__list {
  display: grid;
  gap: 14px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.denture-faq__item {
  border: 1px solid #efc79b;
  border-radius: 12px;
  background: rgba(255, 252, 242, .86);
  box-shadow: 0 10px 24px rgba(154, 91, 35, .08);
  overflow: hidden;
}

.denture-faq__question {
  display: grid;
  grid-template-columns: 74px 1fr 48px;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 16px 28px;
  background: rgba(255,255,255,.54);
  cursor: pointer;
  list-style: none;
}

.denture-faq__question::-webkit-details-marker {
  display: none;
}

.denture-faq__q {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: #ef7a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  line-height: 1;
}

.denture-faq__question-text {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(21px, 1.7vw, 30px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
}

.denture-faq__toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: auto;
  border: 2px solid #79B652;
  border-radius: 50%;
  background: #79B652;
}

.denture-faq__toggle::before,
.denture-faq__toggle::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.denture-faq__toggle::after {
  transform: rotate(90deg);
}

.denture-faq__item[open] .denture-faq__toggle::after {
  opacity: 0;
}

.denture-faq__answer {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 54px 32px;
  border-top: 1px solid rgba(239, 199, 155, .72);
}

.denture-faq__answer-icon {
  display: grid;
  place-items: center;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  color: #79B652;
  background: rgba(255,255,255,.78);
  box-shadow: inset 0 0 0 8px rgba(121, 182, 82, .08);
  font-size: 42px;
}

.denture-faq__answer p {
  margin: 0;
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: .08em;
}

.denture-faq__answer span {
  color: #ef7a1a;
  font-weight: 700;
}

.sp-only {
  display: none;
}

/* ========================================
   モバイル
======================================== */
@media screen and (max-width: 767px) {
  .denture-faq {
    padding: 44px 14px 56px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .denture-faq__inner {
    width: min(100%, 390px);
  }

  .denture-faq__head {
    margin-bottom: 28px;
  }

  .denture-faq__lead {
    min-width: 0;
    margin-bottom: 22px;
    padding: 9px 26px;
    font-size: 16px;
    line-height: 1.6;
  }

  .denture-faq__title {
    margin-bottom: 24px;
    padding-bottom: 24px;
    font-size: 40px;
    line-height: 1.25;
    letter-spacing: .12em;
  }

  .denture-faq__title::after {
    width: 92%;
    background-image: linear-gradient(to right, #ef9b42 42%, transparent 42%);
  }

  .denture-faq__title::before {
    bottom: -14px;
    font-size: 24px;
  }

  .denture-faq__catch {
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: .08em;
  }

  .denture-faq__list {
    gap: 12px;
  }

  .denture-faq__item {
    border-radius: 10px;
  }

  .denture-faq__question {
    grid-template-columns: 54px 1fr 34px;
    gap: 10px;
    min-height: 66px;
    padding: 14px 16px;
  }

  .denture-faq__q {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .denture-faq__question-text {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: .06em;
  }

  .denture-faq__toggle {
    width: 30px;
    height: 30px;
  }

  .denture-faq__toggle::before,
  .denture-faq__toggle::after {
    width: 13px;
  }

  .denture-faq__answer {
    display: block;
    gap: 16px;
    padding: 22px 18px 24px;
  }

  .denture-faq__answer-icon {
    display: none;
    /* width: 72px; */
    /* height: 72px; */
    /* font-size: 32px; */
  }

  .denture-faq__answer p {
    font-size: 16px;
    line-height: 1.95;
    letter-spacing: .05em;
  }
}

/*==================================================================================================================================

  *フッター

==================================================================================================================================*/
.denture-footer {
  position: relative;
  overflow: hidden;
  color: #3f2118;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.92), transparent 34%),
    linear-gradient(180deg, #fbf8ef 0%, #f6eedb 100%);
}

.denture-footer::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -80px;
  height: 250px;
  background:
    repeating-radial-gradient(ellipse at 50% 100%, rgba(239, 122, 26, .16) 0 1px, transparent 1px 18px);
  opacity: .34;
  pointer-events: none;
}

.denture-footer a {
  color: inherit;
}

/* CTA */
.denture-footer__cta {
  position: relative;
  z-index: 2;
  padding: 40px 20px 34px;
  border-bottom: 1px solid rgba(239, 199, 155, .8);
}

.denture-footer__cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 35px;
  align-items: center;
  max-width: 95%;
  margin: 0 auto;
  padding: 32px 30px 22px;
  border: 1px solid #efc79b;
  border-radius: 12px;
  background: rgba(255, 252, 242, .86);
  box-shadow: 0 14px 34px rgba(154, 91, 35, .1);
}

.denture-footer__tel {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.denture-footer__tel-icon,
.denture-footer__reserve-icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 24px rgba(154, 91, 35, .12);
}

.denture-footer__tel-icon {
  width: 94px;
  height: 94px;
  color: #ef7a1a;
  font-size: 44px;
}

.denture-footer__tel-lead {
  margin: 0 0 4px;
  font-size: 16px;
  letter-spacing: .12em;
}

.denture-footer__tel-number {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(42px, 3.4vw, 58px);
  line-height: 1.1;
  letter-spacing: .08em;
  text-decoration: none;
}

.denture-footer__tel-time {
  margin: 8px 0 0;
  font-size: 15px;
  letter-spacing: .08em;
}

.denture-footer__tel-time span {
  display: inline-block;
  margin-right: 12px;
  padding: 3px 10px;
  color: #fff;
  background: #ef7a1a;
  border-radius: 3px;
}

.denture-footer__reserve {
  display: grid;
  grid-template-columns: 72px 1fr 48px;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 18px 28px;
  border-radius: 5px;
  color: #fff;
  background: linear-gradient(90deg, #9ccc72 0%, #79B652 52%, #5d9b3d 100%);
  box-shadow: 0 14px 28px rgba(121, 182, 82, .25);
  text-decoration: none;
}

.denture-footer__reserve-icon {
  width: 64px;
  height: 64px;
  color: #79B652;
  font-size: 30px;
}

.denture-footer__reserve-text {
  font-size: clamp(22px, 1.9vw, 32px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .08em;
  font-family: "Noto Serif JP", serif;
	color: #fff;
}

.denture-footer__reserve-text small {
  display: block;
  font-size: .55em;
  font-weight: 500;
}

.denture-footer__reserve-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #79B652;
  background: #fff;
  font-size: 42px;
  line-height: 1;
}

.denture-footer__note {
  grid-column: 2;
  margin: -8px 0 0;
  font-size: 13px;
  text-align: center;
  letter-spacing: .08em;
}

/* main */
.denture-footer__main {
  position: relative;
  z-index: 1;
  padding: 62px 20px 30px;
}

.denture-footer__inner {
  width: min(100%, 1540px);
  margin: 0 auto;
}

/* top layout */
.denture-footer__top {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 70px;
  align-items: start;
  margin-bottom: 48px;
}

/* brand */
.denture-footer__brand {
  min-width: 0;
}

.denture-footer__logo {
  position: relative;
  width: 104px;
  height: 104px;
  margin-bottom: 18px;
}

.denture-footer__logo::before {
  content: "";
  position: absolute;
  inset: 14px 26px 24px;
  border: 5px solid #ef7a1a;
  border-bottom-width: 0;
  border-radius: 30px 30px 6px 6px;
}

.denture-footer__logo::after {
  content: "";
  position: absolute;
  left: 48px;
  bottom: 22px;
  width: 12px;
  height: 34px;
  border: 5px solid #ef7a1a;
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.denture-footer__en {
  margin: 0 0 10px;
  color: #ef7a1a;
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  letter-spacing: .28em;
}

.denture-footer__name {
  margin: 0 0 22px;
  font-family: "Noto Serif JP", serif;
	font-size: clamp(34px, 2.7vw, 40px);
  line-height: 1.35;
  letter-spacing: .12em;
}

.denture-footer__copy {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 2;
  letter-spacing: .12em;
}

.denture-footer__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 26px 0 0;
  border-top: 1px solid #efc79b;
  list-style: none;
}

.denture-footer__features li {
  display: grid;
  place-items: center;
  min-height: 126px;
  padding: 16px 10px;
  border: 1px solid #efc79b;
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  text-align: center;
}

.denture-footer__features span {
  color: #ef7a1a;
  font-size: 30px;
  line-height: 1;
}

.denture-footer__features p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.55;
  font-weight: 700;
  letter-spacing: .04em;
}

/* nav */
.denture-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 46px;
  margin-top: 150px;
}

.denture-footer__nav-group {
  border: 0;
}

.denture-footer__nav-group summary {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .12em;
  list-style: none;
  cursor: default;
}

.denture-footer__nav-group summary::-webkit-details-marker {
  display: none;
}

.denture-footer__nav-icon {
  display: none;
}

.denture-footer__nav-group summary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to right, #ef9b42 42%, transparent 42%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.denture-footer__nav-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.denture-footer__nav-group li + li {
  margin-top: 12px;
}

.denture-footer__nav-group a {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .08em;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
}

.denture-footer__nav-group a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #ef7a1a;
  font-size: 20px;
}

/* info */
.denture-footer__info {
  display: grid;
  grid-template-columns: 1.05fr .9fr 1fr;
  gap: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(239, 199, 155, .9);
}

.denture-footer__clinic,
.denture-footer__access,
.denture-footer__hours,
.denture-footer__message {
  min-width: 0;
}

.denture-footer__info-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.denture-footer__info-head span {
  color: #79B652;
  font-size: 28px;
}

.denture-footer__info-head h3 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: .12em;
}

.denture-footer__clinic p,
.denture-footer__access p,
.denture-footer__hours-note,
.denture-footer__message p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .06em;
}

.denture-footer__access {
  display: grid;
  gap: 16px;
}

.denture-footer__access-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 14px;
}

.denture-footer__access-item span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #79B652;
  background: rgba(255,255,255,.82);
  box-shadow: 0 8px 18px rgba(121, 182, 82, .12);
  font-size: 24px;
}

.denture-footer__access strong {
  color: #79B652;
}

.denture-footer__hours table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  border: 1px solid #efc79b;
  border-radius: 8px;
  background: rgba(255, 252, 242, .76);
  overflow: hidden;
  font-size: 14px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

.denture-footer__hours th,
.denture-footer__hours td {
  padding: 10px 8px;
  border: 1px solid rgba(239, 199, 155, .75);
  font-weight: 500;
}

.denture-footer__hours thead th,
.denture-footer__hours tbody th {
  background: rgba(255, 246, 222, .85);
}

.denture-footer__hours td {
  color: #79B652;
  font-weight: 700;
}

.denture-footer__hours small {
  color: #3f2118;
  font-size: 11px;
}

.denture-footer__hours-note {
  font-size: 13px;
}

.denture-footer__message {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  padding: 26px 28px;
  border: 1px solid #efc79b;
  border-radius: 10px;
  background: rgba(255, 252, 242, .78);
}

.denture-footer__message p + p {
  margin-top: 12px;
}

.denture-footer__message span {
  color: #ef7a1a;
}

.denture-footer__people {
  position: absolute;
  right: 34px;
  bottom: 24px;
  width: 120px;
  height: 70px;
  border: 3px solid #ef7a1a;
  border-top: 0;
  opacity: .8;
}

/* bottom */
.denture-footer__bottom {
  margin-top: 34px;
  padding-top: 26px;
  text-align: center;
  border-top: 1px solid rgba(239, 199, 155, .85);
}

.denture-footer__bottom ul {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.denture-footer__bottom a {
  font-size: 15px;
  letter-spacing: .08em;
  text-decoration: none;
}

.denture-footer__bottom p {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: .08em;
}

.sp-only {
  display: none;
}

/* ========================================
   タブレット
======================================== */
@media screen and (max-width: 1200px) {
  .denture-footer__cta-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .denture-footer__note {
    grid-column: auto;
  }

  .denture-footer__top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .denture-footer__brand {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .denture-footer__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .denture-footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .denture-footer__info {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   モバイル
======================================== */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .denture-footer__cta {
    padding: 16px 14px 28px;
    border-bottom: 0;
  }

  .denture-footer__cta-inner {
    width: min(100%, 390px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .denture-footer__tel {
    grid-template-columns: 82px 1fr;
    gap: 10px;
    padding: 18px 22px;
    border: 1px solid #efc79b;
    border-radius: 10px;
    background: rgba(255, 252, 242, .86);
    box-shadow: 0 12px 26px rgba(154, 91, 35, .08);
  }

  .denture-footer__tel-icon {
    width: 68px;
    height: 68px;
    font-size: 32px;
  }

  .denture-footer__tel-lead {
    font-size: 13px;
    line-height: 1.5;
  }

  .denture-footer__tel-number {
    font-size: 27px;
    letter-spacing: .06em;
  }

  .denture-footer__tel-time {
    font-size: 12px;
    line-height: 1.8;
  }

  .denture-footer__tel-time span {
    margin-right: 6px;
    padding: 2px 8px;
  }

  .denture-footer__reserve {
    grid-template-columns: 60px 1fr 42px;
    gap: 10px;
    min-height: 78px;
    padding: 14px 18px;
  }

  .denture-footer__reserve-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .denture-footer__reserve-text {
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: .05em;
	font-weight: 400;
  }

  .denture-footer__reserve-arrow {
    width: 38px;
    height: 38px;
    font-size: 34px;
  }

  .denture-footer__note {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
  }

  .denture-footer__main {
    padding: 34px 14px 26px;
  }

  .denture-footer__inner {
    width: min(100%, 390px);
  }

  .denture-footer__top {
    display: block;
    margin-bottom: 18px;
  }

  .denture-footer__brand {
    margin: 0 auto 24px;
    text-align: center;
  }

  .denture-footer__logo {
    width: 84px;
    height: 84px;
    margin: 0 auto 8px;
  }

  .denture-footer__en {
    font-size: 14px;
    letter-spacing: .22em;
  }

  .denture-footer__name {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .denture-footer__copy {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.9;
  }

  .denture-footer__features {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-top: 0;
    border-top: 0;
  }

  .denture-footer__features li {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    justify-items: start;
    min-height: auto;
    padding: 14px 16px;
    border-radius: 10px;
    text-align: left;
    margin-top: 5px;
  }

  .denture-footer__features span {
    font-size: 30px;
  }

  .denture-footer__features p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
  }

  .denture-footer__nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 16px;
    border: 1px solid #efc79b;
    border-radius: 10px;
    background: rgba(255, 252, 242, .78);
    overflow: hidden;
    margin-top: 10px;
  }

  .denture-footer__nav-group {
    border-bottom: 1px solid rgba(239, 199, 155, .75);
  }

  .denture-footer__nav-group:last-child {
    border-bottom: 0;
  }

  .denture-footer__nav-group summary {
    display: grid;
    grid-template-columns: 36px 1fr 24px;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 16px 18px;
    font-size: 17px;
    cursor: pointer;
  }

  .denture-footer__nav-icon {
    display: block;
    color: #ef7a1a;
    font-size: 21px;
  }

  .denture-footer__nav-group summary::after {
    content: "⌄";
    position: static;
    width: auto;
    height: auto;
    color: #ef7a1a;
    background: none;
    font-size: 20px;
    text-align: right;
  }

  .denture-footer__nav-group[open] summary::after {
    content: "⌃";
  }

  .denture-footer__nav-group ul {
    padding: 0 18px 16px 64px;
  }

  .denture-footer__nav-group li + li {
    margin-top: 8px;
  }

  .denture-footer__nav-group a {
    font-size: 13px;
    line-height: 1.7;
  }

  .denture-footer__info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
    border-top: 0;
  }

  .denture-footer__clinic,
  .denture-footer__access,
  .denture-footer__hours,
  .denture-footer__message {
    padding: 18px;
    border: 1px solid #efc79b;
    border-radius: 10px;
    background: rgba(255, 252, 242, .78);
    box-shadow: 0 10px 22px rgba(154, 91, 35, .06);
  }

  .denture-footer__info-head h3 {
    font-size: 16px;
  }

  .denture-footer__clinic p,
  .denture-footer__access p,
  .denture-footer__hours-note,
  .denture-footer__message p {
    font-size: 13px;
    line-height: 1.8;
  }

  .denture-footer__access-item {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .denture-footer__access-item span {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .denture-footer__hours {
    overflow-x: auto;
  }

  .denture-footer__hours table {
    min-width: 560px;
    font-size: 13px;
  }

  .denture-footer__hours th,
  .denture-footer__hours td {
    padding: 9px 7px;
  }

  .denture-footer__message {
    min-height: auto;
    text-align: left;
  }

  .denture-footer__message p {
    font-size: 15px;
    line-height: 1.9;
  }

  .denture-footer__people {
    display: none;
  }

  .denture-footer__bottom {
    margin-top: 24px;
    padding-top: 22px;
  }

  .denture-footer__bottom ul {
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 16px;
  }

  .denture-footer__bottom a {
    font-size: 13px;
  }

  .denture-footer__bottom p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/*==================================================================================================================================

  *固定CTAラッパー

==================================================================================================================================*/
.fixed-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 9999;
  flex-wrap: nowrap;
  justify-content: flex-end;
  font-family: "Noto Serif JP", serif;
}

/* 各ボタン共通スタイル */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s ease;
  background-color: rgba(255, 252, 242, 0.92);
  font-size: 1.8rem;
  box-sizing: border-box;
  border: 2px solid;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 8px 18px rgba(154, 91, 35, 0.12);
}

/* アイコン・中の文字も親色に強制 */
.cta-btn i,
.cta-btn span,
.cta-btn svg,
.cta-btn path {
  color: inherit !important;
  fill: currentColor !important;
}

/* TEL予約：落ち着いたブルー */
.cta-abortion {
  color: #52739A !important;
  border-color: #52739A !important;
}

.cta-abortion:hover {
  background: #52739A !important;
  color: #fff !important;
}

/* WEB予約：やさしいオレンジ */
.cta-webunder {
  color: #DF8A4F !important;
  border-color: #DF8A4F !important;
}

.cta-webunder:hover {
  background: #DF8A4F !important;
  color: #fff !important;
}

/* LINE予約：落ち着いたグリーン */
.cta-lineunder {
  color: #5F8A50 !important;
  border-color: #5F8A50 !important;
}

.cta-lineunder:hover {
  background: #5F8A50 !important;
  color: #fff !important;
}

/* TOPボタン */
.cta-top {
  color: #fff !important;
  border-color: #E4863A !important;
  background: linear-gradient(180deg, #F0A154 0%, #E4863A 100%) !important;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 1rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 18px rgba(154, 91, 35, 0.16);
}

.cta-top:hover {
  background: linear-gradient(180deg, #F3AF6A 0%, #EA934E 100%) !important;
  border-color: #EA934E !important;
  color: #fff !important;
}

/* TOP内の文字も白固定 */
.cta-top i,
.cta-top span,
.cta-top svg,
.cta-top path {
  color: #fff !important;
  fill: #fff !important;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .fixed-cta {
    display: none;
  }
}

/* PC版 */
@media (min-width: 769px) {
  .fixed-cta {
    bottom: 20px;
    left: 0;
    width: auto;
    justify-content: flex-end;
    gap: 5px;
  }

  .cta-btn {
    width: auto;
    padding: 15px 25px;
    font-size: 1.8rem;
  }

  .cta-top {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

p.righttxt {
  color: #5a4038;
  text-align: right;
  margin-top: -10px;
}

p.lefttxt {
  color: #5a4038;
  margin-top: -10px;
}