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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #212529;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

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

.l-footer {
  padding: 64px 0;
  background: #212529;
  color: #ffffff;
  text-align: center;
}

.l-footer__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .l-footer__inner {
    padding: 0 48px;
  }
}

.l-footer__company {
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.l-footer__copyright {
  font-size: 0.75rem;
  color: #adb5bd;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  max-width: 100%;
  width: max-content;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .c-button {
    padding: 20px 32px;
    font-size: 1.125rem;
    gap: 24px;
  }
}

.c-button__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
@media (min-width: 768px) {
  .c-button__arrow {
    width: 40px;
    height: 40px;
  }
}
.c-button__arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #ff6b6b;
  border-right: 2px solid #ff6b6b;
  transform: rotate(45deg) translateX(-2px);
}
@media (min-width: 768px) {
  .c-button__arrow::before {
    width: 12px;
    height: 12px;
  }
}

.c-button--primary {
  background: #ff6b6b;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  padding-right: 16px;
}
@media (min-width: 768px) {
  .c-button--primary {
    padding-right: 20px;
  }
}
.c-button--primary:hover {
  background: #ee5a5a;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
  transform: translateY(-2px);
}
.c-button--primary:hover .c-button__arrow {
  transform: translateX(4px);
}

.c-button--secondary {
  background: #ffffff;
  color: #00b894;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.c-button--secondary .c-button__arrow {
  background: #00b894;
}
.c-button--secondary .c-button__arrow::before {
  border-color: #ffffff;
}
.c-button--secondary:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.c-button--outline {
  background: transparent;
  color: #00b894;
  border: 2px solid #00b894;
}
.c-button--outline .c-button__arrow {
  background: #00b894;
}
.c-button--outline .c-button__arrow::before {
  border-color: #ffffff;
}
.c-button--outline:hover {
  background: #00b894;
  color: #ffffff;
}
.c-button--outline:hover .c-button__arrow {
  background: #ffffff;
}
.c-button--outline:hover .c-button__arrow::before {
  border-color: #00b894;
}

.c-button--light {
  background: #ffffff;
  color: #212529;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.c-button--light .c-button__arrow {
  background: #ff6b6b;
}
.c-button--light .c-button__arrow::before {
  border-color: #ffffff;
}
.c-button--light:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.c-button--large {
  padding: 20px 28px;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .c-button--large {
    padding: 24px 40px;
    font-size: 1.375rem;
  }
}
.c-button--large .c-button__arrow {
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .c-button--large .c-button__arrow {
    width: 48px;
    height: 48px;
  }
}
.c-button--large .c-button__arrow::before {
  width: 12px;
  height: 12px;
}
@media (min-width: 768px) {
  .c-button--large .c-button__arrow::before {
    width: 14px;
    height: 14px;
  }
}

.c-button--full {
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .c-button--full {
    width: auto;
  }
}

.c-section-title {
  text-align: center;
  margin-bottom: 64px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .c-section-title {
    margin-bottom: 80px;
  }
}
.c-section-title:has(+ .c-section-img) {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .c-section-title:has(+ .c-section-img) {
    margin-bottom: 40px;
  }
}

.c-section-title__number {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #00b894;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .c-section-title__number {
    font-size: 1rem;
  }
}

.c-section-title__main {
  font-size: 1.375rem;
  font-weight: 700;
  color: #212529;
}
@media (min-width: 768px) {
  .c-section-title__main {
    font-size: 2.25rem;
  }
}

.c-section-title__main-wrap {
  display: inline;
  background: linear-gradient(transparent 70%, #e8f8f5 70%);
}

.c-section-title__sub {
  display: block;
  margin-top: 16px;
  font-size: 0.875rem;
  color: #6c757d;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .c-section-title__sub {
    font-size: 1rem;
  }
}

.c-section-title--light .c-section-title__number {
  color: rgba(255, 255, 255, 0.7);
}
.c-section-title--light .c-section-title__main {
  color: #ffffff;
}
.c-section-title--light .c-section-title__main-wrap {
  background: linear-gradient(transparent 70%, rgba(255, 255, 255, 0.2) 70%);
}
.c-section-title--light .c-section-title__sub {
  color: rgba(255, 255, 255, 0.8);
}

.c-section-title--left {
  text-align: left;
}

.c-section-img {
  display: block;
  margin-bottom: 64px;
  margin-inline: auto;
  width: min(100%, 900px);
}
@media (min-width: 768px) {
  .c-section-img {
    margin-bottom: 80px;
  }
}

.c-marker {
  background: linear-gradient(to top, #ff6b6b 0%, #ff6b6b 40%, transparent 40%);
  display: inline-block;
}

.p-lp-fv {
  padding: 64px 0 80px;
  background: linear-gradient(135deg, #00b894 0%, #00a383 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-lp-fv {
    padding: 80px 0 120px;
  }
}

.p-lp-fv__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-lp-fv__inner {
    padding: 0 48px;
  }
}
.p-lp-fv__inner {
  align-items: center;
  display: grid;
  gap: 24px;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-lp-fv__inner {
    gap: 64px;
    grid-template-columns: 1fr max(480px, 4%);
    text-align: left;
  }
}

.p-lp-fv__content {
  flex: 1;
  max-width: 700px;
}
@media (min-width: 768px) {
  .p-lp-fv__content {
    max-width: 600px;
  }
}

.p-lp-fv__label {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) {
  .p-lp-fv__label {
    font-size: 0.875rem;
    padding: 8px 24px;
  }
}

.p-lp-fv__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .p-lp-fv__title {
    font-size: 2.75rem;
    margin-bottom: 24px;
  }
}

.p-lp-fv__title-line {
  display: block;
}

.p-lp-fv__title-highlight {
  position: relative;
}
.p-lp-fv__title-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  z-index: -1;
}
@media (min-width: 768px) {
  .p-lp-fv__title-highlight::after {
    height: 12px;
  }
}

.p-lp-fv__subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-lp-fv__subtitle {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
}

.p-lp-fv__lead {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-lp-fv__lead {
    font-size: 1rem;
    margin-bottom: 64px;
  }
}
.p-lp-fv__lead strong {
  color: #ffffff;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .p-lp-fv__visual {
    display: block;
    max-width: 480px;
  }
}

.p-lp-fv__visual-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.p-lp-fv::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.p-lp-problem {
  padding: 64px 0;
  background: #f8f9fa;
}
@media (min-width: 768px) {
  .p-lp-problem {
    padding: 100px 0;
  }
}

.p-lp-problem__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-lp-problem__inner {
    padding: 0 48px;
  }
}

.p-lp-problem__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 64px;
}
@media (min-width: 768px) {
  .p-lp-problem__list {
    gap: 24px;
  }
}

.p-lp-problem__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .p-lp-problem__item {
    padding: 40px;
  }
}

.p-lp-problem__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #00b894;
  border-radius: 4px;
  position: relative;
}
.p-lp-problem__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 6px;
  border-left: 2px solid #00b894;
  border-bottom: 2px solid #00b894;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.p-lp-problem__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #212529;
}
@media (min-width: 768px) {
  .p-lp-problem__text {
    font-size: 1rem;
  }
}

.p-lp-problem__message {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px;
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid #00b894;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}
@media (min-width: 768px) {
  .p-lp-problem__message {
    font-size: 1.125rem;
    padding: 64px;
  }
}

.p-lp-problem__message-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #212529;
}
@media (min-width: 768px) {
  .p-lp-problem__message-text {
    font-size: 1.125rem;
  }
}
.p-lp-problem__message-text strong {
  color: #ff6b6b;
  font-weight: 700;
}

.p-lp-solution {
  padding: 64px 0;
  background: #ffffff;
}
@media (min-width: 768px) {
  .p-lp-solution {
    padding: 100px 0;
  }
}

.p-lp-solution__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-lp-solution__inner {
    padding: 0 48px;
  }
}

.p-lp-solution__content {
  max-width: 900px;
  margin: 0 auto;
}

.p-lp-solution__text {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-lp-solution__text {
    margin-bottom: 64px;
  }
}

.p-lp-solution__paragraph {
  font-size: 1rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-lp-solution__paragraph {
    font-size: 1.125rem;
  }
}
.p-lp-solution__paragraph:last-child {
  margin-bottom: 0;
}
.p-lp-solution__paragraph strong {
  color: #212529;
  font-weight: 700;
}

.p-lp-solution__highlight {
  padding: 40px;
  background: #e8f8f5;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .p-lp-solution__highlight {
    padding: 64px;
  }
}

.p-lp-solution__highlight-text {
  font-weight: 500;
  line-height: 1.8;
  color: #212529;
  text-align: center;
}
@media (min-width: 768px) {
  .p-lp-solution__highlight-text {
    font-size: 1.125rem;
  }
}

.p-lp-solution__highlight-em {
  color: #00b894;
  font-weight: 700;
}

.p-lp-solution__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .p-lp-solution__arrow {
    padding: 40px 0;
  }
}

.p-lp-solution__arrow-icon {
  width: 48px;
  height: 48px;
  position: relative;
}
@media (min-width: 768px) {
  .p-lp-solution__arrow-icon {
    width: 56px;
    height: 56px;
  }
}
.p-lp-solution__arrow-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-right: 3px solid #00b894;
  border-bottom: 3px solid #00b894;
  transform: translate(-50%, -70%) rotate(45deg);
}
@media (min-width: 768px) {
  .p-lp-solution__arrow-icon::before {
    width: 24px;
    height: 24px;
  }
}
.p-lp-solution__arrow-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 60%;
  background: #00b894;
  transform: translateX(-50%);
}

.p-lp-solution__conclusion {
  padding: 40px;
  background: linear-gradient(135deg, #00b894 0%, #00a383 100%);
  border-radius: 8px;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 768px) {
  .p-lp-solution__conclusion {
    padding: 64px 80px;
  }
}

.p-lp-solution__conclusion-text {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-lp-solution__conclusion-text {
    font-size: 1.75rem;
  }
}
.p-lp-solution__conclusion-text strong {
  color: #55efc4;
  font-weight: 700;
  font-size: 1.1em;
}

.p-lp-benefit {
  padding: 64px 0;
  background: linear-gradient(135deg, #00b894 0%, #00a383 100%);
}
@media (min-width: 768px) {
  .p-lp-benefit {
    padding: 100px 0;
  }
}

.p-lp-benefit__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-lp-benefit__inner {
    padding: 0 48px;
  }
}

.p-lp-benefit .c-section-title__main {
  color: #ffffff;
}

.p-lp-benefit .c-section-title__number {
  color: rgba(255, 255, 255, 0.7);
}

.p-lp-benefit__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-lp-benefit__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.p-lp-benefit__item {
  position: relative;
  padding: 40px;
  padding-left: 64px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-lp-benefit__item {
    padding: 64px;
    padding-left: 80px;
  }
}

.p-lp-benefit__icon {
  position: absolute;
  top: -0.7em;
  left: -0.2em;
  z-index: 0;
}

.p-lp-benefit__icon-num {
  font-size: 64px;
  font-weight: 700;
  color: color-mix(in srgb, #00b894 40%, transparent 60%);
  line-height: 1;
}
@media (min-width: 768px) {
  .p-lp-benefit__icon-num {
    font-size: 80px;
  }
}

.p-lp-benefit__body {
  position: relative;
  z-index: 1;
}

.p-lp-benefit__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .p-lp-benefit__title {
    font-size: 1.375rem;
  }
}

.p-lp-benefit__desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #6c757d;
}
@media (min-width: 768px) {
  .p-lp-benefit__desc {
    font-size: 1rem;
  }
}

.p-lp-curriculum {
  padding: 64px 0;
  background: #f8f9fa;
}
@media (min-width: 768px) {
  .p-lp-curriculum {
    padding: 100px 0;
  }
}

.p-lp-curriculum__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-lp-curriculum__inner {
    padding: 0 48px;
  }
}

.p-lp-curriculum__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
}

.p-lp-curriculum__item {
  padding: 40px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}
@media (min-width: 768px) {
  .p-lp-curriculum__item {
    padding: 64px;
    margin-bottom: 40px;
  }
}
.p-lp-curriculum__item:last-child {
  margin-bottom: 0;
}

.p-lp-curriculum__head {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-lp-curriculum__head {
    margin-bottom: 40px;
  }
}

.p-lp-curriculum__label {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #00b894;
}

.p-lp-curriculum__label-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00b894;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .p-lp-curriculum__label-text {
    font-size: 0.875rem;
  }
}

.p-lp-curriculum__label-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: #00b894;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-lp-curriculum__label-num {
    font-size: 2.25rem;
  }
}

.p-lp-curriculum__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-lp-curriculum__title {
    font-size: 1.375rem;
  }
}

.p-lp-curriculum__points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-lp-curriculum__point {
  position: relative;
  padding-left: 24px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .p-lp-curriculum__point {
    font-size: 1rem;
    padding-left: 40px;
  }
}
.p-lp-curriculum__point:last-child {
  margin-bottom: 0;
}
.p-lp-curriculum__point::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #00b894;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .p-lp-curriculum__point::before {
    width: 10px;
    height: 10px;
  }
}

.p-lp-speaker {
  padding: 64px 0;
  background: #ffffff;
}
@media (min-width: 768px) {
  .p-lp-speaker {
    padding: 100px 0;
  }
}

.p-lp-speaker__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-lp-speaker__inner {
    padding: 0 48px;
  }
}

.p-lp-speaker__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .p-lp-speaker__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 64px;
    padding: 64px;
  }
}

.p-lp-speaker__photo {
  flex-shrink: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .p-lp-speaker__photo {
    text-align: left;
  }
}

.p-lp-speaker__photo-frame {
  width: 200px;
  height: 200px;
  background: #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .p-lp-speaker__photo-frame {
    margin: 0;
  }
}

.p-lp-speaker__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lp-speaker__info {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .p-lp-speaker__info {
    text-align: left;
  }
}

.p-lp-speaker__name {
  margin-bottom: 8px;
}

.p-lp-speaker__name-ja {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #212529;
}
@media (min-width: 768px) {
  .p-lp-speaker__name-ja {
    font-size: 2.25rem;
  }
}

.p-lp-speaker__name-en {
  display: block;
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 4px;
}

.p-lp-speaker__company {
  display: inline-block;
  font-size: 0.875rem;
  color: #00b894;
  font-weight: 500;
  margin-bottom: 24px;
  padding: 4px 16px;
  background: #e8f8f5;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .p-lp-speaker__company {
    font-size: 1rem;
  }
}

.p-lp-speaker__bio {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-lp-speaker__bio-text {
  position: relative;
  padding-left: 24px;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 8px;
  text-align: left;
}
@media (min-width: 768px) {
  .p-lp-speaker__bio-text {
    font-size: 1rem;
  }
}
.p-lp-speaker__bio-text:last-child {
  margin-bottom: 0;
}
.p-lp-speaker__bio-text::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #00b894;
  border-radius: 50%;
}

.p-lp-overview {
  padding: 64px 0;
  background: linear-gradient(135deg, #00b894 0%, #00a383 100%);
}
@media (min-width: 768px) {
  .p-lp-overview {
    padding: 100px 0;
  }
}

.p-lp-overview__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-lp-overview__inner {
    padding: 0 48px;
  }
}

.p-lp-overview__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto 64px;
}
@media (min-width: 768px) {
  .p-lp-overview__content {
    gap: 64px;
    margin-bottom: 80px;
  }
}

.p-lp-overview__details {
  padding: 40px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .p-lp-overview__details {
    padding: 64px;
  }
}

.p-lp-overview__details-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #00b894;
}
@media (min-width: 768px) {
  .p-lp-overview__details-title {
    font-size: 1.375rem;
  }
}

.p-lp-overview__dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-lp-overview__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9ecef;
}
@media (min-width: 768px) {
  .p-lp-overview__row {
    flex-direction: row;
    align-items: baseline;
    gap: 24px;
  }
}
.p-lp-overview__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.p-lp-overview__dt {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #00b894;
  background: #e8f8f5;
  padding: 4px 8px;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .p-lp-overview__dt {
    width: 100px;
    text-align: center;
    font-size: 0.875rem;
  }
}

.p-lp-overview__dd {
  flex: 1;
}

.p-lp-overview__date {
  font-size: 1rem;
  font-weight: 500;
  color: #212529;
}
@media (min-width: 768px) {
  .p-lp-overview__date {
    font-size: 1.125rem;
  }
}

.p-lp-overview__note {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .p-lp-overview__note {
    font-size: 0.875rem;
  }
}

.p-lp-overview__free {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ff6b6b;
}
@media (min-width: 768px) {
  .p-lp-overview__free {
    font-size: 2.25rem;
  }
}

.p-lp-overview__method {
  font-size: 1rem;
  color: #212529;
}
@media (min-width: 768px) {
  .p-lp-overview__method {
    font-size: 1.125rem;
  }
}

.p-lp-overview__benefit {
  padding: 40px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-lp-overview__benefit {
    padding: 64px;
  }
}
.p-lp-overview__benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #ff6b6b;
}

.p-lp-overview__benefit-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background: #ff6b6b;
  padding: 4px 16px;
  border-radius: 4px;
  margin-inline: auto;
  margin-bottom: 24px;
  width: max-content;
}
@media (min-width: 768px) {
  .p-lp-overview__benefit-label {
    font-size: 0.875rem;
  }
}

.p-lp-overview__benefit-content {
  text-align: center;
}

.p-lp-overview__benefit-lead {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 8px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-lp-overview__benefit-lead {
    font-size: 1rem;
  }
}

.p-lp-overview__benefit-title {
  font-size: 1rem;
  color: #212529;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .p-lp-overview__benefit-title {
    font-size: 1.125rem;
  }
}

.p-lp-overview__benefit-main {
  font-size: 1.375rem;
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 16px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-lp-overview__benefit-main {
    font-size: 2.25rem;
  }
}

.p-lp-overview__benefit-time {
  font-size: 1rem;
  font-weight: 500;
  color: #212529;
}
@media (min-width: 768px) {
  .p-lp-overview__benefit-time {
    font-size: 1.125rem;
  }
}

.p-lp-overview__benefit-note {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 8px;
}

.p-lp-overview__button {
  display: flex;
  justify-content: center;
}

.p-lp-faq {
  padding: 64px 0;
  background: #f8f9fa;
}
@media (min-width: 768px) {
  .p-lp-faq {
    padding: 100px 0;
  }
}

.p-lp-faq__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-lp-faq__inner {
    padding: 0 48px;
  }
}

.p-lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-lp-faq__list {
    gap: 24px;
  }
}

.p-lp-faq__item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.p-lp-faq__item[open] .p-lp-faq__icon {
  transform: rotate(180deg);
}
.p-lp-faq__item[open] .p-lp-faq__question {
  border-bottom: 1px solid #e9ecef;
}

.p-lp-faq__question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.15s ease;
}
@media (min-width: 768px) {
  .p-lp-faq__question {
    padding: 40px;
  }
}
.p-lp-faq__question::-webkit-details-marker {
  display: none;
}
.p-lp-faq__question:hover {
  background: #f8f9fa;
}

.p-lp-faq__q {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
  font-weight: 700;
  background: #00b894;
  color: #ffffff;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .p-lp-faq__q {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

.p-lp-faq__question-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #212529;
}
@media (min-width: 768px) {
  .p-lp-faq__question-text {
    font-size: 1.125rem;
  }
}

.p-lp-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.2s ease;
}
@media (min-width: 768px) {
  .p-lp-faq__icon {
    width: 28px;
    height: 28px;
  }
}
.p-lp-faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #00b894;
  border-bottom: 2px solid #00b894;
  transform: translate(-50%, -70%) rotate(45deg);
}
@media (min-width: 768px) {
  .p-lp-faq__icon::before {
    width: 12px;
    height: 12px;
  }
}

.p-lp-faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #e8f8f5;
}
@media (min-width: 768px) {
  .p-lp-faq__answer {
    padding: 40px;
  }
}

.p-lp-faq__a {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 0.875rem;
  font-weight: 700;
  background: #ff6b6b;
  color: #ffffff;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .p-lp-faq__a {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

.p-lp-faq__answer-text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #6c757d;
  padding-top: 4px;
}
@media (min-width: 768px) {
  .p-lp-faq__answer-text {
    font-size: 1rem;
  }
}

.p-lp-closing {
  padding: 64px 0;
  background: linear-gradient(135deg, #00b894 0%, #00a383 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-lp-closing {
    padding: 100px 0;
  }
}
.p-lp-closing::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.p-lp-closing__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-lp-closing__inner {
    padding: 0 48px;
  }
}
.p-lp-closing__inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.p-lp-closing__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-lp-closing__title {
    font-size: 2.25rem;
    margin-bottom: 64px;
  }
}

.p-lp-closing__message {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-lp-closing__message {
    margin-bottom: 64px;
  }
}

.p-lp-closing__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .p-lp-closing__text {
    font-size: 1.125rem;
  }
}

.p-lp-closing__text-strong {
  display: block;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-lp-closing__text-strong {
    font-size: 1.375rem;
  }
}

.p-lp-closing__button {
  display: inline-flex;
}

@media (min-width: 768px) {
  .u-sp-only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-text-center {
  text-align: center !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-right {
  text-align: right !important;
}