/*
Theme Name: Kizuna Workout Studio
Theme URI: https://kizuna-gym.jp
Author: Kizuna Workout Studio
Author URI: https://kizuna-gym.jp
Description: 絆 WORKOUT STUDIO 公式テーマ - 初心者専門パーソナルジム
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: kizuna
Tags: custom-menu, custom-logo, featured-images, translation-ready
*/

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */

:root {
  --primary: #2D5A27;
  --primary-light: #4A7C43;
  --primary-dark: #1E3D1A;
  --accent: #F5A623;
  --accent-dark: #E09000;
  --background: #FFFFFF;
  --background-light: #F8F9FA;
  --background-cream: #FAFAF5;
  --text: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-heading: 'Zen Maru Gothic', sans-serif;
  --font-montserrat: 'Montserrat', sans-serif;
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */

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

html,
body {
  max-width: 100vw;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: var(--background);
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   3. FONT CLASSES
   ========================================================================== */

.font-heading {
  font-family: var(--font-heading);
}

.font-montserrat {
  font-family: var(--font-montserrat);
}

/* ==========================================================================
   4. CONTAINER & LAYOUT
   ========================================================================== */

.container-custom {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .container-custom {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* ==========================================================================
   5. SECTION SPACING
   ========================================================================== */

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.section-padding-sm {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-padding-sm {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* ==========================================================================
   6. BUTTONS (Converted from Tailwind @apply)
   ========================================================================== */

.btn-primary {
  display: inline-block;
  background-color: #F5A623;
  color: #FFFFFF;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 10px 15px -3px rgba(245, 166, 35, 0.3),
              0 4px 6px -4px rgba(245, 166, 35, 0.3);
}

.btn-primary:hover {
  background-color: #E09000;
  transform: scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(245, 166, 35, 0.3),
              0 8px 10px -6px rgba(245, 166, 35, 0.3);
}

.btn-secondary {
  display: inline-block;
  background-color: #2D5A27;
  color: #FFFFFF;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(45, 90, 39, 0.2),
              0 4px 6px -4px rgba(45, 90, 39, 0.2);
}

.btn-secondary:hover {
  background-color: #1E3D1A;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #2D5A27;
  color: #2D5A27;
  background-color: transparent;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #2D5A27;
  color: #FFFFFF;
}

.btn-white {
  display: inline-block;
  background-color: #FFFFFF;
  color: #2D5A27;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: #F9FAFB;
}

/* ==========================================================================
   7. CARDS (Converted from Tailwind @apply)
   ========================================================================== */

.card {
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05),
              0 8px 10px -6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: all 0.5s ease;
}

.card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.5rem);
}

.card-simple {
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

/* ==========================================================================
   8. SECTION TITLES & LABELS (Converted from Tailwind @apply)
   ========================================================================== */

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  line-height: 1.625;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

.section-label {
  display: inline-block;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2D5A27;
  background-color: rgba(45, 90, 39, 0.1);
  border-radius: 9999px;
}

/* ==========================================================================
   9. GRADIENT TEXT (Converted from Tailwind @apply)
   ========================================================================== */

.gradient-text {
  background: linear-gradient(to right, #2D5A27, #4A7C43);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ==========================================================================
   10. WAVE SEPARATORS
   ========================================================================== */

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-top svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-bottom svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
}

/* ==========================================================================
   11. DIAGONAL SECTIONS
   ========================================================================== */

.diagonal-top {
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

.diagonal-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}

/* ==========================================================================
   12. FEATURE NUMBER (Converted from Tailwind @apply)
   ========================================================================== */

.feature-number {
  font-size: 6rem;
  font-weight: 700;
  color: rgba(45, 90, 39, 0.1);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
}

/* ==========================================================================
   13. IMAGE HOVER (Converted from Tailwind @apply)
   ========================================================================== */

.img-hover {
  transition: transform 700ms ease;
}

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

/* ==========================================================================
   14. GLASS EFFECT (Converted from Tailwind @apply)
   ========================================================================== */

.glass {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

/* ==========================================================================
   15. FLOAT ANIMATION
   ========================================================================== */

.float {
  animation: float 6s ease-in-out infinite;
}

/* ==========================================================================
   16. UTILITY CLASSES
   ========================================================================== */

/* Scrollbar Hide */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Line Clamp */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Text Balance */
.text-balance {
  text-wrap: balance;
}

/* General Utility Classes */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }

/* ==========================================================================
   17. ANIMATION KEYFRAMES
   ========================================================================== */

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* ==========================================================================
   18. ANIMATION UTILITY CLASSES
   ========================================================================== */

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   19. WORDPRESS-SPECIFIC: ACCESSIBILITY
   ========================================================================== */

/* Screen Reader Text - WordPress accessibility requirement */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #F1F1F1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759B;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ==========================================================================
   20. WORDPRESS-SPECIFIC: NAVIGATION MENUS
   ========================================================================== */

/* Primary Navigation */
.main-navigation {
  display: block;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99999;
  background-color: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  min-width: 200px;
  display: none;
  padding: 0.5rem 0;
}

.main-navigation ul ul ul {
  top: 0;
  left: 100%;
}

.main-navigation ul li {
  position: relative;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  display: block;
}

.main-navigation a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: var(--primary);
}

.main-navigation ul ul a {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.main-navigation ul ul a:hover {
  background-color: var(--background-light);
  color: var(--primary);
}

/* WordPress Menu Widget */
.widget_nav_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget_nav_menu li {
  border-bottom: 1px solid #E5E7EB;
}

.widget_nav_menu li:last-child {
  border-bottom: none;
}

.widget_nav_menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--text);
  transition: color 0.3s ease;
}

.widget_nav_menu a:hover {
  color: var(--primary);
}

/* ==========================================================================
   21. WORDPRESS-SPECIFIC: COMMENTS
   ========================================================================== */

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
}

.comments-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text);
}

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

.comment-list .comment {
  padding: 1.5rem 0;
  border-bottom: 1px solid #F3F4F6;
}

.comment-list .comment:last-child {
  border-bottom: none;
}

.comment-list .children {
  list-style: none;
  margin-left: 2rem;
  padding: 0;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.comment-meta .avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.comment-author {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
}

.comment-metadata {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.comment-metadata a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.comment-metadata a:hover {
  color: var(--primary);
}

.comment-content {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
}

.comment-content p {
  margin-bottom: 1rem;
}

.comment-content p:last-child {
  margin-bottom: 0;
}

.reply a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s ease;
}

.reply a:hover {
  color: var(--primary-dark);
}

/* Comment Form */
.comment-respond {
  margin-top: 2rem;
}

.comment-reply-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.comment-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 0.75rem;
  font-size: 1rem;
  color: var(--text);
  background-color: #FFFFFF;
  font-family: var(--font-sans);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.comment-form .form-submit {
  margin-top: 1rem;
}

.comment-form input[type="submit"] {
  display: inline-block;
  background-color: var(--primary);
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  transition: background-color 0.3s ease;
}

.comment-form input[type="submit"]:hover {
  background-color: var(--primary-dark);
}

.comment-form p {
  margin-bottom: 1rem;
}

/* No Comments */
.no-comments {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   22. WORDPRESS-SPECIFIC: WIDGETS
   ========================================================================== */

.widget-area {
  margin-top: 2rem;
}

.widget {
  margin-bottom: 2.5rem;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #F3F4F6;
}

.widget ul li:last-child {
  border-bottom: none;
}

.widget ul li a {
  font-size: 0.875rem;
  color: var(--text);
  transition: color 0.3s ease;
}

.widget ul li a:hover {
  color: var(--primary);
}

/* Search Widget */
.widget_search .search-form {
  display: flex;
  gap: 0;
}

.widget_search .search-field {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 2px solid #E5E7EB;
  border-right: none;
  border-radius: 9999px 0 0 9999px;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
}

.widget_search .search-field:focus {
  border-color: var(--primary);
}

.widget_search .search-submit {
  padding: 0.625rem 1.25rem;
  background-color: var(--primary);
  color: #FFFFFF;
  border: 2px solid var(--primary);
  border-radius: 0 9999px 9999px 0;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background-color 0.3s ease;
}

.widget_search .search-submit:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Calendar Widget */
.widget_calendar table {
  width: 100%;
  border-collapse: collapse;
}

.widget_calendar th,
.widget_calendar td {
  text-align: center;
  padding: 0.375rem;
  font-size: 0.8125rem;
}

.widget_calendar th {
  font-weight: 700;
  color: var(--text);
}

.widget_calendar td {
  color: var(--text-light);
}

.widget_calendar td a {
  color: var(--primary);
  font-weight: 700;
}

/* Tag Cloud Widget */
.tagcloud a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin: 0.125rem;
  background-color: var(--background-light);
  color: var(--text-light);
  border-radius: 9999px;
  font-size: 0.8125rem !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tagcloud a:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* Recent Posts Widget */
.widget_recent_entries .post-date {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.125rem;
}

/* ==========================================================================
   23. WORDPRESS-SPECIFIC: ALIGNMENT CLASSES
   ========================================================================== */

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.alignwide {
  margin-left: -2rem;
  margin-right: -2rem;
  max-width: calc(100% + 4rem);
  width: calc(100% + 4rem);
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
}

.alignnone {
  margin: 0.3125rem 1.25rem 1.25rem 0;
}

/* Clearfix for floated alignment */
.entry-content::after {
  content: "";
  display: table;
  clear: both;
}

/* ==========================================================================
   24. WORDPRESS-SPECIFIC: BLOCK EDITOR (GUTENBERG) STYLES
   ========================================================================== */

/* Block Editor Content Width */
.entry-content > *,
.wp-block-group__inner-container > * {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.entry-content > .alignwide {
  max-width: 64rem;
}

.entry-content > .alignfull {
  max-width: none;
}

/* Block: Paragraph */
.wp-block-paragraph {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Block: Heading */
.wp-block-heading {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

/* Block: Image */
.wp-block-image {
  margin-bottom: 1.5rem;
}

.wp-block-image img {
  border-radius: 0.75rem;
}

.wp-block-image figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

/* Block: Gallery */
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.wp-block-gallery .wp-block-image {
  flex-grow: 1;
  margin: 0;
}

.wp-block-gallery .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Block: Quote */
.wp-block-quote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: var(--background-light);
  border-radius: 0 0.5rem 0.5rem 0;
}

.wp-block-quote p {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.wp-block-quote p:last-child {
  margin-bottom: 0;
}

.wp-block-quote cite {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: normal;
  margin-top: 0.5rem;
}

/* Block: Pullquote */
.wp-block-pullquote {
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
  padding: 2rem 0;
  margin: 2rem 0;
  text-align: center;
}

.wp-block-pullquote p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

/* Block: List */
.wp-block-list {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.wp-block-list li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* Block: Code */
.wp-block-code {
  background-color: #1E293B;
  color: #E2E8F0;
  padding: 1.5rem;
  border-radius: 0.75rem;
  font-family: 'Fira Code', 'Consolas', monospace;
  font-size: 0.875rem;
  line-height: 1.7;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

/* Block: Preformatted */
.wp-block-preformatted {
  background-color: var(--background-light);
  padding: 1.25rem;
  border-radius: 0.5rem;
  font-family: monospace;
  font-size: 0.875rem;
  white-space: pre-wrap;
  overflow-x: auto;
}

/* Block: Table */
.wp-block-table {
  margin-bottom: 1.5rem;
  overflow-x: auto;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #E5E7EB;
  text-align: left;
  font-size: 0.9375rem;
}

.wp-block-table th {
  background-color: var(--background-light);
  font-weight: 700;
  color: var(--text);
}

.wp-block-table td {
  color: var(--text);
}

.wp-block-table tbody tr:hover {
  background-color: var(--background-light);
}

/* Block: Separator */
.wp-block-separator {
  border: none;
  border-top: 2px solid #E5E7EB;
  margin: 2rem auto;
  max-width: 6rem;
}

.wp-block-separator.is-style-wide {
  max-width: 100%;
}

.wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
  max-width: 100%;
}

.wp-block-separator.is-style-dots::before {
  content: "\00b7 \00b7 \00b7";
  font-size: 1.5rem;
  letter-spacing: 2em;
  color: var(--text-muted);
}

/* Block: Spacer */
.wp-block-spacer {
  clear: both;
}

/* Block: Cover */
.wp-block-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

/* Block: Columns */
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.wp-block-column {
  flex: 1;
  min-width: 0;
}

@media (max-width: 767px) {
  .wp-block-columns {
    flex-direction: column;
  }

  .wp-block-column {
    flex-basis: 100% !important;
  }
}

/* Block: Group */
.wp-block-group {
  margin-bottom: 1.5rem;
}

.wp-block-group.has-background {
  padding: 2rem;
  border-radius: 0.75rem;
}

/* Block: Buttons */
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.wp-block-button__link {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}

.wp-block-button__link:not(.has-background) {
  background-color: var(--primary);
  color: #FFFFFF;
}

.wp-block-button__link:not(.has-background):hover {
  background-color: var(--primary-dark);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* Block: Embed */
.wp-block-embed {
  margin-bottom: 1.5rem;
}

.wp-block-embed__wrapper {
  position: relative;
}

.wp-block-embed figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

/* Block: Video responsive embed */
.wp-block-embed-youtube .wp-block-embed__wrapper,
.wp-block-embed-vimeo .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.wp-block-embed-vimeo .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   25. WORDPRESS-SPECIFIC: GALLERY (Classic)
   ========================================================================== */

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  width: calc(50% - 0.25rem);
}

.gallery-columns-3 .gallery-item {
  width: calc(33.333% - 0.375rem);
}

.gallery-columns-4 .gallery-item {
  width: calc(25% - 0.375rem);
}

.gallery-columns-5 .gallery-item {
  width: calc(20% - 0.4rem);
}

.gallery-columns-6 .gallery-item {
  width: calc(16.666% - 0.4167rem);
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
}

.gallery-caption {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  padding: 0 0.25rem;
}

/* ==========================================================================
   26. WORDPRESS-SPECIFIC: POST NAVIGATION & PAGINATION
   ========================================================================== */

.post-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.post-navigation a {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.post-navigation a:hover {
  color: var(--primary-dark);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination .current {
  background-color: var(--primary);
  color: #FFFFFF;
}

.pagination a {
  background-color: #F3F4F6;
  color: var(--text-light);
}

.pagination a:hover {
  background-color: rgba(45, 90, 39, 0.1);
  color: var(--primary);
}

/* ==========================================================================
   27. WORDPRESS-SPECIFIC: CONTENT FORMATTING
   ========================================================================== */

/* Sticky Post */
.sticky .entry-title::before {
  content: "\2605";
  margin-right: 0.5rem;
  color: var(--accent);
}

/* Post Thumbnails */
.post-thumbnail {
  margin-bottom: 1.5rem;
}

.post-thumbnail img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
}

/* Entry Meta */
.entry-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.entry-meta a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.entry-meta a:hover {
  color: var(--primary);
}

.entry-meta .sep {
  margin: 0 0.5rem;
}

/* Entry Footer */
.entry-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #F3F4F6;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.entry-footer a {
  color: var(--primary);
  transition: color 0.3s ease;
}

.entry-footer a:hover {
  color: var(--primary-dark);
}

/* Tags List */
.tags-links a {
  display: inline-block;
  padding: 0.125rem 0.625rem;
  margin: 0.125rem;
  background-color: var(--background-light);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--text-light);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tags-links a:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}

/* ==========================================================================
   28. HEADER STYLES
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s;
  padding: 1rem 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo img {
  height: 2rem;
  width: auto;
  transition: all 0.3s;
}

@media (min-width: 640px) {
  .site-header .logo img {
    height: 2.25rem;
  }
}

.site-header:not(.scrolled) .logo img {
  filter: brightness(0) invert(1);
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}

.desktop-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-heading);
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.3s;
}

.site-header.scrolled .desktop-nav a {
  color: var(--text);
}

.site-header.scrolled .desktop-nav a:hover {
  color: #C3D601;
  background: rgba(195, 214, 1, 0.05);
}

.site-header:not(.scrolled) .desktop-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header:not(.scrolled) .desktop-nav a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

/* Header CTA */
.header-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
  }
}

.header-cta .btn-trial {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem;
  background: #C3D601;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.header-cta .btn-trial:hover {
  background: #A8B801;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 50;
  transition: all 0.3s;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.site-header.scrolled .mobile-menu-btn svg {
  color: var(--text);
}

.site-header:not(.scrolled) .mobile-menu-btn svg {
  color: #FFFFFF;
}

/* Mobile Menu */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 30;
}

.mobile-backdrop.active {
  display: block;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75vh;
  background: #FFFFFF;
  z-index: 40;
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
}

.mobile-menu.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 6rem 2rem 5rem;
}

.mobile-menu nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid #F3F4F6;
  transition: color 0.3s;
}

.mobile-menu nav a:hover {
  color: #C3D601;
}

.mobile-menu .mobile-cta {
  margin-top: 2rem;
}

/* ==========================================================================
   29. HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section {
    height: 600px;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    height: 681px;
  }
}

.hero-section video,
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #FFFFFF;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 44px;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 55px;
    line-height: 60px;
  }
}

/* ==========================================================================
   30. BANNER SLIDER
   ========================================================================== */

.banner-slider {
  padding: 2rem 1.25rem;
  background: #FFFFFF;
}

@media (min-width: 768px) {
  .banner-slider {
    padding: 3rem 1.25rem;
  }
}

@media (min-width: 1024px) {
  .banner-slider {
    padding: 4rem 1.25rem;
  }
}

.banner-slider-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.banner-slider-inner img {
  width: 100%;
  height: auto;
}

.banner-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.banner-dots button {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  background: rgba(255, 255, 255, 0.5);
}

.banner-dots button.active {
  background: #FFFFFF;
}

/* Stack banner slides on top of each other for smooth fade transitions */
#banner-slider {
  position: relative;
}

#banner-slider .banner-slide {
  transition: opacity 0.5s ease;
}

#banner-slider .banner-slide:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* ==========================================================================
   31. ABOUT SECTION
   ========================================================================== */

.about-section {
  position: relative;
  background: #FFFFFF;
  overflow: hidden;
}

.about-section .section-header {
  text-align: center;
  padding-top: 22px;
  margin-bottom: 57px;
}

.about-section .section-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: #333333;
  line-height: 1;
  letter-spacing: -1.2px;
}

@media (min-width: 768px) {
  .about-section .section-header h2 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .about-section .section-header h2 {
    font-size: 48px;
  }
}

.about-section .section-header .line-img {
  margin-top: 33px;
}

/* ==========================================================================
   32. WAVE DIVIDER
   ========================================================================== */

.wave-divider {
  position: relative;
  width: 100%;
  height: 50px;
  margin-bottom: -1px;
}

@media (min-width: 768px) {
  .wave-divider {
    height: 73px;
  }
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   33. THREE STRENGTHS
   ========================================================================== */

.three-strengths {
  position: relative;
  padding-top: 60px;
}

@media (min-width: 768px) {
  .three-strengths {
    padding-top: 80px;
  }
}

.three-strengths .wave-top svg {
  height: 60px;
}

@media (min-width: 768px) {
  .three-strengths .wave-top svg {
    height: 80px;
  }
}

.three-strengths .green-bg {
  background: #C3D601;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .three-strengths .green-bg {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .three-strengths .green-bg {
    padding: 6rem 0;
  }
}

.strength-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .strength-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.strength-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.strength-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
}

.strength-card-top {
  padding: 2.5rem 1.5rem 1.5rem;
  text-align: center;
  flex-shrink: 0;
}

.strength-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.strength-circle .point-label {
  font-family: var(--font-heading);
  font-size: 8px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  line-height: 1;
}

.strength-circle .point-number {
  font-family: var(--font-montserrat);
  font-weight: 600;
  font-size: 27px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1;
  letter-spacing: -1.2px;
}

.strength-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .strength-card h3 {
    font-size: 30px;
  }
}

.strength-card .divider {
  width: 154px;
  height: 1px;
  background: #E5E7EB;
  margin: 0 auto 1rem;
}

.strength-card p {
  color: #666666;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  white-space: pre-line;
}

.strength-card-image {
  margin-top: auto;
  position: relative;
  height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .strength-card-image {
    height: 265px;
  }
}

.strength-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

/* ==========================================================================
   34. PRICING SECTION
   ========================================================================== */

.pricing-section {
  background: #FACC15;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .pricing-section {
    padding: 5rem 0;
  }
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .pricing-card h3 {
    font-size: 24px;
  }
}

.pricing-card .frequency {
  font-size: 12px;
  color: #999999;
}

.pricing-card .price {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 28px;
  margin: 0.75rem 0 0.25rem;
}

@media (min-width: 768px) {
  .pricing-card .price {
    font-size: 32px;
  }
}

.pricing-card .per-session {
  font-size: 11px;
  color: #999999;
}

.pricing-card .tax-label {
  font-size: 10px;
  color: #999999;
}

.pricing-card .session-detail {
  font-size: 12px;
  color: #999999;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #E5E7EB;
}

/* ==========================================================================
   35. COMPARISON TABLE
   ========================================================================== */

.comparison-section {
  background: #FFFFFF;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .comparison-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .comparison-section {
    padding: 5rem 0;
  }
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid #E5E7EB;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  background: #F9FAFB;
}

.comparison-table .kizuna-col {
  background: rgba(195, 214, 1, 0.05);
}

.comparison-table .kizuna-header {
  background: #C3D601;
  color: #FFFFFF;
}

/* ==========================================================================
   36. TRIAL FLOW
   ========================================================================== */

.trial-flow {
  background: #FFFFFF;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .trial-flow {
    padding: 4rem 0;
  }
}

.trial-flow .steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trial-flow .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trial-flow .step-card {
  text-align: center;
  padding: 1.5rem;
}

.trial-flow .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #C3D601;
  color: #FFFFFF;
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 1rem;
}

/* ==========================================================================
   37. STORES SECTION
   ========================================================================== */

.stores-section {
  padding: 5rem 0 8rem;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.stores-section .bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, var(--background-cream), transparent);
}

.store-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .store-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.store-card {
  background: var(--background-cream);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.store-card .map-area {
  height: 220px;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .store-card .map-area {
    height: 260px;
  }
}

.store-card .store-info {
  padding: 1.5rem;
}

.store-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .store-card h3 {
    font-size: 24px;
  }
}

.store-card .info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 14px;
  color: #666666;
}

.store-card .info-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #C3D601;
}

/* ==========================================================================
   38. CTA SECTION
   ========================================================================== */

.cta-section {
  background: #C3D601;
  padding: 4rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 5rem 0;
  }
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .cta-section h2 {
    font-size: 42px;
  }
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 2rem;
}

/* ==========================================================================
   39. ADDITIONAL BUTTON VARIANTS
   ========================================================================== */

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #F83F26;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(248, 63, 38, 0.3);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .btn-primary-large {
    font-size: 24px;
    padding: 1.5rem 3.5rem;
  }
}

.btn-primary-large:hover {
  background: #E0341D;
  transform: translateY(-2px);
}

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #9CDB02;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  padding: 1.25rem 3rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .btn-green {
    font-size: 24px;
    padding: 1.25rem 3.75rem;
  }
}

.btn-green:hover {
  background: #8CC502;
  transform: translateY(-4px);
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #F97316;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  padding: 1.5rem 3rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .btn-orange {
    font-size: 24px;
    padding: 1.5rem 4rem;
  }
}

.btn-orange:hover {
  background: #EA580C;
  transform: translateY(-4px);
}

.btn-white-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  color: #22C55E;
  font-weight: 700;
  font-size: 16px;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-white-pill:hover {
  background: #F3F4F6;
}

/* ==========================================================================
   40. ARROW CIRCLE ICON
   ========================================================================== */

.arrow-circle {
  width: 37px;
  height: 37px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arrow-circle svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   41. FAQ SECTION
   ========================================================================== */

.faq-section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }
}

.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: #C3D601;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.faq-question .icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: #C3D601;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   42. FOOTER
   ========================================================================== */

.site-footer {
  background: #F6F2E3;
  position: relative;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    padding: 5rem 2.5rem 2rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.footer-logo img {
  width: 110px;
  height: auto;
}

@media (min-width: 768px) {
  .footer-logo img {
    width: 122px;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: #555555;
}

.footer-social a svg {
  width: 17px;
  height: 17px;
  color: #FFFFFF;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 1rem;
}

.footer-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #333333;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #C3D601;
}

.footer-store-info h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: #333333;
  margin-bottom: 0.25rem;
}

.footer-store-info p {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #333333;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact .icon-circle:hover {
  background: #555555;
}

.footer-contact .icon-circle svg {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p,
.footer-bottom a {
  font-family: var(--font-heading);
  font-size: 14px;
  color: #333333;
}

.footer-bottom a:hover {
  color: #C3D601;
}

/* ==========================================================================
   43. LINE FLOATING BUTTON
   ========================================================================== */

.line-floating-btn {
  position: fixed;
  bottom: 6rem;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 5px solid #22C55E;
  border-right: 0;
  border-radius: 16px 0 0 16px;
  padding: 0.75rem 1rem 0.75rem 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  gap: 0.625rem;
}

@media (min-width: 768px) {
  .line-floating-btn {
    bottom: 2.5rem;
  }
}

.line-floating-btn:hover {
  background: #22C55E;
}

.line-floating-btn img {
  width: 49px;
  height: 49px;
  flex-shrink: 0;
}

.line-floating-btn .text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.line-floating-btn .text-group span {
  color: #05C756;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.3s;
}

.line-floating-btn:hover .text-group span {
  color: #FFFFFF;
}

.line-floating-btn .text-group .text-small {
  font-size: 14px;
  line-height: 21px;
}

.line-floating-btn .text-group .text-large {
  font-size: 18px;
  line-height: 22px;
}

/* ==========================================================================
   44. PAGE TITLE SECTION
   ========================================================================== */

.page-title-section {
  background: #FFFFFF;
  padding-top: 7rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-title-section {
    padding-top: 8rem;
    padding-bottom: 2.5rem;
  }
}

.page-title-section h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: #333333;
  letter-spacing: -1.2px;
  text-align: center;
}

@media (min-width: 768px) {
  .page-title-section h1 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .page-title-section h1 {
    font-size: 48px;
  }
}

.page-title-section .title-line {
  margin-top: 0.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .page-title-section .title-line {
    margin-top: 0.75rem;
  }
}

.page-title-section .title-line img {
  margin: 0 auto;
  width: 80px;
  height: auto;
}

@media (min-width: 768px) {
  .page-title-section .title-line img {
    width: 100px;
  }
}

@media (min-width: 1024px) {
  .page-title-section .title-line img {
    width: 134px;
  }
}

.page-title-section .subtitle {
  color: #666666;
  font-size: 14px;
  line-height: 22.75px;
  max-width: 750px;
  margin: 1rem auto 0;
  text-align: center;
}

/* ==========================================================================
   45. GREEN WAVE BAND
   ========================================================================== */

.green-wave-band {
  background: #C3D601;
  height: 20px;
}

@media (min-width: 768px) {
  .green-wave-band {
    height: 30px;
  }
}

/* ==========================================================================
   46. CONTACT FORM
   ========================================================================== */

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 16px;
  color: var(--text);
  background: #FFFFFF;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: var(--font-sans);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #A4BF00;
  box-shadow: 0 0 0 3px rgba(164, 191, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form .required {
  color: #EF4444;
  font-size: 12px;
  margin-left: 0.25rem;
}

.contact-form .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: #A4BF00;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form .submit-btn:hover {
  background: #8CA300;
}

/* Contact Form 7 Styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 16px;
  color: var(--text);
  font-family: var(--font-sans);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: #A4BF00;
  box-shadow: 0 0 0 3px rgba(164, 191, 0, 0.1);
}

.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  background: #A4BF00;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.wpcf7 input[type="submit"]:hover {
  background: #8CA300;
}

/* ==========================================================================
   47. BLOG
   ========================================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-card .thumbnail {
  height: 200px;
  background: linear-gradient(135deg, rgba(195, 214, 1, 0.2), rgba(195, 214, 1, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card .card-body {
  padding: 1.5rem;
}

.blog-card .category-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(195, 214, 1, 0.1);
  color: #C3D601;
  font-size: 12px;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-weight: 700;
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.blog-card .excerpt {
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .date {
  font-size: 13px;
  color: #999999;
  margin-top: 0.75rem;
}

/* Blog Detail */
.blog-hero {
  background: linear-gradient(135deg, #A8DC00, #96C600);
  padding-top: 7rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .blog-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}

/* h2: 緑テキスト大見出し */
.blog-content h2 {
  font-family: 'Zen Maru Gothic', var(--font-heading), sans-serif !important;
  font-weight: 700 !important;
  font-size: 24px !important;
  color: #45A400 !important;
  line-height: 1.4 !important;
  margin-top: 2.5rem !important;
  margin-bottom: 1.2rem !important;
}

@media (min-width: 768px) {
  .blog-content h2 {
    font-size: 28px !important;
  }
}

@media (min-width: 1024px) {
  .blog-content h2 {
    font-size: 32px !important;
  }
}

/* h3: 緑背景の白文字ボックス */
.blog-content h3 {
  font-family: 'Zen Maru Gothic', var(--font-heading), sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #fff !important;
  background: #A4BF00 !important;
  padding: 10px 16px !important;
  line-height: 1.5 !important;
  margin-top: 2.5rem !important;
  margin-bottom: 1.2rem !important;
  border-radius: 0 !important;
}

@media (min-width: 768px) {
  .blog-content h3 {
    font-size: 22px !important;
    padding: 12px 20px !important;
  }
}

@media (min-width: 1024px) {
  .blog-content h3 {
    font-size: 24px !important;
  }
}

/* h4: グレーテキスト */
.blog-content h4 {
  font-family: 'Zen Maru Gothic', var(--font-heading), sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #666666 !important;
  line-height: 1.5 !important;
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
}

@media (min-width: 768px) {
  .blog-content h4 {
    font-size: 18px !important;
  }
}

@media (min-width: 1024px) {
  .blog-content h4 {
    font-size: 20px !important;
  }
}

/* hr: 細い区切り線 */
.blog-content hr {
  border: none !important;
  height: 1px !important;
  background: #666666 !important;
  margin: 2rem 0 !important;
}

/* 太字 */
.blog-content strong,
.blog-content b {
  font-weight: 700;
}

/* リスト */
.blog-content ul,
.blog-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: #333;
  font-size: 15px;
  line-height: 1.9;
}
.blog-content ul {
  list-style: disc;
}
.blog-content ol {
  list-style: decimal;
}
.blog-content li {
  margin-bottom: 0.4rem;
}

@media (min-width: 768px) {
  .blog-content ul,
  .blog-content ol {
    font-size: 16px;
  }
}

.blog-content p {
  color: #333333;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .blog-content p {
    font-size: 16px;
  }
}

.blog-content .green-separator {
  width: 100%;
  height: 3px;
  background: #C3D601;
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   48. PLAN DIAGNOSIS
   ========================================================================== */

.plan-diagnosis {
  padding-bottom: 4rem;
  background: #FACC15;
}

@media (min-width: 768px) {
  .plan-diagnosis {
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .plan-diagnosis {
    padding-bottom: 6rem;
  }
}

.diagnosis-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 50px;
  border-bottom-right-radius: 0;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.25);
  padding: 40px 1.5rem 50px;
  text-align: center;
  overflow: visible;
}

@media (min-width: 768px) {
  .diagnosis-card {
    padding: 40px 3rem 50px;
  }
}

/* ==========================================================================
   49. SELECT SECTION
   ========================================================================== */

.select-section {
  background: #FFFFFF;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .select-section {
    padding: 4rem 0;
  }
}

/* ==========================================================================
   50. FEATURES PAGE
   ========================================================================== */

.feature-section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .feature-section-heading {
    margin-bottom: 4rem;
  }
}

.feature-section-heading .number-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) {
  .feature-section-heading .number-circle {
    width: 90px;
    height: 90px;
  }
}

.feature-section-heading .number-circle span {
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 32px;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .feature-section-heading .number-circle span {
    font-size: 40px;
  }
}

.feature-section-heading h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: #FFFFFF;
}

@media (min-width: 768px) {
  .feature-section-heading h2 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .feature-section-heading h2 {
    font-size: 48px;
  }
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .feature-card {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
    gap: 3rem;
  }
}

.feature-card.reverse {
  direction: rtl;
}

.feature-card.reverse > * {
  direction: ltr;
}

.feature-card .feature-image {
  border-radius: 16px;
  overflow: hidden;
}

.feature-card .feature-image img {
  width: 100%;
  height: auto;
}

.feature-card .feature-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .feature-card .feature-text h3 {
    font-size: 28px;
  }
}

.feature-card .feature-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.8;
}

/* ==========================================================================
   51. TRIAL PAGE
   ========================================================================== */

.trial-hero {
  background: #22C55E;
  padding-top: 7rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .trial-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
}

/* ==========================================================================
   52. TESTIMONIALS
   ========================================================================== */

.testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.testimonial-card .stars {
  color: #FACC15;
  margin-bottom: 0.75rem;
}

.testimonial-card .quote {
  color: #666666;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-size: 13px;
  color: #999999;
}

/* ==========================================================================
   53. GOOGLE MAP EMBED
   ========================================================================== */

.google-map-embed {
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.google-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

/* ==========================================================================
   54. WORDPRESS-SPECIFIC: MEDIA CAPTIONS
   ========================================================================== */

.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5rem;
}

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

.wp-caption-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* ==========================================================================
   55. WORDPRESS-SPECIFIC: ADMIN BAR ADJUSTMENT
   ========================================================================== */

@media screen and (min-width: 783px) {
  body.admin-bar .site-header {
    top: 32px;
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* ==========================================================================
   56. PRINT STYLES
   ========================================================================== */

@media print {
  .site-header,
  .site-footer,
  .mobile-menu,
  .mobile-backdrop,
  .line-floating-btn,
  .header-cta,
  .mobile-menu-btn {
    display: none !important;
  }

  body {
    color: #000000;
    background: #FFFFFF;
    font-size: 12pt;
    line-height: 1.5;
  }

  a {
    color: #000000;
  }

  .container-custom {
    max-width: 100%;
    padding: 0;
  }
}

/* ==========================================================================
   KIZUNA FORM (Contact Form 7)
   ========================================================================== */
.kizuna-form {
  max-width: 600px;
  margin: 0 auto;
}
.kizuna-form-group {
  margin-bottom: 1.8rem !important;
}
.kizuna-form-group p,
.kizuna-form-group .wpcf7-form-control-wrap {
  margin: 0 !important;
  padding: 0 !important;
}
.kizuna-form-group br,
.kizuna-form-row br,
.kizuna-form-date-row br {
  display: none !important;
}
.kizuna-form-row {
  margin-bottom: 1.8rem !important;
}
.kizuna-form-label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #333;
  margin-bottom: 0.5rem;
}
.kizuna-required {
  display: inline-block;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}
.kizuna-form-input,
.kizuna-form input[type="text"],
.kizuna-form input[type="email"],
.kizuna-form input[type="tel"],
.kizuna-form input[type="number"],
.kizuna-form input[type="date"] {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  color: #333 !important;
  background: #fff !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s;
}
.kizuna-form input:focus {
  border-color: #A4BF00 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(164,191,0,0.15) !important;
}
.kizuna-form-select,
.kizuna-form select {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  color: #333 !important;
  background: #fff !important;
  box-sizing: border-box !important;
  appearance: auto;
}
.kizuna-form-row {
  display: flex;
  gap: 1rem;
}
.kizuna-form-half {
  flex: 1;
}
.kizuna-form-radio {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 12px 0;
}
.kizuna-form-radio .wpcf7-list-item {
  margin: 0 !important;
}
.kizuna-form-radio label {
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
.kizuna-form-date-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.kizuna-form-date-row input[type="date"] {
  flex: 1;
}
.kizuna-form-date-row select {
  flex: 1;
}
.kizuna-form-agree {
  margin: 2rem 0 1.5rem;
  font-size: 14px;
  color: #666;
  text-align: center;
}
.kizuna-form-agree a {
  color: #A4BF00;
  text-decoration: underline;
}
.kizuna-form-submit {
  text-align: center;
}
.kizuna-form-btn,
.kizuna-form input[type="submit"] {
  display: inline-block;
  width: 100%;
  max-width: 400px;
  padding: 16px 32px !important;
  background: #A4BF00 !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(164,191,0,0.3);
}
.kizuna-form input[type="submit"]:hover {
  background: #8FA600 !important;
  transform: translateY(-2px);
}
@media (max-width: 640px) {
  .kizuna-form-row {
    flex-direction: column;
    gap: 0;
  }
  .kizuna-form-date-row {
    flex-direction: column;
  }
}
