@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/* =========================
   基本設定
   ========================= */
body {
  font-family: var(--cocoon-default-font);
  font-size: var(--cocoon-default-text-size);
  color: var(--cocoon-text-color);
  line-height: 1.7;
  margin: 0;
  overflow-wrap: break-word;
  background-color: #f4f5f7;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  background-attachment: fixed;
}

.header-container, .main, .sidebar, .footer {
  background-color: #000000;
}

.logo-text {
  padding: 0;
  font-size: 1em;
}

.is-layout-flex {
  gap: 0rem;
}

/* =========================
   余白削除
   ========================= */
#header-container, #header, .site-header, .header-container,
.header, #content, #main, .main, .content,
#content-in, .main-inner, .container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.entry-content > :first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================
   Cocoon ラベル・パンくず削除
   ========================= */
.breadcrumb,
.breadcrumbs,
.breadcrumbs-container,
.entry-categories,
.cat-label,
.cat-labels,
.entry-category,
.entry-category-item,
.page-title,
.entry-title,
.post-title,
.archive-title,
.eye-catch-label,
.eye-catch-cat,
.label-box,
.label,
.home .entry-header,
.home .page-header {
  display: none !important;
}

/* =========================
   ヘッダー
   ========================= */
#header {
  padding-top: 6px;
  padding-bottom: 6px;
}

.header-tel {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  text-align: right;
  line-height: 1.1;
  z-index: 100;
  white-space: nowrap;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.header-tel-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-bottom: 1px;
  color: #bbb;
  text-transform: uppercase;
  font-weight: 400;
}

.header-tel-number {
  font-size: 18px;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.header-tel-number:hover {
  color: #f0e6d2;
  transition: color 0.3s ease;
}

@media screen and (max-width: 768px) {
  .header-tel {
    position: static;
    transform: none;
    margin: 6px 0 4px;
    text-align: center;
    line-height: 1.2;
  }

  .header-tel-label {
    display: inline;
    margin-right: 6px;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: #ccc;
    text-transform: uppercase;
  }

  .header-tel-number {
    font-size: 16px;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: #fff;
  }
}

/* =========================
   店舗タブ
   ========================= */
.shop-tabs {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
  justify-content: center !important;
}

.shop-tab {
  display: inline-block !important;
  padding: 10px 24px !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #888 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  letter-spacing: 0.25em !important;
  border: 1px solid rgba(212,175,55,0.3) !important;
  box-shadow: none !important;
  transform: none !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  white-space: nowrap !important;
}

.shop-tab:hover {
  background: rgba(212,175,55,0.08) !important;
  color: #c9a24d !important;
  border-color: rgba(212,175,55,0.7) !important;
  box-shadow: none !important;
  transform: none !important;
}

.shop-tab.shop-tab-active {
  background: linear-gradient(135deg, #1a1400, #0a0800) !important;
  color: #f5e6a8 !important;
  border: 1px solid #c9a24d !important;
  box-shadow: 0 0 12px rgba(212,175,55,0.25), inset 0 0 0 1px rgba(212,175,55,0.15) !important;
  transform: none !important;
  opacity: 1 !important;
}

@media screen and (max-width: 768px) {
  .shop-tabs {
    gap: 6px !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    padding: 0 12px !important;
  }

  .shop-tab {
    font-size: 11px !important;
    padding: 8px 14px !important;
    letter-spacing: 0.15em !important;
    flex-shrink: 0 !important;
  }
}

/* =========================
   店舗名ヘッダー
   ========================= */
.shop-heading {
  text-align: center;
  margin: 16px 0 12px;
  padding: 8px 0;
  position: relative;
}

.shop-heading::before,
.shop-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 0 auto;
}

.shop-heading::before {
  background: linear-gradient(90deg, transparent, #c9a24d);
  margin-bottom: 4px;
}

.shop-heading::after {
  background: linear-gradient(90deg, #c9a24d, transparent);
  margin-top: 4px;
}

.shop-heading-title {
  display: inline-block !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0.6em !important;
  color: #c9a24d !important;
  margin: 4px 0 !important;
  padding: 0 20px !important;
  text-indent: 0.6em;
  background: transparent !important;
}

/* =========================
   日付タブ
   ========================= */
.schedule-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  overflow-x: auto;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  scrollbar-width: none;
}

.schedule-tabs::-webkit-scrollbar {
  display: none;
}

.schedule-tabs .schedule-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 10px 14px;
  border-radius: 0 !important;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent !important;
  color: #666 !important;
  opacity: 1 !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  box-shadow: none !important;
  transform: none !important;
  letter-spacing: 0.05em;
  position: relative;
  bottom: -1px;
}

.schedule-tabs .schedule-tab:first-child,
.schedule-tabs .schedule-tab:first-of-type,
.schedule-tabs .schedule-tab.is-active {
  background: transparent !important;
  color: #666 !important;
  opacity: 1 !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.schedule-tabs .schedule-tab:hover {
  color: #c9a24d !important;
  border-bottom: 2px solid rgba(212,175,55,0.4) !important;
}

body:has(#day-0:target) .schedule-tabs a[href="#day-0"],
body:has(#day-1:target) .schedule-tabs a[href="#day-1"],
body:has(#day-2:target) .schedule-tabs a[href="#day-2"],
body:has(#day-3:target) .schedule-tabs a[href="#day-3"],
body:has(#day-4:target) .schedule-tabs a[href="#day-4"],
body:has(#day-5:target) .schedule-tabs a[href="#day-5"],
body:has(#day-6:target) .schedule-tabs a[href="#day-6"],
body:not(:has(:target)) .schedule-tabs a[href="#day-0"] {
  background: transparent !important;
  color: #f5e6a8 !important;
  opacity: 1 !important;
  border: none !important;
  border-bottom: 2px solid #c9a24d !important;
  box-shadow: none !important;
  transform: none !important;
}

.schedule-tabs .schedule-tab .tab-date {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.schedule-tabs .schedule-tab .tab-week {
  font-size: 10px;
  letter-spacing: 0.08em;
  margin-top: 2px;
  color: inherit;
}

/* =========================
   スケジュールパネル
   ========================= */
.schedule-panel {
  display: none;
  scroll-margin-top: 100px;
}

body:not(:has(:target)) #day-0,
.schedule-panel:target {
  display: block;
}

/* =========================
   出勤なし
   ========================= */
.no-girl {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 30px 0;
}

/* =========================
   女の子一覧レイアウト
   ========================= */
.girls-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.entry-content .girls-list {
  margin: 0;
  padding: 0;
}

/* スマホ：2列 */
.entry-content .girl-item {
  width: calc(50% - 6px);
  background: #fff !important;
  color: #111 !important;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

/* タブレット：3列 */
@media screen and (min-width: 600px) {
  .entry-content .girl-item {
    width: calc(33.333% - 8px);
  }
}

/* PC：4列 */
@media screen and (min-width: 1024px) {
  .entry-content .girl-item {
    width: calc(25% - 9px);
  }
}

.entry-content .girl-item img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.entry-content .girl-item h3 {
  margin: 0;
  padding: 8px 10px 4px;
  font-size: 14px !important;
  font-weight: 600;
  color: #111 !important;
  letter-spacing: 0.06em;
  line-height: 1.4;
  background: transparent !important;
}

.entry-content .girl-item p {
  color: inherit !important;
  background: transparent !important;
}

.entry-content .girl-item .time {
  margin: 0;
  padding: 0 10px 8px;
  font-size: 12px;
  color: #7a7a7a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  line-height: 1.4;
}

.entry-content .girl-item .girl-spec,
.entry-content .girl-item .spec {
  font-size: 11px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.04em !important;
  font-weight: 400 !important;
  margin: 0 !important;
  padding: 0 2px 4px !important;
  text-align: center;
  color: #666 !important;
}

.entry-content .schedule-panel .girl-item p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}

.girl-item {
  text-align: center;
}

.girl-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* =========================
   NEWバッジ
   ========================= */
.girl-image {
  position: relative;
}

.new-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #d40000;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 10;
  letter-spacing: 0.1em;
}

/* =========================
   特別指名料バッジ
   ========================= */
.special-fee-badge {
  display: block;
  font-size: 11px;
  color: #c9a24d;
  text-align: center;
  padding: 2px 0 4px;
}

/* =========================
   セラピスト一覧
   ========================= */
.therapist-list {
  background: #000;
  padding: 16px 10px;
}

.therapist-list .girl-item h3 {
  margin: 10px 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-align: center;
}

.therapist-list .girl-item .spec {
  margin: 0 0 10px;
  font-size: 12px;
  color: #444;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

@media screen and (max-width: 599px) {
  .therapist-list .girl-item {
    width: calc(50% - 6px);
  }
}

@media screen and (min-width: 600px) {
  .therapist-list .girl-item {
    width: calc(33.333% - 8px);
  }
}

@media screen and (min-width: 1024px) {
  .therapist-list .girl-item {
    width: calc(25% - 9px);
  }
}

/* =========================
   予約フォーム
   ========================= */
.wpcf7 {
  max-width: 720px;
  margin: 40px auto 80px;
  padding: 40px 30px;
  background: linear-gradient(180deg, #050505 0%, #000 100%);
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.85), inset 0 0 0 1px rgba(255,255,255,0.03);
  box-sizing: border-box;
}

.wpcf7-form label {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: #c9a24d;
  text-transform: uppercase;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  box-sizing: border-box;
  height: 48px;
  line-height: 48px;
  padding: 0 16px;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #f2f2f2;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.wpcf7-form textarea {
  height: auto;
  min-height: 130px;
  line-height: 1.7;
  padding: 14px 16px;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.07);
  border-color: #d4af37;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.6);
}

.wpcf7-form input[type="date"],
.wpcf7-form select {
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7-form select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='7'><path fill='%23d4af37' d='M0 0l6 7 6-7z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.wpcf7-form .button,
.wpcf7-form input[type="submit"] {
  margin-top: 32px;
  width: 100%;
  height: 52px;
  background: linear-gradient(135deg, #c9a24d, #f5e6a8, #c9a24d);
  color: #000;
  font-size: 15px;
  letter-spacing: 0.25em;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
}

.wpcf7-form .button:hover,
.wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.5);
}

.wpcf7-form .required {
  color: #bfa34a;
}

.wpcf7-not-valid-tip {
  color: #d6b27c;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.wpcf7-response-output {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.35);
  color: #f0e6c8;
  font-size: 14px;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .wpcf7 {
    margin: 30px 16px 60px;
    padding: 24px 20px;
  }

  .wpcf7-form label {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form input[type="date"],
  .wpcf7-form select,
  .wpcf7-form textarea {
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    padding: 0 14px;
  }

  .wpcf7-form textarea {
    line-height: 1.6;
    padding: 12px 14px;
    min-height: 120px;
  }

  .wpcf7-form .button,
  .wpcf7-form input[type="submit"] {
    margin-top: 24px;
    height: 50px;
  }
}

/* =========================
   会員登録フォーム
   ========================= */
.member-form {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 16px;
  box-sizing: border-box;
}

.member-form-section {
  margin-bottom: 28px;
}

.member-form-section h3 {
  font-size: 14px !important;
  letter-spacing: 0.15em !important;
  color: #c9a24d !important;
  margin: 0 0 16px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid rgba(212,175,55,0.3) !important;
  text-align: left !important;
}

.member-form-note {
  font-size: 12px !important;
  color: #888 !important;
  margin: -12px 0 14px !important;
  line-height: 1.5 !important;
}

.member-form .wpcf7-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #c9a24d;
}

.member-form .wpcf7-form input[type="text"],
.member-form .wpcf7-form input[type="email"],
.member-form .wpcf7-form input[type="tel"] {
  width: 100% !important;
  box-sizing: border-box !important;
  height: 48px !important;
  line-height: 48px !important;
  padding: 0 16px !important;
  font-size: 15px !important;
  color: #f2f2f2 !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(212,175,55,0.25) !important;
  border-radius: 2px !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.member-form-row {
  display: flex !important;
  gap: 16px !important;
  width: 100% !important;
}

.member-form-row label {
  flex: 1 !important;
  min-width: 0 !important;
}

.member-form-agree {
  margin: 20px 0;
  font-size: 12px;
  color: #aaa;
  text-align: center;
  line-height: 1.6;
}

.member-form-agree a {
  color: #c9a24d !important;
  text-decoration: underline !important;
  pointer-events: auto !important;
}

.member-form .wpcf7-submit,
.member-form input[type="submit"] {
  width: 100% !important;
  height: 52px !important;
  background: linear-gradient(135deg, #c9a24d, #f5e6a8, #c9a24d) !important;
  color: #000 !important;
  font-size: 15px !important;
  letter-spacing: 0.25em !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: pointer !important;
  border-radius: 2px !important;
  transition: all 0.35s ease !important;
  box-sizing: border-box !important;
  margin-top: 0 !important;
}

@media screen and (max-width: 768px) {
  .member-form {
    padding: 20px 12px !important;
  }

  .member-form-section {
    margin-bottom: 20px;
  }

  .member-form-row {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .member-form-row label {
    width: 100% !important;
    margin-bottom: 14px !important;
  }

  .member-form .wpcf7-form input[type="text"],
  .member-form .wpcf7-form input[type="email"],
  .member-form .wpcf7-form input[type="tel"] {
    height: 46px !important;
    line-height: 46px !important;
    font-size: 16px !important;
  }
}


/* =========================
   女の子プロフィールモーダル
   ========================= */
#girl-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.88);
  z-index: 99999;
  overflow-y: auto;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  box-sizing: border-box;
}

#girl-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, #0d0d0d 0%, #000 100%);
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(255,255,255,0.02);
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #c9a24d;
  font-size: 20px;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #f5e6a8;
}

#modal-thumb img {
  width: 100%;
  display: block;
}

.modal-body {
  padding: 20px 24px 28px;
}

#modal-name {
  margin: 0;
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  color: #f5f0e8 !important;
  line-height: 1.4 !important;
}

#modal-spec {
  margin: 8px 0 0 !important;
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
  color: #c9a24d !important;
}

.modal-divider {
  margin: 16px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.35), transparent);
}

.modal-section-label {
  font-size: 10px !important;
  letter-spacing: 0.35em !important;
  color: #666 !important;
  margin: 0 0 10px !important;
}

#modal-schedule {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.modal-schedule-label {
  font-size: 12px;
  color: #777;
  letter-spacing: 0.06em;
  min-width: 90px;
}

.modal-schedule-time {
  font-size: 13px;
  color: #f0e6c8;
  letter-spacing: 0.06em;
}

.modal-schedule-time.is-off {
  color: #333;
}

#modal-comment {
  font-size: 13px !important;
  line-height: 1.9 !important;
  color: #aaa !important;
  margin: 0 !important;
  white-space: pre-wrap !important;
}

@media screen and (max-width: 768px) {
  #girl-modal-overlay {
    padding: 0;
    align-items: flex-start;
  }

  #girl-modal {
    max-width: 100%;
    min-height: 100vh;
  }

  .modal-body {
    padding: 16px 20px 24px;
  }

  #modal-name {
    font-size: 16px !important;
  }
}

/* =========================
   PC表示まとまり改善
   ========================= */
.entry-content {
  max-width: 1100px;
  margin: 0 auto !important;
  padding: 0 20px !important;
  box-sizing: border-box;
}

.shop-tabs,
.schedule-tabs {
  max-width: 1100px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}

@media screen and (max-width: 768px) {
  .entry-content {
    padding: 0 12px !important;
  }

  .shop-tabs,
  .schedule-tabs {
    padding: 0 !important;
  }
}

@media screen and (min-width: 1400px) {
  .entry-content .girl-item {
    width: calc(20% - 10px);
  }
}