/* ============================================================
   Peony - Main Stylesheet
   Content width: 766px
   ============================================================ */

:root {
  --color-primary:    #cf7a90;
  --color-accent:     #c3a077;
  --color-navy:       #5c3440;
  --color-blue-mid:   #b98298;
  --color-blue-light: #f3dfe4;
  --color-bg-gray:    #faf3ee;
  --color-text:       #3a2a2e;
  --color-white:      #ffffff;
  --content-width:    806px;
  --font-crimson:     'Crimson Text', Georgia, serif;
  --font-josefin:     'Josefin Sans', sans-serif;
  --font-yu:          'Yu Gothic', 'YuGothic', '游ゴシック', sans-serif;
}

/* Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

body {
  font-family: var(--font-yu);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  padding-top: 60px;
}

/* .inner = コンテンツ幅制限ラッパー
   ============================================================ */
.inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

body a {
  transition: opacity 0.2s ease;
}

body a:hover{
  opacity: 0.7;
}

/* ============================================================
   Header  /  o-header
   ============================================================ */
.o-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--color-white);
  height: 60px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.o-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 30px;
  max-width: 100%;
}

/* ロゴ */
.a-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-crimson);
  font-size: 22px;
  color: var(--color-accent);
  letter-spacing: 0.08em;
}

.a-logo .logo-img {
  width: 180px;
  height: auto;
}

/* PCナビ */
.o-header nav .navi {
  display: flex;
  align-items: center;
  gap: 32px;
}

.o-header nav .navi .item a {
  font-size: 15px;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.o-header nav .navi .item a:hover {
}

.o-header nav .navi .item.is-current > a {
  border-bottom-color: var(--color-blue-mid);
}

/* ハンバーガーボタン（SP） */
.is-sp {
  display: none;
}

.hamburger {
  position: relative;
  width: 28px;
  height: 20px;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.is-active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* ============================================================
   SP Navigation  /  o-spNavi
   ============================================================ */
.js-spNavi {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s;
}

.js-spNavi.is-open {
  visibility: visible;
  pointer-events: auto;
}

.o-spNavi {
  background: var(--color-navy);
  padding: 20px 0 40px;
  min-height: 100%;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.js-spNavi.is-open .o-spNavi {
  transform: translateX(0);
}

.o-spNavi .inner {
  padding: 0 24px;
}

.o-spNavi__item .item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.o-spNavi__item .item a {
  display: block;
  padding: 18px 8px;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 0.08em;
  transition: color 0.2s, padding-left 0.2s;
}

.o-spNavi__item .item a:active {
  color: var(--color-accent);
  padding-left: 12px;
}

.o-spNavi__item .item.-tel a {
  margin-top: 12px;
  font-family: var(--font-josefin);
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  text-align: center;
  padding: 14px;
}

/* メニュー開時の背景スクロールロック */
body.is-nav-open {
  overflow: hidden;
  touch-action: none;
}

/* セクション出現アニメ */
.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hamburger span,
  .o-spNavi,
  .js-spNavi {
    transition: none;
  }
}

/* ============================================================
   Section utility
   ============================================================ */
.section {
  padding: 70px 0;
}

/* ============================================================
   Atom: Headline  /  a-headline
   ============================================================ */
.a-headline {
  margin-bottom: 40px;
  text-align: center;
}

.a-headline .headline {
  font-family: var(--font-crimson);
  font-size: 28px;
  color: var(--color-accent);
  line-height: 1.2;
}

.a-headline .label {
  font-family: var(--font-yu);
  font-size: 24px;
  color: var(--color-text);
  letter-spacing: 0.1em;
  display: block;
  line-height: 1.2;
  margin-top: 2px;
}

/* ============================================================
   Page wrapper  /  t-contents
   ============================================================ */
.t-contents {
  min-height: 100vh;
}

/* ============================================================
   Hero (TOP)  /  p-main
   ============================================================ */
.p-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
  overflow: hidden;
  box-sizing: border-box;
}

.p-main .main-img {
  width: 100%;
}

.p-main .main-img img {
  width: 100%;
}

/* TOP: 下部連絡先バー（バラ柄背景） */
.p-main .info {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 16px 24px;
  text-align: center;
  color: var(--color-white);
  font-weight: bold;
  background:
    linear-gradient(rgba(92, 52, 64, 0.55), rgba(92, 52, 64, 0.55)),
    url('../img/index/main-bg.png') center center / cover no-repeat;
}

.p-main .info .inner {
  max-width: 900px;
}

/* ヒーロー上の連絡先テキスト（TOP / 内ページ共通） */
.p-hero .info {
  color: var(--color-white);
  font-weight: bold;
}

.p-main .info .row,
.p-hero .info .row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.p-main .info .label,
.p-hero .info .label {
  font-family: var(--font-josefin);
  letter-spacing: 0.08em;
  font-size: 14px;
  position: relative;
  top: -2px;
}

.p-main .info .tel a,
.p-hero .info .tel a,
.p-main .info .hours,
.p-hero .info .hours {
  font-family: var(--font-josefin);
  color: var(--color-white);
  font-size: 28px;
}

.p-main .info .tel-note,
.p-hero .info .tel-note {
  margin-top: 0;
  font-size: 13px;
  opacity: 0.9;
}

.p-main .info .shortmail,
.p-hero .info .shortmail {
  margin-top: 10px;
  font-size: 16px;
  color: #fff240;
}

.p-main .info .access,
.p-hero .info .access {
  margin-top: 6px;
  font-size: 20px;
  text-decoration: none;
  -webkit-text-decoration: none;
  border-bottom: none;
}

.p-main .info .access a,
.p-hero .info .access a {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration: none;
  border-bottom: none;
  pointer-events: none;
}

/* ============================================================
   Event Section  /  p-event
   ============================================================ */
.p-event {
  background: var(--color-white);
  padding-bottom: 100px;
}

/* Swiper */
.p-event .event-slider {
  position: relative;
  padding: 0 48px;
  margin-bottom: 120px;
}

.p-event .js-eventSwiper {
  margin: 0;
  overflow: hidden;
}

.p-event .js-eventSwiper .swiper-slide .img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-event .event-slider .swiper-button-prev,
.p-event .event-slider .swiper-button-next {
  color: #555;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
}

.p-event .event-slider .swiper-button-prev {
  left: 0;
}

.p-event .event-slider .swiper-button-next {
  right: 0;
}

.p-event .event-slider .swiper-button-prev::after,
.p-event .event-slider .swiper-button-next::after {
  font-size: 22px;
  font-weight: bold;
}

.p-event .catch {
  text-align: center;
  font-size: 14px;
  line-height: 2.2;
  color: var(--color-text);
}

.p-event .catch p + p {
  margin-top: 12px;
}

/* ============================================================
   Therapist Section  /  p-therapist (TOP)
   ============================================================ */
.p-therapist {
  background: var(--color-bg-gray);
}

.p-therapist .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 28px;
  margin-bottom: 40px;
}

.p-therapist .list .item a {
  display: block;
  transition: opacity 0.2s;
}

.p-therapist .list .item a:hover {
  opacity: 0.85;
}

.p-therapist .list .item .img {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-bg-gray);
}

.p-therapist .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-therapist .list .item .info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 4px;
  text-align: center;
}

.p-therapist .list .item .name {
  font-size: 14px;
}

.p-therapist .list .item .age {
  font-size: 14px;
  font-weight: normal;
}

.p-therapist .list .item.-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: #888;
}

.p-therapist .more {
  text-align: center;
}

.p-therapist .more a {
  display: inline-block;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 14px;
  padding: 12px 40px;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
}

.p-therapist .more a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* ============================================================
   News Section  /  p-news
   ============================================================ */
.p-news {
  background: var(--color-white);
}

.p-news .list .item {
  padding: 0 0 36px;
}

.p-news .list .item + .item {
  margin-top: 8px;
}

.p-news .list .item .meta {
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 14px;
}

.p-news .list .item .date {
  display: block;
  font-family: var(--font-josefin);
  font-size: 16px;
  color: var(--color-text);
  letter-spacing: 0.04em;
}

.p-news .list .item .title {
  display: block;
  font-size: 16px;
  color: var(--color-text);
  margin-top: 4px;
}

.p-news .list .item .body {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
}

.p-news .list .item .body p {
  margin: 0;
}

/* ============================================================
   Access Section  /  p-access
   ============================================================ */
.p-access {
  background: var(--color-white);
}

.p-access .map {
  margin: 30px 0;
}

.p-access .table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.p-access .table th,
.p-access .table td {
  padding: 10px 16px 10px 0;
  text-align: left;
}

.p-access .table th {
  width: 80px;
  font-weight: normal;
  white-space: nowrap;
}

.p-access .table td a {
}

/* Access固定ページ：表の下に地図 */
.page-access .p-access .table {
  margin-bottom: 40px;
}

.page-access .p-access .map {
  margin: 0;
}

/* ============================================================
   Recruit Page  /  p-recruit
   ============================================================ */
.p-recruit .lead {
  text-align: center;
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 50px;
}

.p-recruit .lead p + p {
  margin-top: 4px;
}

.p-recruit .heading {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.p-recruit .table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 50px;
}

.p-recruit .table th,
.p-recruit .table td {
  padding: 20px 16px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  text-align: left;
  line-height: 1.9;
}

.p-recruit .table th {
  width: 110px;
  font-weight: bold;
  white-space: nowrap;
  color: var(--color-text);
}

.p-recruit .table ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-recruit .table ul li::before {
  content: '・';
}

.p-recruit .table .pay-type {
  margin-top: 10px;
  font-weight: bold;
}

.p-recruit .table td > p + ul,
.p-recruit .table td > .pay-type + ul {
  margin-top: 2px;
}

.p-recruit .table td > ul + p,
.p-recruit .table td > ul + .pay-type {
  margin-top: 10px;
}

.p-recruit .closing {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.05em;
}

/* ============================================================
   404 Page  /  p-notfound
   ============================================================ */
.p-notfound {
  text-align: center;
}

.p-notfound .lead {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}

.p-notfound .btn a {
  display: inline-block;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 14px;
  padding: 14px 48px;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.p-notfound .btn a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  opacity: 1;
}

.p-notfound .navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid #e5e5e5;
}

.p-notfound .navi .item a {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
}

.p-notfound .navi .item a:hover {
  border-bottom-color: var(--color-blue-mid);
  opacity: 1;
}

/* ============================================================
   Page Hero (inner pages)  /  p-hero
   ============================================================ */
.p-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--color-white);
}

.p-hero .bg {
  position: absolute;
  inset: 0;
  background: url('../img/index/main-bg.png') center center / cover no-repeat;
  z-index: 0;
}

.p-hero .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(92,52,64,0.35);
}

.p-hero .box {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 50px 0;
}

.p-hero .en {
  font-family: var(--font-crimson);
  font-size: 73px;
  color: var(--color-white);
  display: block;
  line-height: 1;
}

.p-hero .ja {
  font-family: var(--font-yu);
  font-size: 24px;
  font-weight: bold;
  color: var(--color-white);
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

/* ============================================================
   Therapist Archive  /  p-therapist-list
   ============================================================ */
.p-therapist-list .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.p-therapist-list .list .item a {
  display: block;
  transition: opacity 0.2s;
}

.p-therapist-list .list .item a:hover {
  opacity: 0.85;
}

.p-therapist-list .list .item .img {
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-bg-gray);
}

.p-therapist-list .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-therapist-list .list .item .info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 0 4px;
  text-align: center;
}

.p-therapist-list .list .item .name {
  font-size: 14px;
  font-weight: bold;
}

/* 新人バッジ（矩形）
   ---------------------------------------- */
.badge-new {
  display: inline-block;
  padding: 3px 10px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(207, 122, 144, 0.35);
}

.p-therapist-single .layout .profile .table td .badge-new {
  margin-left: 10px;
  vertical-align: middle;
}

.p-therapist-list .list .item .age {
  font-size: 14px;
  font-weight: normal;
}

.p-therapist-list .list .item.-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: #888;
}

/* Pagination */
.nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.nav-links a,
.nav-links span {
  padding: 8px 14px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: var(--color-text);
}

.nav-links .current {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

/* ============================================================
   Therapist Single  /  p-therapist-single
   ============================================================ */

/* 円形ギャラリー（プロフィール右上） */
.p-therapist-single .gallery-circle {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  list-style: none;
}

.p-therapist-single .gallery-circle li {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
}

.p-therapist-single .gallery-circle li:hover {
  opacity: 0.7;
}

.p-therapist-single .gallery-circle li.is-active {
  border-color: var(--color-blue-mid);;
}

.p-therapist-single .gallery-circle li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.p-therapist-single .js-therapistMainWrap {
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.p-therapist-single .js-therapistMainWrap:active {
  cursor: grabbing;
}

.p-therapist-single .js-therapistMain {
  width: 100%;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.p-therapist-single .js-therapistMain.is-switching {
  opacity: 0.4;
}

.p-therapist-single .detail-info {
  width: 100%;
  background: var(--color-bg-gray);
  padding: 12px 30px;
}

.p-therapist-single .layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.p-therapist-single .layout .img img {
  width: 100%;
  object-fit: cover;
}

.p-therapist-single .layout .profile .table {
  width: 100%;
  border-collapse: collapse;
}

.p-therapist-single .layout .profile .table th,
.p-therapist-single .layout .profile .table td {
  padding: 10px 0px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
  text-align: left;
}

.p-therapist-single .layout .profile .table tr:last-child th,
.p-therapist-single .layout .profile .table tr:last-child td {
  border-bottom: none;
}

.p-therapist-single .layout .profile .table th {
  width: 90px;
  color: var(--color-text);
  font-weight: normal;
  white-space: nowrap;
}

.p-therapist-single .comment {
  background: var(--color-bg-gray);
  padding: 28px 24px;
  margin-bottom: 40px;
}

.p-therapist-single .comment-label {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  color: var(--color-text);
  letter-spacing: 0.05em;
  border-bottom: 1px solid #ccc;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.p-therapist-single .comment-body {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
}

.p-therapist-single .comment-body p {
  margin: 0;
}

.p-therapist-single .comment-body p + p {
  margin-top: 0.8em;
}

.p-therapist-single .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.p-therapist-single .back {
  text-align: center;
}

.p-therapist-single .back a {
  font-size: 14px;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 2px;
}

/* ============================================================
   System Page  /  p-system
   ============================================================ */
.p-system .course-list {
  background: #f7f7f7;
  padding: 50px 40px;
  margin-bottom: 56px;
}

.p-system .course-block {
  margin-bottom: 48px;
  text-align: center;
}

.p-system .course-list .course-block:last-child {
  margin-bottom: 0;
}

.p-system .course-block.-other {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.p-system .course-title {
  font-family: var(--font-yu);
  font-size: 24px;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.p-system .course-title.-other {
  font-family: var(--font-crimson);
  font-size: 22px;
  font-weight: normal;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

.p-system .course-title.-other .en {
  display: block;
  line-height: 1.2;
}

.p-system .course-title.-other .ja {
  display: block;
  font-family: var(--font-yu);
  font-size: 16px;
  font-weight: bold;
  color: var(--color-text);
  margin-top: 2px;
  letter-spacing: 0.1em;
}

.p-system .course-menu {
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 20px;
}

.p-system .course-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: #fff;
}

.p-system .course-list .course-table {
  background: #fff;
}

.p-system .course-table thead th {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: normal;
  color: var(--color-text);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #fff;
  text-align: center;
}

.p-system .course-table tbody td {
  padding: 14px 24px;
  font-size: 15px;
  border-bottom: 1px solid #ddd;
  background: #fff;
  text-align: center;
}

.p-system .course-table tbody td:last-child {
  color: #e60012;
}

.p-system .course-table tbody tr:last-child td {
  border-bottom: 1px solid #ddd;
}

/* 指名料テーブル（他コースより小さめ） */
.p-system .course-table.-other {
  max-width: 560px;
  margin: 0 auto;
}

.p-system .course-table.-other thead th {
  background: #ececec;
  border-top: none;
  border-bottom: 1px solid #ddd;
  padding: 10px 14px;
  font-size: 12px;
}

.p-system .course-table.-other tbody td {
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid #ddd;
}

.p-system .course-table.-other tbody tr:nth-child(odd) {
  background: var(--color-white);
}

.p-system .course-table.-other tbody tr:nth-child(even) {
  background: var(--color-bg-gray);
}

.p-system .course-table.-other tbody tr:last-child td {
  border-bottom: 1px solid #ddd;
}

/* Terms */
.p-terms {
  margin-top: 70px;
  background: var(--color-bg-gray);
  padding: 40px 28px;
}

.p-terms .a-headline {
  margin-bottom: 24px;
}

.p-terms .body {
  font-size: 14px;
  line-height: 2;
  text-align: left;
}

.p-terms .body p {
  margin: 0;
}

.p-terms .body p + p {
  margin-top: 1.2em;
}

/* ============================================================
   Footer  /  o-footer
   ============================================================ */
.o-footer {
  background: linear-gradient(135deg, #fbf3ef 0%, #f7e4e7 45%, #f1e1cd 100%);
  color: var(--color-navy);
  padding: 40px 0 20px;
  text-align: center;
}

.o-footer .inner {
  max-width: var(--content-width);
}

/* フッターナビ */
.o-footer .menu {
  margin-bottom: 12px;
}

.o-footer .menu .navi {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.o-footer .menu .navi .item a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-navy);
}

/* フッターロゴ */
.o-footer .logo {
}

.o-footer .logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-crimson);
  font-size: 28px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
}

.o-footer .logo .logo-img {
  width: 229px;
  height: auto;
}

/* TEL・営業時間 */
.o-footer .contact {
  margin-bottom: 12px;
  margin-top: 12px;
}

.o-footer .contact-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 40px;
  margin-bottom: 0;
  line-height: 1.2;
  flex-wrap: wrap;
}

.o-footer .contact .tel,
.o-footer .contact .hours {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.o-footer .contact .label {
  font-family: var(--font-josefin);
  font-size: 14px;
  color: rgba(92,52,64,0.7);
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
  top: -3px;
}

.o-footer .contact .tel a,
.o-footer .contact .hours .value {
  font-family: var(--font-josefin);
  font-size: 28px;
  font-weight: bold;
  color: var(--color-navy);
  letter-spacing: 0.05em;
}

.o-footer .tel-note {
  font-size: 12px;
  color: rgba(92,52,64,0.75);
  margin-top: 4px;
}

.o-footer .shortmail {
  font-size: 13px;
  color: var(--color-primary);
  margin-top: 12px;
  font-weight: bold;
}

.o-footer .copy {
  margin-top: 30px;
}

.o-footer .copy small {
  font-size: 12px;
  color: var(--color-navy);
  letter-spacing: 0.05em;
}


/* 相互リンク */
.o-footer .link {
  margin-bottom: 12px;
  margin-top: 12px;
}

.o-footer .link-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 40px;
  margin-bottom: 0;
  line-height: 1.2;
  flex-wrap: wrap;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  body {
    padding-top: 56px;
    overflow-x: hidden;
  }

  .inner {
    padding: 0 16px;
  }

  .section {
    padding: 40px 0;
  }

  /* Header */
  .o-header {
    height: 56px;
  }

  .o-header .inner {
    padding: 0 16px;
  }

  .o-header nav {
    display: none;
  }

  .is-sp {
    display: block;
  }

  .a-logo a {
    font-size: 18px;
  }

  .a-logo .logo-img {
    width: 130px;
  }

  .js-spNavi {
    top: 56px;
  }

  .o-spNavi__item .item a {
    padding: 16px 4px;
    font-size: 15px;
  }

  .o-spNavi__item .item.-tel a {
    font-size: 18px;
    padding: 12px;
  }

  /* Headline */
  .a-headline {
    margin-bottom: 24px;
  }

  .a-headline .headline {
    font-size: 24px;
  }

  .a-headline .label {
    font-size: 18px;
  }

  /* Hero TOP */
  .p-main {
  }

  .p-main .info {
    padding: 14px 12px 18px;
  }

  .p-main .info .row,
  .p-hero .info .row {
    flex-direction: column;
    gap: 0;
    align-items: center;
    font-size: 13px;
    line-height: 1.4;
  }

  .p-main .info .tel a,
  .p-hero .info .tel a,
  .p-main .info .hours,
  .p-hero .info .hours {
    font-size: 20px;
  }

  .p-main .info .tel-note,
  .p-hero .info .tel-note {
    font-size: 10px;
    margin-top: 2px;
  }

  .p-main .info .shortmail,
  .p-hero .info .shortmail {
    margin-top: 6px;
    font-size: 12px;
  }

  .p-main .info .access,
  .p-hero .info .access {
    font-size: 12px;
    padding: 0 8px;
  }

  /* Page Hero */
  .p-hero {
    min-height: 260px;
  }

  .p-hero .box {
    padding: 32px 0;
  }

  .p-hero .en {
    font-size: 40px;
  }

  .p-hero .ja {
    font-size: 17px;
    margin-bottom: 16px;
  }

  /* Event */
  .p-event {
    padding-bottom: 48px;
  }

  .p-event .event-slider {
    padding: 0 28px;
    margin-bottom: 28px;
  }

  .p-event .event-slider .swiper-button-prev,
  .p-event .event-slider .swiper-button-next {
    width: 22px;
    height: 22px;
  }

  .p-event .event-slider .swiper-button-prev::after,
  .p-event .event-slider .swiper-button-next::after {
    font-size: 14px;
  }

  .p-event .catch {
    font-size: 13px;
    line-height: 1.9;
    padding: 0 4px;
  }

  /* Therapist list: SPは2列固定 */
  .p-therapist .list,
  .p-therapist-list .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 10px;
    margin-bottom: 20px;
  }

  .p-therapist .list .item .info,
  .p-therapist-list .list .item .info {
    padding: 8px 0 0;
  }

  .p-therapist .list .item .name,
  .p-therapist-list .list .item .name {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Therapist Single */
  .p-therapist-single .layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .p-therapist-single .gallery-circle {
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .p-therapist-single .gallery-circle li {
    width: 64px;
    height: 64px;
  }

  .p-therapist-single .detail-info {
    padding: 16px;
  }

  .p-therapist-single .layout .profile .table th,
  .p-therapist-single .layout .profile .table td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .p-therapist-single .comment {
    padding: 20px 16px;
    margin-bottom: 28px;
  }

  .p-therapist-single .comment-body {
    font-size: 13px;
  }

  /* News */
  .p-news .list .item {
    padding-bottom: 24px;
  }

  .p-news .list .item .date,
  .p-news .list .item .title {
    font-size: 15px;
  }

  .p-news .list .item .body {
    font-size: 13px;
    line-height: 1.9;
  }

  /* Access */
  .p-access .map {
    margin: 20px 0;
  }

  .p-access .map iframe {
    height: 220px;
  }

  .p-access .table th,
  .p-access .table td {
    display: block;
    width: 100%;
    padding: 6px 0;
    border-bottom: none;
  }

  .p-access .table th {
    padding-bottom: 0;
    color: #888;
    font-size: 12px;
  }

  .p-access .table td {
    padding-top: 2px;
    padding-bottom: 12px;
    font-size: 14px;
  }

  .p-access .table tr {
    display: block;
    border-bottom: 1px solid #eee;
  }

  /* System */
  .p-system .course-list {
    padding: 32px 0;
    margin-bottom: 36px;
  }

  .p-system .course-block {
    margin-bottom: 32px;
  }

  .p-system .course-title {
    font-size: 20px;
  }

  .p-system .course-title.-other {
    font-size: 16px;
  }

  .p-system .course-title.-other .ja {
    font-size: 12px;
  }

  .p-system .course-menu {
    font-size: 12px;
    line-height: 1.7;
    padding: 0 4px;
    margin-bottom: 16px;
  }

  .p-system .course-table {
    table-layout: fixed;
  }

  .p-system .course-table thead th,
  .p-system .course-table tbody td {
    padding: 12px 10px;
    font-size: 13px;
    word-break: break-word;
  }

  .p-system .course-table.-other thead th,
  .p-system .course-table.-other tbody td {
    padding: 8px 6px;
    font-size: 11px;
  }

  .p-terms {
    margin-top: 40px;
    padding: 28px 16px;
  }

  .p-terms .a-headline .headline {
    font-size: 22px;
  }

  .p-terms .a-headline .label {
    font-size: 16px;
  }

  .p-terms .body {
    font-size: 12px;
    line-height: 1.9;
  }

  /* Recruit */
  .p-recruit .lead {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 32px;
  }

  .p-recruit .heading {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .p-recruit .table {
    margin-bottom: 36px;
  }

  .p-recruit .table th,
  .p-recruit .table td {
    display: block;
    width: 100%;
    padding: 0;
    border-bottom: none;
  }

  .p-recruit .table tr {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
  }

  .p-recruit .table th {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .p-recruit .table td {
    font-size: 13px;
    line-height: 1.8;
  }

  .p-recruit .closing {
    font-size: 13px;
    padding: 0 8px;
  }

  /* Footer */
  .o-footer {
    padding: 32px 0 20px;
  }

  .o-footer .menu {
    margin-bottom: 20px;
  }

  .o-footer .menu .navi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
  }

  .o-footer .menu .navi .item a {
    font-size: 13px;
  }

  .o-footer .logo {
    margin-bottom: 16px;
  }

  .o-footer .logo .logo-img {
    width: 160px;
  }

  .o-footer .logo a {
    font-size: 20px;
  }

  .o-footer .contact-row {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
    align-items: center;
  }

  .o-footer .contact .label {
    font-size: 12px;
  }

  .o-footer .contact .tel a,
  .o-footer .contact .hours .value {
    font-size: 20px;
  }

  .o-footer .tel-note {
    font-size: 11px;
  }

  .o-footer .shortmail {
    font-size: 11px;
    margin-top: 8px;
  }

  .o-footer .copy {
    margin-top: 20px;
  }

  .o-footer .copy small {
    font-size: 11px;
  }

  /* 404 */
  .p-notfound .lead {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .p-notfound .btn a {
    padding: 12px 36px;
    font-size: 13px;
  }

  .p-notfound .navi {
    gap: 12px 20px;
    margin-top: 36px;
    padding-top: 28px;
  }

  .p-notfound .navi .item a {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .a-logo .logo-img {
    width: 110px;
  }

  .p-hero {
    min-height: 240px;
  }

  .p-hero .en {
    font-size: 34px;
  }

  .p-main .info .row,
  .p-hero .info .row {
    font-size: 15px;
  }

  .p-main .info .shortmail,
  .p-hero .info .shortmail {
    font-size: 13px;
  }

  .p-main .info .access,
  .p-hero .info .access {
    font-size: 13px;
  }

  .p-event .event-slider {
    padding: 0 24px;
  }

  .p-therapist-single .gallery-circle li {
    width: 56px;
    height: 56px;
  }

  .o-footer .logo .logo-img {
    width: 140px;
  }

  .o-footer .contact .tel a,
  .o-footer .contact .hours .value {
    font-size: 18px;
  }
}

.p-system {
  padding-top: 0;
}
