/*
Theme Name: Shibazaki HP
Theme URI: https://example.com/shibazaki-hp
Author: Your Name
Author URI: https://example.com
Description: Minimal starter theme for Shibazaki HP.
Version: 0.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shibazaki-hp
*/
:root {
  --bg: #f7f7f5;
  --text: #1f1f1f;
  --accent: #3c6e71;
  --muted: #7c7c7c;
  --content-width: 1100px;
  --font-body: "NotoSans JP", Arial, sans-serif;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure {
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header.site-header {
  padding: 18px 24px;
  position: fixed;
  background: transparent;
  z-index: 100;
}

.site-branding {
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav.primary-nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

footer.site-footer {
  position: fixed;
  bottom: 0;
  padding: 24px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.entry-title {
  margin: 0 0 12px;
  font-size: 24px;
}

.entry-summary {
  color: var(--muted);
}

.p-hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.p-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: center;
  padding: 32px;
  max-width: 960px;
  width: 100%;
}

.p-hero__brand {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 14px;
}

.p-hero__title {
  margin: 0;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.p-hero__nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.p-hero__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  min-width: 180px;
  border-radius: 999px;
  background: #27c7c2;
  color: #0a2c32;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.p-hero__nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.p-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px 16px 22px;
  border-radius: 999px;
  background: #e9ffff;
  color: #0a2c32;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  border: 5px solid #1dc0bc;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.p-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.p-hero__cta-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1dc0bc;
  position: relative;
}

.p-hero__cta-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 3px solid #e9ffff;
  border-right: 3px solid #e9ffff;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 640px) {
  .p-hero__nav-link {
    min-width: 140px;
    padding: 12px 24px;
  }
  .p-hero__cta {
    width: 100%;
    justify-content: center;
  }
}
.p-schedule {
  background: #0b0c0f;
  color: #f6f7f9;
  min-height: 100vh;
}

.p-schedule__hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.p-schedule__hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.p-schedule__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.p-schedule__hero-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  color: #9fe2e0;
  margin: 0;
}

.p-schedule__hero-title {
  margin: 0;
  font-size: clamp(32px, 7vw, 64px);
  letter-spacing: 0.15em;
}

.p-schedule__content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.p-schedule__head {
  background: #111319;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.p-schedule__eyebrow {
  margin: 0 0 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9fe2e0;
  font-size: 12px;
}

.p-schedule__heading {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: 0.04em;
}

.p-schedule__header {
  position: relative;
  margin-top: 40px;
  padding-left: 20px;
}

.p-schedule__title {
  font-size: 40px;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.p-schedule__title::after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #9fe2e0;
  position: absolute;
  top: 0;
  left: 0;
}

.p-schedule__title-year {
  display: block;
  font-size: 24px;
  margin-top: -8px;
  font-style: italic;
}

.p-schedule__list {
  margin-top: 40px;
  overflow: hidden;
}

.p-schedule__row {
  display: grid;
  grid-template-columns: 200px 1fr 180px;
  gap: 14px;
  padding: 16px 18px;
  align-items: center;
  border-bottom: 1px solid rgba(39, 199, 194, 0.18);
}

.p-schedule__row:last-child {
  border-bottom: none;
}

.p-schedule__row--head {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 12px;
}

.p-schedule__cell {
  color: #edf1f5;
}

.p-schedule__cell--month {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #9fe2e0;
  letter-spacing: 0.04em;
}

.p-schedule__month-en {
  font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 200;
  font-size: 32px;
  font-style: italic;
  letter-spacing: 0.15em;
  text-transform: none;
  font-variant-numeric: lining-nums tabular-nums;
  line-height: 1.1;
  display: inline-block;
  position: relative;
}
.p-schedule__month-en::after {
  content: "";
  display: block;
  width: 20%;
  border-bottom: 0.5px solid #fff;
  margin-top: 2px;
}

.p-schedule__month-ja {
  font-size: 16px;
  color: #d4dae2;
}

.p-schedule__cell--doctor {
  color: #d4dae2;
}

.p-schedule__doctor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.p-schedule__doctor-list li {
  font-size: 14px;
}

.p-schedule__cta-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.p-schedule__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  min-width: 260px;
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.p-schedule__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  border-color: #9fe2e0;
  color: #9fe2e0;
}

@media (max-width: 768px) {
  .p-schedule__content {
    margin-top: -40px;
    padding: 0 16px 60px;
  }
  .p-schedule__row {
    grid-template-columns: 90px 1fr;
    grid-template-areas: "month doctor" "title title";
    gap: 10px 14px;
  }
  .p-schedule__cell--month {
    grid-area: month;
    align-items: flex-start;
  }
  .p-schedule__cell--doctor {
    grid-area: doctor;
    text-align: right;
    font-size: 13px;
  }
  .p-schedule__cell:nth-child(2) {
    grid-area: title;
  }
}
