/* もみパラ - 共通CSS */

/* ========================================
  リセット・基本設定
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.8;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* common */
:root {
  --color-green1: #016e35;
  --color-green2: #8ec220;
  --color-green3: #d1ffd1;
  --color-orange1: #f57f17;
  --color-orange2: #ffd54f;
  --color-gray1: #333333;
  --color-gray2: #666666;
  --color-gray3: #999999;
  --color-gray4: #cccccc;
  --color-gray5: #eeeeee;
}
.green1 {
  color: var(--color-green1) !important;
}
.green2 {
  color: var(--color-green2) !important;
}
.green3 {
  color: var(--color-green3) !important;
}
.orange1 {
  color: var(--color-orange1) !important;
}
.orange2 {
  color: var(--color-orange2) !important;
}
.gray1 {
  color: var(--color-gray1) !important;
}
.gray2 {
  color: var(--color-gray2) !important;
}
.gray3 {
  color: var(--color-gray3) !important;
}
.gray4 {
  color: var(--color-gray4) !important;
}
.gray5 {
  color: var(--color-gray5) !important;
}
.bgGreen1 {
  background: var(--color-green1) !important;
}
.bgGreen2 {
  background: var(--color-green2) !important;
}
.bgGreen3 {
  background: var(--color-green3) !important;
}
.bgOrange1 {
  background: var(--color-orange1) !important;
}
.bgOrange2 {
  background: var(--color-orange2) !important;
}

.fs12 {
  font-size: 12px !important;
}
.fs14 {
  font-size: 14px !important;
}
.fs16 {
  font-size: 16px !important;
}
.fs18 {
  font-size: 18px !important;
}
.fs20 {
  font-size: 20px !important;
}
.fs22 {
  font-size: 22px !important;
}
.fs24 {
  font-size: 24px !important;
}

.fwN {
  font-weight: normal !important;
}
.fwB {
  font-weight: bold !important;
}

.tar {
  text-align: right !important;
}
.tac {
  text-align: center !important;
}
.tal {
  text-align: left !important;
}

.mt0 {
  margin-top: 0 !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}

.mr0 {
  margin-right: 0 !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.mr50 {
  margin-right: 50px !important;
}

.ml0 {
  margin-left: 0 !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.ml50 {
  margin-left: 50px !important;
}

/* ========================================
  ヘッダー
======================================== */
header {
  background: linear-gradient(135deg, #8ec220 0%, #016e35 100%);
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1200px) {
  .header-container {
    justify-content: center;
  }
}

.logo {
  margin: 0;
  padding: 0;
}

.logo > img {
  width: 255px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: opacity 0.3s;
}

.header-nav a:hover {
  opacity: 0.7;
}

.header-login {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.header-login:hover {
  background: rgba(255, 255, 255, 0.3);
}

.header-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-user-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.header-user-name {
  color: #fff;
  font-size: 13px;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-nav a.header-logout {
  color: #fff !important;
  font-size: 13px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: background 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-nav a.header-logout:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ========================================
  メインビジュアル
======================================== */
.main-visual {
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  padding: 60px 20px;
  text-align: center;
}

.main-visual h1 {
  font-size: 36px;
  color: #016e35;
  margin-bottom: 20px;
}

.main-visual p {
  color: #016e35;
  font-size: 16px;
}

/* ========================================
   コンテナ
======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* ========================================
   セクション共通
======================================== */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: 28px;
  color: #016e35;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 3px solid #8ec220;
  display: inline-block;
  width: 100%;
}

/* ========================================
   パンくずリスト
======================================== */
.breadcrumb {
  background: #f5f5f5;
  padding: 15px 0;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
  content: ">";
  margin-left: 10px;
  color: #999;
}

.breadcrumb-list a {
  color: #016e35;
  transition: opacity 0.3s;
}

.breadcrumb-list a:hover {
  opacity: 0.7;
}

/* ========================================
   エリアMAP
======================================== */
.area-map {
  background: #f5f5f5;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.area-item {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.area-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(142, 194, 32, 0.3);
}

.area-item h3 {
  font-size: 20px;
  color: #016e35;
}

/* 新しいエリアマップスタイル */
.area-map-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 30px;
}

.area-map-row {
  display: flex;
  gap: 5px;
  align-items: stretch;
}

.area-map-bottom {
  margin-top: 15px;
}

.area-box {
  width: 110px;
  padding: 15px 10px;
  text-align: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  line-height: 1.4;
}

.area-box:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.area-box.area-wide {
  width: calc(110px * 2 + 5px);
}

.area-box.area-triple {
  width: calc(110px * 3 + 5px * 2);
}

.area-box.area-large {
  width: calc((110px * 10 + 3px * 12) / 3);
  padding: 25px 10px;
  font-size: 18px;
}

/* エリアごとのカラー設定 */

/* 西東京エリア（濃い緑） */
.area-nishitokyo {
  background: #b8e6c9;
  color: #2c5f3f;
}

/* 多摩エリア（薄い緑） */
.area-tama {
  background: #d4f0dd;
  color: #2c5f3f;
}

/* 埼玉エリア */
.area-saitama-light {
  background: #fff9c4;
  color: #8b6914;
}

.area-saitama {
  background: #ffe0b2;
  color: #8b4513;
}

/* 首都圏・東京23区エリア（薄い緑） */
.area-shutoken {
  background: #d4f0dd;
  color: #2c5f3f;
}

/* 神奈川エリア */
.area-kanagawa {
  background: #b3d9f2;
  color: #1e4d6b;
}

.area-kanagawa-light {
  background: #cfe8f7;
  color: #1e4d6b;
}

/* 千葉エリア */
.area-chiba {
  background: #e1d5f0;
  color: #4a2c6b;
}

/* フリーセラピスト */
.area-free {
  background: #ffc1d9;
  color: #8b2252;
}

/* 下部エリア（北関東・東海・関西・その他） */
.area-hokkaido {
  background: #9ed9ff;
  color: #fff;
}

.area-kitakanto {
  background: #66f9d0;
  color: #fff;
}

.area-chubu {
  background: #ffb366;
  color: #fff;
}

.area-kansai {
  background: #b8a3ff;
  color: #fff;
}

.area-chugoku {
  background: #ffa6a6;
  color: #fff;
}

.area-kyushu {
  background: #ffda66;
  color: #8b6914;
}

/* ========================================
   店舗カード
======================================== */

.shop-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
  gap: 25px;
  align-items: end;
  justify-content: center;
}

.shop-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(142, 194, 32, 0.3);
}

.shop-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  font-size: 18px;
  z-index: 10;
}

.shop-rank.rank-1 {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #f57f17;
}
.shop-rank.rank-2 {
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
  color: #666;
}
.shop-rank.rank-3 {
  background: linear-gradient(135deg, #cd7f32 0%, #e8a87c 100%);
  color: #fff;
}
.shop-rank.rank-other {
  background: #e0e0e0;
  color: #999;
  font-size: 14px;
}

.shop-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  overflow: hidden;
  position: relative;
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.shop-card-content {
  padding: 20px;
}

.shop-card-title {
  font-size: 18px;
  font-weight: bold;
  color: #016e35;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.shop-card-title a {
  display: inline-block;
  color: #016e35;
}

.shop-card-title a.scroll-text {
  animation: scroll-text 10s linear infinite;
  padding-right: 50px;
}

.shop-card:hover .shop-card-title a.scroll-text {
  animation-play-state: paused;
}

.shop-card-badge {
  display: inline-block;
  background: #ffd54f;
  color: #f57f17;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  margin-right: 5px;
  font-weight: bold;
}

/* .badge-a-plan {
  background: #ffd54f;
  color: #f57f17;
}

.badge-b-plan {
  background: #8ec220;
  color: #fff;
}

.badge-c-plan {
  background: #e0e0e0;
  color: #666;
} */

/* 店舗エリアバッジ */
.shop-area-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
}

.shop-card-badge {
  display: inline-block;
  background: #ffd54f;
  color: #f57f17;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  margin-right: 5px;
  font-weight: bold;
}

.shop-genre-badge {
  display: inline-block;
  background: #8ec220;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}


/* 店舗カテゴリーバッジ */
.shop-category-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0;
}

.shop-category-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
  white-space: nowrap;
}

/* カテゴリー別カラー */
.badge-japanese {
  background: #ffe0e0;
  color: #c62828;
}

.badge-asian {
  background: #fff3e0;
  color: #e65100;
}

.badge-shop {
  background: #e3f2fd;
  color: #1565c0;
}

.badge-room {
  background: #f3e5f5;
  color: #6a1b9a;
}

.badge-outcall {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-free {
  background: #fff9c4;
  color: #f57f17;
}

.badge-nonuki {
  background: #e0e0e0;
  color: #424242;
}


.shop-card-button {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}


/* ========================================
  店舗詳細ページ
======================================== */
.shop-detail-header {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.shop-detail-header .report-detail-img {
  width: 100%;
  aspect-ratio: 11 / 4;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-bottom: 40px;
}

.shop-detail-header .report-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.shop-detail-title {
  font-size: 32px;
  color: #016e35;
  margin-bottom: 20px;
}

.shop-info-table {
  width: 55%;
  border-collapse: collapse;
  background: #fff;
  white-space: normal;
  margin: auto;
}

.shop-info-table th,
.shop-info-table td {
  padding: 15px;
  border: 1px solid #e0e0e0;
  /* text-align: left; */
}

.shop-info-table th {
  background: #d1ffd1;
  color: #016e35;
  font-weight: bold;
  width: 50%;
  text-align: left;
}

.shop-info-table td {
  text-align: right;
}


.shop-info-table a {
  color: var(--color-green2);
}

.shop-info-table .sns-link img {
  vertical-align: middle;
  display: inline-block;
  width: 30px;
  height: 30px;
}

.shop-top3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.top3-therapist {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.top3-therapist h3 {
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top3-therapist p {
  min-height: 1.5em;
}

.top3-therapist .btn-primary {
  margin-top: auto;
}

.top3-therapist-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.top3-therapist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* 体験レポート */
.shop-experience-report {
  margin-top: 50px;
}

.shop-experience-report .report-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.shop-experience-report .report-image {
  margin-bottom: 15px;
}

.shop-experience-report .report-image img {
  max-width: 100%;
  border-radius: 8px;
}

.shop-experience-report .report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.shop-experience-report .report-meta p {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.shop-experience-report .therapist-name {
  color: #00838f;
  font-weight: bold;
}

.shop-experience-report .rating-badge {
  background: #00838f;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
}

.shop-experience-report .report-section {
  margin-bottom: 15px;
}

.shop-experience-report .report-section h4 {
  color: #00838f;
  margin-bottom: 5px;
}

.shop-experience-report .report-section div {
  color: #333;
  line-height: 1.8;
}

.shop-experience-report .btn-primary {
  display: inline-block;
  margin-top: 10px;
}

/* コース料金 */
.shop-courses {
  margin-top: 50px;
}

.shop-courses .course-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.shop-courses .course-card h3 {
  color: #00838f;
  font-size: 18px;
  margin-bottom: 10px;
}

.shop-courses .course-card .course-description {
  color: #666;
  margin-bottom: 15px;
}

.shop-courses .course-remarks {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .shop-courses .course-card {
    padding: 15px;
  }

  .report-meta p.report-meta-flex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }

  .report-meta .report-spacer {
    display: none;
  }
}

/* 求人情報 */
.shop-recruit {
  margin-top: 50px;
}

.shop-recruit .recruit-card {
  background: #ffe082;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.shop-recruit .recruit-card h3 {
  color: #f57f17;
  font-size: 22px;
  margin-bottom: 15px;
}

.shop-recruit .recruit-pr-title {
  color: #f57f17;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
}

.shop-recruit .recruit-pr-content {
  color: #666;
  margin-bottom: 15px;
}

.shop-recruit .recruit-message {
  color: #666;
  margin-bottom: 20px;
}

.coupon-box {
  background: #fff9c4;
  border: 2px dashed #ffd54f;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
}

.coupon-title {
  font-size: 20px;
  color: #f57f17;
  font-weight: bold;
  margin-bottom: 10px;
}

.video-embed {
  width: 100%;
  margin: 30px 0 0;
  text-align: center;
}

.video-placeholder {
  width: 100%;
  /* max-width: 800px; */
  height: auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.gallery-item {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* フローティングボタン */
.floating-tel-btn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: #006e35;
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 110, 53, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 140px;
}

.floating-tel-btn:hover {
  background: #005528;
  box-shadow: 0 6px 20px rgba(0, 110, 53, 0.5);
  transform: translateY(-2px);
}

.floating-line-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00ca41;
  color: white;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 140px;
}

.floating-line-btn:hover {
  background: #00ca41;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.5);
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .top3-therapist {
    padding: 0px 0 10px;
  }

  .report-meta {
    margin-bottom: 0px;
  }
  .shop-experience-report .report-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .shop-recruit .recruit-card h3 {
    font-size: 18px;
  }

  /* フローティングボタン（スマホ） */
  .floating-tel-btn,
  .floating-line-btn {
    position: fixed;
    width: calc(50% - 15px);
    padding: 12px 10px;
    font-size: 14px;
    bottom: 20px;
  }

  .floating-tel-btn {
    left: 10px;
    right: auto;
  }

  .floating-line-btn {
    right: 10px;
    left: auto;
  }

}


/* ========================================
   セラピスト一覧
======================================== */
.therapist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.therapist-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.therapist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(142, 194, 32, 0.3);
}

.therapist-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #ffffff 0%, #d1ffd1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.therapist-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.therapist-card-content {
  padding: 10px;
  text-align: center;
}

.therapist-card-content .therapist-name {
  font-size: clamp(2px, 20 / 1200 * 100vw, 20px);
  font-weight: bold;
  color: #016e35;
}

.therapist-card-content .therapist-data {
  color: #666;
  font-size: clamp(2px, 14 / 1200 * 100vw, 14px);
  margin-bottom: 0;
}

/* ========================================
   セラピスト詳細
======================================== */
.therapist-detail-header {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  align-items: start;
}

.therapist-detail-header h2 {
  font-size: 32px;
  color: var(--color-green1);
  margin-bottom: 20px;
}

.therapist-main-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.therapist-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.therapist-sub-images {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.therapist-sub-image {
  width: calc((100% - 20px) / 5);
  aspect-ratio: 3 / 4;
  background: #d1ffd1;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
}

.therapist-sub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.therapist-sub-image:hover {
  transform: scale(1.05);
}

.therapist-info h1 {
  font-size: 28px;
  color: #016e35;
  margin-bottom: 20px;
}

.therapist-info-list {
  list-style: none;
}

.therapist-info-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
}

.therapist-info-list li:last-child {
  border-bottom: none;
}

.therapist-info-list li .sns-icon{
  width: 30px;
  height: 30px;
  margin-right: 5px;
  line-height: 0;
}

.therapist-info-list li img{
  width: 30px;
  height: 30px;
}

.info-label {
  font-weight: bold;
  color: #016e35;
  margin-right: 10px;
}

.therapist-comment {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shop-comment {
  background: var(--color-green3);
  padding: 30px;
  border-radius: 12px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  background: #fff;
}

.schedule-table th,
.schedule-table td {
  padding: 12px 0;
  border: 1px solid #e0e0e0;
  text-align: center;
}

.schedule-table th {
  background: #d1ffd1;
  color: #016e35;
  font-weight: bold;
}

.schedule-available {
  color: var(--color-green2);
  font-weight: bold;
}

.schedule-unavailable {
  color: var(--color-orange1);
}

@media (max-width: 768px) {
  .info-label {
    width: 80px;
  }
}


/* ========================================
  新着情報
======================================== */
.news-list {
  background: #d1ffd1;
  border-radius: 10px;
  padding: 30px;
}

.news-item {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  width: 100%;
  min-width: 120px;
  color: #016e35;
  font-weight: bold;
}

.news-content {
  display: flex;
  flex-wrap: wrap;
}

.news-content .news-img {
  width: 100px;
  height: 100px;
  margin-right: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.news-content .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content .news-text {
  width: calc(100% - 110px);
}

.news-content .news-text .news-title {
  color: #016e35;
  font-weight: bold;
  margin-bottom: 5px;
}

.news-content .news-text a {
  color: #2196f3;
  text-decoration: underline;
}


@media (max-width: 768px) {
  .news-content {
    display: block;
  }

  .news-content .news-text {
    width: 100%;
    margin-top: 10px;
  }
}

/* ========================================
  体験レポート
======================================== */
.report-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列固定 */
  gap: 25px;
}

.report-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.report-card:hover {
  transform: translateY(-5px);
}

.report-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  overflow: hidden;
  position: relative;
}

.report-card-image a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.report-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.report-card-content {
  padding: 20px;
}

.report-card-content h3 {
  color: var(--color-green1);
  margin: 10px 0 15px;
}

.report-card-content .card-text {
  color: var(--color-gray2);
  font-size: 14px;
  margin-bottom: 15px;
}

.report-card-content .report-more {
  width: 100%;
  text-align: right;
}

.report-badge {
  background: #8ec220;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

.report-detail {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.report-detail .report-title {
  font-size: 32px;
  color: var(--color-green1);
  margin-bottom: 20px;
}

.report-detail h2 {
  font-size: 28px;
  color: #016e35;
  margin-bottom: 20px;
}

.report-detail .report-detail-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-bottom: 40px;
}

.report-detail .report-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.report-meta {
  color: #666;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #d1ffd1;
}

.report-meta .report-spacer {
  margin: 0 10px;
  color: var(--color-gray3);
}

.report-meta a {
  color: var(--color-green2);
}

.report-content {
  line-height: 2;
  font-size: 16px;
}

.report-link-btn{
  text-align: center;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
  コラム
======================================== */
.column-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列固定 */
  gap: 25px;
}

.column-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.column-card:hover {
  transform: translateY(-5px);
}

.column-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  overflow: hidden;
  position: relative;
}

.column-card-image a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.column-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.column-card-content {
  padding: 20px;
}

.column-card-content h3 {
  color: var(--color-green1);
  margin: 10px 0 15px;
}

.column-card-content .card-text {
  color: var(--color-gray2);
  font-size: 14px;
  margin-bottom: 15px;
}

.column-card-content .column-more {
  width: 100%;
  text-align: right;
}

.column-badge {
  background: #8ec220;
  color: #fff;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

.column-detail {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.column-detail .column-title {
  font-size: 32px;
  color: var(--color-green1);
  margin-bottom: 20px;
}

.column-detail h2 {
  font-size: 28px;
  color: #016e35;
  margin-bottom: 20px;
}

.column-detail .column-detail-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-bottom: 40px;
  /* height: 250px; */
  /* width: 250px; */
}

.column-detail .column-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.column-meta {
  color: #666;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #d1ffd1;
}

.column-meta .column-spacer {
  margin: 0 10px;
  color: var(--color-gray3);
}

.column-meta a {
  color: var(--color-green2);
}

.column-content {
  line-height: 2;
  font-size: 16px;
}

/* スマホ用スタイル */
@media (max-width: 768px) {
  .column-detail .column-title {
    font-size: 20px;
  }

  .column-spacer {
    display: none;
  }

  .hide-sp {
    display: none;
  }

  .column-meta p.column-meta-flex {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }

  .column-detail {
    padding: 20px;
  }

  .column-detail .column-detail-img {
    aspect-ratio: 4 / 3;
  }




}
/* ========================================
  口コミ
======================================== */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.review-item {
  background: #d1ffd1;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  gap: 20px;
}

.review-image {
  width: 100px;
  height: 100px;
  background: #a8e6a8;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-content {
  flex: 1;
  width: 100%;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
}

.review-name {
  font-weight: bold;
  color: #016e35;
}

.review-score-box {
  font-size: 24px;
  font-weight: bold;
  color: #f57f17;
}

.review-text-box {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
}

.review-stars {
  color: #ff9100;
  margin: 0;
}

.review-text {
  color: #555;
  line-height: 1.8;
}

.review-user-info h4 {
  color: #016e35;
  font-size: 16px;
  margin-bottom: 5px;
}

.review-date {
  font-size: 12px;
  color: #999;
}

.star-rating {
  color: #ffc107;
  font-size: 18px;
}

.review-rating-detail {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.rating-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-item span:first-child {
  font-size: 13px;
  color: #666;
  min-width: 80px;
}

.rating-bar {
  width: 100px;
  height: 8px;
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: #8ec220;
}

.mosaic-btn {
  background: #8ec220;
  color: #fff;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  cursor: pointer;
  display: block;
  margin: 15px auto 0;
  transition: background 0.3s;
}

.mosaic-btn:hover {
  background: #6fa516;
}

/* ========================================
  口コミ投稿フォーム
======================================== */
.review-form {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-form .review-form-title {
  font-size: 24px;
  color: var(--color-green1);
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-weight: bold;
  color: #016e35;
  margin-bottom: 10px;
}

.form-label.required::after {
  content: " *";
  color: #f44336;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #8ec220;
}

.form-textarea {
  min-height: 200px;
  resize: vertical;
}

.form-select {
  width: 100%;
  padding: 12px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
}

.rating-group {
  margin-top: -10px;
}

.rating-label {
  font-weight: normal;
}

/* スマホ用スタイル */
@media (max-width: 768px) {
  .review-form {
    padding: 5px;
    box-shadow: none;
  }

  .form-label {
    margin-bottom: 0px;
  }
}

/* ========================================
  求人店舗一覧
======================================== */
.recruit-shops {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
  gap: 20px;
  justify-content: center;
}

.recruit-shop-card {
  background: #fff;
  border-radius: 10px;
  padding: 0px 0 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.recruit-shop-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.recruit-shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit-title {
  margin-bottom: 5px;
  padding: 0px 10px;
  line-height: 1.2;
  text-align: left;
  color: #016e35;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.recruit-title a {
  display: inline-block;
  color: #016e35;
}

.recruit-title a.scroll-text {
  animation: scroll-text 10s linear infinite;
  padding-right: 50px;
}

.recruit-shop-card:hover .recruit-title a.scroll-text {
  animation-play-state: paused;
}

.recruit-shop-card p {
  text-align: left;
  padding: 0px 10px;
}

.recruit-shop-card p .recruit-shop-area{
  display: inline-block;
  background: #ffd54f;
  color: #f57f17;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  margin:0 5px;
  font-weight: bold;
}

.recruit-shop-name-wrap {
  text-align: left;
  padding: 0px 10px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.recruit-shop-name-wrap .recruit-shop-name{
  display: inline-block;
  padding: 5px 5px 0;
  border-radius: 15px;
  font-size: 16px;
  margin: 0 5px;
  font-weight: bold;
  color: #016e35;
}

.recruit-shop-name-wrap .recruit-shop-name.scroll-text {
  animation: scroll-text 10s linear infinite;
  padding-right: 50px;
}

.recruit-shop-card:hover .recruit-shop-name-wrap .recruit-shop-name.scroll-text {
  animation-play-state: paused;
}

/* ========================================
  求人ページ
======================================== */
.recruit-header {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.recruit-header .recruit-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-bottom: 40px;
}

.recruit-header .recruit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit-title {
  font-size: 20px;
  color: #016e35;
  margin-bottom: 15px;
}

.recruit-pr {
  line-height: 1.8;
  color: #555;
}

.recruit-message {
  background: var(--color-green3);
  color: var(--color-gray2);
  padding: 40px;
  border-radius: 10px;
}

.recruit-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recruit-wrap h3 {
  color: var(--color-green1);
  margin-bottom: 10px;
}

.recruit-info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.recruit-info-table th,
.recruit-info-table td {
  padding: 20px;
  border: 1px solid #e0e0e0;
  text-align: left;
}

.recruit-info-table th {
  background: #d1ffd1;
  color: #016e35;
  font-weight: bold;
  width: 25%;
}

.contact-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.contact-btn {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-tel {
  background: #4caf50;
  color: #fff;
}

.btn-line {
  background: #00b900;
  color: #fff;
}

.btn-mail {
  background: #2196f3;
  color: #fff;
}

.btn-form {
  background: #ff9800;
  color: #fff;
}

.recruit-wrap .qa-text {
  color: var(--color-gray2);
  line-height: 1.8;
}

/* ========================================
  PICK-UP
======================================== */
.pick-up-shops {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.pick-up-shop-card {
  background: #fff;
  border-radius: 10px;
  padding: 0px 0 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.pick-up-shop-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d1ffd1 0%, #a8e6a8 100%);
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}

.pick-up-shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.pick-up-shop-card h3 {
  margin: 0;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.pick-up-shop-card h3 a {
  display: inline-block;
}

.pick-up-shop-card h3 a.scroll-text {
  animation: scroll-text 10s linear infinite;
  padding-right: 50px;
}

.pick-up-shop-card:hover h3 a.scroll-text {
  animation-play-state: paused;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}



/* ========================================
  ページネーション
======================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 50px 0;
}

.pagination a,
.pagination span {
  width: 50px;
  height: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination a {
  background: #fff;
  color: #016e35;
}

.pagination a:hover {
  background: #8ec220;
  color: #fff;
  border-color: #8ec220;
}

.pagination .current {
  background: #8ec220;
  color: #fff;
  border-color: #8ec220;
}

/* ========================================
  ボタン
======================================== */
.btn-more {
  display: block;
  background: linear-gradient(135deg, #8ec220 0%, #016e35 100%);
  color: #fff;
  text-decoration: none;
  padding: 15px;
  border-radius: 30px;
  text-align: center;
  margin: 40px auto 0;
  max-width: 300px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(142, 194, 32, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, #8ec220 0%, #016e35 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(142, 194, 32, 0.4);
}

/* ========================================
  お問い合わせフォーム
======================================== */
.contact-form {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.contact-other {
  color: var(--color-gray2);
  margin-top: 80px;
}

.contact-other .contact-other-inner {
  background: var(--color-green3);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
}

/* ========================================
  バナー画像
======================================== */
.benner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.benner-container img {
  width: 100%;
}

.recruit-benner {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
}

/* ========================================
  静的ページ(利用規約など)
======================================== */
.static-page {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}

.static-page h2 {
  font-size: 24px;
  color: #016e35;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d1ffd1;
}

.static-page h2:first-child {
  margin-top: 0;
}

.static-page h3 {
  font-size: 20px;
  color: #016e35;
  margin-top: 30px;
  margin-bottom: 15px;
}

.static-page p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.static-page ul,
.static-page ol {
  margin: 15px 0 15px 30px;
  line-height: 1.8;
}

.static-contact {
  margin-top: 50px;
  padding: 30px;
  background: var(--color-green3);
  border-radius: 10px;
}

/* ========================================
   フッター
======================================== */
footer {
  background: #016e35;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 80px;
  position: relative;
}

.footer-links {
  text-align: center;
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  transition: opacity 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}

/* ========================================
   エリアモーダル
======================================== */
.area-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow-y: auto;
  animation: fadeIn 0.3s ease;
}

.area-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.area-modal-content {
  background: #fff;
  border-radius: 15px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
}

.area-modal-body {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
}

/* スクロールバーのカスタマイズ（Webkit系ブラウザ） */
.area-modal-body::-webkit-scrollbar {
  width: 8px;
}

.area-modal-body::-webkit-scrollbar-track {
  background: transparent;
  margin: 10px 0;
}

.area-modal-body::-webkit-scrollbar-thumb {
  background: rgba(142, 194, 32, 0.3);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.area-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(142, 194, 32, 0.5);
  background-clip: padding-box;
}

/* Firefox用のスクロールバー */
.area-modal-body {
  scrollbar-width: thin;
  scrollbar-color: rgba(142, 194, 32, 0.3) transparent;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.area-modal-header {
  background: linear-gradient(135deg, #8ec220 0%, #016e35 100%);
  color: #fff;
  padding: 20px 30px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.area-modal-header h3 {
  font-size: 24px;
  margin: 0;
}

.area-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  line-height: 1;
}

.area-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.area-modal-body {
  padding: 30px;
}

.area-content {
  display: none;
}

.area-region {
  margin-bottom: 30px;
}

.area-region:last-child {
  margin-bottom: 0;
}

.area-region h4 {
  color: #016e35;
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #8ec220;
  display: flex;
  align-items: center;
}

.area-region h4::before {
  content: "▼";
  margin-right: 8px;
  font-size: 14px;
}

.area-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.area-link {
  background: #f5f5f5;
  padding: 12px 15px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
  color: #333;
  font-size: 14px;
}

.area-link:hover {
  background: #8ec220;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(142, 194, 32, 0.3);
}

/* ========================================
   レスポンシブ
======================================== */
/* 1200px以下はスイングメニューに切り替わるためheader-container縦並び不要 */


@media (max-width: 768px) {
  .btn-primary {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: clamp(2px, 16 / 768 * 100vw, 16px);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(142, 194, 32, 0.4);
  }

  /* header-navは1200px以下でスイングメニューに切り替わるためグリッド不要 */

  .main-visual {
    padding: 30px 10px;
  }

  .main-visual h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .main-visual p {
    color: #016e35;
    font-size: 16px;
  }

  .section {
    padding: 20px 0;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 7px;
  }

  .area-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  /* エリアマップのレスポンシブ対応 */
  .area-map-container {
    gap: 3px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .area-map-row {
    gap: 3px;
    min-width: max-content;
  }

  .area-box {
    font-size: 11px;
    padding: 8px 5px;
    min-width: 80px;
    width: 80px;
  }

  .area-box.area-wide {
    width: calc(80px * 2 + 3px);
    min-width: calc(80px * 2 + 3px);
  }

  .area-box.area-triple {
    width: calc(80px * 3 + 3px * 2);
    min-width: calc(80px * 3 + 3px * 2);
  }

  .area-box.area-large {
    width: calc((80px * 10 + 3px * 9) / 3);
    min-width: calc((80px * 10 + 3px * 9) / 3);
    padding: 15px 5px;
    font-size: 12px;
  }

  .area-map-bottom {
    margin-top: 10px;
  }

  .news-list {
    padding: 10px;
  }

  .report-grid {
    gap: 10px;
  }

  .column-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .review-item {
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }

  .review-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 0;
  }

  .review-header {
    flex-direction: column;
  }

  .report-card-content h3 {
    font-size: 18px;
    line-height: 1.2em;
    margin: 5px 0 7px;
  }

  .report-link-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .report-link-btn .btn-primary{
    margin: 0 5px;
  }

  .pick-up-shops {
    grid-template-columns: repeat(2, 1fr);
    font-size: 12px;
  }

  .pick-up-shops h3 {
    font-size: 16px;
  }

  .pick-up-shop-card {
    padding: 0px 0 5px;
  }

  .pick-up-shop-img {
    margin-bottom: 5px;
  }

  .therapist-detail-header {
    grid-template-columns: 1fr;
  }

  .shop-info-table {
    width: 100%;
  }

  .shop-info-table th,
  .shop-info-table td {
    display: block;
    width: 100%;
    text-align: left;
  }

  .shop-info-table th {
    border-bottom: none;
  }

  .shop-info-table td {
    border-top: none;
  }

  .contact-buttons {
    grid-template-columns: 1fr;
  }

  .breadcrumb-list {
    font-size: 14px;
  }

  .therapist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }


  .therapist-card-content .therapist-name {
    font-size: clamp(2px, 20 / 768 * 100vw, 20px);
  }

  .therapist-card-content .therapist-data {
    font-size: clamp(2px, 14 / 768 * 100vw, 14px);
  }

  .report-detail {
    padding: 20px;
  }

  .report-detail .report-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .recruit-header {
    padding: 10px;
    margin-bottom: 10px;
  }

  .recruit-header .recruit-image {
    margin-bottom: 20px;
  }

  .recruit-title {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .recruit-message {
    padding: 20px;
  }

  .recruit-wrap {
    padding: 10px;
  }

  .recruit-info-table {
    margin: 10px 0;
  }

  .recruit-info-table th,
  .recruit-info-table td {
    padding: 10px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-other {
    margin-top: 40px;
  }

  .contact-other .contact-other-inner {
    background: var(--color-green3);
    padding: 10px;
    border-radius: 10px;
    text-align: center;
  }

  .static-page {
    padding: 20px;
  }

  .static-page h2 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 5px;
    padding-bottom: 10px;
  }

  .static-page h3 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 7px;
  }

  .static-page p {
    line-height: 1.8;
    margin-bottom: 10px;
  }

  .static-page ul,
  .static-page ol {
    margin: 7px 0 7px 15px;
    line-height: 1.8;
  }

  .static-contact {
    margin-top: 25px;
    padding: 15px;
    background: var(--color-green3);
    border-radius: 10px;
  }

  .shop-detail-header {
    padding: 10px;
    margin-bottom: 20px;
  }

  .shop-detail-title {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .shop-info-table .sns-link img {
    width: 40px;
    height: 40px;
  }

  .shop-top3 {
    gap: 10px;
  }

  .shop-top3 h3 {
    font-size: 12px !important;
    margin: 5px 0 !important;
  }

  .shop-top3 p {
    font-size: 10px !important;
  }

  .shop-top3 .btn-primary {
    font-size: 8px !important;
    padding: 6px 12px !important;
    margin-top: 5px !important;
  }

  /* 出勤表縦書きに変更 */
  .schedule-table {
    display: block;
    width: 100%;
  }

  .schedule-table thead {
    display: none;
  }

  .schedule-table tbody {
    display: block;
  }

  .schedule-table tr {
    display: block;
    margin-bottom: 0;
  }

  .schedule-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: none;
    text-align: right;
  }

  .schedule-table td:before {
    content: attr(data-label);
    font-weight: bold;
    text-align: left;
    margin-right: 20px;
    color: var(--color-green1);
  }

  .schedule-table td:last-child {
    border-bottom: 1px solid #ccc;
  }

  .recruit-benner {
    width: 96%;
    height: auto;
    margin: 0 auto;
  }

  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 25px 0;
  }

  .pagination a,
  .pagination span {
    width: 35px;
    height: 35px;
  }
}

/* さらに小さい画面用 */
@media (max-width: 480px) {

  .btn-primary {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: clamp(2px, 16 / 480 * 100vw, 16px);
  }

  .therapist-grid {
    /* grid-template-columns: 1fr; */
    gap: 15px;
  }

  .report-grid {
    grid-template-columns: 1fr;
  }

  .column-grid {
    grid-template-columns: 1fr;
  }

  /* エリアモーダルのレスポンシブ */
  .area-modal-content {
    max-height: 95vh;
    margin: 10px;
  }

  .area-modal-header {
    padding: 15px 20px;
  }

  .area-modal-header h3 {
    font-size: 18px;
  }

  .area-modal-close {
    width: 35px;
    height: 35px;
    font-size: 24px;
  }

  .area-modal-body {
    padding: 20px;
  }

  .area-region {
    margin-bottom: 25px;
  }

  .area-region h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .area-links {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }

  .area-link {
    padding: 10px 12px;
    font-size: 13px;
  }

  .therapist-card-content .therapist-name {
    font-size: clamp(2px, 20 / 480 * 100vw, 20px);
  }

  .therapist-card-content .therapist-data {
    font-size: clamp(2px, 14 / 480 * 100vw, 14px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

}

/* ===================================
   バナースライダー
   =================================== */
.topBannerSwiper,
.middleBannerSwiper,
.bottomBannerSwiper,
.areaBannerSwiper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.topBannerSwiper .swiper-slide,
.middleBannerSwiper .swiper-slide,
.bottomBannerSwiper .swiper-slide,
.areaBannerSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.topBannerSwiper .swiper-slide img,
.middleBannerSwiper .swiper-slide img,
.bottomBannerSwiper .swiper-slide img,
.areaBannerSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.topBannerSwiper .swiper-slide a,
.middleBannerSwiper .swiper-slide a,
.bottomBannerSwiper .swiper-slide a,
.areaBannerSwiper .swiper-slide a {
  display: block;
  width: 100%;
}

/* ナビゲーションボタン */
.topBannerSwiper .swiper-button-next,
.topBannerSwiper .swiper-button-prev,
.middleBannerSwiper .swiper-button-next,
.middleBannerSwiper .swiper-button-prev,
.bottomBannerSwiper .swiper-button-next,
.bottomBannerSwiper .swiper-button-prev,
.areaBannerSwiper .swiper-button-next,
.areaBannerSwiper .swiper-button-prev {
  color: #00a651;
  width: 44px;
  height: 44px;
}

.topBannerSwiper .swiper-button-next:after,
.topBannerSwiper .swiper-button-prev:after,
.middleBannerSwiper .swiper-button-next:after,
.middleBannerSwiper .swiper-button-prev:after,
.bottomBannerSwiper .swiper-button-next:after,
.bottomBannerSwiper .swiper-button-prev:after,
.areaBannerSwiper .swiper-button-next:after,
.areaBannerSwiper .swiper-button-prev:after {
  font-size: 24px;
  font-weight: bold;
}

/* ページネーション */
.topBannerSwiper .swiper-pagination,
.middleBannerSwiper .swiper-pagination,
.bottomBannerSwiper .swiper-pagination,
.areaBannerSwiper .swiper-pagination {
  bottom: 10px;
}

.topBannerSwiper .swiper-pagination-bullet,
.middleBannerSwiper .swiper-pagination-bullet,
.bottomBannerSwiper .swiper-pagination-bullet,
.areaBannerSwiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
  width: 10px;
  height: 10px;
}

.topBannerSwiper .swiper-pagination-bullet-active,
.middleBannerSwiper .swiper-pagination-bullet-active,
.bottomBannerSwiper .swiper-pagination-bullet-active,
.areaBannerSwiper .swiper-pagination-bullet-active {
  background: #00a651;
  opacity: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset,0px)!important;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset,0px)!important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .topBannerSwiper,
  .middleBannerSwiper,
  .areaBannerSwiper,
  .bottomBannerSwiper {
    max-width: 100%;
  }

  .topBannerSwiper .swiper-button-next,
  .topBannerSwiper .swiper-button-prev,
  .middleBannerSwiper .swiper-button-next,
  .middleBannerSwiper .swiper-button-prev,
  .areaBannerSwiper .swiper-button-next,
  .areaBannerSwiper .swiper-button-prev,
  .bottomBannerSwiper .swiper-button-next,
  .bottomBannerSwiper .swiper-button-prev {
    width: 32px;
    height: 32px;
  }

  .topBannerSwiper .swiper-button-next:after,
  .topBannerSwiper .swiper-button-prev:after,
  .middleBannerSwiper .swiper-button-next:after,
  .middleBannerSwiper .swiper-button-prev:after,
  .areaBannerSwiper .swiper-button-next:after,
  .areaBannerSwiper .swiper-button-prev:after,
  .bottomBannerSwiper .swiper-button-next:after,
  .bottomBannerSwiper .swiper-button-prev:after {
    font-size: 18px;
  }
}
