/* リセットCSS */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  /* overflow-x: hidden; */
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/* 基本設定 */
body {
  color: #333;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

/* Color Palette based on the document */
:root {
  --primary-purple: #6501ee;
  --secondary-purple: #4e1ebd;
  --accent-pink: #ff0789;
  --linear-gradation: linear-gradient(90deg, #ff0789 0%, #6501ee 25%, #8802d7 100%);
  --accent-orange: #f97316;
  --dark-gray: #746c85;
  --medium-gray: ;
  --light-gray: #fbfbf7;
  --white: #ffffff;
}

.hidden-pc {
  display: none;
}

.show-mini {
  display: none;
}

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

/* ヘッダー */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  /* padding: 15px 0; */
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);

  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1200px; */
  padding: 8px 0;
}

.logo {
  margin: 0;
  background-image: radial-gradient(circle, rgba(255, 7, 137, 1) 0%, rgba(101, 1, 238, 1) 80%);
  -webkit-background-clip: text;
  font-size: 1.5rem;

  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.header-inquiry {
  display: flex;
  align-items: center;

  gap: 30px;
}

.header-tel {
  position: relative;
  padding-left: 32px;
  text-decoration: none;
  letter-spacing: -0.04em;
  color: var(--primary-purple);
  font-size: 25px;
  font-weight: 700;
}

.header-tel::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  content: "";
  transform: translateY(-50%);
  background: url(./img/tel-icon.png) no-repeat center center / contain;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;

  gap: 10px;
}

.cta-button .cta-icon {
  fill: #fff;
}

.cta-button:hover .cta-icon {
  fill: var(--accent-orange);
}

.cta-icon {
  width: 24px;
  height: 24px;
}

.btn-style6 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  border: 2px solid var(--accent-orange);
  background-color: var(--accent-orange);
  font-weight: 600;
}

.btn-style6::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  transition: width 0.3s ease;
  background-color: var(--white);
}

.btn-style6:hover {
  color: var(--accent-orange);
}

.btn-style6:hover::before {
  width: 100%;
}

.size-medium {
  padding: 0.75em 1.5em;
  font-size: 1rem;
}

.width-auto {
  width: auto;
}

.radius-medium {
  border-radius: 8px;
}

/* メインビジュアル */
.fv {
  position: relative;
  margin-top: 70px;
  height: 798px;
  overflow: hidden;
}

.fv::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(43, 0, 102, 0.3);
  mix-blend-mode: multiply;
  z-index: 1;
}

.fv__bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  z-index: 0;
  max-width: 1280px;
  left: 50%;
  transform: translateX(-50%);
  /* opacity: 0; */
  transition: opacity 1.5s ease-in-out;
}

.fv__bg.loaded {
  opacity: 1 !important;
}
.fv__bg.hidden {
  opacity: 0 !important;
}

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

.fv__inner {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.hero-text-wrapper {
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.hero-text-wrapper.hidden {
  opacity: 0 !important;
}

.hero-text-wrapper.loaded {
  opacity: 1 !important;
}

.hero-content {
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.hero-title {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.16), -2px 2px 10px rgba(0, 0, 0, 0.16), 2px -2px 10px rgba(0, 0, 0, 0.16), -2px -2px 10px rgba(0, 0, 0, 0.16);
}

.hero-subtitle {
  margin-bottom: 120px;
  opacity: 0.9;
  font-size: 20px;
  line-height: 1.6;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.16), -2px 2px 10px rgba(0, 0, 0, 0.16), 2px -2px 10px rgba(0, 0, 0, 0.16), -2px -2px 10px rgba(0, 0, 0, 0.16);
}

/* セクション共通 */
.section-title {
  margin-bottom: 120px;
  text-align: center;
  color: var(--primary-purple);
  font-size: 36px;
  font-weight: 700;
  position: relative;
  z-index: 5;
}

/* 価値訴求セクション */
.value-proposition {
  padding: 180px 0;
  background: var(--light-gray);
}

.value-proposition .section-title::after {
  position: absolute;
  content: "BENEFITS";
  font-size: 180px;
  font-weight: 800;
  color: var(--white);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.benefits-grid {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 60px;

  gap: 30px;
}

.benefit-card {
  padding: 20px 30px 40px;
  transition: transform 0.3s ease;
  text-align: center;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0px 2px 20px 0px #e5ddf5;
  position: relative;
  flex: 1;
}

.benefit-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.benefit-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding-top: 2.1rem;
  padding-bottom: 10px;
}

.benefit-title {
  margin-bottom: 20px;
  color: var(--primary-purple);
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  min-height: calc(1.8rem * 2 * 1.1);
}

.benefit-description {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1.75;
  flex-grow: 1;
}

.differentiation {
  padding: 40px;
  text-align: center;
  border-radius: 130px;
  background: linear-gradient(90deg, #ff0789 0%, #8802d7 40%, #6501ee 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.differentiation-title {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.9rem;
  font-weight: 800;
}

.differentiation-person {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin: 20px auto;
  gap: 80px;
}

.person-item {
  flex-shrink: 0;
  position: relative;
}

.person-item:not(:last-child)::after {
  content: "";
  width: 40px;
  height: 40px;
  position: absolute;
  right: calc(-80px / 2);
  top: 50%;
  transform: translate(50%, -50%);
  background: url(./img/red-cross.png) no-repeat center center / contain;
}

.person-item img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.differentiation-text {
  color: var(--light-gray);
  font-size: 18px;
  line-height: 1.75;
}

.differentiation a {
  text-decoration: underline;
}

/* サービス詳細セクション */
.service-details {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.service-details .section-title::after {
  position: absolute;
  content: "DETAILS";
  font-size: 180px;
  font-weight: 800;
  color: var(--light-gray);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.service-grid {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 60px;

  gap: 30px;
}

.service-card {
  padding: 40px 30px;
  border-radius: 15px;
  flex: 1;
}

.service-card:nth-child(1) {
  background: var(--primary-purple);
}
.service-card:nth-child(2) {
  background: #8c00dd;
}
.service-card:nth-child(3) {
  background: #a400cd;
}

.service-title {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.service-title img {
  width: 26px;
}

.service-title h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.price {
  margin-bottom: 20px;
}

.price .currency {
  color: var(--white);
  font-size: 1.5em;
  font-weight: 800;
}

.price-amount {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
}

.price-period {
  color: var(--white);
  font-size: 16px;
}

.service-description {
  color: var(--white);
  line-height: 1.6;
}

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

.service-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: var(--white);
}

.service-list li:before {
  position: absolute;
  left: 0;
  top: 26%;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(./img/check-icon.png) no-repeat center center / contain;
}

.events-section {
  padding: 40px 0;
  text-align: center;
  border-radius: 15px;
  background: var(--white);
  /* box-shadow: 0px 2px 20px 0px #e5ddf5; */
}

.events-title {
  margin-bottom: 30px;
  color: var(--primary-purple);
  font-size: 1.5rem;
  font-weight: 600;
}

.events-items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 160px);

  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.events-item {
  border-radius: 15px;
  background-color: var(--primary-purple);
  width: 160px;
  box-shadow: 0px 2px 20px 0px #e5ddf5;
  display: flex;
  flex-direction: column;
}

.events-item__img {
  height: 120px;
}

.events-item__img img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  object-fit: cover;
}

.events-item__title {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-item__title p {
  color: var(--white);
  position: relative;
  padding-left: 25px;
  margin: 0;
  display: flex;
  align-items: center;
}

.events-item__title p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.events-item:nth-child(1) .events-item__title p::before {
  background-image: url(./img/wine.png);
}
.events-item:nth-child(2) .events-item__title p::before {
  background-image: url(./img/gun.png);
}
.events-item:nth-child(3) .events-item__title p::before {
  background-image: url(./img/touring.png);
}
.events-item:nth-child(4) .events-item__title p::before {
  background-image: url(./img/camp.png);
}
.events-item:nth-child(5) .events-item__title p::before {
  background-image: url(./img/beer.png);
}
.events-item:nth-child(6) .events-item__title p::before {
  background-image: url(./img/poker.png);
}
.events-item:nth-child(7) .events-item__title p::before {
  background-image: url(./img/climbing.png);
}
.events-item:nth-child(8) .events-item__title p::before {
  background-image: url(./img/golf.png);
}

.events-frequency {
  color: var(--dark-gray);
  font-size: 16px;
  margin-top: 30px;
}

/* 参加フローセクション */
.participation-flow {
  position: relative;
  padding: 100px 0;
  color: var(--primary-purple);
  background: var(--light-gray);
}

.participation-flow .section-title::after {
  position: absolute;
  content: "FLOW";
  font-size: 180px;
  font-weight: 800;
  color: var(--white);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.flow-steps {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 60px;

  gap: 42px;
}

.flow-step {
  position: relative;
  flex: 1;
  min-width: 120px;
  max-width: 250px;
  padding: 10px 0;
  text-align: center;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 6.5em;
  right: calc(-42px / 2);
  width: 34px;
  height: 34px;
  background: url(./img/step-arrow.svg) no-repeat center center / contain;
  transform: translateX(20px);
  z-index: 6;
}

.step-number {
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0px 2px 20px 0px #e5ddf5;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding-top: 2.1rem;
  padding-bottom: 10px;
}

.step-title {
  margin-bottom: 15px;
  font-weight: 800;
  margin-top: 0;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  min-height: calc(1.2rem * 2 * 1.5 + 5px);
}

.step-description {
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.75;
  flex-grow: 1;
  text-align: center;
}

.flow-arrow {
  opacity: 0.7;
  color: var(--white);
  font-size: 24px;
}

.flow-cta {
  text-align: center;
}

/* FAQセクション */
.faq {
  position: relative;
  padding: 100px 0;
  background: var(--white);
}

.faq .section-title::after {
  position: absolute;
  content: "FAQ";
  font-size: 180px;
  font-weight: 800;
  color: var(--light-gray);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-list .faq-item:first-child.active .faq-answer {
  max-height: 500px;
}

.faq-list .faq-item:first-child.active .faq-question i {
  transform: rotate(180deg);
}

.faq-question {
  padding: 20px 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  color: var(--white);
  background: var(--primary-purple);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-bottom: 1px solid #eee;
}

.faq-question:hover {
  background: var(--secondary-purple);
}

.faq-question h3 {
  margin-block: 8px;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--white);
}

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

.faq-answer {
  color: var(--dark-gray);
  line-height: 1.6;
  overflow: hidden;
  max-height: 0;
  padding: 0 25px;
  transition: max-height 0.4s ease-out;
  background-color: var(--white);
}

.faq-answer p {
  padding: 20px 0;
  margin: 0;
}

/* 運営情報セクション */
.about {
  position: relative;
  padding: 100px 0;
  background: var(--light-gray);
}

.about .section-title::after {
  position: absolute;
  content: "ABOUT";
  font-size: 180px;
  font-weight: 800;
  color: var(--white);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.profile-card {
  padding: 0 20px 40px;
  text-align: center;
  border-radius: 15px;
  background: var(--light-gray);
}

.profile-card img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
}

.profile-title {
  margin-bottom: 20px;
  color: var(--primary-purple);
  font-size: 1.8rem;
  font-weight: 700;
}

.profile-name {
  margin-block: 20px;
  color: var(--dark-gray);
  font-size: 1.65rem;
  font-weight: 600;
}

.profile-description {
  color: var(--dark-gray);
  font-size: 1.1rem;
  line-height: 1.75;
}

/* 最終CTAセクション */
.final-cta {
  padding: 100px 0;
  text-align: center;
  color: var(--white);
  background: linear-gradient(90deg, #ff0787cf 0%, #8902d7d5 40%, #6401eec1 100%), url(./img/final-cta.webp) no-repeat center center / cover;
}

.final-cta-title {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.16), -2px 2px 10px rgba(0, 0, 0, 0.16), 2px -2px 10px rgba(0, 0, 0, 0.16), -2px -2px 10px rgba(0, 0, 0, 0.16);
}

.final-cta-subtitle {
  margin-bottom: 40px;
  opacity: 0.9;
  font-size: 18px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.16), -2px 2px 10px rgba(0, 0, 0, 0.16), 2px -2px 10px rgba(0, 0, 0, 0.16), -2px -2px 10px rgba(0, 0, 0, 0.16);
}

.final-cta-button {
  padding: 20px 40px;
  font-size: 18px;
}

/* フッター */
.footer {
  padding: 40px 0 20px;
  color: var(--white);
  background: var(--secondary-purple);
  background-image: url(./img/);
}

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

.footer-title {
  margin: 0;
  color: var(--white);
  font-size: 1.5em;
  font-weight: 700;
}

.footer-description {
  margin-bottom: 15px;
  opacity: 0.8;
}

.footer-contact {
  opacity: 0.8;
}

.footer-contact a {
  text-decoration: none;
  color: var(--white);
}

.footer-links a {
  margin-left: 20px;
  transition: color 0.3s ease;
  text-decoration: none;
  color: var(--white);
}

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

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

/* レスポンシブデザイン */
@media (max-width: 869px) {
  .value-proposition .section-title::after,
  .service-details .section-title::after,
  .participation-flow .section-title::after,
  .faq .section-title::after,
  .about .section-title::after {
    font-size: 140px;
  }

  .person-item img {
    width: 160px;
    height: 160px;
  }

  .flow-steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
  }

  .flow-step {
    flex: 0 0 45%;
    min-width: 150px;
    max-width: 300px;
    align-items: center;
  }

  .flow-step:not(:last-child)::before {
    top: 8.5em;
    right: calc(-20px / 2);
    width: 28px;
    height: 28px;
    background: url(./img/step-arrow.svg) no-repeat center center / contain;
    transform: translateX(20px);
    z-index: 6;
  }

  .step-title {
    margin-bottom: 15px;
    font-weight: 800;
    margin-top: 0;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    flex-shrink: 0;
    min-height: calc(1.2rem * 2);
  }
}

@media (max-width: 768px) {
  .hidden-pc {
    display: block;
  }

  .container {
    padding: 0 15px;
  }

  .header-content {
    gap: 15px;
  }

  .logo {
    font-size: 20px;
  }

  .header-tel {
    font-size: 20px;
  }

  .header-cta {
    padding: 10px 20px;
    font-size: 12px;
  }

  .hero-title {
    font-size: 32px;
  }

  .fv__bg img {
    object-position: top center;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    padding: 16px 32px;
    font-size: 16px;
  }

  .section-title {
    margin-bottom: 100px;
    font-size: 28px;
  }

  .value-proposition .section-title::after,
  .service-details .section-title::after,
  .participation-flow .section-title::after,
  .faq .section-title::after,
  .about .section-title::after {
    font-size: 110px;
  }

  .benefits-grid {
    flex-direction: column;
    gap: 30px;
  }

  .benefit-icon {
    width: 300px;
    margin-inline: auto;
  }

  .differentiation-person {
    margin: 20px auto;
    gap: 40px;
  }

  .person-item:not(:last-child)::after {
    width: 20px;
    height: 20px;
    position: absolute;
    right: calc(-40px / 2);
    top: 50%;
    transform: translate(50%, -50%);
    background: url(./img/red-cross.png) no-repeat center center / contain;
  }

  .person-item img {
    width: 110px;
    height: 110px;
  }

  .service-grid {
    flex-direction: column;
    gap: 30px;
  }

  .service-card {
    align-items: center;
  }

  .service-card:nth-child(1) {
    text-align: center;
  }

  .service-content {
    margin-inline: auto;
    max-width: 360px;
    width: 100%;
  }

  .service-title {
    justify-content: center;
  }

  .events-items {
    grid-template-columns: repeat(4, 140px);
  }

  .events-item {
    width: 140px;
  }

  .events-item__img {
    height: 100px;
  }

  .flow-step {
    flex: 0 0 100%;
    min-width: auto;
    max-width: none;
    align-items: center;
    padding: 10px 0;
  }

  .flow-step:not(:last-child)::before {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -34px;
    width: 34px;
    height: 34px;
    background: url(./img/step-arrow.svg) no-repeat center center / contain;
    transform: translateX(-50%) rotate(90deg);
    z-index: 6;
  }

  .step-content {
    max-width: none;
  }

  .step-number {
    width: 300px;
    margin-inline: auto;
  }

  .profile-title {
    font-size: 1.6rem;
  }

  .profile-name {
    font-size: 1.5rem;
  }

  .profile-description {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;

    gap: 20px;
  }

  .final-cta-title {
    font-size: 28px;
  }

  .events-grid {
    gap: 10px;
  }

  .event-tag {
    font-size: 12px;
  }
}

@media (max-width: 660px) {
  .header-tel {
    display: none;
  }

  .hero-content {
    padding-inline: 10px;
  }

  .value-proposition .section-title::after,
  .service-details .section-title::after,
  .participation-flow .section-title::after,
  .faq .section-title::after,
  .about .section-title::after {
    font-size: 80px;
  }

  .events-items {
    grid-template-columns: repeat(2, 140px);
  }

  .events-item {
    width: 140px;
  }

  .events-item__img {
    height: 100px;
  }
}

@media (max-width: 480px) {
  .show-mini {
    display: block;
  }

  .hero {
    min-height: 500px;
  }

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

  .benefit-card,
  .service-card {
    padding: 30px 20px;
  }

  .differentiation {
    border-radius: 60px;
    padding: 40px 10px;
  }

  .differentiation-person {
    gap: 30px;
  }

  .person-item:not(:last-child)::after {
    width: 15px;
    height: 15px;
    position: absolute;
    right: calc(-30px / 2);
    top: 50%;
    transform: translate(50%, -50%);
    background: url(./img/red-cross.png) no-repeat center center / contain;
  }

  .person-item img {
    width: 100px;
    height: 100px;
  }

  .flow-step {
    min-width: 200px;
    padding: 30px 20px;
  }

  .final-cta-title {
    font-size: 24px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .cta-button {
    padding: 12px;
  }
  .value-proposition .section-title::after,
  .service-details .section-title::after,
  .participation-flow .section-title::after,
  .faq .section-title::after,
  .about .section-title::after {
    font-size: 67px;
  }

  .person-item img {
    width: 70px;
    height: 70px;
  }

  .events-items {
    grid-template-columns: repeat(2, 140px);
  }

  .events-item {
    width: 130px;
  }

  .events-item__img {
    height: 80px;
  }

  .benefit-icon {
    width: 200px;
  }

  .step-number {
    width: 200px;
  }
}
