/* ============================================================
   受付・カウンセリング カテゴリページ (cid52) 専用CSS
   プレフィックス: uk-
   設置：FFFTPで /files/css/uk_uketsuke.css にアップロード
   読込：HTMLタグ挿入欄（head内）に以下を追加
     <link rel="stylesheet" href="/files/css/uk_uketsuke.css?v=20260706">
   ※他ページ(es-/ne-/md-)とプレフィックスが異なるため共通化していません。
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.uk-page {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
  color: #3a3a3c;
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.85;
  letter-spacing: 0.05em;
  font-size: 13.5px;
}
.uk-page a { text-decoration: none; color: inherit; }
.uk-page a:hover { text-decoration: none; color: inherit; }

/* ===== 01. HERO ===== */
.uk-hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: linear-gradient(135deg, #3d5a80 0%, #2c4a6e 40%, #1e3a5c 100%);
}
.uk-hero__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.uk-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.42) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding-bottom: 56px;
}
.uk-hero__en {
  font-family: 'Book Antiqua', 'Palatino Linotype', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.uk-hero__title {
  font-size: 36px;
  font-weight: normal;
  color: #fff;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  margin: 0;
}
.uk-hero__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.18em;
  margin-top: 18px;
  padding: 6px 20px;
  border-top: 1px solid rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

/* ===== 02. CONCEPT ===== */
.uk-concept {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.uk-concept__img {
  position: relative;
  min-height: 440px;
  background: linear-gradient(160deg, #c4cdd8 0%, #a8b8ca 100%);
  overflow: hidden;
}
.uk-concept__img-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 0.12em;
}
.uk-concept__text {
  background: #f7f5f1;
  padding: 64px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.uk-concept__en-title {
  font-family: 'Book Antiqua', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #3d5a80;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.uk-concept__ja-title {
  font-size: 22px;
  font-weight: normal;
  line-height: 1.6;
  color: #3a3a3c;
  margin-bottom: 28px;
  letter-spacing: 0.08em;
}
.uk-concept__body {
  font-size: 13px;
  color: #6b6b6d;
  line-height: 2.0;
  letter-spacing: 0.06em;
}
.uk-concept__accent-line {
  width: 36px; height: 1px;
  background: #c9a96e;
  margin: 24px 0;
}

/* ===== Section Title共通 ===== */
.uk-section-title {
  font-family: 'Book Antiqua', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.34em;
  color: #3d5a80;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  text-align: center;
}
.uk-section-h2 {
  font-size: 20px;
  font-weight: normal;
  color: #3a3a3c;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
  text-align: center;
}

/* ===== 03. FEATURES ===== */
.uk-features {
  background: #fff;
  padding: 72px 40px;
  text-align: center;
}
.uk-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.uk-feature-item {
  padding: 36px 24px;
  border: 1px solid #e4e0d8;
  position: relative;
}
.uk-feature-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: #c9a96e;
}
.uk-feature-item__icon {
  width: 48px; height: 48px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #eef2f7;
  display: flex; align-items: center; justify-content: center;
}
.uk-feature-item__icon svg {
  width: 24px; height: 24px;
  stroke: #3d5a80; fill: none; stroke-width: 1.5;
}
.uk-feature-item__title {
  font-size: 14px;
  color: #3a3a3c;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.uk-feature-item__body {
  font-size: 12px;
  color: #7a7a7c;
  line-height: 1.9;
}

/* ===== 04. CATEGORY CARDS ===== */
.uk-categories {
  padding: 72px 40px;
  background: #f7f5f1;
}
.uk-categories__header {
  text-align: center;
  margin-bottom: 24px;
}
.uk-cat-anchors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.uk-cat-anchors a {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #3d5a80;
  border: 1px solid #3d5a80;
  padding: 6px 16px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.uk-cat-anchors a:hover {
  background: #3d5a80;
  color: #fff;
}
.uk-cat-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: #c9a96e #e4e0d8;
}
.uk-cat-grid::-webkit-scrollbar { height: 6px; }
.uk-cat-grid::-webkit-scrollbar-track { background: #e4e0d8; border-radius: 3px; }
.uk-cat-grid::-webkit-scrollbar-thumb { background: #c9a96e; border-radius: 3px; }
.uk-cat-item {
  flex: 0 0 260px;
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.uk-cat-item:hover {
  box-shadow: 0 4px 20px rgba(61,90,128,0.12);
}
.uk-cat-item__img-wrap { overflow: hidden; }
.uk-cat-item__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #c4cdd8 0%, #a8b8ca 100%);
  transition: transform 0.5s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(255,255,255,0.35);
}
.uk-cat-item:hover .uk-cat-item__img { transform: scale(1.04); }
.uk-cat-item > a { display: block; text-decoration: none; color: inherit; }
.uk-cat-item__info { padding: 18px 20px; }
.uk-cat-item__label {
  font-family: 'Book Antiqua', Georgia, serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #3d5a80;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.uk-cat-item__name {
  font-size: 14px;
  color: #3a3a3c;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.uk-cat-item__desc {
  font-size: 11px;
  color: #8a8a8c;
  line-height: 1.7;
}
.uk-cat-item__tags { padding: 0 20px 18px; display: flex; flex-wrap: wrap; gap: 6px; }
.uk-cat-item__tag { display: inline-block; font-size: 11px; color: #3d5a80; background: rgba(61,90,128,0.07); border: 1px solid rgba(61,90,128,0.2); padding: 4px 12px; border-radius: 20px; text-decoration: none; letter-spacing: 0.04em; transition: background 0.2s, color 0.2s; line-height: 1.4; }
.uk-cat-item__tag:hover { background: #3d5a80; color: #fff; border-color: #3d5a80; }

/* ===== 05. SCENE (利用シーン) ===== */
.uk-scene {
  padding: 72px 40px;
  background: #fff;
}
.uk-scene__header { text-align: center; margin-bottom: 40px; }
.uk-scene__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.uk-scene-card {
  display: flex;
  background: #f7f5f1;
  border-left: 3px solid #c9a96e;
  overflow: hidden;
}
.uk-scene-card__img {
  width: 40%;
  aspect-ratio: 210 / 297;
  flex-shrink: 0;
  background: linear-gradient(160deg, #c4cdd8 0%, #a8b8ca 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(255,255,255,0.4);
}
.uk-scene-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.uk-scene-card__text {
  padding: 28px 24px;
  flex: 1;
  min-width: 0;
}
.uk-scene-card__title {
  font-size: 15px;
  color: #3a3a3c;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.uk-scene-card__body {
  font-size: 12px;
  color: #6b6b6d;
  line-height: 1.9;
}

/* ===== 05b. NEW ARRIVALS SLIDER ===== */
.uk-new-arrivals { padding: 72px 40px; background: #fff; }
.uk-new-arrivals__header { text-align: center; margin-bottom: 40px; }
.uk-new-arrivals__slider { display: flex; overflow-x: auto; gap: 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
.uk-new-arrivals__slider::-webkit-scrollbar { height: 4px; }
.uk-new-arrivals__slider::-webkit-scrollbar-thumb { background: #c9a96e; border-radius: 2px; }
.uk-new-arrivals__card { flex: 0 0 180px; scroll-snap-align: start; text-decoration: none; color: inherit; transition: transform .2s; }
.uk-new-arrivals__card:hover { transform: translateY(-4px); }
.uk-new-arrivals__card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 6px; background: #f0ece4; }
.uk-new-arrivals__card-name { font-size: 12px; margin-top: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.uk-new-arrivals__card-price { font-size: 13px; font-weight: 600; color: #3d5a80; margin-top: 4px; }
.uk-new-arrivals__loading { text-align: center; padding: 40px; color: #999; font-size: 13px; }
.uk-new-arrivals__more { text-align: center; margin-top: 32px; }
.uk-new-arrivals__more a { display: inline-block; padding: 12px 40px; border: 1px solid #3d5a80; color: #3d5a80; background: #fff; font-size: 14px; font-weight: 600; border-radius: 6px; text-decoration: none; transition: all .3s; }
.uk-new-arrivals__more a:hover { background: #3d5a80; color: #fff; }

/* ===== 06. FAQ ===== */
.uk-faq {
  padding: 72px 40px;
  background: #f7f5f1;
}
.uk-faq .uk-section-h2 { margin-bottom: 40px; }
.uk-faq__list { max-width: 800px; margin: 0 auto; }
.uk-faq__item { border-bottom: 1px solid #e4e0d8; }
.uk-faq__item:first-child { border-top: 1px solid #e4e0d8; }
.uk-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 20px 44px 20px 0;
  font-size: 14px;
  color: #3a3a3c;
  letter-spacing: 0.06em;
  line-height: 1.65;
  position: relative;
  font-family: "游明朝", YuMincho, serif;
}
.uk-faq__q::-webkit-details-marker { display: none; }
.uk-faq__q::before {
  content: 'Q.';
  font-family: 'Book Antiqua', Georgia, serif;
  font-size: 12px;
  color: #3d5a80;
  margin-right: 10px;
}
.uk-faq__q::after {
  content: '+';
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; font-weight: 300;
  color: #3d5a80; line-height: 1;
  transition: transform 0.2s;
}
.uk-faq__item[open] .uk-faq__q::after { content: '−'; }
.uk-faq__a {
  padding: 4px 0 24px 28px;
  font-size: 13px;
  color: #6b6b6d;
  line-height: 2.0;
  letter-spacing: 0.05em;
}

/* ===== 07. CTA ===== */
.uk-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 36px 24px;
  background: #3d5a80;
  flex-wrap: wrap;
}
.uk-cta__text {
  font-family: "游明朝", YuMincho, serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.88);
}
.uk-cta__btn {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #3d5a80;
  background: #fff;
  border: 1px solid #fff;
  padding: 8px 24px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.uk-cta__btn:hover {
  background: transparent;
  color: #fff;
}

/* ===== 08. 他の職種カテゴリ ===== */
.uk-jobs {
  padding: 64px 40px;
  background: #f0ece4;
}
.uk-jobs__header { text-align: center; margin-bottom: 40px; }
.uk-jobs__grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.uk-job-card {
  flex: 0 0 200px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.uk-job-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #c4cdd8 0%, #a8b8ca 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: rgba(255,255,255,0.3);
  transition: opacity 0.2s;
  overflow: hidden;
  border-radius: 2px;
}
.uk-job-card:hover .uk-job-card__img { opacity: 0.82; }
.uk-job-card.is-current .uk-job-card__img {
  outline: 2px solid #3d5a80;
  outline-offset: -2px;
}
.uk-job-card__badge {
  display: inline-block;
  background: #3d5a80;
  color: #fff;
  font-size: 9px;
  padding: 2px 8px;
  letter-spacing: 0.08em;
  margin-top: -14px;
  position: relative;
  z-index: 1;
}
.uk-job-card__name {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #3a3a3c;
}
.uk-job-card__name small {
  display: block;
  font-size: 10px;
  color: #9a9a9c;
  letter-spacing: 0.06em;
  font-family: 'Book Antiqua', Georgia, serif;
}

/* ===== BREADCRUMB ===== */
.uk-breadcrumb { padding: 12px 40px; font-size: 11px; color: #8a8a8c; letter-spacing: 0.04em; }
.uk-breadcrumb a { color: #6b6b6d; text-decoration: none; }
.uk-breadcrumb a:hover { text-decoration: underline; }
.uk-breadcrumb__sep { margin: 0 8px; color: #c0c0c0; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .uk-hero { height: 380px; }
  .uk-hero__title { font-size: 26px; }
  .uk-concept { grid-template-columns: 1fr; }
  .uk-concept__img { min-height: 280px; }
  .uk-concept__text { padding: 40px 28px; }
  .uk-features__grid { grid-template-columns: 1fr; gap: 16px; }
  .uk-cat-grid { gap: 14px; }
  .uk-cat-item { flex: 0 0 220px; }
  .uk-cat-anchors { gap: 6px; }
  .uk-cat-anchors a { font-size: 11px; padding: 5px 12px; }
  .uk-new-arrivals { padding: 48px 20px; }
  .uk-new-arrivals__card { flex: 0 0 150px; }
  .uk-scene__grid { grid-template-columns: 1fr; }
  .uk-scene-card__img { width: 35%; }
  .uk-cta { flex-direction: column; gap: 12px; text-align: center; }
  .uk-job-card { flex: 0 0 140px; }
}
