@charset "UTF-8";
/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

/* ========================================
   Brand Colors & Variables
   ======================================== */
:root {
  --primary-color: #0068B7;
  --secondary-color: #09728D;
  --gradient-primary: linear-gradient(135deg, #0068B7 0%, #09728D 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 104, 183, 0.95) 0%, rgba(9, 114, 141, 0.95) 100%);
  --text-dark: #1a1a1a;
  --text-light: #666;
  --border-color: #e5e5e5;
  --bg-light: #f8f9fa;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s ease;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline;
  }
  .section {
    padding: 60px 0;
  }
}
/* ========================================
   Header & Navigation
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}
.header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  width: auto;
  height: 50px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}
.nav-link:not(.cta-button-small):after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}
.nav-link:not(.cta-button-small):hover {
  color: var(--primary-color);
}
.nav-link:not(.cta-button-small):hover:after {
  width: 100%;
}

.cta-button-small {
  padding: 10px 24px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50px;
  font-weight: 700;
}

.cta-button-small:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow-md);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  padding: 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 70px;
  overflow: hidden;
  background-image: url(images/01.png);
  background-size: cover;
}

@media (max-width: 768px) {
  .hero {
    background-position: right 35% center;
  }
}
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-message {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0.9;
}

.hero-message .highlight {
  font-size: 24px;
  font-weight: 700;
  margin-top: 16px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1000;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.cta-button.primary {
  background: white;
  color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.cta-button.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.7;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: white;
  animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
  0%, 100% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
}
/* Fade-in animations */
.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
  opacity: 0;
}

.fade-in:nth-child(2) {
  animation-delay: 0.4s;
  opacity: 0;
}

.fade-in:nth-child(3) {
  animation-delay: 0.6s;
  opacity: 0;
}

.fade-in:nth-child(4) {
  animation-delay: 0.8s;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 22px;
  }
  .hero-message {
    font-size: 16px;
  }
  .hero-message .highlight {
    font-size: 18px;
  }
  .cta-button {
    padding: 14px 28px;
    font-size: 16px;
  }
}
/* ========================================
   Section Titles
   ======================================== */
.section-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
  line-height: 1.4;
}

.section-title.light {
  color: white;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
/* ========================================
   Pain Points Section
   ======================================== */
.pain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 60px;
}

.pain-item {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  overflow: hidden;
}
.pain-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}
.pain-item p {
  padding: 16px;
}
.pain-item img {
  width: 100%;
}

.pain-icon {
  font-size: 48px;
  color: #e74c3c;
  margin-bottom: 16px;
}

.pain-item p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
}

.pain-item strong {
  color: var(--primary-color);
}

.pain-conclusion {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 32px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.pain-conclusion strong {
  color: var(--primary-color);
}

/* ========================================
   Problem Analysis Section
   ======================================== */
.problem-card {
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}

.problem-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.comparison-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.comparison-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 12px;
}

.comparison-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.comparison-icon.bad {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.problem-insight {
  text-align: center;
  padding: 24px;
  background: rgba(0, 104, 183, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
}

.insight-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.problem-conclusion {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
}

.problem-conclusion strong {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .problem-card {
    padding: 32px 24px;
  }
  .problem-title {
    font-size: 22px;
  }
  .problem-conclusion {
    font-size: 20px;
  }
}
/* ========================================
   Solution Section
   ======================================== */
.solution {
  background: var(--gradient-hero);
  color: white;
  position: relative;
  overflow: hidden;
}

.solution::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.solution .container {
  position: relative;
  z-index: 1;
}

.solution-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.flow-item {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  min-width: 180px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.flow-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.flow-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-color);
}

.flow-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.flow-item small {
  font-size: 12px;
  opacity: 0.8;
}

.flow-item p {
  font-size: 14px;
  opacity: 0.9;
}

.flow-arrow {
  font-size: 24px;
  opacity: 0.6;
}

.solution-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.point-card {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.point-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.point-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.point-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.point-card p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .flow-arrow {
    display: none;
  }
}
/* ========================================
   Features Section
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.4;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

.feature-list i {
  color: var(--primary-color);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   Target Companies Section
   ======================================== */
.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.target-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.target-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.target-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
}

.target-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.6;
}

.target-note {
  text-align: center;
  padding: 24px;
  background: rgba(231, 76, 60, 0.05);
  border-left: 4px solid #e74c3c;
  border-radius: 8px;
}

.target-note p {
  font-size: 16px;
  color: #e74c3c;
  font-weight: 600;
}

.target-note i {
  margin-right: 8px;
}

/* ========================================
   Process Section
   ======================================== */
.process-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 45px;
  top: 100px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.step-number {
  min-width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: var(--shadow-md);
}

.step-content {
  flex: 1;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.step-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step {
    flex-direction: column;
    gap: 16px;
  }
  .process-step:not(:last-child)::after {
    left: 20px;
    top: 80px;
  }
  .step-content:hover {
    transform: translateY(-4px);
  }
  .step-number {
    width: 90px;
  }
}
/* ========================================
   Contact Section
   ======================================== */
.contact {
  background: var(--gradient-hero);
  color: white;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-subtitle {
  font-size: 18px;
  opacity: 0.9;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-wrapper {
  background: white;
  padding: 48px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrapper p {
  margin-bottom: 0;
}
.contact-form-wrapper .form-group {
  margin-bottom: 16px;
}

.contact-form {
  color: var(--text-dark);
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-label.required::after {
  content: " *";
  color: #e74c3c;
}

.radio-group {
  display: flex;
  gap: 24px;
}

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

.radio-label input[type=radio] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  position: relative;
  transition: var(--transition);
}

.radio-label input[type=radio]:checked + .radio-custom {
  border-color: var(--primary-color);
}

.radio-label input[type=radio]:checked + .radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--gradient-primary);
  border-radius: 50%;
}

.radio-text {
  font-weight: 600;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 104, 183, 0.1);
}

.form-textarea {
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 18px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-message {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
}

.form-message.show {
  display: flex;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-message i {
  font-size: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.info-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
}

.info-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.6;
}

.info-card small {
  font-size: 13px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 32px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo p {
  font-size: 14px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.6;
}

/* ========================================
   Scroll Animations
   ======================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}
/* ラジオ全体を横並び */
.radio-group p {
  width: 100%;
}

.radio-group .wpcf7-radio {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  width: 100%;
}

/* 各ラジオ項目 */
.radio-group .wpcf7-list-item {
  margin: 0;
  color: initial;
  flex: 1 0 0;
}

/* label をボックス化 */
.radio-group .wpcf7-list-item label {
  display: block;
  padding: 16px 8px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  text-align: center;
  transition: all 0.2s ease;
  background: #fff;
}

/* ラジオボタン本体は隠す */
.radio-group input[type=radio] {
  display: none;
}

/* ホバー時 */
.radio-group .wpcf7-list-item label:hover {
  border-color: #888;
  background: #f8f8f8;
}

/* 選択中のスタイル */
.radio-group input[type=radio]:checked + .wpcf7-list-item-label {
  color: #fff;
  font-weight: bold;
}

.radio-group input[type=radio]:checked + .wpcf7-list-item-label::before {
  content: "";
}

/* 選択中の label 全体 */
/* checked 状態で label にスタイルを当てる */
/* 実際に効く selected スタイル */
.radio-group input[type=radio]:checked {
  display: none;
}

.radio-group input[type=radio]:checked + .wpcf7-list-item-label {
  background: #111;
}

.radio-group input[type=radio]:checked + .wpcf7-list-item-label {
  background: #111;
}

/* label 自体を選択状態に */
.radio-group label:has(input[type=radio]:checked) {
  background: #111;
  color: #fff;
  border-color: #111;
}

@media (max-width: 600px) {
  /******************************************************************

  Stylesheet: 600px以上のタブレットやモニタで適用

  ******************************************************************/
}/*# sourceMappingURL=style.css.map */