@charset "utf-8";

/* =========================

  base

=========================*/
:root {
  /*color ― ロゴのブランドカラー（はないろ＝花の色）*/
  --fontcolor: #4B5A5A;
  --accentcolor: #2EAEAB;        /* ミント（メイン）安心・リラックス */
  --accentcolor-hover: #38C2BE;
  --mint: #2EAEAB;
  --sky: #5FBEDC;                /* スカイ：透明感・希望 */
  --yellow: #E1BE4E;             /* イエロー：明るさ・元気 */
  --lavender: #9B99C6;           /* ラベンダー：清潔・上品 */
  --mint-soft: #E7F5F4;
  --sky-soft: #E8F4FA;
  --yellow-soft: #FBF3DC;
  --lavender-soft: #F0EFF7;
  --bg-blue: #E7F5F4;
  --bg-beige: #FBF9F8;
  --font: "Zen Maru Gothic", sans-serif;
  --normalfont: 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  --enfont: "Zen Maru Gothic", sans-serif;
  --border-color: #BFE0DD;
  --shadow: 0px 0px 14px 0px rgba(0, 0, 0, .20);
}

body {
  color: var(--fontcolor);
  font-size: 18px;
  font-family: var(--normalfont);
  font-weight: 400;
  line-height: 1.8em;
  background-color: #FDFEFF;
  letter-spacing: 0.08em;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}
a {
  color: var(--fontcolor);
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
a:hover {
  opacity: .6;
}
img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.wrapper {
  overflow: hidden;
}
@media screen and (max-width:768px) {
  body {
    font-size: 16px;
    line-height: 1.6em;
    overflow-x: clip;
  }
}

/* ------------------------
  contents
------------------------*/
.section-contents {
  margin-bottom: 150px;
  position: relative;
}
.section-contents__inner {
  max-width: 1400px;
  width: 90%;
  margin: auto;
}
.section-contents p {
  margin-bottom: 30px;
}
.section-contents p:last-child {
  margin-bottom: 0;
}
.section-contents p a:hover {
  opacity: 0.6;
}
@media screen and (max-width:1450px) {
  .section-contents__inner {
    width: 90%;
  }
}
@media screen and (max-width:768px) {
  .section-contents {
    margin-bottom: 80px;
  }
  .section-contents p {
    margin-bottom: 20px;
    text-align: left;
  }
  .img__area img {
    width: 100%;
  }
}

/* =========================

  nav

=========================*/
header.fixed-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 40px;
  z-index: 99999;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: calc(1500px - 80px);
  margin: auto;
}
header.fixed-header.is-fixed {
  position: fixed;
  top: 10px;
  background: rgba(255, 255, 255, .85);
  border-radius: 10px;
  padding: 10px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  backdrop-filter: blur(20px);
}
header.fixed-header nav ul li a {
  color: var(--fontcolor);
}
header.fixed-header.is-fixed nav ul li a {
  color: var(--fontcolor);
}
header.fixed-header .logo {
  max-width: 430px;
  position: relative;
}
header.fixed-header .logo img {
  width: 100%;
  transition: opacity .3s ease;
}
/* ロゴ切り替え */
header.fixed-header.is-fixed .logo img.light_logo {
  opacity: 0;
}
header.fixed-header.is-fixed .logo img.dark_logo {
  opacity: 1;
}
.logo img.dark_logo {
  opacity: 0;
  position: absolute;
  left: 0;
}
/* PCナビ */
.fixed-header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.global-nav .global-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.global-nav .global-nav__list li a {
  font-weight: bold;
}
@media screen and (max-width:1550px) {
  header.fixed-header {
    width: calc(92% - 20px);
    padding: 10px 0;
  }
}
@media screen and (max-width:1160px) {
  .global-nav .global-nav__list {
    font-size: 16px;
  }
  .global-nav .global-nav__list {
    align-items: unset;
  }
}

/* =========================
  hamburger
=========================*/
.nav-toggle {
  display: none;
  position: relative;
  width: 52px;
  height: 40px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle__line {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background-color: #FFFFFF;
  transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
}
.nav-toggle__line:nth-child(1) { top: 8px; }
.nav-toggle__line:nth-child(2) { top: 16px; }
.nav-toggle__line:nth-child(3) { top: 24px; }

.nav-toggle__text {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

@media (min-width: 1025px) {
  header.fixed-header {
    position: absolute;
  }
  .nav-toggle {
    display: none;
  }
  header.fixed-header nav {
    position: static;
  }
  header.fixed-header nav ul {
    flex-direction: row;
  }
}

@media (max-width: 1024px) {
  header.fixed-header {
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: calc(100% - 24px);
    padding: 12px;
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  /* ロゴ */
  header.fixed-header .logo img.light_logo {
    display: none;
  }
  header.fixed-header .logo {
    max-width: 415px;
    width: 20%;
  }
  header.fixed-header .logo img.dark_logo {
    position: static;
    opacity: 1;
  }
  header.fixed-header nav ul li a {
    color: var(--fontcolor);
  }
  header.fixed-header.is-fixed {
    /* width: calc(95% - 32px); */
    padding: 12px;
    top: 0;
    border-radius: 0;
  }
  header.fixed-header.is-fixed nav ul li a {
    color: var(--fontcolor);
    transition: unset;
  }
  .nav-toggle {
    display: block;
  }
  .nav-toggle__line {
    background-color: var(--fontcolor);
  }
  .nav-toggle__text {
    color: var(--fontcolor);
  }
  header.fixed-header nav {
    position: fixed;
    inset: 74px 0 0 0;
    background-color: #FFFFFF;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease;
  }
  header.fixed-header nav ul {
    width: 88%;
    margin: auto;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
  }
  header.fixed-header nav ul li {
    width: 45%;
    height: 90px;
    display: table;
    align-items: center;
    border: 1px solid var(--accentcolor);
  }
  header.fixed-header nav ul li a {
    display: table-cell;
    padding: 10px;
    vertical-align: middle;
    text-align: center;
  }
  header.fixed-header nav ul li a .sub {
    color: var(--accentcolor);
    font-size: 12px;
    line-height: 1.0em;
  }
  header.fixed-header.is-open nav {
    height: 100vh;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    padding-top: 50px;
    background-color: var(--bg-beige);
  }
  header.fixed-header.is-open .nav-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  header.fixed-header.is-open .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }
  header.fixed-header.is-open .nav-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  header.fixed-header .logo {
    width: 45%;
    max-width: 162px;
  }
}

/* =========================
  ページ内リンク用
=========================*/
@media (min-width: 768px) {
  #about,
  #clinic,
  #message,
  #medical,
  #recruit {
    scroll-margin-top: 150px;
  }
}
@media (max-width: 767px) {
  #about,
  #clinic,
  #message,
  #medical,
  #recruit {
    scroll-margin-top: 80px;
  }
}


/* =========================

  kv

=========================*/
.kv {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(58% 52% at 82% 10%, rgba(95, 190, 220, .30), transparent 62%),
    radial-gradient(52% 48% at 10% 16%, rgba(225, 190, 78, .22), transparent 62%),
    radial-gradient(60% 58% at 86% 90%, rgba(155, 153, 198, .30), transparent 64%),
    radial-gradient(68% 62% at 14% 94%, rgba(46, 174, 171, .24), transparent 62%),
    linear-gradient(135deg, #FCFBF6 0%, #EAF6F4 46%, #E9F2F8 100%);
}
/* 花マークの淡いウォーターマーク */
.kv::after {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: -6vw;
  width: min(52vw, 620px);
  aspect-ratio: 1 / 1;
  background: url(../images/common/flower_mark.png) center / contain no-repeat;
  opacity: 0.10;
  z-index: 1;
  pointer-events: none;
}
/* 浮遊する花の色のドット */
.kv_decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.kv_decor span {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .5;
}
.kv_decor span:nth-child(1) { width: 18px; height: 18px; background: var(--yellow);   top: 24%; left: 14%; }
.kv_decor span:nth-child(2) { width: 12px; height: 12px; background: var(--lavender); top: 32%; left: 80%; }
.kv_decor span:nth-child(3) { width: 26px; height: 26px; background: var(--sky);      top: 68%; left: 8%;  }
.kv_decor span:nth-child(4) { width: 14px; height: 14px; background: var(--mint);     top: 74%; left: 88%; }
.kv_decor span:nth-child(5) { width: 10px; height: 10px; background: var(--lavender); top: 18%; left: 46%; }
.kv_decor span:nth-child(6) { width: 16px; height: 16px; background: var(--yellow);   top: 82%; left: 62%; }
.kv_inner {
  max-width: 1120px;
  width: 90%;
  min-height: 100svh;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.kv_copy {
  font-family: var(--normalfont);
  color: var(--fontcolor);
  text-align: center;
  padding: 130px 0 90px;
  position: relative;
  z-index: 3;
}
.kv_open {
  font-family: var(--enfont);
  font-size: clamp(14px, 1.7vw, 20px);
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--mint);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.kv_open::before,
.kv_open::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--mint);
  opacity: .6;
}
.kv_catch {
  font-family: var(--font);
  font-size: clamp(34px, 6.4vw, 88px);
  font-weight: 700;
  line-height: 1.32em;
  letter-spacing: 0.04em;
  margin: 0;
}
.kv_catch .hana {
  background: linear-gradient(95deg, var(--mint) 0%, var(--sky) 34%, var(--lavender) 66%, var(--yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.kv_catch .dot {
  color: var(--mint);
}
.kv_name {
  font-family: var(--font);
  font-size: clamp(16px, 2vw, 25px);
  font-weight: 500;
  line-height: 1.6em;
  margin-top: 30px;
  color: var(--fontcolor);
}
.kv_name .small {
  display: block;
  font-size: 0.72em;
  letter-spacing: 0.18em;
  color: var(--mint);
  margin-bottom: 4px;
}
.kv_lead {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.9em;
  margin: 26px auto 0;
  max-width: 900px;
}
.kv_date {
  display: inline-block;
  font-family: var(--font);
  font-size: clamp(17px, 2.3vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  background: var(--mint);
  border-radius: 100vw;
  padding: 14px 44px;
  margin-top: 44px;
  box-shadow: 0 12px 30px rgba(46, 174, 171, .28);
}
.kv_date .y {
  font-size: 0.78em;
}
.kv_scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--enfont);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--mint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.kv_scroll::after {
  content: "";
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--mint), transparent);
  animation: kvscroll 1.8s ease-in-out infinite;
}
@keyframes kvscroll {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media screen and (max-width:768px) {
  .kv_copy {
    padding: 110px 0 90px;
  }
  .kv_open {
    margin-bottom: 18px;
  }
  .kv_name {
    margin-top: 22px;
  }
  .kv_lead {
    text-align: left;
    margin-top: 20px;
  }
  .kv_date {
    margin-top: 34px;
    padding: 12px 32px;
  }
  .kv::after {
    width: 70vw;
  }
}

/* =========================

  ttl

=========================*/
h2, .fixed-header {
  font-family: var(--font);
}
h2 {
  font-size: clamp(28px, 5vw, 45px);
  line-height: 1.4em;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  h2 {
    margin-bottom: 30px;
  }
}
h2::after {
  content: "";
  position: absolute;
  width: 65px;
  height: 1px;
  background-color: var(--accentcolor);
  bottom: 0;
  left: 0;
}
#about::before {
  content: "philosophy";
  width: fit-content;
  text-transform: uppercase;
  color: var(--accentcolor);
  font-family: var(--enfont);
  font-size: clamp(50px, 8vw, 136px);
  font-weight: 500;
  line-height: 1.2em;
  position: absolute;
  top: 4vw;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0.26;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
  #about::before {
    top: 6vw;
  }
}
#features .section-contents__inner::before {
  content: "features";
  text-transform: uppercase;
  color: var(--accentcolor);
  font-family: var(--enfont);
  font-size: clamp(55px, 10vw, 130px);
  font-weight: 500;
  line-height: 1.2em;
  text-align: center;
  letter-spacing: 0.1em;
  opacity: 0.26;
}
#clinic::before {
  content: "clinic";
  text-transform: uppercase;
  color: var(--accentcolor);
  font-family: var(--enfont);
  font-size: clamp(55px, 12vw, 180px);
  font-weight: 500;
  line-height: 1.2em;
  position: absolute;
  top: -5vw;
  right: 0;
  opacity: 0.26;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
  #clinic::before {
    top: 51vw;
  }
}
#message::before {
  content: "message";
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: var(--enfont);
  font-size: clamp(55px, 12vw, 160px);
  font-weight: 500;
  line-height: 1.2em;
  position: absolute;
  top: 1vw;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0.26;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
  #message::before {
    top: 8vw;
  }
}
#medical .description::before {
  content: "medical";
  text-transform: uppercase;
  color: var(--accentcolor);
  font-family: var(--enfont);
  font-size: clamp(55px, 10vw, 130px);
  font-weight: 500;
  line-height: 1.2em;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
  #medical .description::before {
    position: absolute;
    top: -10vw;
    left: -14px;
    opacity: 0.2;
  }
}


/* =========================

  about

=========================*/
#about {
  background-image: linear-gradient(132deg, #fef9eb, #e7f3f4 33% 100%);
  padding-top: clamp(110px, 16vw, 260px);
  margin-bottom: 0;
}
#about .box {
  background-color: #FFFFFF;
  padding: 60px;
}
#about .about__list {
  margin-top: 50px;
  display: flex;
  flex-flow: column;
  gap: 2rem;
}
#about .about__list li {
  padding: 32px;
  border: 2px dotted var(--accentcolor);
  border-radius: 30px;
}
#about .about__list li h3 {
  font-size: 1.4rem;
  position: relative;
  margin: 0 0 15px;
  padding: 4px 4px 4px 30px;
}
#about .about__list li h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 14px;
  height: 100%;
  background-color: var(--accentcolor);
  border-radius: 10px;
}
@media screen and (max-width:768px) {
  #about .box {
    padding: 40px 20px;
  }
  #about .about__list {
    margin-top: 30px;
  }
  #about .about__list li {
    padding: 30px 16px;
    border: 1.5px dotted var(--accentcolor);
  }
  #about .about__list li h3 {
    font-size: 18px;
  }
}


/* =========================

  features

=========================*/
#features {
  padding: 40px 0 120px;
}
#features::after {
  content: "";
  background-image: linear-gradient(0deg, #FDFEFF, var(--bg-blue));
  width: 100%;
  height: 5vw;
  position: absolute;
  left: 0;
  bottom: 0;
}
#features h2 {
  margin-top: 15px;
}
.point__block {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.point__block li {
  width: calc(50% - 1.5rem);
}
.point__block li img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.point__block li .ttl {
  font-family: var(--font);
  margin: 30px 0 20px;
  padding: 0 10px 20px;
  border-bottom: 1px solid var(--border-color);
}
.point__block li .ttl .point {
  color: var(--accentcolor);
  font-family: var(--normalfont);
  font-size: 25px;
  font-weight: bold;
  margin: 0 0 15px;
}
.point__block li .ttl .point .num {
  font-size: 2em;
  margin-left: 6px;
}
.point__block li .ttl h3 {
  font-size: clamp(20px, 3vw, 25px);
  line-height: 1.4em;
}
.point__block li > p {
  padding: 0 10px;
}
@media screen and (max-width:768px) {
  #features {
    padding: 40px 0 80px;
  }
  .point__block {
    flex-flow: column;
    margin-top: 30px;
  }
  .point__block li {
    width: 100%;
  }
  .point__block li .ttl .point {
    font-size: 20px;
  }
}

/* =========================

  clinic

=========================*/
#clinic .col2 {
  justify-content: flex-start !important;
}
#clinic .col2 img {
  width: 40%;
}
#clinic .description {
  max-width: 856px;
  width: 60%;
  padding-left: 5vw;
}
.description__table {
  width: 100%;
  font-size: 1.15em;
  overflow: hidden;
  margin-top: 70px;
}
.description__table dt, .description__table dd {
  float: left;
  margin-bottom: 15px;
}
.description__table dt {
  width: 17%;
  font-weight: bold;
}
.description__table dd {
  width: 83%;
}
#clinic .time_table {
  font-size: 1.1em;
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  #clinic .col2 img {
    width: 85%;
    aspect-ratio: 16 / 9;
  }
  #clinic .description {
    width: 90%;
    max-width: 90%;
    padding: 0;
    margin: 40px auto 0;
  }
  .description__table {
    font-size: 1em;
    margin-top: 50px;
  }
  .description__table dt, .description__table dd {
    width: 100%;
    float: none;
  }
  .description__table dt {
    width: calc(100% - 20px);
    color: #FFFFFF;
    font-weight: bold;
    background-color: var(--accentcolor);
    padding: 4px 10px;
    margin-bottom: 8px;
  }
  .description__table dd {
    margin-bottom: 30px;
  }
  #clinic .time_table {
    font-size: 16px;
    margin-top: 0;
  }
}

/* =========================

  map

=========================*/
@media screen and (max-width:768px) {
  #map iframe {
    height: 450px;
  }
}

/* =========================

  message

=========================*/
#message {
  padding-top: clamp(130px, 16vw, 260px);
  padding-bottom: 150px;
  margin-bottom: 80px;
  background-color: var(--accentcolor);
}
#message p, #message h2 {
  color: #FFFFFF;
}
#message h2::after {
  background-color: #FFFFFF;
}
#message .col2 {
  gap: 4rem;
}
#message .col2 .txt_area {
  width: 60%;
}
#message .col2 .img_area {
  width: 40%;
}
#message .col2 .img_area img {
  aspect-ratio: 1 / 1;
}
@media screen and (max-width:768px) {
  #message {
    padding-bottom: 90px;
    margin-bottom: 40px;
  }
  #message .col2 .txt_area, #message .col2 .img_area {
    width: 100%;
  }
  #message .col2 .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* =========================

  medical

=========================*/
#medical {
  padding-top: 50px;
}
/* #medical .section-contents__inner {
  position: relative;
} */
#medical .col2 img {
  width: 50%;
  height: fit-content;
  position: absolute;
  right: 0;
  top: 180px;
  bottom: 0;
  margin: auto;
}
#medical .description {
  width: 48%;
  position: relative;
}
ul.list li {
  text-indent: -20px;
  padding-left: 25px;
  margin-bottom: 10px;
}
ul.list li:before {
  content: "●";
  color: #3E9FA7;
  font-size: 18px;
  margin-right: 8px;
  vertical-align: bottom;
  opacity: .4;
}
@media screen and (max-width:768px) {
  #medical .description {
    width: 100%;
  }
  #medical .col2 img {
    position: unset;
    width: 100%;
  }
}

/* =========================

  recruit

=========================*/
#recruit {
  position: relative;
}
#recruit::before {
  content: "recruit";
  text-transform: uppercase;
  color: var(--accentcolor);
  font-family: var(--enfont);
  font-size: clamp(55px, 10vw, 130px);
  font-weight: 500;
  line-height: 1.2em;
  position: absolute;
  top: 2vw;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0.26;
  letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
  #recruit::before {
    top: 4vw;
  }
}
.recruit__intro {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.recruit__block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.recruit__section {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
}
.recruit__section h3 {
  font-family: var(--font);
  font-size: 1.15em;
  position: relative;
  padding: 6px 6px 15px 20px;
  margin-bottom: 20px;
  border-left: 5px solid var(--accentcolor);
  border-bottom: 1px solid var(--border-color);
}
.recruit__section > p {
  margin-bottom: 15px;
}
.recruit__table {
  width: 100%;
  display: grid;
  grid-template-columns: 28% 72%;
}
.recruit__table dt,
.recruit__table dd {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  line-height: 1.8em;
}
.recruit__table dt {
  font-weight: bold;
  padding-right: 20px;
}
.recruit__table dt:last-of-type,
.recruit__table dd:last-child {
  border-bottom: none;
}
.recruit__sub {
  font-size: 0.88em;
  color: #777;
}
.recruit__process {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.recruit__process-step {
  background-color: var(--accentcolor);
  color: #FFFFFF;
  padding: 8px 22px;
  border-radius: 100vw;
  font-weight: bold;
  font-family: var(--font);
}
.recruit__process-arrow {
  color: var(--accentcolor);
  font-size: 1.4em;
  font-weight: bold;
}
.recruit__note {
  font-size: 0.85em;
  color: #888;
  margin-top: 20px;
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  .recruit__section {
    padding: 24px 16px;
  }
  .recruit__table {
    grid-template-columns: 1fr;
  }
  .recruit__table dt,
  .recruit__table dd {
    padding: 4px 0;
    border-bottom: none;
  }
  .recruit__table dt {
    color: #FFFFFF;
    background-color: var(--accentcolor);
    padding: 4px 10px;
    margin-top: 12px;
    border-radius: 4px;
  }
  .recruit__table dd {
    padding: 6px 4px 10px;
    border-bottom: 1px solid var(--border-color);
  }
  .recruit__table dd:last-child {
    border-bottom: none;
  }
}

/* =========================

  footer

=========================*/
footer .footer__inner {
  max-width: 1400px;
  width: 90%;
  margin: auto;
  padding: 100px 0;
}
footer .footer__inner .logo {
  max-width: 350px;
  width: 75%;
}
footer .footer__inner.col2 {
  align-items: flex-start;
  gap: 3rem;
}
footer .footer__inner .left {
  width: 55%;
}
footer .footer__inner .add {
  margin-top: 40px;
}
footer .time_table {
  width: 45%;
}
.link-btn {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 30px;
}
.link-btn li {
  text-align: center;
  background-color: #8B8B8B;
  display: table;
}
.link-btn li:first-of-type {
  width: 60%;
}
.link-btn li:last-of-type {
  width: 40%;
}
.link-btn li .inner {
  color: #FFFFFF;
  font-size: 30px;
  padding: 20px 40px;
  display: table-cell;
  vertical-align: middle;
}
.link-btn li .inner .small {
  font-size: 16px;
  display: block;
}
.link-btn li > a[href] {
  font-family: var(--font);
  color: #FFFFFF;
  font-weight: bold;
  background: var(--accentcolor);
}
.link-btn li > a:hover {
  background-color: var(--accentcolor-hover);
  opacity: 1.0;
}
.copy {
  width: calc(100% - 8px);
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  background-color: var(--accentcolor);
  padding: 4px;
}
@media screen and (max-width:990px) {
  footer .footer__inner {
    padding: 30px 0;
  }
  footer .footer__inner.col2 {
    flex-flow: column;
  }
  footer .footer__inner .left {
    width: 100%;
  }
  footer .footer__inner .add {
    margin-top: 20px;
  }
  footer .logo {
    width: 90%;
    margin: auto;
  }
  footer .time_table {
    width: calc(100% - 42px);
  }
  .link-btn {
    flex-flow: column;
  }
  .link-btn li, .link-btn li:first-of-type, .link-btn li:last-of-type {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .link-btn li .inner {
    font-size: 24px;
  }
  .link-btn li .inner .small {
    line-height: 1.1em;
    margin-bottom: 2px;
  }
  .link-btn li .inner p {
    line-height: 1.4em;
  }
  .copy {
    font-size: 11px;
  }
}

/* ------------------------
  time_table, tag
------------------------*/
.day_tag, .day_cat {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 10px;
}
.tags {
  font-size: 14px;
  background-color: var(--accentcolor);
  color: #FFFFFF;
  display: table;
  width: 120px;
  text-align: center;
}
.tags .tags-txt {
  display: table-cell;
  vertical-align: middle;
}
.table_area {
  width: 600px;
}
.time_table {
  width: calc(100% - 82px);
  background-color: #FFFFFF;
  padding: 40px;
  border: 1px solid var(--border-color);
  border-radius: 20px;
}
.time_table table {
  width: 100%;
}
.time_table table th, .time_table td {
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
  vertical-align: middle;
}
.time_table .last_time {
  display: flex;
  margin: 15px 0;
}
.time_table .last_time dd {
  width: 70%;
}
.time_table .last_time ul {
  display: flex;
  flex-wrap: wrap;
}
.time_table .last_time ul li {
  margin: 0 10px 5px 0;
}
.time_table .closed_day {
  font-size: 0.9em;
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.time_table .tag_des.tag_border,
.time_table .closed_day .tag_des {
  margin-right: 10px;
}
.time_table .tag_des.tag_border,
.time_table .last_time dd {
  margin-left: 12px;
}
.time_table .closed_day .tag_des {
  color: #FFFFFF;
  background-color: var(--accentcolor);
  border-radius: 100vw;
  border-color: var(--accentcolor);
  padding: 4px 30px;
}
.time_table .last_time {
  display: block;
}
.time_table .last_time dt {
  width: 100%;
  line-height: 1.4em;
  text-align: left;
  margin-bottom: 10px;
}
.time_table .tag_des.tag_border, .time_table .last_time dd {
  width: 100%;
  margin-left: 0;
}
.time_table .circle {
  color: var(--fontcolor);
}
.time_table .ttl_border {
  margin: 40px 0 15px;
}
@media screen and (max-width:1024px) {
  .time_table.w70 {
    width: auto;
  }
}
@media screen and (max-width:768px) {
  .time_table {
    width: calc(100% - 40px);
    padding: 20px;
  }
  .time_table .tag_des.tag_border,
  .time_table .closed_day .tag_des {
    font-size: 14px;
  }
  .time_table .closed_day {
    margin-top: 20px;
  }
}


/* =========================

  other

=========================*/
.text_center {
  text-align: center;
}
.bg {
  padding: 100px 0;
}
@media screen and (max-width:768px) {
  .bg {
    padding: 60px 0;
  }
}
.bg_blue {
  background-color: var(--bg-blue);
}
.bg_beige {
  background-color: var(--bg-beige);
}
.col2 {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .col2 {
    flex-flow: column;
    gap: 1rem;
  }
}
.btn {
  position: relative;
  padding: 15px 40px 15px 30px;
  color: #FFFFFF;
  background-color: var(--accentcolor);
}
@media screen and (max-width:768px) {
  .btn {
    width: calc(100% - 70px);
    text-align: center;
  }
}
.arrow {
  position: absolute;
  padding: 8px;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.arrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #CCCCCC;
  border-right: solid 1px #CCCCCC;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn .arrow::before {
  border-color: #FFFFFF;
}
.arrow.arrow_right::before {
  transform: rotate(45deg);
}
.pc_ver {
  display: block;
}
@media screen and (max-width:768px) {
  .pc_ver {
    display: none;
  }
}
.sp_ver {
  display: none;
}
@media screen and (max-width:768px) {
  .sp_ver {
    display: block;
  }
}

/* =========================================================

  はないろ整形外科 ティザー ― 追加・上書きスタイル

========================================================= */

/* 花の色カラーセット（カード等で使用） */
.c-mint     { --c:#2EAEAB; --cd:#247E7C; --cbg:#E7F5F4; }
.c-sky      { --c:#5FBEDC; --cd:#3192B3; --cbg:#E8F4FA; }
.c-lavender { --c:#9B99C6; --cd:#6C69A4; --cbg:#F0EFF7; }
.c-yellow   { --c:#E1BE4E; --cd:#B08A1C; --cbg:#FBF3DC; }

/* --- header ロゴ：高さ基準でコンパクトに --- */
header.fixed-header { padding: 16px 40px; }
header.fixed-header .logo,
header.fixed-header.is-fixed .logo {
  max-width: none;
  width: auto;
}
header.fixed-header .logo a { display: block; line-height: 0; }
header.fixed-header .logo img,
header.fixed-header .logo img.logo__img {
  width: auto;
  height: 104px;
  opacity: 1 !important;
  position: static;
}
header.fixed-header.is-fixed .logo img,
header.fixed-header.is-fixed .logo img.logo__img { height: 66px; }
@media (max-width:1024px) {
  header.fixed-header .logo img,
  header.fixed-header .logo img.logo__img,
  header.fixed-header.is-fixed .logo img.logo__img { height: 56px; }
}
@media (max-width:768px) {
  header.fixed-header { padding: 10px 14px; }
  header.fixed-header .logo img,
  header.fixed-header .logo img.logo__img { height: 46px; }
}

/* --- about（はないろの想い）--- */
#about { background-image: linear-gradient(135deg, #FBF4E2 0%, #EAF5F2 38%, #E9F2F8 100%); }
#about .box { border-radius: 30px; box-shadow: 0 18px 50px rgba(75,90,90,.05); }
#about .lead {
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 2em;
}
#about .lead .em {
  font-family: var(--font);
  font-weight: 700;
  color: var(--mint);
}
#about .about__list li:nth-child(1) { border-color: var(--mint); }
#about .about__list li:nth-child(2) { border-color: var(--lavender); }
#about .about__list li:nth-child(3) { border-color: var(--yellow); }
#about .about__list li:nth-child(1) h3::before { background-color: var(--mint); }
#about .about__list li:nth-child(2) h3::before { background-color: var(--lavender); }
#about .about__list li:nth-child(3) h3::before { background-color: var(--yellow); }

/* --- features（特徴）写真なしカード --- */
.point__block { gap: 2rem; margin-top: 50px; }
/* 追加カード類は border-box（テンプレ既定の content-box を上書き） */
.point__block li,
.med-card,
.info-card,
.doctor-card { box-sizing: border-box; }
.point__block li {
  width: calc(50% - 1rem);
  background: #FFFFFF;
  border-radius: 24px;
  border-top: 5px solid var(--c, var(--mint));
  padding: 44px 42px 40px;
  box-shadow: 0 12px 34px rgba(75,90,90,.07);
  transition: transform .3s ease, box-shadow .3s ease;
}
.point__block li:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(75,90,90,.12);
}
.point__block li .ttl {
  margin: 0 0 18px;
  padding: 0 0 18px;
  border-bottom: 1px dashed var(--border-color);
}
.point__block li .ttl .point {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cd, var(--mint));
  font-family: var(--enfont);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.point__block li .ttl .point .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 50%;
  background: var(--cbg, var(--mint-soft));
  color: var(--cd, var(--mint));
  font-size: 26px;
  line-height: 1;
}
.point__block li .ttl h3 {
  font-family: var(--font);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.45em;
  color: var(--fontcolor);
}
.point__block li > p { padding: 0; }
.point__block li .tags-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.point__block li .tags-mini span {
  font-size: 13px;
  line-height: 1.4;
  padding: 4px 13px;
  border-radius: 100vw;
  background: var(--cbg, var(--mint-soft));
  color: var(--cd, var(--mint));
}
@media screen and (max-width:768px) {
  .point__block { gap: 1.2rem; margin-top: 30px; }
  .point__block li { width: 100%; padding: 32px 24px 30px; }
}

/* --- medical（診療内容）--- */
#medical { padding-top: 0; }
#medical .section-contents__inner { position: relative; }
#medical .section-contents__inner::before {
  content: "medical";
  display: block;
  text-transform: uppercase;
  color: var(--accentcolor);
  font-family: var(--enfont);
  font-size: clamp(50px, 9vw, 120px);
  font-weight: 500;
  line-height: 1.1em;
  letter-spacing: 0.1em;
  opacity: 0.16;
}
#medical h2 { margin-top: -10px; }
.med-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.med-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 30px 30px 28px;
  position: relative;
  overflow: hidden;
}
.med-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 6px;
  background: var(--c, var(--mint));
}
.med-card h3 {
  font-family: var(--font);
  font-size: 1.25em;
  color: var(--cd, var(--fontcolor));
  margin-bottom: 6px;
}
.med-card .en {
  display: block;
  font-family: var(--enfont);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c, var(--mint));
  margin-bottom: 14px;
  opacity: .9;
}
.med-card p { font-size: 15px; line-height: 1.85em; margin: 0; }
.med-card .free {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  padding: 2px 12px;
  border-radius: 100vw;
  background: var(--cbg, var(--mint-soft));
  color: var(--cd, var(--mint));
}
@media screen and (max-width:1024px) {
  .med-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width:768px) {
  .med-grid { grid-template-columns: 1fr; gap: 1rem; }
  .med-card { padding: 24px 22px; border-radius: 18px; }
}

/* --- message（院長挨拶）--- */
#message { padding-top: clamp(120px, 15vw, 240px); }
#message .msg-grid {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
#message .msg-body { flex: 1; }
#message .msg-body p { font-size: clamp(15px, 1.6vw, 17px); line-height: 2em; }
#message .doctor-card {
  width: 320px;
  flex-shrink: 0;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 36px 32px;
  color: var(--fontcolor);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
/* 元CSS #message p{color:#fff} を打ち消す */
#message .doctor-card p,
#message .doctor-card li { color: var(--fontcolor); }
#message .doctor-card .role {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--mint);
  font-weight: 700;
}
#message .doctor-card .name {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  margin: 6px 0 2px;
  line-height: 1.3em;
  color: var(--fontcolor);
}
#message .doctor-card .name .en {
  display: block;
  font-family: var(--enfont);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #9aa6a6;
  margin-top: 4px;
}
#message .doctor-card .deg {
  font-size: 13px;
  color: #7c8888;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
#message .doctor-card ul.cred li {
  font-size: 13px;
  line-height: 1.7em;
  padding-left: 18px;
  position: relative;
  margin-bottom: 4px;
}
#message .doctor-card ul.cred li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
}
#message .sign {
  text-align: right;
  font-family: var(--font);
  font-size: 1.05em;
  margin-top: 24px;
}
#message .sign .big { font-size: 1.5em; font-weight: 700; margin-left: 10px; white-space: nowrap; }
@media screen and (max-width:900px) {
  #message .msg-grid { flex-direction: column-reverse; gap: 2rem; }
  #message .doctor-card { width: 100%; }
}

/* --- clinic（クリニック情報）写真なし --- */
#clinic { padding-top: clamp(60px, 10vw, 120px); }
#clinic .col2 { display: block; }
#clinic .description {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 0;
}
.info-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 12px 44px;
  box-shadow: 0 12px 34px rgba(75,90,90,.05);
}
#clinic .description__table {
  margin-top: 0;
  border: none;
}
#clinic .description__table dt,
#clinic .description__table dd {
  float: none;
  width: auto;
  margin: 0;
  padding: 22px 4px;
  border-bottom: 1px dashed var(--border-color);
  line-height: 1.7em;
}
#clinic .description__table {
  display: grid;
  grid-template-columns: 150px 1fr;
}
#clinic .description__table dt { font-weight: 700; color: var(--mint); }
#clinic .description__table dt:last-of-type,
#clinic .description__table dd:last-of-type { border-bottom: none; }
.soon {
  display: inline-block;
  font-size: 0.82em;
  padding: 2px 14px;
  border-radius: 100vw;
  background: var(--lavender-soft);
  color: var(--lavender);
  font-weight: 700;
  margin-left: 4px;
}
@media screen and (max-width:768px) {
  .info-card { padding: 6px 20px; }
  #clinic .description__table { grid-template-columns: 1fr; }
  #clinic .description__table dt {
    padding-bottom: 4px;
    border-bottom: none;
    background: none;
    color: var(--mint);
  }
  #clinic .description__table dd { padding-top: 4px; }
}

/* --- map --- */
#map { margin-bottom: 0; }
#map iframe { display: block; }

/* --- footer 微調整 --- */
footer.footer { background: var(--bg-beige); }
footer .footer__inner .logo { max-width: 320px; }
footer .footer__inner .left { width: 50%; }
footer .footer__inner .right { width: 46%; }
footer .footer__inner .add {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
footer .footer__inner .add p { margin: 0; line-height: 1.7em; }
footer .footer__inner .add .btn { width: auto; display: inline-block; border-radius: 6px; }
.link-btn { margin-top: 24px; gap: 14px; }
.link-btn li .inner,
.link-btn li > a[href] .inner,
.link-btn li > a[href] {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 18px;
  border-radius: 8px;
  line-height: 1.4em;
}
.link-btn li .inner .small { font-size: 12px; margin-bottom: 4px; }
.fnote { font-size: 13px; color: #8b9595; margin-top: 22px; line-height: 1.7em; }
footer .right .info-card { padding: 8px 30px; }
footer .right .description__table { display: grid; grid-template-columns: 110px 1fr; }
footer .right .description__table dt,
footer .right .description__table dd {
  float: none; width: auto; margin: 0;
  padding: 16px 4px; border-bottom: 1px dashed var(--border-color); line-height: 1.7em;
}
footer .right .description__table dt { font-weight: 700; color: var(--mint); white-space: nowrap; }
footer .right .description__table dt:last-of-type,
footer .right .description__table dd:last-of-type { border-bottom: none; }
@media screen and (max-width:990px) {
  footer .footer__inner .left,
  footer .footer__inner .right { width: 100%; }
  footer .right .info-card { padding: 6px 22px; }
}

/* --- 開院告知バー --- */
.opening-bar {
  background: var(--mint);
  color: #fff;
  text-align: center;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 20px;
  font-size: clamp(14px, 1.7vw, 19px);
}
.opening-bar .y { font-size: .82em; opacity: .9; }