/* ==========================================================================
   Peace Clinic corporate landing page
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800&family=Shippori+Mincho+B1:wght@500;700&display=swap');

:root {
  --pc-blue: #0057bd;
  --pc-blue-deep: #0048a8;
  --pc-blue-soft: #e9f6ff;
  --pc-orange: #d88a08;
  --pc-orange-deep: #bd7600;
  --pc-ink: #102445;
  --pc-muted: #4a5b76;
  --pc-border: #dce8f5;
  --pc-bg: #ffffff;
  --pc-font-heading: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --pc-font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --pc-radius: 12px;
  --pc-shadow: 0 4px 18px rgba(25, 69, 126, 0.14);
  --pc-shadow-strong: 0 10px 28px rgba(25, 69, 126, 0.18);
}

body.peace-corporate {
  margin: 0;
  color: var(--pc-ink);
  background: var(--pc-bg);
  font-family: var(--pc-font-body);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html,
body.peace-corporate {
  max-width: 100%;
}

body.peace-corporate *,
body.peace-corporate *::before,
body.peace-corporate *::after {
  box-sizing: border-box;
}

body.peace-corporate img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.peace-corporate a {
  color: var(--pc-blue);
  text-decoration: none;
}

body.peace-corporate a:hover {
  color: var(--pc-blue-deep);
}

body.peace-corporate a:focus-visible,
body.peace-corporate button:focus-visible {
  outline: 3px solid rgba(0, 87, 189, 0.28);
  outline-offset: 3px;
}

body.peace-corporate .contents {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: clip;
}

body.peace-corporate #header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--pc-ink);
  background: #fff;
  border: 0;
  box-shadow: none;
}

body.peace-corporate #header a {
  color: var(--pc-ink);
}

body.peace-corporate .peace-corporate-main {
  display: block;
  width: 100%;
  background: #fff;
}

/* Header */
body.peace-corporate .pc-corp-header-pc {
  display: block;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 87, 189, 0.06);
}

body.peace-corporate .pc-corp-header-sp {
  display: none;
}

body.peace-corporate .pc-corp-header-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1360px;
  min-height: 116px;
  margin: 0 auto;
  padding: 20px 34px;
  gap: 34px;
}

body.peace-corporate .pc-corp-logo {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  line-height: 1;
}

body.peace-corporate .pc-corp-logo a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

body.peace-corporate .pc-corp-logo img {
  width: auto;
  height: 48px;
}

body.peace-corporate .pc-corp-nav {
  flex: 1 1 auto;
  min-width: 0;
}

body.peace-corporate .pc-corp-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3.2vw, 52px);
  margin: 0;
  padding: 0;
  list-style: none;
}

body.peace-corporate .pc-corp-nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #081c3d;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 0.18s ease;
}

body.peace-corporate .pc-corp-nav-list a:hover {
  color: var(--pc-blue);
}

body.peace-corporate .pc-corp-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

body.peace-corporate .pc-corp-reserve,
body.peace-corporate .pc-corp-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 5px 10px rgba(18, 55, 110, 0.12);
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

body.peace-corporate #header .pc-corp-reserve,
body.peace-corporate #header .pc-corp-tel {
  color: #fff;
}

body.peace-corporate .pc-corp-reserve {
  gap: 9px;
  min-width: 164px;
  padding: 0 18px;
  background: var(--pc-orange);
  font-size: 14px;
}

body.peace-corporate .pc-corp-reserve:hover {
  background: var(--pc-orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 15px rgba(150, 93, 0, 0.18);
}

body.peace-corporate .pc-corp-reserve-icon {
  position: relative;
  flex: 0 0 auto;
  width: 17px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

body.peace-corporate .pc-corp-reserve-icon::before {
  position: absolute;
  left: 5px;
  bottom: -7px;
  width: 5px;
  height: 6px;
  border-left: 2px solid currentColor;
  content: "";
}

body.peace-corporate .pc-corp-reserve-icon::after {
  position: absolute;
  left: 2px;
  bottom: -9px;
  width: 11px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

body.peace-corporate .pc-corp-tel {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  min-width: 184px;
  padding: 8px 15px 8px 42px;
  background: var(--pc-blue);
}

body.peace-corporate .pc-corp-tel:hover {
  background: var(--pc-blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 15px rgba(0, 70, 165, 0.18);
}

body.peace-corporate .pc-corp-tel-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: translateY(-50%) rotate(-42deg);
}

body.peace-corporate .pc-corp-tel-icon::before,
body.peace-corporate .pc-corp-tel-icon::after {
  position: absolute;
  width: 7px;
  height: 6px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

body.peace-corporate .pc-corp-tel-icon::before {
  top: -4px;
  left: -2px;
}

body.peace-corporate .pc-corp-tel-icon::after {
  right: -4px;
  bottom: -2px;
}

body.peace-corporate .pc-corp-tel-label {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

body.peace-corporate .pc-corp-tel-number {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

/* Shared layout */
body.peace-corporate .pc-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

body.peace-corporate .pc-section {
  padding: 62px 0;
}

body.peace-corporate .pc-section-head {
  margin: 0 0 38px;
  text-align: center;
}

body.peace-corporate .pc-section-title {
  margin: 0;
  color: var(--pc-blue);
  font-family: var(--pc-font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

body.peace-corporate .pc-section-subtitle {
  position: relative;
  display: inline-block;
  margin: 8px 0 0;
  padding-bottom: 12px;
  color: var(--pc-blue);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

body.peace-corporate .pc-section-subtitle::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 66px;
  height: 4px;
  background: var(--pc-blue);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

body.peace-corporate .pc-button,
body.peace-corporate .pc-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.peace-corporate .pc-button-outline {
  min-width: 340px;
  color: var(--pc-blue);
  background: #fff;
  border: 2px solid #68a3e8;
}

body.peace-corporate .pc-button-outline:hover {
  color: #fff;
  background: var(--pc-blue);
  border-color: var(--pc-blue);
  box-shadow: 0 8px 18px rgba(0, 87, 189, 0.18);
  transform: translateY(-1px);
}

body.peace-corporate .pc-button-block {
  width: 100%;
  min-width: 0;
}

body.peace-corporate .pc-button-arrow {
  display: inline-block;
  margin-left: auto;
  padding-left: 18px;
  transition: transform 0.18s ease;
}

body.peace-corporate .pc-button:hover .pc-button-arrow,
body.peace-corporate .pc-cta-button:hover .pc-button-arrow {
  transform: translateX(4px);
}

/* Hero */
body.peace-corporate .pc-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

body.peace-corporate .pc-hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: 78px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='80' viewBox='0 0 1440 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 34C160 4 267 19 420 43C553 64 669 57 812 35C971 11 1092 9 1241 36C1325 51 1388 54 1440 46V80H0V34Z' fill='%23eaf8ff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 78px;
  content: "";
  pointer-events: none;
}

body.peace-corporate .pc-hero-grid {
  display: grid;
  grid-template-columns: minmax(560px, 52%) minmax(0, 48%);
  align-items: stretch;
  width: 100%;
  max-width: 1440px;
  min-height: 526px;
  margin: 0 auto;
  padding-left: clamp(34px, 6vw, 92px);
}

body.peace-corporate .pc-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 86px 20px 120px 0;
}

body.peace-corporate .pc-hero-title {
  margin: 0 0 34px;
  color: var(--pc-blue);
  font-family: var(--pc-font-heading);
  font-size: clamp(38px, 3.35vw, 48px);
  font-weight: 700;
  line-height: 1.52;
  letter-spacing: 0;
}

body.peace-corporate .pc-hero-lead {
  margin: 0;
  color: #142946;
  font-size: 17px;
  font-weight: 800;
  line-height: 2.02;
  letter-spacing: 0;
}

body.peace-corporate .pc-hero-visual {
  position: relative;
  min-height: 526px;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

body.peace-corporate .pc-hero-visual::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 44%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.88) 28%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

body.peace-corporate .pc-hero-visual .pc-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* About */
body.peace-corporate .pc-about-section {
  padding: 44px 0 36px;
  background: #fff;
}

body.peace-corporate .pc-about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(0, 1.17fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 410px;
  border: 1px solid rgba(0, 87, 189, 0.12);
  border-radius: var(--pc-radius);
  background: #fff;
  box-shadow: var(--pc-shadow);
}

body.peace-corporate .pc-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 48px 42px 48px 38px;
}

body.peace-corporate .pc-about-title {
  margin: 0 0 30px;
  color: var(--pc-blue);
  font-family: var(--pc-font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

body.peace-corporate .pc-about-copy p {
  margin: 0 0 12px;
  color: #243654;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.95;
  letter-spacing: 0;
}

body.peace-corporate .pc-about-copy .pc-button {
  margin-top: 26px;
}

body.peace-corporate .pc-about-photo {
  position: relative;
  overflow: hidden;
  min-height: 410px;
}

body.peace-corporate .pc-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Clinics */
body.peace-corporate .pc-clinics-section {
  padding-top: 34px;
  padding-bottom: 36px;
  background: #fff;
}

body.peace-corporate .pc-clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

body.peace-corporate .pc-clinic-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(0, 87, 189, 0.12);
  border-radius: var(--pc-radius);
  background: #fff;
  box-shadow: 0 3px 16px rgba(25, 69, 126, 0.13);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.peace-corporate .pc-clinic-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--pc-shadow-strong);
}

body.peace-corporate .pc-clinic-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.96 / 1;
  background: #eef5fb;
}

body.peace-corporate .pc-clinic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.peace-corporate .pc-clinic-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px 24px 20px;
}

body.peace-corporate .pc-clinic-name {
  margin: 0 0 17px;
  color: var(--pc-blue);
  font-family: var(--pc-font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

body.peace-corporate .pc-clinic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

body.peace-corporate .pc-clinic-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 3px 13px 4px;
  border: 2px solid #6aa5e6;
  border-radius: 5px;
  color: var(--pc-blue);
  background: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

body.peace-corporate .pc-clinic-desc {
  flex: 1 1 auto;
  margin: 0 0 21px;
  color: #172d4f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0;
}

body.peace-corporate .pc-clinic-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 62px;
  margin: 0 0 22px;
  color: #162947;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: 0;
}

body.peace-corporate .pc-clinic-pin {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--pc-blue);
}

body.peace-corporate .pc-clinic-pin::before {
  position: absolute;
  top: 0;
  left: 3px;
  width: 13px;
  height: 13px;
  background: currentColor;
  border-radius: 50% 50% 50% 0;
  content: "";
  transform: rotate(-45deg);
}

body.peace-corporate .pc-clinic-pin::after {
  position: absolute;
  top: 4px;
  left: 7px;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  content: "";
}

/* Director */
body.peace-corporate .pc-director-section {
  padding-top: 28px;
  padding-bottom: 28px;
  background: #fff;
}

body.peace-corporate .pc-director-card {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  align-items: stretch;
  gap: 52px;
  padding: 28px 52px 28px 28px;
  border: 1px solid rgba(0, 87, 189, 0.12);
  border-radius: var(--pc-radius);
  background: #fff;
  box-shadow: var(--pc-shadow);
}

body.peace-corporate .pc-director-media {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  gap: 28px;
}

body.peace-corporate .pc-director-photo {
  overflow: hidden;
  aspect-ratio: 1.58 / 1;
  border-radius: 8px;
  background: #eaf3f7;
}

body.peace-corporate .pc-director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body.peace-corporate .pc-director-copy {
  min-width: 0;
  padding: 2px 0 0;
}

body.peace-corporate .pc-director-heading {
  margin: 0 0 12px;
  color: var(--pc-blue);
  font-family: var(--pc-font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

body.peace-corporate .pc-director-copy h3 {
  margin: 12px 0 3px;
  color: #172846;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
}

body.peace-corporate .pc-director-copy p {
  margin: 0 0 6px;
  color: #172846;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.72;
  letter-spacing: 0;
}

body.peace-corporate .pc-director-copy .pc-director-sign {
  margin: 18px 0 0;
  color: #172846;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  text-align: right;
}

body.peace-corporate .pc-director-sign span {
  display: inline-block;
  margin-top: 2px;
  color: #172846;
  font-family: var(--pc-font-heading);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

/* CTA */
body.peace-corporate .pc-cta-section {
  padding: 20px 0 36px;
  background: #fff;
}

body.peace-corporate .pc-cta-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  min-height: 134px;
  padding: 28px 80px 28px 120px;
  border-radius: 8px;
  background: linear-gradient(135deg, #005ac4 0%, #004db7 47%, #0062ce 100%);
  box-shadow: 0 7px 18px rgba(0, 72, 168, 0.2);
}

body.peace-corporate .pc-cta-banner::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 9% 80%, rgba(255, 255, 255, 0.13) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1.5px);
  background-size: 22px 22px, 18px 18px;
  content: "";
  pointer-events: none;
}

body.peace-corporate .pc-cta-icon,
body.peace-corporate .pc-cta-copy,
body.peace-corporate .pc-cta-button {
  position: relative;
  z-index: 1;
}

body.peace-corporate .pc-cta-icon {
  width: 88px;
  height: 62px;
  color: #fff;
}

body.peace-corporate .pc-cta-monitor {
  position: absolute;
  left: 0;
  top: 3px;
  width: 54px;
  height: 38px;
  border: 5px solid currentColor;
  border-radius: 4px;
}

body.peace-corporate .pc-cta-monitor::before {
  position: absolute;
  left: 19px;
  bottom: -18px;
  width: 8px;
  height: 14px;
  background: currentColor;
  content: "";
}

body.peace-corporate .pc-cta-monitor::after {
  position: absolute;
  left: 11px;
  bottom: -23px;
  width: 25px;
  height: 5px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

body.peace-corporate .pc-cta-phone {
  position: absolute;
  right: 5px;
  bottom: 0;
  width: 28px;
  height: 50px;
  border: 5px solid #ffc328;
  border-radius: 7px;
}

body.peace-corporate .pc-cta-phone::after {
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 6px;
  height: 6px;
  background: #ffc328;
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

body.peace-corporate .pc-cta-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

body.peace-corporate .pc-cta-lead {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
}

body.peace-corporate .pc-cta-button {
  min-width: 328px;
  min-height: 66px;
  color: #fff;
  background: linear-gradient(180deg, #e49a15 0%, #cf8204 100%);
  box-shadow: 0 8px 18px rgba(81, 53, 10, 0.18);
}

body.peace-corporate .pc-cta-button:hover {
  color: #fff;
  background: linear-gradient(180deg, #d98e0f 0%, #b96e00 100%);
  transform: translateY(-1px);
}

/* Footer */
body.peace-corporate .pc-corp-footer {
  position: relative;
  padding: 44px 0 68px;
  border-top: 0;
  background: #fff;
}

body.peace-corporate .pc-corp-footer::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 58px;
  background: linear-gradient(90deg, #005bc7 0%, #004fb9 100%);
  content: "";
}

body.peace-corporate .pc-corp-footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

body.peace-corporate .pc-corp-footer-logo {
  margin: 0;
  padding: 0;
  line-height: 1;
}

body.peace-corporate .pc-corp-footer-logo a {
  display: inline-flex;
  align-items: center;
}

body.peace-corporate .pc-corp-footer-logo img {
  width: auto;
  height: 48px;
}

body.peace-corporate .pc-corp-footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.peace-corporate .pc-corp-footer-nav li + li {
  position: relative;
  padding-left: 26px;
}

body.peace-corporate .pc-corp-footer-nav li + li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  background: #b7c3d3;
  content: "";
  transform: translateY(-50%);
}

body.peace-corporate .pc-corp-footer-nav a {
  color: #465674;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: nowrap;
}

body.peace-corporate .pc-corp-footer-nav a:hover {
  color: var(--pc-blue);
}

body.peace-corporate .pc-corp-footer-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

body.peace-corporate .pc-page-top {
  position: absolute;
  right: 30px;
  bottom: 11px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
}

body.peace-corporate .pc-page-top::before {
  position: absolute;
  top: 14px;
  left: 12px;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 1180px) {
  body.peace-corporate .pc-corp-header-inner {
    gap: 22px;
    padding-right: 22px;
    padding-left: 22px;
  }

  body.peace-corporate .pc-corp-logo img {
    height: 40px;
  }

  body.peace-corporate .pc-corp-nav-list {
    gap: 22px;
  }

  body.peace-corporate .pc-corp-nav-list a {
    font-size: 14px;
  }

  body.peace-corporate .pc-corp-reserve {
    min-width: 144px;
    font-size: 13px;
  }

  body.peace-corporate .pc-corp-tel {
    min-width: 168px;
  }

  body.peace-corporate .pc-corp-tel-number {
    font-size: 17px;
  }

  body.peace-corporate .pc-cta-banner {
    padding-right: 52px;
    padding-left: 64px;
  }
}

@media (max-width: 900px) {
  body.peace-corporate .pc-corp-header-pc {
    display: none;
  }

  body.peace-corporate .pc-corp-header-sp {
    display: block;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 87, 189, 0.08);
  }

body.peace-corporate .pc-corp-header-sp-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 10px 18px;
    overflow: hidden;
  }

  body.peace-corporate .pc-corp-header-sp .pc-corp-logo img {
    width: min(150px, 44vw);
    height: auto;
  }

  body.peace-corporate .pc-corp-sp-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 8px;
  }

  body.peace-corporate .pc-corp-sp-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    width: 48px;
    padding: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--pc-orange);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
  }

  body.peace-corporate #header .pc-corp-sp-reserve {
    color: #fff;
  }

  body.peace-corporate .pc-corp-nav-trigger {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(0, 87, 189, 0.22);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
  }

  body.peace-corporate .pc-corp-nav-trigger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--pc-blue);
  }

  body.peace-corporate .pc-corp-nav-sp {
    border-top: 1px solid var(--pc-border);
    background: #fff;
  }

  body.peace-corporate .pc-corp-nav-sp ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  body.peace-corporate .pc-corp-nav-sp li {
    border-bottom: 1px solid var(--pc-border);
  }

  body.peace-corporate .pc-corp-nav-sp a {
    display: block;
    padding: 15px 20px;
    color: var(--pc-ink);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
  }

  body.peace-corporate .pc-wrap {
    max-width: 100vw;
    padding-right: 20px;
    padding-left: 20px;
  }

  body.peace-corporate .peace-corporate-main,
  body.peace-corporate .pc-section,
  body.peace-corporate .pc-about-panel,
  body.peace-corporate .pc-about-copy,
  body.peace-corporate .pc-about-photo,
  body.peace-corporate .pc-clinic-card,
  body.peace-corporate .pc-director-card,
  body.peace-corporate .pc-cta-banner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.peace-corporate .pc-hero-title,
  body.peace-corporate .pc-about-title,
  body.peace-corporate .pc-section-title,
  body.peace-corporate .pc-clinic-name,
  body.peace-corporate .pc-director-heading {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  body.peace-corporate .pc-about-copy p,
  body.peace-corporate .pc-clinic-desc,
  body.peace-corporate .pc-director-copy p {
    overflow-wrap: anywhere;
  }

  body.peace-corporate .pc-section {
    padding: 50px 0;
  }

  body.peace-corporate .pc-section-head {
    margin-bottom: 26px;
  }

  body.peace-corporate .pc-section-title {
    font-size: 28px;
  }

  body.peace-corporate .pc-hero-grid {
    display: block;
    min-height: 0;
    padding-left: 0;
  }

  body.peace-corporate .pc-hero-copy {
    max-width: none;
    padding: 44px 22px 34px;
  }

  body.peace-corporate .pc-hero-title {
    font-size: 32px;
    line-height: 1.55;
  }

  body.peace-corporate .pc-hero-lead {
    font-size: 14px;
    line-height: 1.95;
  }

  body.peace-corporate .pc-hero-visual {
    min-height: 260px;
    margin-right: 0;
  }

  body.peace-corporate .pc-hero-visual::before {
    display: none;
  }

  body.peace-corporate .pc-about-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.peace-corporate .pc-about-copy {
    padding: 28px 24px;
  }

  body.peace-corporate .pc-about-title {
    font-size: 26px;
    line-height: 1.45;
    word-break: break-all;
  }

  body.peace-corporate .pc-about-copy p {
    font-size: 14px;
  }

  body.peace-corporate .pc-about-photo {
    min-height: 240px;
  }

  body.peace-corporate .pc-clinics-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.peace-corporate .pc-clinic-name {
    font-size: 24px;
  }

  body.peace-corporate .pc-director-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 24px;
  }

  body.peace-corporate .pc-director-heading {
    font-size: 24px;
  }

  body.peace-corporate .pc-director-media {
    gap: 22px;
  }

  body.peace-corporate .pc-cta-section {
    padding: 34px 0 40px;
  }

  body.peace-corporate .pc-cta-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    min-height: 0;
    padding: 30px 22px;
    text-align: center;
  }

  body.peace-corporate .pc-cta-title {
    font-size: 22px;
  }

  body.peace-corporate .pc-cta-button {
    width: 100%;
    max-width: 320px;
    min-width: 0;
  }

  body.peace-corporate .pc-button {
    width: 100%;
    min-width: 0;
  }

  body.peace-corporate .pc-button-outline {
    min-width: 0;
  }

  body.peace-corporate .pc-corp-footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    text-align: center;
  }

  body.peace-corporate .pc-corp-footer-nav ul {
    gap: 12px;
  }

  body.peace-corporate .pc-corp-footer-nav li + li {
    padding-left: 12px;
  }

  body.peace-corporate .pc-corp-footer-copy {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  body.peace-corporate .pc-corp-header-sp-inner {
    width: 100%;
    max-width: 100vw;
    padding-right: 14px;
    padding-left: 14px;
  }

  body.peace-corporate .pc-corp-header-sp .pc-corp-logo img {
    width: min(132px, 45vw);
    height: auto;
  }

  body.peace-corporate .pc-corp-sp-reserve {
    min-height: 36px;
    width: 46px;
    padding-right: 0;
    padding-left: 0;
    font-size: 12px;
  }

  body.peace-corporate .pc-wrap {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.peace-corporate .pc-button {
    width: 100%;
    min-width: 0;
  }

  body.peace-corporate .pc-button-outline {
    min-width: 0;
  }

  body.peace-corporate .pc-about-title {
    font-size: 24px;
    line-height: 1.45;
    word-break: break-all;
  }

  body.peace-corporate .pc-about-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  body.peace-corporate .pc-hero-copy {
    padding-right: 18px;
    padding-left: 18px;
  }

  body.peace-corporate .pc-hero-title {
    font-size: 28px;
  }

  body.peace-corporate .pc-clinic-body {
    padding: 22px 18px 18px;
  }

  body.peace-corporate .pc-clinic-name {
    font-size: 22px;
  }

  body.peace-corporate .pc-director-heading {
    font-size: 22px;
  }

  body.peace-corporate .pc-page-top {
    right: 14px;
  }
}

@media (max-width: 600px) {
  body.peace-corporate .pc-corp-header-sp-inner {
    width: min(100vw, 390px);
    max-width: 390px;
    margin-right: auto;
    margin-left: 0;
  }

  body.peace-corporate .pc-wrap {
    width: calc(100vw - 32px);
    max-width: 358px;
    margin-right: auto;
    margin-left: 16px;
    padding-right: 0;
    padding-left: 0;
  }

  body.peace-corporate .pc-about-copy {
    padding: 26px 18px;
  }

  body.peace-corporate .pc-about-title {
    font-size: 23px;
  }

  body.peace-corporate .pc-about-copy p,
  body.peace-corporate .pc-clinic-desc,
  body.peace-corporate .pc-clinic-address,
  body.peace-corporate .pc-director-copy p {
    font-size: 13px;
  }

  body.peace-corporate .pc-clinic-body {
    padding-right: 18px;
    padding-left: 18px;
  }
}

/* Ichikawa-style mobile navigation and footer */
body.peace-corporate.pc-menu-open {
  overflow: hidden;
}

body.peace-corporate .pc-corp-nav-sp[hidden],
body.peace-corporate .pc-fixed-footer-nav {
  display: none;
}

body.peace-corporate .pc-footer-access {
  background: #fff;
}

body.peace-corporate .pc-footer-clinics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 46px 0 26px;
}

body.peace-corporate .pc-footer-clinic-link {
  position: relative;
  display: block;
  min-height: 104px;
  padding: 18px 42px 18px 20px;
  border: 1px solid #dce8f5;
  border-radius: 8px;
  color: #172846;
  background: #fff;
  box-shadow: 0 5px 16px rgba(16, 58, 116, 0.08);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

body.peace-corporate .pc-footer-clinic-link::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #004dbc;
  border-right: 2px solid #004dbc;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

body.peace-corporate .pc-footer-clinic-link:hover {
  color: #172846;
  border-color: #9cc6ee;
  box-shadow: 0 8px 22px rgba(16, 58, 116, 0.13);
  transform: translateY(-1px);
}

body.peace-corporate .pc-footer-clinic-name,
body.peace-corporate .pc-footer-clinic-address {
  display: block;
  letter-spacing: 0;
}

body.peace-corporate .pc-footer-clinic-name {
  color: #004dbc;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

body.peace-corporate .pc-footer-clinic-address {
  margin-top: 8px;
  color: #3f4e66;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}

body.peace-corporate .pc-footer-contact {
  width: min(800px, 100%);
  margin: 0 auto 32px;
  color: #222;
  text-align: center;
}

body.peace-corporate .pc-footer-contact-address {
  margin: 0 0 16px;
  color: #172846;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

body.peace-corporate .pc-footer-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.peace-corporate .pc-footer-contact-tel,
body.peace-corporate .pc-footer-contact-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 0 16px -7px rgba(0, 0, 0, 0.25);
}

body.peace-corporate .pc-footer-contact-tel {
  flex-direction: column;
  background: #004dbc;
}

body.peace-corporate .pc-footer-contact-reserve {
  background: #b7920e;
}

body.peace-corporate .pc-footer-contact-tel:hover,
body.peace-corporate .pc-footer-contact-reserve:hover {
  color: #fff;
  opacity: 0.9;
}

body.peace-corporate .pc-footer-contact-tel span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
}

body.peace-corporate .pc-footer-contact-tel strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

body.peace-corporate .pc-footer-contact-reserve span {
  color: #fff;
  font-size: 18px;
}

body.peace-corporate .pc-topback {
  margin: 0 calc(50% - 50vw);
}

body.peace-corporate .pc-topback-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  gap: 9px;
  color: #fff;
  background: #004dbc;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
}

body.peace-corporate .pc-topback-link:hover {
  color: #fff;
  background: #0044a6;
}

body.peace-corporate .pc-topback-anchor {
  position: relative;
  top: 3px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}

body.peace-corporate .pc-corp-footer {
  position: relative;
  padding: 0;
  border-top: 0;
  background: #f1f1f1;
}

body.peace-corporate .pc-corp-footer::after,
body.peace-corporate .pc-page-top {
  display: none;
}

body.peace-corporate .pc-corp-footer-inner {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 60px 0;
  text-align: left;
}

body.peace-corporate .pc-corp-footer-nav,
body.peace-corporate .pc-corp-footer-description {
  display: inline-block;
  vertical-align: top;
}

body.peace-corporate .pc-corp-footer-nav {
  width: 42%;
  padding-right: 34px;
}

body.peace-corporate .pc-corp-footer-nav ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  justify-content: start;
  gap: 9px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.peace-corporate .pc-corp-footer-nav li + li {
  padding-left: 0;
}

body.peace-corporate .pc-corp-footer-nav li + li::before {
  content: none;
}

body.peace-corporate .pc-corp-footer-nav a {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  color: #222;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
  white-space: normal;
}

body.peace-corporate .pc-corp-footer-nav a::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid #004dbc;
  border-right: 2px solid #004dbc;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

body.peace-corporate .pc-corp-footer-nav a:hover {
  color: #004dbc;
}

body.peace-corporate .pc-corp-footer-description {
  width: 57%;
  margin: 0;
  color: #222;
}

body.peace-corporate .pc-corp-footer-description h2 {
  margin: 0 0 10px;
  color: #222;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

body.peace-corporate .pc-corp-footer-description p {
  margin: 0 0 9px;
  color: #3e3e3e;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

body.peace-corporate .pc-corp-footer-banners {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 28px;
  padding-bottom: 30px;
}

body.peace-corporate .pc-corp-footer-banners a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

body.peace-corporate .pc-corp-footer-banners a.pc-footer-banner-white {
  background: #fff;
}

body.peace-corporate .pc-corp-footer-banners img {
  width: 100%;
  height: auto;
}

body.peace-corporate .pc-corp-footer-logo {
  margin: 0 0 26px;
  text-align: center;
}

body.peace-corporate .pc-corp-footer-logo a {
  justify-content: center;
}

body.peace-corporate .pc-corp-footer-logo img {
  height: 44px;
  margin: 0 auto;
}

body.peace-corporate .pc-corp-footer-copy {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100vw);
  height: 40px;
  margin: 0 calc(50% - 50vw);
  color: #222;
  background: #e0e0e0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
}

@media (max-width: 900px) {
  body.peace-corporate .pc-corp-header-sp {
    display: block;
    background: #fff;
  }

  body.peace-corporate .pc-corp-header-sp-inner {
    width: 100%;
    max-width: none;
    min-height: 60px;
    height: 60px;
    margin: 0;
    padding: 0 0 0 10px;
    border-bottom: 1px solid #e0e0e0;
    background: #fff;
    overflow: visible;
  }

  body.peace-corporate .pc-corp-header-sp .pc-corp-logo {
    flex: 0 1 calc(100% - 154px);
    width: calc(100% - 154px);
    max-width: calc(100% - 154px);
    min-width: 0;
    overflow: hidden;
  }

  body.peace-corporate .pc-corp-header-sp .pc-corp-logo a {
    max-width: 100%;
  }

  body.peace-corporate .pc-corp-header-sp .pc-corp-logo img {
    width: auto !important;
    max-width: 100% !important;
    height: 38px !important;
  }

  body.peace-corporate .pc-corp-sp-actions {
    display: flex !important;
    flex: 0 0 154px;
    align-self: stretch;
    gap: 0;
    width: 154px;
    height: 60px;
    margin-left: auto;
  }

  body.peace-corporate .pc-corp-sp-icon-link {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    width: 50px;
    height: 60px;
    min-height: 60px;
    padding: 14px 0 0;
    border: 0;
    border-left: 1px solid #e7e7e7;
    border-radius: 0;
    color: #222;
    background: #fff;
    box-shadow: none;
  }

  body.peace-corporate .pc-corp-sp-icon-link:hover {
    color: #222;
    background: #f8fbff;
  }

  body.peace-corporate #header .pc-corp-sp-icon-link {
    color: #222;
  }

  body.peace-corporate .pc-corp-sp-icon-link img {
    width: 21px;
    height: 21px;
    object-fit: contain;
  }

  body.peace-corporate .pc-corp-sp-tel img {
    width: 18px;
  }

  body.peace-corporate .pc-corp-sp-icon-link::after,
  body.peace-corporate .pc-corp-nav-trigger::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    color: #222;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

  body.peace-corporate .pc-corp-sp-reserve::after {
    content: "予約";
  }

  body.peace-corporate .pc-corp-sp-tel::after {
    content: "TEL";
  }

  body.peace-corporate .pc-corp-nav-trigger {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    width: 56px;
    height: 60px;
    padding: 0;
    border: 0;
    border-left: 1px solid #e7e7e7;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.18s ease;
  }

  body.peace-corporate .pc-corp-nav-trigger span {
    position: absolute;
    left: 17px;
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 0;
    background: #222;
    transition: top 0.22s ease, transform 0.22s ease, opacity 0.22s ease, background-color 0.22s ease;
  }

  body.peace-corporate .pc-corp-nav-trigger span:nth-child(1) {
    top: 16px;
  }

  body.peace-corporate .pc-corp-nav-trigger span:nth-child(2) {
    top: 24px;
  }

  body.peace-corporate .pc-corp-nav-trigger span:nth-child(3) {
    top: 32px;
  }

  body.peace-corporate .pc-corp-nav-trigger::after {
    content: "MENU";
  }

  body.peace-corporate .pc-corp-nav-trigger[aria-expanded="true"] {
    background: #004dbc;
  }

  body.peace-corporate .pc-corp-nav-trigger[aria-expanded="true"] span {
    background: #fff;
  }

  body.peace-corporate .pc-corp-nav-trigger[aria-expanded="true"] span:nth-child(1) {
    top: 24px;
    transform: rotate(-44deg);
  }

  body.peace-corporate .pc-corp-nav-trigger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  body.peace-corporate .pc-corp-nav-trigger[aria-expanded="true"] span:nth-child(3) {
    top: 24px;
    transform: rotate(44deg);
  }

  body.peace-corporate .pc-corp-nav-trigger[aria-expanded="true"]::after {
    color: #fff;
    content: "CLOSE";
  }

  body.peace-corporate .pc-corp-nav-sp {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1900;
    display: block;
    padding: 0 0 80px;
    border-top: 1px solid #fff;
    background: #004dbc;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.peace-corporate .pc-corp-nav-sp ul {
    display: block;
    width: 94%;
    margin: 0 auto;
    padding: 16px 0 28px;
    list-style: none;
  }

  body.peace-corporate .pc-corp-nav-sp li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  }

  body.peace-corporate .pc-corp-nav-sp a {
    position: relative;
    display: block;
    padding: 18px 36px 18px 2px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.01em;
  }

  body.peace-corporate .pc-corp-nav-sp a::after {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    transform: translateY(-50%) rotate(45deg);
  }

  body.peace-corporate #header .pc-corp-nav-sp a,
  body.peace-corporate .pc-corp-nav-sp a:hover {
    color: #fff;
  }

  body.admin-bar.peace-corporate .pc-corp-nav-sp {
    top: 92px;
  }
}

@media (max-width: 799px) {
  body.peace-corporate {
    padding-bottom: 60px;
  }

  body.peace-corporate .pc-fixed-footer-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1800;
    display: block;
    height: 60px;
    border-top: 1px solid #fff;
    background: #b7920e;
    transition: transform 0.2s ease;
  }

  body.peace-corporate.pc-menu-open .pc-fixed-footer-nav {
    transform: translateY(100%);
  }

  body.peace-corporate .pc-fixed-footer-nav ul {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  body.peace-corporate .pc-fixed-footer-nav li {
    display: flex;
    flex: 1 1 33.333%;
    min-width: 0;
  }

  body.peace-corporate .pc-fixed-footer-nav li + li {
    border-left: 1px solid #fff;
  }

  body.peace-corporate .pc-fixed-footer-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    height: 100%;
    color: #fff;
    background: #b7920e;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
  }

  body.peace-corporate .pc-fixed-footer-nav a:hover {
    color: #fff;
    background: #a9850d;
  }

  body.peace-corporate .pc-fixed-footer-nav i {
    display: flex;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    width: 24px;
  }

  body.peace-corporate .pc-fixed-footer-nav img {
    width: 24px;
    max-height: 24px;
  }
}

@media (max-width: 760px) {
  body.peace-corporate .pc-footer-clinics {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0 22px;
  }

  body.peace-corporate .pc-footer-clinic-link {
    min-height: 0;
    padding: 16px 38px 15px 16px;
  }

  body.peace-corporate .pc-footer-contact {
    margin-bottom: 26px;
  }

  body.peace-corporate .pc-footer-contact-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.peace-corporate .pc-footer-contact-tel,
  body.peace-corporate .pc-footer-contact-reserve {
    min-height: 66px;
  }

  body.peace-corporate .pc-footer-contact-tel strong {
    font-size: 25px;
  }

  body.peace-corporate .pc-topback-link {
    min-height: 50px;
    font-size: 14px;
  }

  body.peace-corporate .pc-corp-footer-inner {
    max-width: none;
    padding: 0;
  }

  body.peace-corporate .pc-corp-footer-nav,
  body.peace-corporate .pc-corp-footer-description {
    display: block;
    width: 100%;
  }

  body.peace-corporate .pc-corp-footer-nav {
    padding: 0;
  }

  body.peace-corporate .pc-corp-footer-nav ul {
    display: block;
    width: 100%;
  }

  body.peace-corporate .pc-corp-footer-nav li {
    position: relative;
    height: auto;
    border-bottom: 1px solid #e0e0e0;
  }

  body.peace-corporate .pc-corp-footer-nav a {
    display: block;
    width: 100%;
    padding: 16px 42px 16px 18px;
    color: #222;
    font-size: 14px;
  }

  body.peace-corporate .pc-corp-footer-nav a::before {
    content: none;
  }

  body.peace-corporate .pc-corp-footer-nav a::after {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #c5c5c5;
    border-bottom: 2px solid #c5c5c5;
    content: "";
    transform: translateY(-50%) rotate(-45deg);
  }

  body.peace-corporate .pc-corp-footer-description {
    padding: 30px 20px 20px;
    background: #f1f1f1;
  }

  body.peace-corporate .pc-corp-footer-description h2 {
    font-size: 14px;
    line-height: 1.6;
  }

  body.peace-corporate .pc-corp-footer-description p {
    font-size: 12px;
    line-height: 1.75;
  }

  body.peace-corporate .pc-corp-footer-banners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 0 0 24px;
  }

  body.peace-corporate .pc-corp-footer-logo {
    margin-bottom: 22px;
  }

  body.peace-corporate .pc-corp-footer-logo img {
    height: 38px;
  }
}

@media (max-width: 600px) {
  body.peace-corporate .pc-corp-header-sp-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 10px;
  }

  body.peace-corporate .pc-wrap {
    width: calc(100vw - 32px);
    max-width: none;
    margin-right: 16px;
    margin-left: 16px;
  }

  body.peace-corporate .pc-corp-sp-icon-link {
    width: 48px;
    min-height: 60px;
  }

  body.peace-corporate .pc-corp-nav-trigger {
    width: 54px;
  }

  body.peace-corporate .pc-corp-nav-trigger span {
    left: 16px;
  }
}

@media (max-width: 390px) {
  body.peace-corporate .pc-corp-header-sp .pc-corp-logo img {
    height: 34px !important;
  }

  body.peace-corporate .pc-corp-sp-icon-link {
    width: 44px;
  }

  body.peace-corporate .pc-corp-nav-trigger {
    width: 50px;
  }

  body.peace-corporate .pc-corp-nav-trigger span {
    left: 14px;
  }

  body.peace-corporate .pc-fixed-footer-nav a {
    gap: 6px;
    font-size: 12px;
  }

  body.peace-corporate .pc-fixed-footer-nav i,
  body.peace-corporate .pc-fixed-footer-nav img {
    width: 21px;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar.peace-corporate .pc-corp-nav-sp {
    top: 106px;
  }
}
