@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.8;
  color: #333;
  padding-top: 70px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00a8cc;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: #00a8cc;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #00a8cc;
}


@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-toggle {
    display: block;
  }
}
 .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transform: scale(1.15);
            transition: opacity 2s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
            animation: zoomEffect 8s ease-out forwards;
        }

        @keyframes zoomEffect {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.15);
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            width: 90%;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            line-height: 1.3;
        }

        .hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            font-weight: 300;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
            line-height: 1.6;
        }
        .hero-button {
            display: inline-block;
            background: white;
            color: #00a8cc;
            padding: 20px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .hero-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 17px;
            letter-spacing: 0.1em;
        }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 20px;
}

.intro {
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.intro-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00a8cc;
}

.intro-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.floating-image {
  position: absolute;
  background: #ddd;
  z-index: 1;
}

.floating-image-1 {
  width: 370px;
  height: 200px;
  top: 50px;
  left: 50px;
  background-image: url("https://event21.co.jp/pic/eigyou_img001.jpg");
  background-size: cover;
}

.floating-image-2 {
  width: 250px;
  height: 180px;
  top: 300px;
  left: 100px;
  background-image: url("https://event21.co.jp/pic/tabata_int002.jpg");
  background-size: cover;
}

.floating-image-3 {
  width: 250px;
  height: 150px;
  top: 57px;
  right: 12%;
    background-image: url("https://event21.co.jp/pic/blogphoto_zitan.jpg");
  background-size: cover;
}

.floating-image-4 {
  width: 400px;
  height: 250px;
  bottom: 80px;
  right: 8%;
  background-image: url("https://event21.co.jp/pic/syanai_20251015_tm.jpg");
  background-size: cover;
}

.features {
  background: white;
}

.features h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #00a8cc;
}

.features-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.feature-card {
  text-align: center;
}

.feature-number {
  font-size: 3rem;
  font-weight: bold;
  color: #00a8cc;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.feature-desc {
  color: #666;
  line-height: 1.8;
}

.work-photos {
  padding: 0 20px;
  background: white;
}

.work-photos h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 60px;
  color: #00a8cc;
}

.work-photos-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.work-photo-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.work-photo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.work-photo-item:nth-child(1) {
  width: 420px;
  height: 300px;
  margin-left: -60px;
  margin-top: 0px;
}

.work-photo-item:nth-child(1) >.work-photo-image{
background-image: url("https://event21.co.jp/pic/syanai_20251010_tm.jpg");
background-size: cover;
}

.work-photo-item:nth-child(2) {
  width: 300px;
  height: 220px;
  margin-top: 20px;
  margin-right: 50px;
}

.work-photo-item:nth-child(2) >.work-photo-image{
background-image: url("https://event21.co.jp/pic/kawai_int003.jpg");
background-size: cover;
}

.work-photo-item:nth-child(3) {
  width: 380px;
  height: 260px;
  margin-top: -50px;
  margin-left: 60px;
}

.work-photo-item:nth-child(3) >.work-photo-image{
background-image: url("https://event21.co.jp/pic/sales_jobb01.jpg");
background-size: cover;
}

.work-photo-item:nth-child(4) {
  width: 270px;
  height: 190px;
  margin-top: 80px;
  margin-right: -50px;
}

.work-photo-item:nth-child(4) >.work-photo-image{
background-image: url("https://event21.co.jp/pic/sales_jobb02.jpeg");
background-size: cover;
}

.work-photo-item:nth-child(5) {
  width: 340px;
  height: 240px;
  margin-top: -60px;
  margin-left: 80px;
}

.work-photo-item:nth-child(5) >.work-photo-image{
background-image: url("https://event21.co.jp/pic/sales_jobb03.jpg");
background-size: cover;
}

.work-photo-item:nth-child(6) {
  width: 250px;
  height: 170px;
  margin-top: 40px;
  margin-right: 40px;
}

.work-photo-item:nth-child(6) >.work-photo-image{
background-image: url("https://event21.co.jp/pic/sales_jobb04.jpg");
background-size: cover;
}

.work-photo-item:nth-child(7) {
  width: 300px;
  height: 210px;
  margin-top: -70px;
  margin-left: -40px;
}

.work-photo-item:nth-child(7) >.work-photo-image{
background-image: url("https://event21.co.jp/pic/sales_jobb05.jpeg");
background-size: cover;
}

.work-photo-item:nth-child(8) {
  width: 360px;
  height: 250px;
  margin-top: 30px;
  margin-right: 70px;
}

.work-photo-item:nth-child(8) >.work-photo-image{
background-image: url("https://event21.co.jp/pic/sales_jobb06.jpeg");
background-size: cover;
}

.work-photo-image {
  width: 100%;
  height: 100%;
  border: 3px solid white;
}

.benefits {
  background: #f8f9fa;
  overflow: hidden;
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00a8cc;
  text-align: center;
}

.benefits-subtitle {
  margin-bottom: 20px;
  color: #666;
  text-align: center;
}

.benefits-scroll-container {
  display: flex;
  gap: 30px;
  animation: scroll 40s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
}

.benefits-scroll-wrapper {
  display: flex;
  gap: 30px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.benefit-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  min-width: 350px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card:nth-child(1) >.benefit-image{
background-image: url("https://event21.co.jp/pic/treatment_family.jpg");
background-size: cover;
}

.benefit-card:nth-child(2) >.benefit-image{
background-image: url("https://event21.co.jp/pic/benefit-imageb02.jpg");
background-size: cover;
background-position: 50% 75%;
}

.benefit-card:nth-child(3) >.benefit-image{
background-image: url("https://event21.co.jp/pic/benefit-imageb03.jpg");
background-size: cover;
}

.benefit-card:nth-child(4) >.benefit-image{
background-image: url("https://event21.co.jp/pic/benefit-imageb04.jpeg");
background-size: cover;
background-position: 50% 75%;
}

.benefit-card:nth-child(5) >.benefit-image{
background-image: url("https://event21.co.jp/pic/benefit-imageb05.jpeg");
background-size: cover;
}

.benefit-card:nth-child(6) >.benefit-image{
background-image: url("https://event21.co.jp/recruit/wp-content/uploads/2025/05/PXL_20250427_011133665-768x432.jpg");
background-size: cover;
}

.benefit-card:nth-child(7) >.benefit-image{
background-image: url("https://event21.co.jp/pic/benefit-imageb07.jpg");
background-size: cover;
}

.benefit-card:nth-child(8) >.benefit-image{
background-image: url("https://event21.co.jp/pic/benefit-imageb08.jpg");
background-size: cover;
background-position: 50% 75%;
}

.benefit-image {
  width: 100%;
  height: 350px;
  background: #ddd;
  border-radius: 8px;
}

.benefit-title {
  font-weight: bold;
  margin-bottom: 7px;
  font-size: 1.1rem;
}

.benefit-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.testimonials {
  background: white;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00a8cc;
}

.testimonials-subtitle {
  margin-bottom: 60px;
  color: #666;
}

.job-info {
  background: #f8f9fa;
  position: relative;
}

.job-info-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  background: #ddd;
  border-radius: 50%;
  opacity: 0.3;
}

.job-info-decoration-1 {
  top: 50px;
  left: 50px;
}

.job-info-decoration-2 {
  bottom: 50px;
  right: 50px;
}

.job-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00a8cc;
  text-align: center;
}

.job-info-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}

.job-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

        .entry-info {
            background: white;
            padding: 80px 20px;
        }

        .entry-info h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 20px;
            color: #00a8cc;
        }

        .entry-greeting {
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 40px;
            background: #f8f9fa;
            border-radius: 8px;
            line-height: 1.8;
        }

        .entry-greeting p {
            margin-bottom: 15px;
            color: #333;
        }

        .entry-options {
            max-width: 1000px;
            margin: 0 auto;
        }

        .entry-option {
            background: #f8f9fa;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            border-left: 5px solid #00a8cc;
        }

        .entry-option-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #00a8cc;
            margin-bottom: 20px;
        }

        .entry-option-detail {
            margin-bottom: 10px;
            color: #333;
        }

        .entry-option-detail strong {
            color: #00a8cc;
            margin-right: 10px;
        }

        .entry-link {
            display: inline-block;
            color: #00a8cc;
            text-decoration: underline;
            margin-top: 10px;
        }

        .entry-link:hover {
            color: #0891b2;
        }



@media (max-width: 768px) {
  .job-info-grid {
    grid-template-columns: 1fr;
  }
}
.job-info-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.job-info-card::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #00a8cc 100%);
  border-radius: 8px;
  opacity: 0.1;
  z-index: -1;
}

.job-info-card h3 {
  font-size: 1.3rem;
  color: #00a8cc;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #00a8cc;
}

.job-info-item {
  display: flex;
  margin-bottom: 15px;
  line-height: 1.8;
}

.job-info-label {
  font-weight: bold;
  min-width: 120px;
  color: #333;
}

.job-info-value {
  color: #666;
  flex: 1;
}

.daily-schedule {
  background: white;
}

.daily-schedule h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00a8cc;
  text-align: center;
}

.daily-schedule-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}

.schedule-container {
  max-width: 800px;
  margin: 0 auto;
}

.schedule-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
  position: relative;
}

.schedule-item::before {
  content: "";
  position: absolute;
  left: 42px;
  top: 60px;
  bottom: -40px;
  width: 3px;
  background: #00a8cc;
  opacity: 0.3;
}

.schedule-item:last-child::before {
  display: none;
}

.schedule-item::after {
  content: "▼";
  position: absolute;
  left: 36px;
  bottom: -50px;
  color: #00a8cc;
  font-size: 1rem;
  opacity: 0.5;
}

.schedule-item:last-child::after {
  display: none;
}

.schedule-time {
  font-size: 1.1rem;
  font-weight: bold;
  color: #00a8cc;
  min-width: 85px;
  background: white;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 168, 204, 0.2);
  border: 3px solid #00a8cc;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.schedule-content {
  flex: 1;
}

.schedule-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.schedule-desc {
  color: #666;
  line-height: 1.8;
}

.faq {
  background: #f8f9fa;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00a8cc;
  text-align: center;
}

.faq-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question::before {
  content: "Q";
  background: #00a8cc;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.faq-answer {
  color: #666;
  line-height: 1.8;
  padding-left: 40px;
}

.faq-answer::before {
  content: "A";
  color: #00a8cc;
  font-weight: bold;
  margin-right: 10px;
}

.testimonial-card {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}

.testimonial-image {
  flex: 0 0 300px;
  height: 250px;
  border-radius: 8px;
}

.testimonial-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.testimonial-content {
  flex: 1;
  min-width: 300px;
}

.testimonial-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonial-info {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: #888;
  font-size: 0.95rem;
}

.testimonial-info-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-text {
  color: #666;
  margin-bottom: 10px;
  line-height: 1.8;
}

.testimonial-episode {
  margin-top: 30px;
}

.episode-title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.episode-text {
  color: #666;
  line-height: 1.8;
}

.cta {
  background: #00a8cc;
  color: white;
  padding: 80px 20px;
}

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

.cta h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #00a8cc;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
.nav-logo img{
  width: 150px;
}

  .hero h1 {
    font-size: 2rem;
  }
  .intro-content {
    flex-direction: column;
  }
  .testimonial-card {
    flex-direction: column;
  }
  .testimonial-image {
    flex: 1 1 auto;
    width: 100%;
  }
  .floating-image {
    display: none;
  }

  .image-bar {
    display: none;
  }
  .floating-section-image {
    display: none;
  }
  .work-photos-grid {
    flex-direction: column;
    align-items: center;
  }
  .work-photo-item:nth-child(n) {
    transform: none !important;
    margin: 10px 0 !important;
    width: 90% !important;
    max-width: 350px !important;
    height: 200px !important;
  }


   .entry-info {
            background: white;
            padding: 80px 20px;
        }

        .entry-info h2 {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 20px;
            color: #00a8cc;
        }

        .entry-greeting {
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 40px;
            background: #f8f9fa;
            border-radius: 8px;
            line-height: 1.8;
        }

        .entry-greeting p {
            margin-bottom: 15px;
            color: #333;
        }

        .entry-options {
            max-width: 1000px;
            margin: 0 auto;
        }

        .entry-option {
            background: #f8f9fa;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            border-left: 5px solid #00a8cc;
        }

        .entry-option-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #00a8cc;
            margin-bottom: 20px;
        }

        .entry-option-detail {
            margin-bottom: 10px;
            color: #333;
        }

        .entry-option-detail strong {
            color: #00a8cc;
            margin-right: 10px;
        }

        .entry-link {
            display: inline-block;
            color: #00a8cc;
            text-decoration: underline;
            margin-top: 10px;
        }

        .entry-link:hover {
            color: #0891b2;
        }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .work-photo-item:nth-child(1) {
    margin-top: 0px !important;
    margin-left: 0px !important;
  }
  .work-photo-item:nth-child(2) {
    margin-top: 30px !important;
    margin-right: 20px !important;
  }
  .work-photo-item:nth-child(3) {
    margin-top: 20px !important;
    margin-left: 20px !important;
  }
  .work-photo-item:nth-child(4) {
    margin-top: 40px !important;
    margin-right: 0px !important;
  }
  .work-photo-item:nth-child(5) {
    margin-top: 20px !important;
    margin-left: 20px !important;
  }
  .work-photo-item:nth-child(6) {
    margin-top: 30px !important;
    margin-right: 10px !important;
  }
  .work-photo-item:nth-child(7) {
    margin-top: 20px !important;
    margin-left: 0px !important;
  }
  .work-photo-item:nth-child(8) {
    margin-top: 30px !important;
    margin-right: 20px !important;
  }
}
.features {
  background: white;
}

.features h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #00a8cc;
}

.features-subtitle {
  text-align: center;
  margin-bottom: 60px;
  color: #666;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.feature-card {
  text-align: center;
}

.feature-number {
  font-size: 3rem;
  font-weight: bold;
  color: #667eea;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: bold;
}

.feature-desc {
  color: #666;
  line-height: 1.8;
}

.benefits {
  background: #f8f9fa;
}

.benefits h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00a8cc;
}

.benefits-subtitle {
  margin-bottom: 60px;
  color: #666;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #f8f9fa;
  padding: 30px 20px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-image {
  width: 100%;
  height: 150px;
  background: #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
}

.benefit-title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.benefit-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.testimonials {
  background: white;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00a8cc;
}

.testimonials-subtitle {
  margin-bottom: 60px;
  color: #666;
}

.testimonial-card {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.testimonial-image {
  flex: 0 0 300px;
  height: 250px;
  background: #ddd;
  border-radius: 8px;
}

.testimonial-card:nth-child(1) >.testimonial-image{
background-image: url("https://event21.co.jp/pic/benefit-imageb08.jpg");
background-size: cover;
}

.testimonial-content {
  flex: 1;
  min-width: 300px;
}

.testimonial-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.testimonial-text {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.testimonial-episode {
  margin-top: 30px;
}

.episode-title {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.episode-text {
  color: #666;
  line-height: 1.8;
}

.cta {
  background: linear-gradient(135deg, #667eea 0%, #00a8cc 100%);
  color: white;
  padding: 80px 20px;
}

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

.cta h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #00a8cc;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .intro-content {
    flex-direction: column;
  }
  .testimonial-card {
    flex-direction: column;
  }
  .testimonial-image {
    flex: 1 1 auto;
    width: 100%;
  }
}/*# sourceMappingURL=sales_job.css.map */