:root {
  /*--header-height: 110px;*/
  --c-accent: #d45d4a;
  --c-text: #333333;
  --c-muted: #6b7280;
  --c-border: rgba(0, 0, 0, .08);
}
html, body {
  height: auto;
  overflow: visible;
}
.minchou {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HGS明朝E", serif;
}
.box_shadow {
    box-shadow:  8px 8px 20px rgba(0, 0, 0, 0.15);
}
.round {
    border-radius: 10px;
}
.bg-blue {
  background: #ebf4fc;
}
.bg_beige {
  background: #fcf7ef;
}
.bg_gray {
  background: #f7f7f7;
}
.bg_01, .bg_02, .bg_03, .bg_04, .bg_05, .bg_06, .bg_07 {
  position: relative;
  overflow: hidden;
}
.bg_01::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_01.webp") center / cover no-repeat;
  z-index: -1;
}
.bg_02::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_02.webp") center / cover no-repeat;
  z-index: -1;
}
.bg_03::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_03.webp") center / cover no-repeat;
  z-index: -1;
}
.bg_04::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/ripples.webp) bottom right / 50% no-repeat;
  z-index: -1;
}
.bg_05::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_05.webp") center / cover no-repeat;
  z-index: -1;
}
.bg_06::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_06.webp") center / cover no-repeat;
  z-index: -1;
}
.bg_07::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_07.webp") center / cover no-repeat;
  z-index: -1;
}
@media (max-width: 740px) {
.bg_04::before {
  background: url(../images/ripples.webp) bottom right / 70% no-repeat;
}
}
/* sticky header */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  height: var(--header-h);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.header__inner {
  align-items: center;
}
/* ===== Brand ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-text);
}
a.brand img {
  width: 300px;
}
/* ===== Right area ===== */
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.header__info {
  text-align: right;
  line-height: 1.2;
}
.header__tel {
  display: inline-block;
  text-decoration: none;
  color: var(--c-text);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .02em;
}
.header__hours {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
}
.header__hoursRow {
  display: block;
}
.header__hours_beige {
  background: #998c70;
  color: #fff;
  font-size: 80%;
  padding: 3px 6px;
  margin-left: 5px;
}
/* CTA */
.header__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--c-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 6px;
  line-height: 1.1;
  min-width: 240px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
  white-space: nowrap;
}
@media (min-width: 741px) {
  .header__ctaBtn:hover {
    filter: brightness(0.98);
  }
}
/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .brand__org {
    font-size: 16px;
  }
  .header__tel {
    font-size: 22px;
  }
  .header__ctaBtn {
    min-width: 220px;
  }
}
@media (max-width: 840px) {
  .header__cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .header__ctaBtn {
    border-radius: 0;
    width: 100%;
  }
}
@media (max-width: 740px) {
  :root {
    /*--header-h: 112px;-*/
  }
  .header {
    height: var(--header-h);
    align-items: stretch;
    padding: 10px 0;
  }
  .header__brand {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header__right {
    gap: 10px;
  }
  .header__info {
    white-space: nowrap;
  }
  .header__tel {
    font-size: 18px;
  }
  .header__hours {
    font-size: 11px;
  }
  .header__cta {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
  }
  .header__ctaBtn {
    width: 100%;
    min-width: unset;
    padding: 12px 12px;
    white-space: normal;
  }
}
/* ===== Hero base ===== */
.hero {
    position: relative;
    overflow: hidden;
    padding: 222px 0 60px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #fff;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 70% 50%;
  opacity: 0;
  transform: scale(1);
  will-change: opacity, transform;
  animation: lpHeroSlide 12s linear infinite;
}
.hero__slide.is-1 {
  background-image: url("../images/hero_01.webp");
  animation-delay: 0s;
}
.hero__slide.is-2 {
  background-image: url("../images/hero_02.webp");
  animation-delay: 4s;
}
.hero__slide.is-3 {
  background-image: url("../images/hero_03.webp");
  animation-delay: 8s;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .70) 10%, rgba(255, 255, 255, .35) 100%);
  opacity: 0.5;
}
@keyframes lpHeroSlide {
  0% {
    opacity: 0;
    transform: scale(1.00);
  }
  6% {
    opacity: 1;
    transform: scale(1.01);
  } /* fade in */
  30% {
    opacity: 1;
    transform: scale(1.07);
  } /* hold + zoom */
  40% {
    opacity: 0;
    transform: scale(1.08);
  } /* fade out */
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}
/* ===== Content ===== */
.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__title {
  color: #d45d4a;
  font-size: 62px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.35;
  -webkit-text-stroke: 10px #fff;
  paint-order: stroke fill;
}
.hero__sub {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 26px;
  color: #1f2937;
}
.hero__lead {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
  color: #1c4370;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke fill;
}
.hero__container {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
  display: flex;
  align-items: flex-end; /* 下寄せ */
  justify-content: flex-end; /* 右寄せ */
}
.hero__badges {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px;
}
.badge {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff8c6, #c9a100);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  line-height: 1.4;
}
.badge strong {
  display: block;
  font-size: 28px;
  color: #c40000;
}
@media (max-width: 1000px) {
.hero__title {
  font-size: 6vw;
}
}
@media (max-width: 740px) {
  .hero {
    padding: 88px 0 40%;
  }
.hero__title {
  font-size: 9.8vw;
}
  .hero__lead {
      font-size: 7vw;
    -webkit-text-stroke: 5px #fff;
    paint-order: stroke fill;
  }
  .hero__container {
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
  .hero__badges {
    width: 100%;
  }
  .badge {
    width: 100%;
    height: auto;
  }
  .container.hero__container {
    padding: 0;
  }
}
/* CTA */
.hero__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #d45d4a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 28px;
  border-radius: 6px;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}
@media (min-width: 741px) {
  .hero__ctaBtn:hover {
    filter: brightness(0.98);
  }
}
@media (max-width: 740px) {
  .hero__ctaBtn {
    width: 100%;
    padding: 16px 18px;
  }
}
.hero__bar {
  background: #998c70;
  padding: 18px 12px;
}
.hero__barText {
  margin: 0;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 22px;
}
@media (max-width: 740px) {
  .hero__barText {
    font-size: 16px;
  }
}
/* ユーザーが「動き減らす」設定なら止める */
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.section_title {
  text-align: center;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HGS明朝E", serif;
  margin-bottom: 60px;
}
.text_gold {
  color: #998c70 !important
}
.text_navy {
  color: #1c4370 !important
}
.text_blue {
  color: #3f6eb4 !important
}
.text_red {
  color: #c50018 !important
}
.text_white {
  color: #ffffff !important
}
.title_bg_blue {
  text-align: center;
  color: #1c4370;
  background: #dfeaf8;
  padding: 20px 15px;
}
.title_bg_beige {
  text-align: center;
  color: #1c4370;
  background: #fcf3dd;
  padding: 20px 15px;
}
.js-line {
  position: relative;
  display: inline-block;
  z-index: 0; /* ← 追加：スタックコンテキスト基準 */
  isolation: isolate; /* ← 追加：-1でも裏に消えにくい */
}
.js-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: #f3de3a;
  z-index: -1; /* 文字の後ろ */
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .8s cubic-bezier(.77, 0, .18, 1);
}
.js-line.is-active::after {
  transform: scaleX(1);
}
.section_title__sub {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
}
.section_title--line {
  position: relative;
  padding: 20px 0;
  text-align: center;
  overflow: hidden;
}
/* 共通ライン */
.section_title--line::before, .section_title--line::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleX(0); /* ← 初期0 */
  transform-origin: center; /* ← 中央から */
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, #998c70 20%, #998c70 80%, transparent);
  transition: transform 0.8s cubic-bezier(.22, .61, .36, 1);
}
.section_title--line::before {
  top: 0;
}
.section_title--line::after {
  bottom: 0;
}
/* 発火後 */
.section_title--line.is-active::before, .section_title--line.is-active::after {
  transform: translateX(-50%) scaleX(1);
}
.section_title--line.section_title--line-navy::before, .section_title--line.section_title--line-navy::after {
  height: 1px;
  background: #1c4370;
}
.section_title--line::before {
  top: 0;
}
.section_title--line::after {
  bottom: 0;
}
/* about */
.white_box {
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, .12);
}
.align-center {
  align-items: center;
}
.exo__image img {
  width: 100%;
  height: auto;
  display: block;
}
.check_list {
  max-width: 940px;
  margin: 60px auto 0;
}
.check_list__inner {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    font-size: 18px;
    max-width: 460px;
}
.check_list__inner li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.check_list__inner li span {
  font-size: 120%;
  color: #3f6eb4;
}
.check_list__inner li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  height: 22px;
  background: url("../images/check_yel.webp") no-repeat center / contain;
}
.check_list_box {
    padding: 20px;
    border: solid 1px;
}
@media (max-width: 980px) {
  .check_list.grid__wrapper {
    gap: 0;
  }
}
@media (max-width: 740px) {
  .check_list__inner {
    font-size: 16px;
  }
  .check_list__inner li::before {
    top: 4px;
  }
}
/* equipment */
.equipment__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.equipment__grid {
  align-items: center;
}
.grid__wrapper.equipment__grid {
  gap: 40px;
}
.equipment__title {
  font-weight: 700;
  line-height: 1.5;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "HGS明朝E", serif;
}
.equipment__line{
  margin: 15px 0;
  width: 100%;
  height: 1px;
  background: #1c4370;

  transform: scaleX(0);           /* 初期0 */
  transform-origin: left center;  /* 左から伸びる */
  transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}

.equipment__line.is-active{
  transform: scaleX(1);
}
.equipment__media img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 740px) {
  .grid__wrapper.equipment__grid {
    gap: 16px;
  }
}
@media (max-width: 740px) {
  .equipment__list {
    gap: 45px;
  }
  .equipment__item .equipment__text {
    order: 1;
  }
  .equipment__item .equipment__media {
    order: 2;
    margin-top: 18px;
  }
}
/* table */
.meds_table_wrap{
  overflow-x: auto; /* スマホ保険 */
  -webkit-overflow-scrolling: touch;
}

.meds_table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 760px; /* SPで横スク防止したいなら消してもOK */
  background: rgba(255,255,255,.92);
}

.meds_table__th{
  background: #8f856f;
  color: #fff;
  font-weight: 700;
  padding: 14px 16px;
  border: 1px solid #998c70;
}

.meds_table__th--name{ width: 200px; }
.meds_table__th--desc{ width: auto; }

.meds_table__name{
  font-weight: 700;
  padding: 16px 16px;
  border: 1px solid #998c70;
  background: rgba(255,255,255,.6);
  vertical-align: middle;
  text-align: left;
  line-height: 1.6;
}

.meds_table__desc{
  padding: 16px 18px;
  border: 1px solid #998c70;
  vertical-align: top;
  line-height: 1.9;
  color: rgba(0,0,0,.82);
}

.meds_table tbody tr:nth-child(even) .meds_table__desc,
.meds_table tbody tr:nth-child(even) .meds_table__name{
  background: rgba(255,255,255,.85);
}
.table_scroll_note{
  text-align: right;
  font-size: 11px;
  color: rgba(0,0,0,.55);
  margin-bottom: 6px;
}
@media (min-width:741px){
  .sm-only{
    display: none;
  }
}
/* SP */
@media (max-width:740px){
  .meds_table{
    min-width: 680px; /* テキスト量多いので横スク推奨 */
  }
  .meds_table__th--name{ width: 180px; }
}
/* flow */
.flow__wrap .container {
  max-width: 900px;
}
.flow__schedule {
  position: relative;
  background-image: url("../images/time_00.webp");
  background-size: 80px auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding-bottom: 22px;
}
/* 各ブロック */
.flow__item {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
  line-height: 1.5;
}
.flow__item--01, .flow__item--02, .flow__item--04 {
  padding-right: 65%;
  padding-left: 0;
}
.flow__item--03, .flow__item--05 {
  padding-left: 65%;
  padding-right: 0;
}
.flow__photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  margin: 0;
}
.flow__item--04 .flow__photo, .flow__item--05 .flow__photo {
  left: 0;
  right: auto;
}
.flow__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.flow__item--03 {
  margin-top: -204px;
}
.flow__photo.flow__photo--02 {
  top: 211px;
}
.flow__item--04 {
  margin-top: -17px;
}
.flow__photo.flow__photo--03 {
  top: 155px;
}
.flow__item--05 {
  margin-top: 66px;
}
.flow__ttl {
  font-weight: 700;
  margin-bottom: 10px;
}
.flow__disc {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}
.flow__disc li {
  margin-bottom: 6px;
}
.flow__text {
  line-height: 1.9;
  margin-bottom: 30px;
}
.flow__time_sp {
  display: none;
}
@media (max-width: 950px) {
  .flow__schedule {
    background: none;
    padding-bottom: 0;
  }
  .flow__wrap .text-center {
    text-align: left;
  }
  .flow__item--01, .flow__item--02, .flow__item--03, .flow__item--04, .flow__item--05 {
    padding-left: 62px;
    padding-right: 0;
  }
  .flow__photo {
    position: static;
    max-width: 222px;
    width: 100%;
    margin-top: -15px;
    margin-bottom: 30px;
  }
  .flow__item--03 {
    margin-top: 0;
  }
  .flow__photo.flow__photo--02 {
    top: 211px;
  }
  .flow__item--04 {
    margin-top: 0;
  }
  .flow__photo.flow__photo--03 {
    top: 155px;
  }
  .flow__item--05 {
    margin-top: 0;
  }
  .flow__time_sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
  }
  .flow__schedule:before {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    background: #998c70;
    left: 24px;
  }
  .flow_title {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
  }
  .flow_title:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #998c70;
    display: block;
  }
}
.check_list.check_list_dark {
  max-width: 480px;
  margin: 60px auto 0;
  color: #fff;
}
.check_list_dark .check_list__inner li::before {
  top: 2px;
  width: 20px;
  height: 20px;
  background: url(../images/check_blk.webp) no-repeat center / contain;
}
.check_list_dark .check_list__inner {
  font-size: 16px;
}
.check_list__inner li:last-child {
  margin-bottom: 0;
}
/* case */
.grid__wrapper.case__grid {
  gap: 40px;
}
@media (max-width: 740px) {
  .grid__wrapper.case__grid {
    column-gap: 0;
  }
}
/* flow b */
.flow_b__ttl {
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}
.flow_b__disc {
  padding-left: 18px;
  list-style: disc;
}
.flow_b__disc li {
  margin-bottom: 0;
}
.flow_b__img img {
  width: 100%;
  height: auto;
  display: block;
}
.flow_tel {
  color: #998c70;
  font-weight: 700;
}
a.btn_gold {
  background: #998c70;
  color: #fff;
  padding: 5px;
  margin-left: 5px;
  font-size: 85%;
}
@media (max-width:740px) {
  .flow_b__img {
    margin-top: 20px;
  }
}
/* doctor */
.career_box {
  background: #ffffff;
  border: 1px solid #998c70;
  padding: 30px 30px;
  margin-top: 30px;
}
.career_box__ttl {
  font-weight: 700;
  margin: 0 0 14px;
}
.career_dl {
  margin: 0;
}
.career_dl__row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
}
.career_dl__row dt {
  font-weight: 700;
  white-space: nowrap;
}
.career_dl__row dd {
  margin: 0;
  line-height: 1.2;
}
.career_list {
  margin: 0;
}
.career_list li {
  margin-bottom: 10px;
  line-height: 1.2;
}
.career_list li:last-child {
  margin-bottom: 0;
}
/* SP */
@media (max-width: 740px) {
  .career_box {
    padding: 20px 18px;
  }
  .career_dl__row {
    grid-template-columns: 72px 1fr;
    gap: 10px;
  }
  .career_list {
    margin-top: 18px;
  }
}
/* cost */
.cost__head {
  text-align: center;
}
.cost__price {
  margin: 20px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.cost__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(120, 110, 90, .9);
  color: #fff;
  font-weight: 700;
  line-height: 1.1;
  border-radius: 2px;
}
.cost__yen {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 700;
  color: #1c4370;
}
.cost__notes {
  margin: 18px auto 60px;
  padding: 0;
  list-style: none;
  max-width: 625px;
  text-align: left;
  line-height: 1.7;
}
.cost__notes li {
  margin-bottom: 6px;
}
.cost__subline {
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  max-width: 860px;
  line-height: 1.6;
}
.cost__subline::before, .cost__subline::after {
  content: "";
  height: 1px;
  background: #998c70;
}
.cost__subline::after {
  background: #998c70;
}
.cost__grid {
  margin: 34px auto 0;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 22px;
}
.cost__item {
  border: 1px solid rgba(140, 120, 80, .55);
  background: rgba(255, 255, 255, .85);
  padding: 012px;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cost__item small {
  font-weight: 700;
  font-size: 12px;
  color: rgba(0, 0, 0, .65);
}
.cost__item--empty {
  border: none;
  background: transparent;
}
.cost__bottomnote {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, .65);
}
/* SP */
@media (max-width: 740px) {
  .cost__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .cost__item--empty {
    display: none; /* 空枠は消す */
  }
  .cost__subline {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cost__subline::before, .cost__subline::after {
    display: none;
  }
  .cost__notes {
    font-size: 11px;
  }
}
.warranty__lead {
  font-weight: 700;
  color: #1c4370;
  line-height: 1.8;
}
.warranty__sq {
  display: inline-block;
  margin-right: 3px;
  color: #1c;
}
.warranty__titleimg {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.warranty__titleimg img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}
.warranty__list {
  margin: 10px 0;
  padding-left: 18px;
  list-style: disc;
}
.warranty__list li {
  line-height: 1.8;
}
/* 適用外 見出し（左右ライン） */
.warranty__exclude_ttl {
  margin: 0 0 15px;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding: 0 16px;
}
.warranty__exclude_ttl::before, .warranty__exclude_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34%;
  height: 1px;
  background: #998c70;
}
.warranty__exclude_ttl::before {
  left: 0;
}
.warranty__exclude_ttl::after {
  right: 0;
  transform: scaleX(-1);
}
@media (max-width: 740px) {
  .warranty__titleimg {
    margin: 26px 0;
  }
  .warranty__exclude_ttl::before, .warranty__exclude_ttl::after {
    width: 8%;
  }
}
/* =========================
  CTA
========================= */
.access_cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 0 0 90px;
}
.access_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: min(560px, 100%);
  height: 75px;
  padding: 18px 22px;
  border-radius: 999px;
  background: #d86245;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}
@media (min-width: 741px) {
  .access_btn:hover {
    opacity: .92;
  }
}
/* =========================
  Block
========================= */
.access_title {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 900;
}
/* Table */
.access_table_wrap {
  overflow-x: auto;
}
.access_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
  border: 1px solid rgba(15, 23, 42, .2);
}
.access_table th, .access_table td {
  padding: 10px 10px;
  border-right: 1px solid rgba(15, 23, 42, .2);
  border-bottom: 1px solid rgba(15, 23, 42, .2);
  text-align: center;
  white-space: nowrap;
}
.access_table thead th {
  background: #5b7695;
  color: #fff;
  font-weight: 800;
}
.access_table tbody th {
  background: #edf2f7;
  font-weight: 800;
}
.access_table tr > *:last-child {
  border-right: none;
}
.access_table tbody tr:last-child > * {
  border-bottom: none;
}
.access_hours {
  margin: 20px 0 10px;
  font-size: 15px;
}
.access_notes {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  font-size: 15px;
}
.access_notes li {
  position: relative;
  padding-left: 1.1em;
}
.access_notes li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.access_address {
  margin: 0 0 20px;
}
.access_address_name {
  margin: 0 0;
  font-weight: 900;
  font-size: 15px;
}
.access_address_text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
/* Map */
.access_map {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(15, 23, 42, .2);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.access_map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.access_caption {
  margin: 10px 0 0;
  font-size: 15px;
  text-align: right;
}
.access_iframe iframe {
  width: 100%;
}
@media (max-width: 740px) {
  .access_block {
    grid-template-columns: 1fr;
  }
  .access_cta {
    margin: 0 0 60px;
  }
  .access_btn {
    padding: 16px 18px;
  }
}
.footer {
  border-top: solid 1px;
  color: #333;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 840px) {
  .footer {
    padding-bottom: 93px;
    display: block;
  }
}