/*
Theme Name: Portfolio
Theme URI: 
Author: 
Author URI: 
Description: ポートフォリオ向けのオリジナルWordPressテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: portfolio
*/

/* ============================================
CSS Variables (Design Tokens)
============================================ */
:root {
  --gradient-primary: linear-gradient(to right, #156ad1, #01a0d5);
  --gra-hover: linear-gradient(288deg, #DEE8FC 0%, #BDD1F8 100%);
}

/* ============================================
Reset & Base Styles
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #14212B;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* 画像の最適化 */
img[loading="lazy"] {
  content-visibility: auto;
}

img[loading="eager"] {
  content-visibility: visible;
}

/* ============================================
Header & Navigation
============================================ */
.site-header {
  position: fixed;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  pointer-events: none;
  border-radius: 24px;
}

.navbar {
  pointer-events: auto;
  background: none;
  border-radius: 56px;
  position: relative;
  isolation: isolate;
  box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.2);
  padding: 21px 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  text-decoration: none;
  cursor: default;
}

.navbar:focus {
  outline: none;
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 56px;
  box-shadow: inset 0 0 15px -5px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0);
  pointer-events: none;
}

.navbar::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 56px;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  filter: url(#glass-distortion);
  -webkit-filter: url(#glass-distortion);
  pointer-events: none;
}

.navbar-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.site-branding {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.site-branding .site-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: 0.4px;
  color: #14212B;
  margin: 0;
  height: 36px;
  display: flex;
  align-items: center;
}

.site-branding .site-title a {
  color: #14212B;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 100%;
}

.site-branding-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-logo {
  height: 44px;
  width: auto;
  display: block;
}

.site-logo-mobile {
  display: none;
}

.site-name {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.26px;
  color: #14212B;
  white-space: nowrap;
}

.navbar-actions {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.navbar-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.navbar-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar-btn-dark {
  background-color: #14212B;
  color: #ffffff;
}

.navbar-btn-dark:hover {
  background-color: #444444;
  opacity: 1;
}

.navbar-btn-gradient {
  background: var(--gradient-primary);
  color: #ffffff;
}

.navbar-btn-gradient:hover {
  background: var(--gra-hover, linear-gradient(288deg, #DEE8FC 0%, #BDD1F8 100%));
}

.navbar-menu-toggle {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 2px 0;
}

.menu-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.26px;
  color: #14212B;
  white-space: nowrap;
}

.menu-icon-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.menu-icon-btn:hover {
  opacity: 0.7;
}

.menu-icon {
  width: 100%;
  height: 100%;
  display: block;
}

/* Overlay Menu */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 999;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-overlay.active .nav-overlay__item:nth-child(5) {
  transition-delay: 0.5s;
}

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-overlay__link:hover {
  color: #4a90e2;
}

.menu-icon-btn.active .menu-icon path {
  stroke: #fff;
}

/* ============================================
Main Content
============================================ */
.site-content {
  margin-top: 0;
}

.site-main {
  overflow-x: hidden;
}

/* ============================================
FV Section (Hero)
============================================ */
.fv-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  overflow: hidden;
  opacity: 0.7;
  z-index: 1;
}

.fv-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fv-bg-image,
.fv-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.fv-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right, #ffffff, transparent);
}

.fv-content {
  position: absolute;
  left: 205px;
  top: 201px;
  z-index: 2;
}

.fv-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.4px;
  color: #14212B;
  text-shadow: 2px 2px 16px rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
}

.fv-title span {
  white-space: nowrap;
}

/* ============================================
Main Content Wrapper
============================================ */
.main-content-wrapper {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  padding-bottom: 80px;
  margin-top: 40vh;
  border-radius: 40px 40px 0 0;
}

/* プロジェクト詳細ページは除外 */
.main-content-wrapper.project-detail-main-content {
  margin-top: 40vh;
}

/* プライバシーポリシーページ専用のスタイル（デスクトップ） */
.page-template-page-privacy-policy .main-content-wrapper.project-detail-main-content,
.page-privacy-policy .main-content-wrapper.project-detail-main-content {
  margin-top: 40vh;
}

/* ============================================
Works Section
============================================ */
.works-section {
  background-color: #ffffff;
  border-radius: 32px 32px 0 0;
  padding: 120px 16px 80px;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.section-container {
  max-width: 1030px;
  padding: 80px 16px 40px;
  margin: 0 auto;
}

.section-title-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.section-title-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section-label {
  font-family: "Poiret One", cursive, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1px;
  color: #14212B;
  margin-bottom: 0;
}

.section-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: 0.4px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.section-divider {
  flex: 1;
  height: 1px;
  background-color: #efefef;
  max-width: 830px;
}

/* ============================================
Projects Grid
============================================ */
.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 40px;
}

.project-card {
  width: calc(50% - 30px);
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 0px 16px 0px rgba(118, 131, 158, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 24px 0px rgba(118, 131, 158, 0.32);
}

.project-link {
  display: block;
  color: inherit;
}

.project-image {
  width: 100%;
  height: 320px;
  background-color: #eeeeee;
  overflow: hidden;
  position: relative;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img {
  transform: scale(1.05);
}

.project-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.project-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.45px;
  color: #14212B;
  margin: 0;
}

.project-description {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #666666;
  margin: 0;
}

.works-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 326px;
  margin: 0 auto;
}

/* ============================================
Buttons
============================================ */
.cta-button {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 9px 16px 9px 48px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 999px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  max-width: 376px;
}

.cta-button:hover {
  background: var(--gra-hover, linear-gradient(288deg, #DEE8FC 0%, #BDD1F8 100%));
}

.icon-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.icon-arrow-left {
  transform: rotate(180deg);
}

/* Project Detail Back Button */
.project-detail-media-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-detail-media-section .section-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cta-button-back {
  display: flex;
  margin: 0 auto;
  max-width: 376px;
  background: #ffffff;
  color: #14212B;
  border: 1px solid #14212B;
  padding: 9px 16px;
  gap: 16px;
}

.cta-button-back:hover {
  background: #ffffff;
  color: #777777;
  border-color: #777777;
}

.cta-button-back:hover .icon-arrow-left,
.cta-button-back:hover .icon-arrow-left path {
  color: #777777;
  stroke: #777777;
}

.icon-arrow-left {
  order: -1;
}

/* ============================================
Plan Section
============================================ */
.plan-section {
  background: linear-gradient(288deg, #DEE8FC 0%, #BDD1F8 100%);
  padding: 80px 16px;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}

.plan-cards {
  display: flex;
  gap: 40px;
  max-width: 1030px;
  margin: 0 auto;
}

.plan-card {
  flex: 1;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.plan-text-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: center;
}

.plan-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 0;
}

.plan-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.38px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.plan-description {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 0;
}

.plan-card .cta-button {
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
Why Choose Section
============================================ */
.why-choose-section {
  padding: 80px 16px;
  background-color: #ffffff;
}

.why-choose-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-choose-item {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.why-choose-image {
  width: 400px;
  height: 300px;
  background-color: #eeeeee;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-choose-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.why-choose-title {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  color: #14212B;
  margin: 0;
}

.why-number {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  line-height: 22px;
  letter-spacing: -0.43px;
}

.why-title-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.38px;
}

.why-choose-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
}

.why-choose-text p {
  margin: 0 0 0.5em 0;
}

.why-choose-text p:last-child {
  margin-bottom: 0;
}

/* ============================================
Contact Section
============================================ */
.contact-section {
  padding: 80px 16px;
  background: linear-gradient(288deg, #DEE8FC 0%, #BDD1F8 100%);
  border-top: 1px solid #efefef;
  position: relative;
  z-index: 1;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 3;
}

.contact-box {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 40px 24px;
  max-width: 1030px;
  margin: 0 auto;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.contact-text-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.contact-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.38px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.contact-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #242528;
  margin: 0;
}

/* ============================================
Animations
============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
Footer
============================================ */
.site-footer {
  background-color: #ffffff;
  padding: 80px 16px;
  position: relative;
  z-index: 2;
}

.footer-wrapper {
  max-width: 1030px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 289.16px;
}

.footer-role {
  font-family: 'Poiret One', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 1px;
  color: #14212B;
}

.footer-name {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.38px;
  color: #14212B;
}

.footer-tagline {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #14212B;
}

.footer-tagline p {
  margin: 0;
}

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

.footer-nav-section {
  display: flex;
  gap: 40px;
}

.footer-nav-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-column:first-child {
  height: 104px;
}

.footer-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  color: #14212B;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.08px;
  transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
  opacity: 0.7;
}

.footer-nav-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 0.06px;
  color: #14212B;
  margin-bottom: 0;
}

.footer-nav-title {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.08px;
}

.footer-social {
  display: flex;
  gap: 8px;
  align-items: center;
  position: relative;
  height: 31.59px;
}

.footer-social-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-social-link:hover {
  opacity: 0.7;
}

.footer-social-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-social-link:nth-child(1) {
  position: absolute;
  left: 0;
  top: 4.05px;
  width: 22px;
  height: 22.48px;
}

.footer-social-link:nth-child(2) {
  position: absolute;
  left: 30px;
  top: 3.3px;
  width: 24px;
  height: 25px;
}

.footer-social-link:nth-child(3) {
  position: absolute;
  left: 62px;
  top: 0;
  width: 28px;
  height: 31.59px;
}

.footer-social-link:nth-child(4) {
  position: absolute;
  left: 98px;
  top: 1.31px;
  width: 28px;
  height: 28.95px;
}

.footer-copyright {
  padding-top: 16px;
  border-top: 1px solid rgba(119, 119, 119, 0.2);
}

.footer-copyright p {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 10px;
  line-height: 20px;
  letter-spacing: 1px;
  color: #777777;
  margin: 0;
}

.site-info {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(119, 119, 119, 0.2);
}

.site-info p {
  font-family: "Lato", sans-serif;
  font-size: 10px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: 1px;
  color: #777777;
  margin: 0;
}

/* ============================================
Responsive Design
============================================ */
@media (max-width: 1024px) {
  .fv-content {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .projects-grid {
    gap: 40px;
  }

  .project-card {
    width: 100%;
  }

  .plan-cards {
    flex-direction: column;
  }

  .why-choose-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .site-header {
    width: calc(100% - 32px);
    top: 16px;
  }

  .navbar {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 24px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
  }

  .navbar-container {
    height: auto;
  }

  .site-branding .site-title {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.45px;
  }

  .site-logo-desktop {
    display: none;
  }

  .site-logo-mobile {
    display: block;
    height: 22px;
  }

  .navbar-buttons {
    display: none;
  }

  .navbar-menu-toggle {
    gap: 0;
  }

  .menu-text {
    display: none;
  }

  .main-content-wrapper {
    margin-top: 20vh;
  }

  .site-content {
    margin-top: 60px;
  }

  .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .section-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .fv-section {
    height: 400px;
  }

  .fv-content {
    left: 16px;
    right: 16px;
    top: 40%;
    transform: translateY(-50%);
    text-align: left;
  }

  .fv-title {
    font-size: 20px;
    line-height: 28px;
  }

  .works-section {
    padding: 80px 16px 60px;
    border-radius: 24px 24px 0 0;
  }

  .section-title {
    font-size: 24px;
    line-height: 32px;
  }

  .projects-grid {
    gap: 32px;
  }

  .plan-section,
  .why-choose-section,
  .contact-section {
    padding: 60px 16px;
  }

  .project-title {
    font-size: 18px;
  }

  .plan-title,
  .why-choose-title {
    font-size: 24px;
    line-height: 30px;
  }

  .why-choose-title .why-number,
  .why-choose-title .why-title-text {
    font-size: 20px;
  }

  .why-choose-content {
    gap: 8px;
  }

  .site-footer {
    padding: 64px 16px;
  }

  .footer-wrapper {
    gap: 40px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    max-width: 1030px;
    margin: 0 auto;
    width: 100%;
  }

  .footer-left {
    width: 100%;
    align-items: flex-start;
  }

  .footer-right {
    width: 100%;
    align-items: flex-start;
  }

  .footer-nav-section {
    flex-direction: row;
    gap: 40px;
    width: 100%;
  }

  .footer-nav-column {
    width: auto;
  }

  .footer-nav-column:first-child {
    height: 104px;
  }

  .footer-nav-link {
    gap: 0;
  }

  .footer-social {
    display: flex;
    gap: 8px;
    align-items: center;
    position: relative;
    height: auto;
    min-height: 31.59px;
    width: fit-content;
    flex-wrap: nowrap;
    flex-shrink: 0;
  }

  .footer-social-link {
    position: relative;
    display: block;
    flex-shrink: 0;
    line-height: 0;
  }

  .footer-social-link:nth-child(1) {
    width: 22px;
    height: 23.48px;
  }

  .footer-social-link:nth-child(2) {
    width: 24px;
    height: 25px;
  }

  .footer-social-link:nth-child(3) {
    width: 28px;
    height: 31.59px;
  }

  .footer-social-link:nth-child(4) {
    width: 28px;
    height: 28.95px;
  }

  .footer-social-icon {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* ============================================
Archive Project Page
============================================ */
.archive-fv-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  overflow: hidden;
  opacity: 0.7;
  z-index: 1;
}

.archive-fv-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.archive-fv-bg-image,
.archive-fv-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.archive-fv-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #ffffff, transparent);
  z-index: 1;
}

.archive-content-wrapper {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  margin-top: 20vh;
  border-radius: 40px;
}

.archive-projects-section {
  padding: 80px 16px;
  margin-top: 0;
}

.archive-container {
  max-width: 1030px;
  margin: 0 auto;
}

.archive-section-title-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.archive-section-title-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.archive-section-label {
  font-family: "Poiret One", cursive, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1px;
  color: #14212B;
  margin-bottom: 0;
}

.archive-section-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: 0.4px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.archive-section-divider {
  flex: 1;
  height: 1px;
  background-color: #efefef;
  max-width: 830px;
}

.archive-projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 40px;
}

.archive-project-card {
  width: 485px;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 0px 16px 0px rgba(118, 131, 158, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.archive-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 24px 0px rgba(118, 131, 158, 0.32);
}

.archive-project-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.archive-project-image {
  width: 100%;
  height: 320px;
  background-color: #eeeeee;
  overflow: hidden;
  position: relative;
}

.archive-project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.archive-project-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.archive-project-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.45px;
  color: #14212B;
  margin: 0;
}

.archive-project-description {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #666666;
  margin: 0;
}

.archive-no-projects {
  text-align: center;
  padding: 60px 16px;
  color: #666666;
}


/* Archive Page Responsive */
@media (max-width: 1024px) {
  .archive-projects-grid {
    gap: 40px;
  }

  .archive-project-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .archive-fv-section {
    height: 400px;
  }

  .archive-projects-section {
    padding: 60px 16px;
  }

  .archive-section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .archive-section-divider {
    display: none;
  }

  .archive-projects-grid {
    flex-direction: column;
    gap: 32px;
  }

  .archive-project-card {
    width: 100%;
  }

}

/* ============================================
Project Detail Page
============================================ */
.project-detail-fv-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  overflow: hidden;
  opacity: 0.7;
  z-index: 1;
}

.project-detail-fv-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-detail-fv-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.project-detail-fv-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right, #ffffff, transparent);
}

.project-detail-fv-content {
  position: absolute;
  left: 205px;
  top: 201px;
  z-index: 2;
}

.project-detail-fv-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 0 0 16px 0;
}

.project-detail-fv-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.4px;
  color: #14212B;
  text-shadow: 2px 2px 16px rgba(255, 255, 255, 0.5);
  margin: 0 0 16px 0;
}

.project-detail-fv-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.4px;
  color: #14212B;
  text-shadow: 2px 2px 16px rgba(255, 255, 255, 0.5);
  margin: 0 0 16px 0;
}

.project-detail-fv-caption {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 0 0 16px 0;
}

.project-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
  align-items: center;
}

.project-detail-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  background-color: rgba(119, 119, 119, 1);
  border-radius: 32px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  color: #ffffff;
  white-space: nowrap;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.2);
}

.project-detail-tag:first-child {
  background-color: #99bfff;
}

.project-detail-content-inner {
  padding: 120px 16px 0px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.project-detail-info-section {
  margin-bottom: 80px;
  width: 100%;
  display: block;
  opacity: 1;
  visibility: visible;
}

.project-detail-info-section .section-container {
  padding: 0;
}

.project-detail-fields {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.project-detail-field {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.project-detail-field-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.project-detail-field-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.45px;
  color: #14212B;
  margin: 0;
}

.project-detail-field-value {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #14212B;
  width: 100%;
  opacity: 1;
  visibility: visible;
  display: block;
}

.project-detail-field-value p {
  margin: 0 0 12px 0;
}

.project-detail-field-value p:last-child {
  margin-bottom: 0;
}

.project-detail-url-link {
  color: #156ad1;
  text-decoration: none;
  word-break: break-all;
}

.project-detail-url-link:hover {
  text-decoration: underline;
}

.project-detail-material {
  width: 100%;
  margin: 0;
}

.project-detail-material-embed {
  width: 100%;
  margin: 0;
  position: relative;
  padding-bottom: 78.02%; /* 960/749 aspect ratio for Google Slides */
  height: 0;
  overflow: hidden;
}

.project-detail-material-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  max-width: 100%;
}

.project-detail-material-embed embed,
.project-detail-material-embed object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
}


.project-detail-media-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.project-detail-image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
  aspect-ratio: 4 / 3;
}

.project-detail-image-first {
  margin-top: 0;
}

.project-detail-image {
  width: 80%;
  max-width: 80%;
  height: 80%;
  max-height: 80%;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
  border-radius: 6px;
}

.project-detail-annotation {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 40px 0 0 0;
}

.project-detail-note {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.31px;
  color: #666666;
  margin: 40px 0 0 0;
  text-align: left;
  display: block;
  opacity: 1;
  visibility: visible;
  max-width: 1030px;
  margin-left: auto;
  margin-right: auto;
}

/* Project Detail Page Responsive */
@media (max-width: 768px) {
  .project-detail-fv-section {
    height: 400px;
  }

  .project-detail-fv-content {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .project-detail-fv-label {
    font-size: 14px;
    line-height: 20px;
  }

  .project-detail-fv-subtitle {
    font-size: 28px;
    line-height: 36px;
  }

  .project-detail-fv-title {
    font-size: 28px;
    line-height: 36px;
  }

  .project-detail-fv-title span {
    display: block;
  }

  .project-detail-content-inner {
    padding: 60px 16px;
  }

  .project-detail-info-section {
    margin-bottom: 0px;
  }

  .project-detail-fields {
    gap: 32px;
  }

  .project-detail-field-label {
    font-size: 18px;
    line-height: 24px;
  }


  .project-detail-media-container {
    gap: 32px;
  }

  .project-detail-image-wrapper {
    max-width: 100%;
    overflow-x: hidden;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
  }

  /* 資料のカードスタイルも削除 */
  .project-detail-material {
    background-color: transparent !important;
    box-shadow: none !important;
  }

  .project-detail-material-embed {
    background-color: transparent !important;
    box-shadow: none !important;
  }

  /* プロジェクト詳細画像をSPで100%に */
  .project-detail-image {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
  }

  /* 実績詳細ページ専用 */
  .project-detail-main-content {
    margin-top: 28vh;
  }

  /* プライバシーポリシーページ専用（SP） */
  .page-template-page-privacy-policy .main-content-wrapper.project-detail-main-content,
  .page-privacy-policy .main-content-wrapper.project-detail-main-content {
    margin-top: 20vh;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 0;
  }

  .archive-content-wrapper {
    margin-top: 1vh;
  }

  .project-detail-media-container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .project-detail-image-wrapper {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
  }

  /* 資料のカードスタイルも削除 */
  .project-detail-material {
    background-color: transparent !important;
    box-shadow: none !important;
  }

  .project-detail-material-embed {
    background-color: transparent !important;
    box-shadow: none !important;
  }

  /* プロジェクト詳細画像をSPで100%に */
  .project-detail-image {
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
  }

  .project-detail-media-section .section-container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .project-detail-media-container {
    padding: 16px;
  }

  .project-detail-fv-content {
    left: 16px;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
  }

  .project-detail-fv-label {
    font-size: 14px;
    line-height: 20px;
  }

  .project-detail-fv-subtitle {
    font-size: 24px;
    line-height: 32px;
  }

  .plan-fv-content {
    left: 16px;
    right: 16px;
    top: 40%;
    transform: translateY(-50%);
    text-align: left;
  }

  .plan-fv-label {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }

  .plan-fv-subtitle {
    font-size: 20px;
    line-height: 32px;
  }

  .project-detail-fv-title {
    font-size: 24px;
    line-height: 32px;
  }

  .project-detail-fv-caption {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ============================================
Plan Page
============================================ */
.plan-fv-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  overflow: hidden;
  opacity: 0.7;
  z-index: 1;
}

.plan-fv-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.plan-fv-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.plan-fv-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right, #ffffff, transparent);
}

.plan-fv-content {
  position: absolute;
  left: 205px;
  top: 201px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.plan-fv-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 0 0 16px 0;
}

.plan-fv-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.4px;
  color: #14212B;
  text-shadow: 2px 2px 16px rgba(255, 255, 255, 0.5);
  margin: 0;
}

.plan-content-inner {
  padding: 120px 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Plan Intro Section */
.plan-intro-section {
  width: 100%;
}

.plan-intro-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1030px;
  margin: 0 auto;
}

.plan-intro-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.38px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.plan-intro-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 0;
}

/* Service Cards Section */
.plan-service-section {
  width: 100%;
}

.service-cards {
  display: flex;
  gap: 24px;
  max-width: 1030px;
  margin: 0 auto;
}

.service-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-image {
  width: 100%;
  aspect-ratio: 312 / 171;
  border-radius: 12px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.service-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.26px;
  color: #14212B;
  margin: 0;
}

.service-description {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.23px;
  color: #14212B;
  margin: 0;
}

/* Plan Cards Section */
.plan-cards-section {
  width: 100%;
}

.plan-tabs {
  display: flex;
  gap: 0;
  max-width: 678px;
  margin: 0 auto 24px;
  background-color: rgba(118, 118, 128, 0.12);
  border-radius: 100px;
  padding: 4px 8px;
  height: 48px;
}

.plan-tab {
  flex: 1;
  padding: 2px 10px;
  background: none;
  border: none;
  border-radius: 7px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.08px;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.plan-tab.active {
  font-weight: 600;
  color: #ffffff;
  background: var(--gradient-primary);
  box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.06);
  border-radius: 100px;
}

.plan-cards-container {
  display: flex;
  gap: 16px;
  max-width: 1030px;
  margin: 0 auto 40px;
}

.plan-card-item {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 40px 16px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.plan-card-item.plan-card-featured {
  border: 2px solid #01a0d5;
  padding: 40px 24px;
}

.plan-card-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  width: 100%;
}

.plan-card-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  color: #14212B;
  margin: 0;
}

.plan-card-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.43px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.plan-card-description {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
}

.plan-card-description p {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.23px;
  color: #14212B;
  margin: 0;
  flex: 1;
  text-align: center;
}

.plan-card-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  align-items: flex-start;
}

.plan-detail-row {
  display: flex;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.plan-detail-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.23px;
  color: #14212B;
  width: 60px;
  flex-shrink: 0;
}

.plan-detail-value {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
  text-align: center;
}

.plan-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 326px;
  margin: 0 auto;
}

.plan-cta .plan-price-button {
  background: #ffffff;
  color: #14212B;
  border: 1px solid #14212B;
  padding: 9px 16px 9px 48px;
}

.plan-cta .plan-price-button:hover {
  background: #ffffff;
  color: #777777;
  border-color: #777777;
}

.plan-cta .plan-price-button:hover .icon-arrow,
.plan-cta .plan-price-button:hover .icon-arrow path {
  color: #777777;
  stroke: #777777;
}

.plan-cta .plan-price-button .icon-arrow,
.plan-cta .plan-price-button .icon-arrow path {
  color: #14212B;
  stroke: #14212B;
}

/* Plan Process Section */
.plan-process-section {
  width: 100%;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1030px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 0.5px solid #999999;
}

.process-step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: "Poiret One", cursive, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  color: #222222;
  width: 33.118px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
  margin: 0;
}

.step-description-box {
  background-color: #dee8fc;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-description-box p {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
  margin: 0;
}

.step-note {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0;
  color: #14212B;
  margin: 0;
}

.process-detail-box {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  margin-top: 8px;
}

.process-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.process-detail-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  flex: 1;
}

.process-detail-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-detail-toggle svg {
  transition: transform 0.3s ease;
}

.process-detail-toggle.active svg {
  transform: rotate(180deg);
}

.process-detail-content {
  display: none;
  flex-direction: column;
  padding-top: 24px;
}

.process-detail-content.active {
  display: flex;
}

.process-detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0;
  border-bottom: 0.5px solid #999999;
}

.process-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.process-detail-item-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
  margin: 0;
}

.process-detail-item-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 0;
}

/* Plan Page Responsive */
@media (max-width: 1024px) {
  .service-cards {
    flex-direction: column;
    gap: 32px;
  }

  .plan-cards-container {
    flex-direction: column;
  }

  .plan-fv-content {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .plan-fv-section {
    height: 400px;
  }

  .plan-fv-content {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .plan-fv-label {
    font-size: 14px;
    line-height: 20px;
  }

  .plan-fv-subtitle {
    font-size: 28px;
    line-height: 36px;
  }

  .plan-content-inner {
    padding: 60px 16px;
    gap: 60px;
  }

  .plan-intro-title {
    font-size: 24px;
    line-height: 32px;
  }

  .service-cards {
    gap: 24px;
  }
}

/* ============================================
Skills Page
============================================ */
.skills-fv-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  overflow: hidden;
  opacity: 0.7;
  z-index: 1;
}

.skills-fv-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.skills-fv-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.skills-fv-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right, #ffffff, transparent);
}

.skills-fv-content {
  position: absolute;
  left: 205px;
  top: 201px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.skills-fv-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 0 0 16px 0;
}

.skills-fv-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.4px;
  color: #14212B;
  text-shadow: 2px 2px 16px rgba(255, 255, 255, 0.5);
  margin: 0;
}

.skills-content-inner {
  padding: 120px 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Skills Intro Section */
.skills-intro-section {
  width: 100%;
}

.skills-intro-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 1030px;
  margin: 0 auto;
}

.skills-intro-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.38px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 24px 0;
}

.skills-intro-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.skills-intro-text p {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 0;
}

/* Skills Section */
.skills-section {
  width: 100%;
}

.skills-grid {
  display: flex;
  gap: 24px;
  max-width: 1030px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.skill-item {
  flex: 1 0 0;
  min-width: 0;
  height: 103.75px;
  aspect-ratio: 103.75 / 103.75;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.skill-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.skill-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* UIUX Skill */
.skill-item-uiux {
  border-radius: 103.75px;
  box-shadow: 2px 2px 16px 0 rgba(151, 199, 255, 0.50);
  overflow: hidden;
}

.skill-item-uiux .skill-icon {
  display: none;
}

/* Figma Skill */
.skill-item-figma {
  border-radius: 103.75px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.50);
  overflow: hidden;
}

.skill-item-figma .skill-icon {
  display: none;
}

/* AI Skill */
.skill-item-ai {
  border-radius: 103.75px;
  box-shadow: 2px 2px 16px 0 rgba(185, 117, 43, 0.50);
  overflow: hidden;
}

.skill-item-ai .skill-icon {
  display: none;
}

/* PS Skill */
.skill-item-ps {
  border-radius: 103.75px;
  overflow: hidden;
}

.skill-item-ps .skill-icon {
  display: none;
}

/* WP Skill */
.skill-item-wp {
  border-radius: 103.75px;
  box-shadow: 2px 2px 16px 0 rgba(0, 116, 154, 0.50);
  overflow: hidden;
}

.skill-item-wp .skill-icon {
  display: none;
}

/* Studio Skill */
.skill-item-studio {
  border-radius: 103.75px;
  box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.50);
  overflow: hidden;
}

.skill-item-studio .skill-icon {
  display: none;
}

/* Artificial Intelligence Skill */
.skill-item-artificialintelligence {
  border-radius: 103.75px;
  box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.50);
  overflow: hidden;
}

.skill-item-artificialintelligence .skill-icon {
  display: none;
}

/* Cursor Skill */
.skill-item-cursor {
  border-radius: 103.75px;
  box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.50);
  overflow: hidden;
}

.skill-item-cursor .skill-icon {
  display: none;
}

/* Biography Section */
.biography-section {
  width: 100%;
}

.biography-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1030px;
  margin: 0 auto;
}

.biography-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.biography-content {
  width: 100%;
}

.biography-box {
  background-color: #f5f8ff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.biography-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
  margin: 0;
}

.biography-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.biography-arrow svg {
  width: 40px;
  height: 40px;
}

.biography-item:last-child .biography-arrow {
  display: none;
}

/* FAQ Section */
.faq-section {
  width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1030px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 0.5px solid #999999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-question {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
  margin: 0;
}

.faq-answer-box {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #dee8fc;
  border-radius: 8px;
  padding: 24px;
}

.faq-answer {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
  margin: 0;
}

/* Skills Page Responsive */
@media (max-width: 768px) {
  .skills-fv-section {
    height: 400px;
  }

  .skills-fv-content {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .skills-fv-label {
    font-size: 14px;
    line-height: 20px;
  }

  .skills-fv-subtitle {
    font-size: 28px;
    line-height: 36px;
  }

  .skills-content-inner {
    padding: 60px 16px;
    gap: 60px;
  }

  .skills-intro-title {
    font-size: 24px;
    line-height: 32px;
  }

  .skills-grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .skill-item {
    flex: 0 0 48px;
    height: auto;
    min-width: 48px;
    max-width: 48px;
    border-radius: 48px;
    transform: scale(0.9);
  }

  .skill-item-uiux,
  .skill-item-figma,
  .skill-item-ai,
  .skill-item-ps,
  .skill-item-wp,
  .skill-item-studio,
  .skill-item-artificialintelligence,
  .skill-item-cursor {
    border-radius: 48px;
  }
}

@media (max-width: 480px) {
  .skills-fv-content {
    left: 16px;
    right: 16px;
    top: 40%;
    transform: translateY(-50%);
    text-align: left;
  }

  .skills-fv-label {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }

  .skills-fv-subtitle {
    font-size: 20px;
    line-height: 32px;
  }

  .skill-item {
    flex: 0 0 48px;
    height: auto;
    min-width: 48px;
    max-width: 48px;
    border-radius: 48px;
    transform: scale(0.9);
  }

  .skill-item-uiux,
  .skill-item-figma,
  .skill-item-ai,
  .skill-item-ps,
  .skill-item-wp,
  .skill-item-studio,
  .skill-item-artificialintelligence,
  .skill-item-cursor {
    border-radius: 48px;
  }

  .plan-tabs {
    max-width: 100%;
  }

  .plan-cards-container {
    gap: 24px;
  }

  .plan-card-item {
    padding: 32px 16px;
  }

  .plan-card-item.plan-card-featured {
    padding: 32px 16px;
  }
}

/* ============================================
Contact Page
============================================ */
.contact-fv-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  overflow: hidden;
  opacity: 0.7;
  z-index: 1;
}

.contact-fv-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
}

.contact-fv-bg-image {
  display: none;
}

.contact-fv-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right, #ffffff, transparent);
}

.contact-fv-content {
  position: absolute;
  left: 205px;
  top: 201px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-fv-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 0 0 16px 0;
}

.contact-fv-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.4px;
  color: #14212B;
  text-shadow: 2px 2px 16px rgba(255, 255, 255, 0.5);
  margin: 0;
}

.contact-content-inner {
  padding: 120px 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1030px;
  margin: 0 auto;
}

.contact-line-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-line-section .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.contact-line-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.contact-line-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-line-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
  margin: 0;
  text-align: center;
}

.contact-form-section {
  width: 100%;
}

/* Contact Form 7 スタイル */
.contact-form-section .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1030px;
}

.contact-form-section .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.contact-form-section .wpcf7-form-control-wrap label {
  margin-bottom: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1030px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* プライバシーポリシーのチェックボックスフィールドを中央配置 */
.contact-form-field.contact-privacy {
  align-items: center;
}

.contact-form-label {
  display: flex;
  gap: 2px;
  align-items: flex-start;
}

.contact-form-label-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
}

.contact-form-required {
  font-size: 20px;
  color: #ff0000;
  display: inline-block;
  width: 10px;
  height: 10px;
  line-height: 1;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 24px;
  border: 1px solid #156ad1;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border: 2px solid #156ad1;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #999999;
}

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

.contact-form-radio-group {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

/* ラジオ風チェックボックス */
.contact-form-radio-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #14212B;
  margin-right: 6px;
  position: relative;
}

.contact-form-radio-group input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background-color: #156ad1;
}

.contact-form-radio {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
}

.contact-form-radio input[type="radio"] {
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  border: 2px solid #999999;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.contact-form-radio input[type="radio"]:checked {
  border-color: #156ad1;
}

.contact-form-radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #156ad1;
}

.contact-form-radio-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
}

.contact-form-checkbox {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: 100%;
}

/* Contact Form 7 プライバシーポリシーチェックボックス */
.contact-form-field.contact-privacy,
.contact-form-section .wpcf7-form-control-wrap.contact-privacy {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-form-section .wpcf7-acceptance {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-form-section .wpcf7-acceptance label {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  margin: 0;
}

.contact-form-section .wpcf7-acceptance input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  border: 2px solid #999999;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
}

.contact-form-section .wpcf7-acceptance input[type="checkbox"]:checked {
  border-color: #156ad1;
  background-color: #156ad1;
}

.contact-form-section .wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}

.contact-form-section .wpcf7-acceptance .contact-form-checkbox-label {
  display: inline;
  margin: 0;
}

.contact-form-checkbox input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  border: 2px solid #999999;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
}

.contact-form-checkbox input[type="checkbox"]:checked {
  border-color: #156ad1;
  background-color: #156ad1;
}

.contact-form-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
}

.contact-form-checkbox-label {
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.192px;
  color: #14212b;
}

.contact-form-checkbox-link {
  color: #156ad1;
  text-decoration: underline;
}

.contact-form-submit {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.contact-submit-button {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 9px 16px 9px 48px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 999px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  max-width: 376px;
}

.contact-submit-button:hover {
  background: var(--gra-hover, linear-gradient(288deg, #DEE8FC 0%, #BDD1F8 100%));
}

.contact-submit-button .icon-arrow {
  width: 24px;
  height: 24px;
}

/* Thanks Page Styles */
.thanks-fv-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  overflow: hidden;
  opacity: 0.7;
  z-index: 1;
}

.thanks-fv-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.thanks-fv-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.thanks-fv-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right, #ffffff, transparent);
}

.thanks-fv-content {
  position: absolute;
  left: 205px;
  top: 201px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.thanks-fv-label {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  color: #14212B;
  margin: 0 0 16px 0;
}

.thanks-fv-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.4px;
  color: #14212B;
  text-shadow: 2px 2px 16px rgba(255, 255, 255, 0.5);
  margin: 0;
}

.thanks-content-inner {
  padding: 120px 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1030px;
  margin: 0 auto;
}

.thanks-message-section {
  width: 100%;
}

.thanks-message-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.thanks-message-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.4px;
  color: #14212B;
  margin: 0;
}

.thanks-message-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.43px;
  color: #14212B;
  max-width: 800px;
}

.thanks-message-text p {
  margin: 0 0 16px 0;
}

.thanks-message-text p:last-child {
  margin-bottom: 0;
}

/* Thanks Page LINE Section */
.thanks-line-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thanks-line-section .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.thanks-line-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.thanks-line-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thanks-line-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  color: #14212B;
  margin: 0;
  text-align: center;
}

.thanks-action-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.thanks-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.31px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 240px;
  width: 100%;
  max-width: 300px;
}

.thanks-button-primary {
  background: var(--gradient-primary);
  color: #ffffff;
}

.thanks-button-primary:hover {
  background: var(--gra-hover, linear-gradient(288deg, #DEE8FC 0%, #BDD1F8 100%));
  color: #14212B;
}

.thanks-button-secondary {
  background-color: #ffffff;
  color: #14212B;
  border: 2px solid #14212B;
}

.thanks-button-secondary:hover {
  background-color: #14212B;
  color: #ffffff;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-fv-section {
    height: 400px;
  }

  .contact-fv-content {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .contact-fv-label {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-fv-subtitle {
    font-size: 20px;
    line-height: 36px;
  }

  .contact-content-inner {
    padding: 60px 16px 0;
    gap: 40px;
  }

  .contact-line-icon {
    width: 80px;
    height: 80px;
  }

  .contact-form {
    gap: 20px;
  }

  .contact-form-field {
    gap: 12px;
  }

  .contact-form-radio-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-submit-button {
    min-width: 100%;
    width: 100%;
  }

  /* Thanks Page Responsive */
  .thanks-fv-section {
    height: 400px;
  }

  .thanks-fv-content {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .thanks-fv-label {
    font-size: 14px;
    line-height: 20px;
  }

  .thanks-fv-subtitle {
    font-size: 28px;
    line-height: 36px;
  }

  .thanks-content-inner {
    padding: 60px 16px 0;
    gap: 40px;
  }

  .thanks-message-title {
    font-size: 28px;
    line-height: 36px;
  }

  .thanks-message-text {
    font-size: 16px;
    line-height: 24px;
  }

  .contact-fv-content {
    left: 16px;
    right: 16px;
    top: 40%;
    transform: translateY(-50%);
    text-align: left;
  }

  .thanks-fv-content {
    left: 16px;
    right: 16px;
    top: 40%;
    transform: translateY(-50%);
    text-align: left;
  }

  .thanks-line-icon {
    width: 80px;
    height: 80px;
  }

  .thanks-action-buttons {
    flex-direction: column;
    width: 100%;
  }

  .thanks-button {
    width: 100%;
    max-width: 400px;
  }
}

/* ============================================
Privacy Policy Page Styles
============================================ */
.privacy-fv-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70vh;
  overflow: hidden;
  opacity: 0.7;
  z-index: 1;
}

.privacy-fv-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
}

.privacy-fv-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to right, #ffffff, transparent);
}

.privacy-fv-content {
  position: absolute;
  left: 205px;
  top: 201px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.privacy-fv-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 41px;
  letter-spacing: 0.4px;
  color: #14212B;
  text-shadow: 2px 2px 16px rgba(255, 255, 255, 0.5);
  margin: 0;
}

.privacy-content-inner {
  padding: 120px 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 1030px;
  margin: 0 auto;
}

.privacy-content-section {
  width: 100%;
}

.privacy-content {
  width: 100%;
}

.privacy-intro {
  margin-bottom: 48px;
}

.privacy-intro-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #14212B;
  margin: 0;
}

.privacy-sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}

.privacy-section-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy-section-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: #14212B;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.privacy-section-number {
  font-weight: 700;
  flex-shrink: 0;
}

.privacy-section-heading {
  font-weight: 600;
}

.privacy-section-text {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #14212B;
  margin: 0;
  padding-left: 28px;
}

.privacy-contact {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(20, 33, 43, 0.1);
}

.privacy-contact-name {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #14212B;
  margin: 0 0 8px 0;
}

.privacy-contact-email {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #14212B;
  margin: 0;
}

.privacy-contact-email a {
  color: #156AD1;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.privacy-contact-email a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-fv-section {
    height: 400px;
  }

  .privacy-fv-content {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .privacy-fv-subtitle {
    font-size: 28px;
    line-height: 36px;
  }

  .privacy-content-inner {
    padding: 60px 16px 0;
    gap: 40px;
  }

  .privacy-intro {
    margin-bottom: 32px;
  }

  .privacy-sections {
    gap: 32px;
    margin-bottom: 32px;
  }

  .privacy-section-title {
    font-size: 18px;
  }

  .privacy-section-text {
    font-size: 15px;
    padding-left: 24px;
  }

  .privacy-contact {
    margin-top: 32px;
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  .privacy-fv-section {
    height: 400px;
  }

  .privacy-fv-content {
    left: 16px;
    right: 16px;
    top: 40%;
    transform: translateY(-50%);
    text-align: left;
  }

  .privacy-fv-subtitle {
    font-size: 20px;
    line-height: 28px;
  }

  .privacy-content-inner {
    padding: 60px 16px 0;
    gap: 32px;
  }

  .privacy-intro {
    margin-bottom: 24px;
  }

  .privacy-intro-text {
    font-size: 15px;
  }

  .privacy-sections {
    gap: 24px;
    margin-bottom: 24px;
  }

  .privacy-section-item {
    gap: 12px;
  }

  .privacy-section-title {
    font-size: 16px;
    flex-direction: column;
    gap: 4px;
  }

  .privacy-section-text {
    font-size: 14px;
    padding-left: 0;
    line-height: 1.7;
  }

  .privacy-contact {
    margin-top: 24px;
    padding-top: 20px;
  }

  .privacy-contact-name,
  .privacy-contact-email {
    font-size: 15px;
  }
}
