@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

/* ============================================================
   変数
   ============================================================ */
:root {
  --pf-bg:      #FFFFFF;
  --pf-white:   #ECEAE4;
  --pf-text:    #1A1A1A;
  --pf-sub:     #777777;
  --pf-border:  #DDDDD8;
  --pf-accent:  #EBFF00;
  --pf-font-ja: 'Shippori Mincho', serif;
  --pf-font-en: 'Syne', sans-serif;
  --pf-max:     1100px;
  --pf-nav-h:   64px;
  --pf-sec-py:  120px;
}

/* ============================================================
   イントロアニメーション（モバイル専用・デフォルト非表示）
   ============================================================ */
.pf-intro {
  display: none;
}

/* ============================================================
   ベース
   ============================================================ */
body.portfolio-lp {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--pf-text);
  font-family: var(--pf-font-ja);
  font-weight: 400;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.portfolio-lp *,
body.portfolio-lp *::before,
body.portfolio-lp *::after {
  box-sizing: border-box;
}

body.portfolio-lp a {
  color: inherit;
  text-decoration: none;
}

body.portfolio-lp img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   ヘッダー
   ============================================================ */
.pf-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--pf-nav-h);
  background: transparent;
  z-index: 100;
  animation: pf-fade-in 0.5s ease 1.0s both;
  transition: transform 0.4s ease;
}


.pf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 100%;
}

.pf-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pf-header__brand {
  font-family: var(--pf-font-en);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #ffffff !important;
  transition: color 0.3s ease;
}

.pf-header__nav {
  display: flex;
  gap: 40px;
}

.pf-header__nav a {
  font-family: var(--pf-font-en);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #ffffff;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.pf-header__nav a:hover {
  opacity: 1;
}

.pf-cta-btn {
  display: inline-flex;
  align-items: center;
  color: #EBFF00 !important;
  font-family: var(--pf-font-ja);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: opacity 0.2s ease;
}
.pf-cta-btn::before { content: '['; margin-right: 8px; font-family: var(--pf-font-en); font-weight: 300; }
.pf-cta-btn::after  { content: ']'; margin-left:  8px; font-family: var(--pf-font-en); font-weight: 300; }

.pf-cta-btn:hover {
  color: #EBFF00 !important;
  opacity: 0.7;
}

/* ============================================================
   メニューボタン（シェブロン）
   ============================================================ */
.pf-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.pf-menu-btn::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #ffffff;
  border-bottom: 1.5px solid #ffffff;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pf-menu-btn.is-open::after {
  transform: translateY(3px) rotate(-135deg);
}


/* ============================================================
   プルダウンメニュー
   ============================================================ */
.pf-dropdown {
  position: fixed;
  top: var(--pf-nav-h);
  right: 32px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.pf-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pf-dropdown__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
}

.pf-dropdown__nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pf-dropdown__nav li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pf-dropdown__nav a {
  font-family: var(--pf-font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #ffffff !important;
  display: block;
  padding: 14px 0;
  position: relative;
  transition: opacity 0.2s;
  opacity: 0.55;
}

.pf-dropdown__nav a::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.25s ease;
}

.pf-dropdown__nav a:hover {
  opacity: 1 !important;
}

.pf-dropdown__nav a:hover::after {
  width: 100%;
}

/* ============================================================
   共通ボタン
   ============================================================ */
.pf-btn {
  display: inline-block;
  background: transparent;
  border: none;
  padding: 0 0 10px 0;
  color: var(--pf-accent) !important;
  font-family: var(--pf-font-ja);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.14em;
  transition: letter-spacing 0.35s ease;
}

.pf-btn:hover {
  color: var(--pf-accent) !important;
  letter-spacing: 0.24em;
}

/* ============================================================
   固定背景（左右分割・テープ貼りアニメーション）
   ============================================================ */
/* モバイル固定背景（グローバルデフォルト：非表示） */
.pf-mobile-glitch-svg {
  position: absolute;
  width: 0;
  height: 0;
}

.pf-mobile-bg {
  display: none;
}

/* ========== PC固定背景 ========== */
.pf-bg-left,
.pf-bg-right {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: -1;
  background-image: url('/wp-content/uploads/2026/06/fb6ca4492d03ff480fdf6280699aec70bac087a8fc28074e805f6811917f0c2b.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}

.pf-bg-left {
  left: 0;
  width: 50vw;
  animation: pf-wipe-down 1.0s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.pf-bg-right {
  right: 0;
  width: 50vw;
  animation: pf-wipe-up 1.0s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes pf-wipe-down {
  from { clip-path: inset(0 0 100% 0); }
  to   { clip-path: inset(0 0 0% 0); }
}

@keyframes pf-wipe-up {
  from { clip-path: inset(100% 0 0 0); }
  to   { clip-path: inset(0% 0 0 0); }
}

/* ============================================================
   分割レイアウト
   ============================================================ */
.split-zone {
  display: flex;
}

.split-zone--flip {
  flex-direction: row-reverse;
}

/* 画像パネル：透明にして固定背景を透かす */
.split-zone__image {
  width: 50%;
  flex-shrink: 0;
  background: transparent;
  pointer-events: none;
}

/* コンテンツパネル */
.split-zone__content {
  width: 50%;
  background: transparent;
}

/* ライトゾーン（flip）：黒文字 */
.split-zone--flip {
  --zone-text:        var(--pf-text);
  --zone-text-sub:    rgba(0, 0, 0, 0.7);
  --zone-outline:     rgba(0, 0, 0, 0.12);
}

/* ダークゾーン（non-flip）：白文字 */
.split-zone:not(.split-zone--flip) {
  --zone-text:        #ffffff;
  --zone-text-sub:    rgba(255, 255, 255, 0.8);
  --zone-outline:     rgba(255, 255, 255, 0.15);
}

.split-zone .pf-section__title,
.split-zone .pf-about__intro p,
.split-zone .pf-about__body p { color: var(--zone-text); }

.split-zone--5 .pf-flow__name,
.split-zone--5 .pf-flow__desc { color: var(--zone-text); }

.split-zone--4 .pf-price__note { color: rgba(255, 255, 255, 0.4); }

.split-zone--6 {
  min-height: 560px;
}

.split-zone--6 .split-zone__content {
  display: flex;
  align-items: center;
}

.split-zone--6 .pf-section {
  padding-top: 60px !important;
  padding-bottom: 100px !important;
  width: 100%;
}


/* ============================================================
   セクション共通
   ============================================================ */
.pf-section {
  position: relative;
  padding: var(--pf-sec-py) 32px;
  background: transparent;
}

.split-zone .pf-section {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.split-zone--3 .pf-section {
  padding-top: 0 !important;
  margin-top: -80px;
}

.split-zone--4 .pf-section {
  padding-top: 0 !important;
  margin-top: -180px;
}

.split-zone--5 .pf-section {
  padding-top: 0 !important;
  margin-top: -260px;
}

.split-zone .pf-dock-wrap {
  padding-top: 4px;
}

.pf-section__inner {
  max-width: var(--pf-max);
  margin: 0 auto;
  position: relative;
}

.pf-section__label {
  display: block;
  font-family: var(--pf-font-en);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 300;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  color: transparent;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pf-section__label:not(.is-visible) {
  opacity: 0 !important;
  transform: translateY(16px) !important;
}

.pf-section__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.split-zone--flip .pf-section__label {
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.18);
  text-align: right;
}

.split-zone--flip .pf-section__title {
  margin-left: auto;
}

.split-zone:not(.split-zone--flip) .pf-section__label {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.22);
}

.pf-section__title {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin: -1.6em 0 12px;
  color: var(--zone-text, var(--pf-text));
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 6px 12px;
}

.pf-section__title::before,
.pf-section__title::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.pf-section__title::before {
  top: 0; left: 0;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.pf-section__title::after {
  bottom: 0; right: 0;
  border-bottom: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
}

.pf-section__title.is-visible::before {
  animation: pf-border-tr 0.35s ease forwards;
}

.pf-section__title.is-visible::after {
  animation: pf-border-bl 0.35s ease 0.3s forwards;
}

@keyframes pf-border-tr {
  0%   { width: 0;    height: 0;    opacity: 1; }
  50%  { width: 100%; height: 0;    opacity: 1; }
  100% { width: 100%; height: 100%; opacity: 1; }
}

@keyframes pf-border-bl {
  0%   { width: 0;    height: 0;    opacity: 1; }
  50%  { width: 100%; height: 0;    opacity: 1; }
  100% { width: 100%; height: 100%; opacity: 1; }
}

/* ============================================================
   ① ヒーロー
   ============================================================ */
.pf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: transparent;
}

.pf-hero__parallax-bg {
  display: none;
}

.pf-hero__left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: calc(var(--pf-nav-h) + 80px) 48px calc(80px + 25vh) 48px;
}

.pf-hero__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--pf-nav-h) + 80px + 25vh) 48px 80px 48px;
}

@keyframes pf-reveal-up {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}


@keyframes pf-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pf-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.pf-hero__catch {
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--pf-text);
  text-align: right;
  width: 100%;
}

.pf-hero__catch .pf-hero__accent.is-glitching {
  animation: pf-glitch-main 3s infinite 0.1s;
}

.pf-hero__subcopy .pf-hero__accent.is-glitching {
  animation: pf-glitch-main 3s infinite 1.5s;
}

@keyframes pf-glitch-main {
  0%,  88%  { text-shadow: none; transform: none; }
  89%        { text-shadow: -5px 0 rgba(255,0,60,0.8), 5px 0 rgba(0,220,255,0.8); transform: translateX(3px) skewX(-1deg); }
  90%        { text-shadow: 4px 0 rgba(255,0,60,0.8), -4px 0 rgba(0,220,255,0.8); transform: translateX(-4px); }
  91%        { text-shadow: -3px 0 rgba(255,0,60,0.8), 3px 0 rgba(0,220,255,0.8); transform: translateX(2px) skewX(0.5deg); }
  92%        { text-shadow: none; transform: none; }
  93%        { text-shadow: 3px 0 rgba(255,0,60,0.6), -3px 0 rgba(0,220,255,0.6); transform: translateX(-2px); }
  94%, 100%  { text-shadow: none; transform: none; }
}

.pf-hero__glass {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.pf-hero__subcopy {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
  text-align: left;
}
.pf-hero__subcopy--l1 { margin-bottom: 4px; }
.pf-hero__subcopy--l2 { margin-bottom: 48px; }

.pf-hero__catch--l1,
.pf-hero__catch--l2,
.pf-hero__catch--l3 {
  display: block;
}

.pf-hero__catch--inner {
  display: inline-block;
}

.pf-hero__accent {
  font-style: normal;
  padding: 2px 6px;
  background-image: linear-gradient(#1a1a1a, #1a1a1a);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  transition: background-size 0.4s ease;
}

.pf-hero__accent.is-drawn {
  background-size: 100% 100%;
  color: #ffffff;
  transition: background-size 0.4s ease, color 0s 0.4s;
}

.pf-hero__subcopy .pf-hero__accent {
  background-image: linear-gradient(#ffffff, #ffffff);
  padding: 1px 4px;
}

.pf-hero__subcopy .pf-hero__accent.is-drawn {
  color: #1a1a1a;
}


.pf-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--pf-max);
  width: 100%;
  margin: 0 auto;
}

.pf-hero__text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pf-hero__right .pf-btn {
  position: relative;
}

.pf-hero__right .pf-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--pf-accent);
}

.pf-hero__right .pf-btn .pf-btn__text {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pf-hero__right .pf-btn.is-visible .pf-btn__text {
  opacity: 1;
  transition-delay: 0.1s;
}

.pf-hero__right .pf-btn.is-visible::after {
  animation: pf-underline-grow 0.45s ease 0.4s forwards;
}

@keyframes pf-underline-grow {
  from { width: 0; }
  to   { width: 100%; }
}

/* ============================================================
   ② 実績（Works）
   ============================================================ */
.pf-dock-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}

.pf-dock__viewport {
  flex: 1;
  overflow: hidden;
}

.pf-dock {
  display: flex;
  gap: 10px;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.pf-dock__item {
  flex: 0 0 auto;
  cursor: pointer;
  transform: scale(0.88);
  transform-origin: bottom center;
  transition: transform 0.15s ease;
  opacity: 0;
}

.pf-dock__item.is-visible {
  animation: pf-dock-in 0.5s ease forwards;
}

@keyframes pf-dock-in {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(0.88) translateY(0); }
}


.pf-dock__nav { display: none; }

.pf-dock__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.pf-dock__ctrl-btn {
  background: none;
  border: none;
  color: var(--zone-text, var(--pf-text));
  cursor: pointer;
  font-size: 22px;
  font-weight: 600;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 0;
  line-height: 1;
  font-family: var(--pf-font-en);
}
.pf-dock__ctrl-btn:hover { opacity: 1; }

.pf-dock__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pf-dock__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.2;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s;
  color: var(--zone-text, var(--pf-text));
}
.pf-dock__dot.is-active {
  opacity: 0.85;
  transform: scale(1.5);
}

.pf-dock__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(128, 128, 128, 0.25);
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}

.pf-dock__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pf-dock__label {
  font-family: var(--pf-font-ja);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--zone-text, var(--pf-text));
  text-align: center;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.7;
}

/* ---- 実績詳細パネル ---- */
.pf-works__note {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--zone-text-sub);
  margin: -4px 0 20px;
  text-align: right;
  width: 100%;
}

.pf-dock-detail-wrap {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.pf-dock-detail-wrap.has-active {
  max-height: 300px;
  margin-top: 12px;
}

.pf-dock-detail {
  width: 50%;
  margin-left: 0;
  text-align: center;
  opacity: 0;
  transform: translateX(-16px);
  transition: margin-left 0.35s cubic-bezier(0.77, 0, 0.175, 1),
              opacity 0.35s ease,
              transform 0.35s ease;
  background: rgba(128, 128, 128, 0.12);
  padding: 16px 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.pf-dock-detail.is-active {
  opacity: 1;
  transform: translateX(0);
}

.pf-dock-detail.pos-left   { margin-left: 0; }
.pf-dock-detail.pos-center { margin-left: 25%; }
.pf-dock-detail.pos-right  { margin-left: 50%; }

.pf-dock-detail__client {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--zone-text);
  margin-bottom: 14px;
}

.pf-dock-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pf-dock-detail__list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: center;
}

.pf-dock-detail__label {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--zone-text-sub);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 76px;
}

.pf-dock-detail__val {
  font-size: 12px;
  color: var(--zone-text);
  line-height: 1.6;
}


/* ============================================================
   ③ 自己紹介
   ============================================================ */
.pf-about__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-about__header .pf-section__title {
  margin-bottom: 0;
}

.pf-about__top {
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 16px;
  align-items: start;
}

.pf-about__intro p {
  font-size: 15px;
  color: var(--pf-sub);
  line-height: 2;
  margin: 0 0 20px;
}

.pf-about__intro p:last-child {
  margin-bottom: 0;
}

.pf-about__visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.pf-about__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.pf-about__body p {
  font-size: 15px;
  color: var(--pf-sub);
  line-height: 2;
  margin: 0 0 20px;
}

.pf-about__body p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   ③ サービスリスト
   ============================================================ */
.pf-service__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.pf-service__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 0;
  border-top: 1px solid var(--zone-outline, rgba(0,0,0,0.12));
}

.pf-service__item:last-child {
  border-bottom: 1px solid var(--zone-outline, rgba(0,0,0,0.12));
}

.pf-service__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--zone-text, var(--pf-text));
  margin: 0;
  line-height: 1.4;
  border-left: 12px solid var(--pf-accent);
  padding-left: 12px;
}

.pf-service__desc {
  font-size: 14px;
  color: var(--zone-text-sub, var(--pf-sub));
  margin: 0;
  line-height: 1.8;
}

/* ============================================================
   ④ 料金テーブル
   ============================================================ */
.pf-price__list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.pf-price__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pf-price__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pf-price__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pf-price__service {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  border-left: 4px solid var(--pf-accent);
  padding-left: 12px;
}

.pf-price__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.pf-price__amount {
  font-family: var(--pf-font-en);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

.pf-price__support-hook {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #ffffff;
  margin: 72px 0 0;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.pf-price__support-hook.is-glitching {
  animation: pf-glitch-hook 2s infinite;
}

@keyframes pf-glitch-hook {
  0%,  80%  { text-shadow: none; transform: none; }
  81%        { text-shadow: -8px 0 rgba(255,0,60,0.9), 8px 0 rgba(0,220,255,0.9); transform: translateX(5px) skewX(-2deg); }
  82%        { text-shadow: 6px 0 rgba(255,0,60,0.9), -6px 0 rgba(0,220,255,0.9); transform: translateX(-6px); }
  83%        { text-shadow: -4px 0 rgba(255,0,60,0.9), 4px 0 rgba(0,220,255,0.9); transform: translateX(3px) skewX(1deg); }
  84%        { text-shadow: none; transform: none; }
  85%        { text-shadow: 5px 0 rgba(255,0,60,0.7), -5px 0 rgba(0,220,255,0.7); transform: translateX(-3px); }
  86%        { text-shadow: none; transform: none; }
  88%        { text-shadow: -3px 0 rgba(255,0,60,0.4), 3px 0 rgba(0,220,255,0.4); transform: translateX(2px); }
  90%, 100%  { text-shadow: none; transform: none; }
}

.pf-price__sub-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin: 56px 0 20px;
  padding-left: 12px;
  border-left: 4px solid var(--pf-accent);
}

.pf-price__mgmt-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin: -4px 0 0;
  padding-left: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.pf-price__lead {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin: 0 0 0;
  padding-left: 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.pf-price__plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.pf-price__plan {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px 24px;
  background: rgba(0, 0, 0, 0.7);
}

.pf-price__plan.is-main {
  border-color: var(--pf-accent);
}

.pf-price__plan-name {
  font-family: var(--pf-font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pf-price__badge {
  font-family: var(--pf-font-ja);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #000000;
  background: var(--pf-accent);
  padding: 2px 8px;
}

.pf-price__plan-amount {
  font-family: var(--pf-font-en);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 28px;
  line-height: 1;
}

.pf-price__plan-amount span {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 4px;
}

.pf-price__plan-for {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin: -8px 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pf-price__plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-price__plan-features li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.pf-price__plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pf-accent);
  font-size: 12px;
}
.pf-price__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: #ffffff;
}

.pf-price__table th,
.pf-price__table td {
  padding: 14px 10px;
  text-align: center;
  font-size: 13px;
  color: #1a1a1a;
  border-bottom: 2px solid #e0e0e0;
  border-right: 2px solid #e0e0e0;
}

.pf-price__table th:last-child,
.pf-price__table td:last-child {
  border-right: none;
}

.pf-price__table th:first-child,
.pf-price__table td:first-child {
  text-align: left;
  font-weight: 600;
  width: 44%;
  border-right: 2px solid #e0e0e0;
}

.pf-price__table thead th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 10px;
  color: #666666;
  border-bottom: 2px solid #1a1a1a;
}

.pf-price__table thead th.is-main {
  color: #1a1a1a;
  background: #f0f0f0;
}

.pf-price__table .is-main {
  background: #f5f5f5;
}

.pf-price__table tbody tr:nth-child(even) td {
  background: #f9f9f9;
}

.pf-price__table tbody tr:nth-child(even) td.is-main {
  background: #efefef;
}

.pf-price__row--amount td {
  font-size: 18px;
  font-weight: 700;
  padding: 20px 10px;
  color: #1a1a1a;
}

.pf-price__row--amount td.is-main {
  font-size: 20px;
}

.pf-price__note {
  font-size: 12px;
  color: var(--zone-text-sub, var(--pf-sub));
  margin-top: 16px;
}

/* ============================================================
   ⑤ 制作の流れ
   ============================================================ */
.pf-flow__steps {
  display: flex;
  flex-direction: column;
}

.pf-flow__step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  align-items: start;
  border-top: 1px solid var(--zone-outline, rgba(0,0,0,0.12));
  padding: 28px 0;
}

.pf-flow__step:last-child {
  border-bottom: 1px solid var(--zone-outline, rgba(0,0,0,0.12));
}

.pf-flow__num {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--pf-font-en);
  font-size: 72px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.18);
  -webkit-text-stroke: 2px var(--pf-accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pf-flow__num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--pf-accent);
  opacity: 0.5;
}

.pf-flow__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pf-flow__name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  color: var(--zone-text, currentColor);
}

.pf-flow__desc {
  font-size: 14px;
  line-height: 2;
  color: var(--zone-text-sub, var(--pf-sub));
  margin: 0;
}

.pf-flow__meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 12px;
  color: var(--zone-text-sub, var(--pf-sub));
  margin: 4px 0 0;
}

.pf-flow__meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 1px solid currentColor;
  padding: 1px 6px;
  white-space: nowrap;
  opacity: 0.7;
}


/* ============================================================
   ⑦ お問い合わせ
   ============================================================ */
.pf-contact .pf-section__inner {
  max-width: var(--pf-max);
}

.pf-contact__lead {
  font-size: 15px;
  color: var(--pf-sub);
  line-height: 2;
  margin: 16px 0 40px;
}

.pf-contact__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.pf-contact__line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #06C755;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.pf-contact__line-btn:hover {
  opacity: 0.85;
  color: #ffffff;
}

.pf-contact__line-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.pf-contact__mail-toggle {
  width: 100%;
}

.pf-contact__mail-toggle summary {
  font-size: 13px;
  color: var(--pf-accent);
  cursor: pointer;
  list-style: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
}

.pf-contact__mail-toggle summary::-webkit-details-marker {
  display: none;
}

.pf-contact__form {
  margin-top: 24px;
}

.pf-contact__form .wpcf7-form p {
  margin-bottom: 16px;
}

.pf-contact__form .wpcf7-form input[type="text"],
.pf-contact__form .wpcf7-form input[type="email"],
.pf-contact__form .wpcf7-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--zone-outline, rgba(0,0,0,0.15));
  background: transparent;
  font-size: 14px;
  font-family: var(--pf-font-ja);
  color: var(--zone-text, var(--pf-text));
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.pf-contact__form .wpcf7-form input:focus,
.pf-contact__form .wpcf7-form textarea:focus {
  border-color: var(--zone-text, var(--pf-text));
}

.pf-contact__form .wpcf7-form input[type="submit"] {
  padding: 14px 36px;
  background: var(--zone-text, var(--pf-text));
  color: var(--pf-bg, #ffffff);
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: var(--pf-font-ja);
  border-radius: 0;
  -webkit-appearance: none;
}

.pf-contact__form .wpcf7-form input[type="submit"]:hover {
  opacity: 0.75;
}

/* ============================================================
   スクロールアニメーション
   ============================================================ */
[data-anim] {
  opacity: 1;
  transform: none;
}

.pf-about [data-anim]:not([data-anim="left"]) {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.pf-about [data-anim]:not([data-anim="left"]).is-visible {
  opacity: 1;
}

.pf-service [data-anim]:not([data-anim="left"]) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pf-service [data-anim]:not([data-anim="left"]).is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pf-price [data-anim]:not([data-anim="left"]) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pf-price [data-anim]:not([data-anim="left"]).is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pf-flow__step {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pf-flow__step.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.pf-contact [data-anim]:not([data-anim="left"]) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pf-contact [data-anim]:not([data-anim="left"]).is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   フッター
   ============================================================ */
.pf-footer {
  background: var(--pf-text);
  padding: 40px 32px;
  text-align: center;
}

.pf-footer__copy {
  font-family: var(--pf-font-en);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ============================================================
   レスポンシブ（768px以下）
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --pf-sec-py: 64px;
  }

  /* ========== イントロアニメーション ========== */
  .pf-intro {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000;
    overflow: hidden;
  }

  .pf-intro__logo {
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--pf-font-en);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
  }

  .pf-intro__window {
    position: absolute;
    top: -15vh;
    left: 0;
    right: 0;
    bottom: -15vh;
    background-image: url('/wp-content/uploads/2026/06/8e9bf1b6f75771263d8ce1b42240dc11e834566445d035a77f0ef072b927931d.png');
    background-size: cover;
    background-position: center;
    clip-path: inset(50% 47% 50% 47%);
    z-index: 1;
  }

  /* 固定背景パネル非表示 → 各セクションに背景色を直接設定 */
  .pf-bg-left,
  .pf-bg-right {
    display: none;
  }

  /* ========== Hero ========== */
  .pf-hero {
    flex-direction: column;
    background-color: var(--pf-text);
    min-height: 100svh;
  }

  .pf-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
  }

  .pf-hero__parallax-bg {
    display: block;
    position: absolute;
    top: -15%;
    left: 0;
    right: 0;
    bottom: -15%;
    background-image: url('/wp-content/uploads/2026/06/8e9bf1b6f75771263d8ce1b42240dc11e834566445d035a77f0ef072b927931d.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }

  .pf-hero__left {
    width: 100%;
    background-color: transparent;
    padding: calc(var(--pf-nav-h) + 56px) 28px 88px;
    position: relative;
    z-index: 2;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .pf-hero__right {
    width: 100%;
    background-color: transparent;
    padding: 0 28px 72px;
    position: relative;
    z-index: 2;
  }

  .pf-hero__catch {
    text-align: left;
    color: #fff;
    font-size: clamp(26px, 8vw, 40px);
  }

  .pf-hero__catch .pf-hero__accent {
    background-image: linear-gradient(var(--pf-accent), var(--pf-accent));
  }

  .pf-hero__catch .pf-hero__accent.is-drawn {
    color: var(--pf-text);
  }

  .pf-hero__subcopy--l1 {
    margin-bottom: 28px;
  }

  .pf-hero__subcopy--l2 {
    margin-bottom: 72px;
  }

  /* ========== Split zones 縦積み ========== */
  .split-zone,
  .split-zone--flip {
    flex-direction: column !important;
  }

  /* 画像パネル（ラップトップ背景ゾーン）非表示 */
  .split-zone__image {
    display: none !important;
  }

  /* コンテンツパネル全幅 */
  .split-zone__content {
    width: 100% !important;
  }

  /* ライトゾーン背景色 */
  .split-zone--flip {
    background-color: #f2f2f0;
  }

  /* ダークゾーン背景色 */
  .split-zone:not(.split-zone--flip) {
    background-color: var(--pf-text);
  }

  /* ========== セクション背景画像（モバイル） ========== */
  .split-zone--1 {
    background-image: url('/wp-content/uploads/2026/06/431847d4d8a39341e3dfaa9672dbf994ddaf8fc570ec4de86fc4e0d860758f05.png');
    background-size: cover;
    background-position: center;
  }

  .split-zone--2 {
    background-image: url('/wp-content/uploads/2026/06/896a0558ce7c31bb1d23ee6906be6ad03d03f88868a45d992aa972b2465507d3.png');
    background-size: cover;
    background-position: center;
  }

  .split-zone--3 {
    background-image: url('/wp-content/uploads/2026/06/f83a5819e520be279ceefdc652089fdd2d696dfe3b65ec41b07662c80270330a.png');
    background-size: cover;
    background-position: center;
  }

  .split-zone--4 {
    background-image: url('/wp-content/uploads/2026/06/053a884ff3cec240a359b1a50d9137137dee8e242b475369f74470c2cec3699c.png');
    background-size: cover;
    background-position: center;
  }

  .split-zone--5 {
    background-image: url('/wp-content/uploads/2026/06/2602e52d8782c0fbdbd3fa525ded3bf20fafba3ad955ff0506ff5ad69ea8ba9b.png');
    background-size: cover;
    background-position: center;
  }

  .split-zone--6 {
    background-image: url('/wp-content/uploads/2026/06/a9e73222d78fea28de726f53c660968c87ee9133c24197ea3998b469afb24f06.png');
    background-size: cover;
    background-position: center;
  }

  /* モバイル固定背景レイヤー */
  .pf-mobile-bg {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
  }

  .pf-mobile-bg__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }

  /* セクション padding・margin リセット */
  .split-zone .pf-section {
    padding: 56px 24px !important;
    margin-top: 0 !important;
  }

  /* Contact ゾーン */
  .split-zone--6 {
    min-height: unset;
  }

  .split-zone--6 .split-zone__content {
    display: block;
    align-items: unset;
  }

  .split-zone--6 .pf-section {
    padding: 140px 24px 180px !important;
  }

  /* ========== Header ========== */
  .pf-header__nav {
    display: none;
  }

  .pf-header.is-hidden {
    transform: translateY(-100%);
  }

  .pf-header.is-light .pf-header__brand {
    color: var(--pf-text) !important;
  }

  .pf-header.is-light .pf-menu-btn::after {
    border-color: var(--pf-text);
  }

  .pf-header.is-light .pf-cta-btn {
    color: var(--pf-text) !important;
  }

  .pf-header.is-light .pf-cta-btn::before,
  .pf-header.is-light .pf-cta-btn::after {
    color: var(--pf-accent) !important;
  }

  /* ========== About ========== */
  .pf-about__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .pf-about__intro {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .pf-about__intro p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
  }

  .pf-about__visual {
    order: 2;
    flex-shrink: 0;
    width: min(160px, 43vw);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    border: 4px solid #ffffff;
  }

  .pf-about__body {
    margin-top: 24px;
  }

  /* ========== Service ========== */
  .pf-service__item {
    background: rgba(255, 255, 255, 0.55);
    padding-left: 8px;
    padding-right: 8px;
  }

  .pf-about__body-last {
    display: none;
  }

  .pf-about__visual img {
    position: absolute;
    width: 100%;
    height: 130% !important;
    object-fit: cover;
    top: -15%;
    left: 0;
    max-width: none;
  }

  /* ========== Works ========== */
  /* モバイル用説明に差し替え */
  .pf-works__note {
    display: block;
    font-size: 0;
    text-align: left;
  }

  .pf-works__note::after {
    content: '← → で切り替え　／　タップでサイトへ';
    font-size: 11px;
  }

  /* 詳細パネル：常時表示・通常フローに */
  .pf-dock-detail-wrap {
    position: static;
    max-height: none !important;
    overflow: visible;
    margin-top: 20px;
  }

  .pf-dock-detail {
    width: 100%;
    margin-left: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    background: rgba(0, 0, 0, 0.06);
  }

  /* ========== Price ========== */
  .pf-price__plans {
    grid-template-columns: 1fr;
  }

  /* ========== Flow ========== */
  .pf-flow__step {
    grid-template-columns: 72px 1fr;
  }

  /* ========== Contact ========== */
  .pf-contact__lead {
    font-size: 15px;
  }

  /* ========== 白背景セクション：タイトル左揃えリセット ========== */
  .split-zone--flip .pf-section__label {
    text-align: left;
  }

  .split-zone--flip .pf-section__title {
    margin-left: 0;
  }

  /* ========== Hero キャッチコピー ========== */
  .pf-hero__catch {
    font-size: clamp(22px, 6.2vw, 36px);
  }
}

