/*
Theme Name: Nice Massage
Author: hinotori-works
Description: ナイスマッサージ オリジナルテーマ
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: nicemassage
*/

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  background: #f7f5f0;
  color: #2c2c2c;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
p {
  line-height: 1.5;
}
button {
  font-family: inherit;
}

/* ===== TOKENS ===== */
:root {
  --sp: 20px;
  --pc-pad: 80px;
  --max: 1000px;
  --hh: 80px;
  --color-main: #0e9bad;
  --color-dark: #076475;
  --color-accent: #e8944a;
  --color-yellow: #f5c842;
  --color-bg: #f7f5f0;
  --color-text: #2c2c2c;
  --color-teal-lt: #eaf6f8;
}

/* ===== SITE MAIN ===== */
.site-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: var(--hh);
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #076475;
  color: #fff;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp);
  height: var(--hh);
  flex-shrink: 0;
}
.logo img {
  width: 250px;
  height: auto;
  display: block;
}
.pc-nav {
  display: none;
  align-items: center;
  gap: 20px;
}
.pc-nav a {
  font-size: 14px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.pc-nav a:hover {
  opacity: 0.7;
}
.mobile-ctrl {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ===== 固定予約ボタン ===== */
.float-reserve {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 90;
  background: #e83151;
  color: #ffffff;
  box-shadow: #2c2c2c 0px 2px 2px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  padding: 16px 12px;
  border-radius: 6px 0 0 6px;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    padding 0.2s;
}
.float-reserve:hover {
  background: #e54560;
  padding-right: 30px;
}

/* ご予約・お問い合わせ・代表の思いページでは非表示 */
body.page-reserve .float-reserve,
body.page-contact .float-reserve,
body.page-recruit .float-reserve {
  display: none;
}

.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(9.75px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-9.75px) rotate(-45deg);
}

/* ===== OVERLAY (mobile) ===== */
.overlay {
  position: fixed;
  top: var(--hh);
  left: 0;
  right: 0;
  height: calc(100vh - var(--hh));
  background: rgba(7, 100, 117, 0.97);
  color: #fff;
  padding: 32px var(--sp);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.open {
  opacity: 1;
  pointer-events: all;
}
.overlay nav a {
  display: block;
  font-size: 19px;
  font-weight: 700;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.overlay nav a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ===== LAYOUT ===== */
section {
  width: 100%;
  padding: 36px 0;
  background: #0e9bad;
  color: #fff;
}
.inner {
  padding: 0 var(--sp);
}
.h2-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}
.h2-block .en {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.h2-block .ja {
  font-size: 20px;
  font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn-fv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0fafa;
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
  color: #076475;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  padding: 8px 22px;
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-fv:hover {
  transform: translateY(0);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e55e00;
  /* border: 2px solid #f5c842; */
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 8px 22px;
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.btn-outline-dark:hover {
  transform: translateY(0);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #ff6900;
}
.btn-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d47c38;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  padding: 14px 20px;
  transform: translateY(-2px);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-solid:hover {
  transform: translateY(0);
  box-shadow: none;
  background: #e8944a;
}
.btn-more-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}

/* ===== FV ===== */
.fv {
  width: 100%;
  height: 680px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url("img/fv.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.fv-inner {
  position: absolute;
  bottom: 90px;
  left: var(--sp);
  right: var(--sp);
}
.fv h1 {
  font-size: 30px;
  color: #fff;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 18px;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 1);
}
.fv-desc {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 22px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 1);
}

/* ===== CONCEPT ===== */
.concept-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.concept-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px 20px;
  color: #2c2c2c;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.concept-text-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.concept-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #076475;
}
.concept-card p {
  font-size: 14px;
  color: #2c2c2c;
  line-height: 1.9;
}
.concept-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

/* ===== 2-COL IMAGE SECTION ===== */
.img-text-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.img-ph {
  background: rgba(0, 0, 0, 0.15);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.img-text-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.img-text-body p {
  font-size: 14px;
  line-height: 1.9;
  color: #fff;
}

/* ===== REVIEWS ===== */
.review-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #2c2c2c;
}
.review-stars {
  font-size: 12px;
  color: #f5c842;
}
.review-text {
  font-size: 12px;
  line-height: 1.7;
}
.review-hr {
  border: none;
  border-top: 1px solid #e0e0e0;
}
.review-author {
  font-size: 12px;
}
.review-sub {
  font-size: 10px;
  color: #666;
  margin-top: 2px;
}

/* ===== CATEGORY FILTER ===== */
.cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.cat-filter-btn {
  font-size: 13px;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.8);
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.cat-filter-btn:hover,
.cat-filter-btn.active {
  background: #fff;
  color: #076475;
  border-color: #fff;
}

/* ===== INFO LIST ===== */
.info-list {
  display: flex;
  flex-direction: column;
}
.info-div {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}
.info-thumb {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
}
.info-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
a.info-item:hover .info-title {
  text-decoration: underline;
}
.info-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.info-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.info-cat {
  font-size: 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 2px 10px;
  white-space: nowrap;
}
.info-title {
  font-size: 14px;
  line-height: 1.6;
}

/* ===== COLUMN CARDS ===== */
.col-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.col-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border-radius: 8px;
  color: #2c2c2c;
}
a.col-card:hover .col-title {
  text-decoration: underline;
}
.col-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
}
.new-badge {
  display: inline-block;
  background: #e63c3c;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 5px;
  border-radius: 3px;
  line-height: 1.4;
  vertical-align: middle;
}
.col-thumb .new-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
}
.col-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.col-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.col-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.col-date {
  font-size: 11px;
  color: #888;
}
.col-cat {
  font-size: 10px;
  color: #076475;
  background: #eaf6f8;
  border-radius: 20px;
  padding: 2px 8px;
}
.col-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.col-excerpt {
  font-size: 11px;
  color: #888;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== INSTAGRAM ===== */
.ig-top-section {
  display: block;
}
.ig-top-lead {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}
.ig-top-feed {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.ig-embed-cell {
  min-width: 0;
  display: flex;
  justify-content: center;
}
.ig-embed-cell .instagram-media {
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.ig-top-placeholder {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  padding: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  text-align: center;
}
.ig-top-more {
  margin-top: 20px;
}
.ig-top-loading {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 24px 12px;
}
.ig-top-feed--profile {
  grid-template-columns: 1fr !important;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.ig-profile-embed-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
}
.ig-profile-embed {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
}
@media (min-width: 768px) {
  .ig-top-feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .ig-top-feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===== RECRUIT BANNER ===== */
.recruit-banner {
  background: rgba(255, 255, 255, 0.85);
  background-image: url("img/recruit-bg.png");
  background-position: center;
  background-size: cover;
  background-blend-mode: lighten;
  color: #076475;
  padding: 32px var(--sp);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.recruit-banner .h2-block {
  margin-bottom: 0;
}
.recruit-banner .en {
  color: #076475;
}
.recruit-banner .ja {
  color: #076475;
}
.recruit-text {
  font-size: 16px;
  line-height: 1.6;
}
.btn-recruit {
  display: inline-flex;
  align-items: center;
  background: #054f5e;
  color: #fff;
  box-shadow: #555 2px 4px 8px;
  font-size: 14px;
  border-radius: 5px;
  padding: 8px 14px;
  width: fit-content;
  transform: translateY(-2px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-recruit:hover {
  transform: translateY(0);
  box-shadow: #777 2px 2px 4px;
  background: #076475;
}

/* ===== ACCESS ===== */
.access-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.access-addr-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}
.access-tel {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.access-tel:hover {
  text-decoration: underline;
}
.access-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.access-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.access-item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== FOOTER ===== */
footer {
  background: #076475;
  color: #fff;
  padding: 40px var(--sp) 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ft-logo {
  font-size: 22px;
  font-weight: 700;
}
.ft-shop-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}
.ft-shop-info p {
  font-size: 11px;
  line-height: 1.7;
  color: #a0d4db;
}
.ft-sns {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}
.ft-sns-link {
  display: block;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: opacity 0.2s ease;
}
.ft-sns-link:hover {
  opacity: 0.8;
}
.ft-sns-link.ig {
  background-image: url("img/icons8-instagram-100.png");
}
.ft-sns-link.line {
  background-image: url("img/icons8-line-100.png");
}
.ft-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #a0d4db;
  margin-bottom: 14px;
}
.ft-nav-title {
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
}
.ft-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ft-nav a {
  font-size: 13px;
  color: #b0dde4;
}
.ft-copy {
  font-size: 10px;
  text-align: center;
  color: #7eb8c0;
  padding-top: 8px;
}

/* ===== SUB FV ===== */
.sub-fv {
  width: 100%;
  height: 280px;
  background: #000;
  position: relative;
  overflow: hidden;
}
.sub-fv.small {
  height: 220px;
}
.sub-fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
  pointer-events: none;
  z-index: 1;
}
.sub-fv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.sub-fv-inner {
  position: absolute;
  bottom: 36px;
  left: var(--sp);
  right: var(--sp);
  z-index: 2;
}
.sub-fv h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-shadow: #000 2px 2px 4px;
  margin-bottom: 8px;
}
.sub-fv p {
  font-size: 13px;
  color: #fff;
  text-shadow: #000 1px 1px 4px;
  line-height: 1.6;
}

/* ===== MENU PAGE ===== */
.menu-list {
  display: flex;
  flex-direction: column;
}
.menu-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.menu-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.menu-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.menu-time {
  font-size: 13px;
  white-space: nowrap;
}
.menu-price {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.menu-note {
  padding: 12px var(--sp);
  font-size: 12px;
  line-height: 1.7;
  background: #fff;
  color: #076475;
}
.menu-subheading {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin: 28px 0 12px;
  padding-left: 10px;
  border-left: 3px solid var(--color-accent);
}
.menu-section {
  padding: 56px 0;
}
.menu-section + .menu-section {
  padding-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.menu-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.menu-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hotel-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 16px;
  margin: 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.hotel-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}
.hotel-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}
@media (min-width: 768px) {
  .menu-section {
    padding: 80px 0;
  }
  .menu-section + .menu-section {
    padding-top: 80px;
  }
  .menu-body {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
  .menu-body .menu-list {
    flex: 1;
  }
  .menu-body .menu-hero {
    width: 45%;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
  }
  .hotel-list {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== FLOW ===== */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  flex-shrink: 0;
  transform: rotate(90deg);
}
.flow-arrow img {
  width: 24px;
  height: 24px;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  margin: 12px 12px;
}
.flow-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0e9bad;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-title {
  font-size: 17px;
  font-weight: 700;
  color: #076475;
}
.effect-steps .flow-title,
.effect-steps .flow-desc {
  color: #fff;
}
.flow-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  max-width: 200px;
}

/* ===== RECRUIT PAGE ===== */
.message-box {
  background: #fff;
  border-radius: 8px;
  padding: 24px 20px;
  color: #2c2c2c;
}
.message-text {
  font-size: 14px;
  line-height: 1.9;
  color: #2c2c2c;
}
.message-sign {
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
  text-align: right;
}
.portrait {
  width: 300px;
  height: auto;
  border-radius: 50%;
  margin: 20px auto 0;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  color: #2c2c2c;
}
.service-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 10px;
}
.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag {
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
}

/* ===== EFFECTS ===== */
.effect-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.effect-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 24px 16px;
  border: 1px solid #fff;
  border-radius: 12px;
}
.effect-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0e9bad;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== YOKOMOMI ===== */
.yokomomi-img {
  background: rgba(0, 0, 0, 0.15) url("img/yokomomi-img.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  height: 340px;
  border-radius: 8px;
  margin-bottom: 24px;
}

/* ===== RESERVE ===== */
.reserve-content {
  padding: 40px var(--sp);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.btn-external {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #054f5e;
  color: #fff;
  border-radius: 5px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  transform: translateY(-2px);
  box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-external:hover {
  transform: translateY(0);
  box-shadow: none;
  background: #076475;
}
/* ===== momo ===== */
#momo,
#momo-top {
  background-color: pink;
  color: #2c2c2c;
}
#momo p,
#momo-top p {
  color: #2c2c2c;
}
#momo .h2-block .en,
#momo-top .h2-block .en {
  color: #2c2c2c;
}

/* ===== BACKGROUND PATTERN ===== */
.bg_pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: pink;
  opacity: 0.4;
  z-index: -1;
}
.Polka_v2 {
  background-image: radial-gradient(rgb(254, 177, 189) 5px, transparent 5px), radial-gradient(rgb(254, 177, 189) 5px, transparent 5px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

#momo,
#momo-top,
#esthe-menu {
  position: relative;
  overflow: hidden;
}
#momo .bg_pattern,
#momo-top .bg_pattern,
#esthe-menu .bg_pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#momo .inner,
#momo-top .inner,
#esthe-menu .inner {
  position: relative;
  z-index: 1;
}

/* ===== MOMO BLOBS ===== */
#momo .bg_pattern,
#momo-top .bg_pattern,
#esthe-menu .bg_pattern {
  background: transparent;
  opacity: 1;
  overflow: hidden;
}
.momo-blob {
  position: absolute;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  aspect-ratio: 1;
  will-change: transform, border-radius, top, left;
}

/* ===== CONTACT ===== */
.form-wrap {
  max-width: 640px;
}
.wpcf7 form p {
  margin-bottom: 18px;
}
.cf7-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}
.cf7-group label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.req {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: #e8944a;
  color: #fff;
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: middle;
}
.wpcf7 label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: #2c2c2c;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 10px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: #e8944a;
  box-shadow: 0 0 0 3px rgba(232, 148, 74, 0.25);
}
.wpcf7 textarea {
  height: 140px;
  resize: vertical;
}
.wpcf7 input[type="submit"] {
  width: 100%;
  background: #e8944a;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.wpcf7 input[type="submit"]:hover {
  background: #d4803a;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ffcc88;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-response-output {
  border-radius: 8px;
  border: none;
  padding: 12px 16px;
  font-size: 13px;
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.privacy-text {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}
.cf7-privacy {
  background: #076475;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.cf7-privacy-scroll {
  height: 120px;
  overflow-y: scroll;
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  padding-right: 8px;
}
.cf7-privacy-scroll::-webkit-scrollbar {
  width: 4px;
}
.cf7-privacy-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.cf7-privacy-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}
.cf7-accept-wrap {
  margin-top: 4px;
}
.cf7-accept-wrap .wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
.cf7-accept-wrap .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #e8944a;
  cursor: pointer;
}
.cf7-accept-wrap .wpcf7-not-valid-tip {
  display: block;
  font-size: 12px;
  color: #ffcc88;
  margin-top: 6px;
}
.acceptance-error {
  font-size: 12px;
  color: #ffcc88;
  margin-bottom: 8px;
}

/* ===== ARTICLE PAGES ===== */
.art-fv {
  width: 100%;
  height: 260px;
  background: #e6e2d8;
  position: relative;
}
.art-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.art-cat {
  font-size: 11px;
  color: var(--color-dark);
  border: 1px solid var(--color-dark);
  border-radius: 20px;
  padding: 2px 10px;
}
.art-date {
  font-size: 12px;
  color: #666;
}
.art-h1 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--color-text);
}
.art-header {
  padding: 32px var(--sp) 0;
  background: #f7f5f0;
}
.art-body {
  padding: 24px var(--sp) 40px;
  background: #f7f5f0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.art-body p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text);
}
.art-body .wp-block-image,
.art-body figure {
  margin: 0;
}
.art-body img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.art-img {
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.art-hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.sec-heading {
  background: var(--color-teal-lt);
  border-left: 3px solid var(--color-main);
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
}
.col-main-img {
  width: 100%;
  height: 240px;
  background: #e6e2d8;
  overflow: hidden;
}
.col-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* single-informationの明背景用調整 */
body.single-information .art-header .info-date {
  color: #666;
}
body.single-information .art-header .info-cat {
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.info-block {
  background: #fff;
  border-radius: 6px;
  padding: 16px 20px;
  color: #2c2c2c;
}
.info-block p {
  font-size: 14px;
  line-height: 2.1;
  color: #2c2c2c;
}

/* ===== RELATED ===== */
.related-sec {
  background: #f7f5f0;
  padding: 28px var(--sp);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.related-title .en {
  font-size: 12px;
  color: #888;
}
.related-title .ja {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}
.related-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.related-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  color: #2c2c2c;
}
a.related-card:hover .rel-title {
  text-decoration: underline;
}
.rel-thumb {
  width: 72px;
  height: 72px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
}
.rel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rel-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rel-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rel-date {
  font-size: 11px;
  color: #888;
}
.rel-cat {
  font-size: 10px;
  color: #076475;
  background: #eaf6f8;
  border-radius: 20px;
  padding: 2px 8px;
}
.rel-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.back-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: var(--color-text);
  padding: 20px var(--sp);
}
body.single-column .back-link,
body.single-information .back-link {
  background: #f7f5f0;
}

/* ===== SCROLL FADE-IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLL TOP ===== */
#scrollTop {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #076475;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 50;
}
#scrollTop.visible {
  opacity: 1;
  pointer-events: all;
}

/* ===== FIT LIST ===== */
.fit-list {
  display: flex;
  flex-direction: column;
}
.fit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 15px;
  line-height: 1.6;
}
.fit-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.fit-icon {
  color: #f5c842;
  font-size: 20px;
  font-weight: 900;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.faq-q {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 32px;
  position: relative;
  cursor: pointer;
}
.faq-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  color: #f5c842;
  font-weight: 900;
  font-size: 16px;
}
.faq-q::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-image: url("img/add.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.faq-item.open .faq-q::after {
  background-image: url("img/add.png");
  transform: rotate(45deg);
}
.faq-a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 32px;
  position: relative;
  display: none;
}
.faq-a::before {
  content: "A";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 16px;
}

/* ===== REASON LIST ===== */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reason-item {
  background: #fff;
  border-radius: 8px;
  padding: 24px 20px;
  color: #2c2c2c;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reason-text-block {
  display: flex;
  gap: 16px;
}
.reason-num {
  flex-shrink: 0;
  font-size: 28px;
  font-weight: 900;
  color: #0e9bad;
  line-height: 1;
  min-width: 48px;
}
.reason-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reason-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #076475;
}
.reason-text {
  font-size: 14px;
  line-height: 1.9;
  color: #2c2c2c;
}
.reason-text strong {
  color: #e8944a;
  font-weight: 700;
}
.reason-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 56px 0;
}
.cta-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.cta-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.cta-sub {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin-top: 8px;
}
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  padding: 13px 20px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transform: translateY(-2px);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-outline-light:hover {
  transform: translateY(0);
  background: transparent;
}

/* ===== RESPONSIVE SP ===== */
@media (max-width: 767px) {
  .fv {
    background-image:
      linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)),
      url("img/fv-sp.jpg");
  }
  .fv-inner {
    bottom: auto;
    top: 60px;
  }
}

/* ══════════════════════════════════════
   PC ≥ 768px
══════════════════════════════════════ */
@media (min-width: 768px) {
  :root {
    --sp: var(--pc-pad);
  }
  .header-top {
    padding: 0 32px;
  }
  .inner {
    max-width: calc(var(--max) + var(--pc-pad) * 2);
    margin: 0 auto;
  }
  section {
    padding: 48px 0;
  }
  .h2-block .ja {
    font-size: 24px;
  }
  .fv {
    height: 700px;
  }
  .fv-inner {
    bottom: 120px;
    left: max(var(--pc-pad), calc((100% - var(--max) - var(--pc-pad) * 2) / 2 + var(--pc-pad)));
    right: auto;
    width: 580px;
  }
  .fv h1 {
    font-size: 48px;
  }
  .concept-grid {
    flex-direction: row;
    gap: 24px;
  }
  .concept-card {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
    gap: 20px;
  }
  .concept-card:nth-child(even) {
    flex-direction: column;
  }
  .img-text-row {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .img-text-row .img-ph {
    width: 480px !important;
    height: 360px !important;
    flex-shrink: 0;
  }
  .img-text-row.rev {
    flex-direction: row-reverse;
  }
  .img-text-body {
    flex: 1;
  }
  .img-text-body p {
    font-size: 15px;
  }
  .review-grid {
    flex-direction: row;
    gap: 24px;
  }
  .review-card {
    flex: 1;
  }
  .recruit-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px max(var(--pc-pad), calc((100% - var(--max)) / 2));
  }
  .recruit-banner-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .access-address {
    margin-bottom: 24px;
  }
  .access-addr-text {
    font-size: 14px;
  }
  .access-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
  }
  footer {
    padding: 60px max(var(--pc-pad), calc((100% - var(--max)) / 2)) 24px;
  }
  .ft-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px 80px;
    margin-bottom: 24px;
    align-items: start;
  }
  .ft-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 36px;
  }
  .sub-fv {
    height: 360px;
  }
  .sub-fv.small {
    height: 220px;
  }
  .sub-fv h1 {
    font-size: 42px;
  }
  .sub-fv p {
    font-size: 15px;
  }
  .sub-fv-inner {
    bottom: 56px;
  }
  .menu-list {
    display: flex;
    flex-direction: column;
  }
  .menu-list .menu-item {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .flow-steps {
    flex-direction: row;
    align-items: stretch;
  }
  .flow-step {
    flex: 1;
  }
  .flow-arrow {
    transform: rotate(0deg);
    padding: 0 4px;
  }
  .effect-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .effect-step {
    width: 50%;
  }
  .yokomomi-img {
    height: 480px;
  }
  .menu-body .yokomomi-img {
    width: 45%;
    flex-shrink: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 0;
  }
  .menu-body .img-text-body {
    flex: 1;
  }
  .art-fv {
    height: 360px;
  }
  .art-h1 {
    font-size: 28px;
  }
  .col-main-img {
    height: 420px;
  }
  .art-header,
  .art-body,
  .related-sec {
    max-width: none;
    margin: 0;
    padding-left: max(var(--pc-pad), calc((100% - 800px) / 2));
    padding-right: max(var(--pc-pad), calc((100% - 800px) / 2));
  }
  body.single-column .back-link,
  body.single-information .back-link {
    padding-left: max(var(--pc-pad), calc((100% - 800px) / 2));
    padding-right: max(var(--pc-pad), calc((100% - 800px) / 2));
  }
  .related-cards {
    flex-direction: row;
    gap: 20px;
  }
  .related-card {
    flex: 1;
  }
  .form-wrap {
    max-width: 640px;
    margin: 0 auto;
  }
  .reserve-content {
    max-width: 480px;
    margin: 0 auto;
  }
  .col-excerpt {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    font-size: 12px;
  }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-grid .service-card {
    margin-bottom: 0;
  }
  .effect-steps {
    flex-direction: row;
  }
  .effect-step {
    flex: 1;
  }
  .reason-item {
    flex-direction: row;
    align-items: center;
    padding: 28px;
    gap: 32px;
  }
  .reason-text-block {
    flex: 1;
    gap: 20px;
  }
  .reason-img {
    width: 42%;
    aspect-ratio: 4 / 3;
  }
  .reason-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .reason-num {
    font-size: 36px;
    min-width: 64px;
  }
  .cta-title {
    font-size: 26px;
  }
  .cta-btns {
    flex-direction: row;
    max-width: none;
    justify-content: center;
  }
  .cta-btns .btn-solid,
  .cta-btns .btn-outline-light {
    min-width: 220px;
  }
  .cta-box {
    padding: 48px 32px;
  }
}

/* ══════════════════════════════════════
   PC ≥ 1200px
══════════════════════════════════════ */
@media (min-width: 1200px) {
  :root {
    --hh: 120px;
  }
  .header-top {
    height: 80px;
    padding: 0 max(var(--pc-pad), calc((100% - var(--max)) / 2));
  }
  .pc-nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 40px;
    padding: 0 max(var(--pc-pad), calc((100% - var(--max)) / 2));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .mobile-ctrl {
    display: none;
  }
  .overlay {
    display: none !important;
  }
  .float-reserve {
    font-size: 20px;
    padding: 28px 13px;
    border-radius: 8px 0 0 8px;
    letter-spacing: 0.2em;
  }
}

section p strong {
  color: #f5c842;
  font-weight: 700;
}
