/* 全体 */
.lp-container {
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}

/* セクション共通 */
.lp-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.lp-eng__ttl {
  font-size: 1.5rem;
  font-weight: bold;
  color: #006699;
  padding-bottom: 16px;
  display: inline-block;
  position: relative;
  letter-spacing: 0.1em;
}

.lp-eng__ttl::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 50px;
  height: 2px;
  background: #006699;
  transform: translateX(-50%);
}

.lp__ttl {
  font-size: 2.0rem;
  font-weight: bold;
  margin: 40px 0 60px;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 768px) {
  .lp-inner {
    padding: 0;
  }

  .lp-eng__ttl {
    font-size: 1.2rem;
  }

  .lp-eng__ttl::before {
    width: 30px;
  }

  .lp__ttl {
    font-size: 1.8rem;
    margin: 20px 0 40px;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

/* Headerセクション */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1020;
  width: 100%;
  height: 80px;
  background-color: #0c0c31;
}

.lp-header__head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  padding: 0 20px;
  width: 100%;
}

.lp-header__head img {
  width: 200px;
  height: auto;
}

.lp-header__a {
  text-align: center;
  text-decoration: none;
}

.lp-header__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.lp-header__button__text {
  color: #0c0c31;
  font-weight: bold;
  font-size: 1.2rem;
  border-right: #0c0c31 1px dashed;
  padding: 14px 20px 6px;
}

.lp-header__button__mark {
  padding: 10px 20px;
}

@media (max-width: 768px) {
  .lp-header {
    height: 60px;
  }

  .lp-header__head img {
    width: 120px;
  }

  .lp-header__button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .lp-header__button__text {
    font-size: 0.8rem;
    padding-top: 14px;
  }
}

/* Heroセクション */
#slider_lp {
  height: 92vh;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.vegas-slide-inner {
  background-position: right center !important;
}

.hero-content {
  text-align: left;
  margin: 80px 0 0 80px;
}

.sub-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  position: relative;
}

.sub-title::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: 70px;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
}

.hero-content h1 {
  font-size: 3.0rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-weight: bold;
}

.hero-title {
  background-color: #fff;
  color: #000;
  margin-bottom: 20px;
  padding: 10px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.hero-title_small {
  font-size: 2.0rem;
}

.hero-content img {
  width: 40%;
  height: auto;
}

@media (max-width: 768px) {
  #slider_lp {
    height: 90vh;
    margin-top: 14px;
  }

  .vegas-slide-inner {
    background-position: center center !important;
  }

  .hero-content {
    margin: 80px 20px;
  }

  .sub-title {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-title_small {
    font-size: 1.5rem;
  }

  .hero-content img {
    width: 100%;
  }
}

/* スポンサー */
.lp-sponsor {
  padding: 60px 0;
  text-align: center;
}

.lp-sponsor__title {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px 40px;
}

.lp-sponsor__title span {
  font-size: 2.0rem;
  font-weight: bold;
  color: #006699;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  width: 3360px;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

.logo-track2 {
  display: flex;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
  animation-delay: -10s;
}

.logo-item {
  flex: 0 0 auto;
  margin-right: 40px;
}

.logo-item img {
  display: block;
  height: 60px;
}

/* アニメーションキー */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-1680px);
    /* トラック幅の半分だけ左に移動 (ロゴを2倍並べているため) */
  }
}

@media (max-width: 768px) {
  .lp-sponsor {
    padding: 0 0 40px;
  }

  .lp-sponsor__title {
    font-size: 1.2rem;
    padding: 20px 10px;
  }

  .lp-sponsor__title::before,
  .lp-sponsor__title::after {
    display: none;
  }

  .logo-marquee {
    padding: 10px 0;
  }

  .logo-item {
    margin-right: 20px;
  }

  .logo-item img {
    height: 40px;
  }

  .logo-track {
    width: 2146px;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-1073px);
      /* トラック幅の半分だけ左に移動 (ロゴを2倍並べているため) */
    }
  }
}

/* ターゲット */
.lp-target {
  background-image: url('../img/target_bg.png');
  background-color: rgba(255, 255, 255, 1.0);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  text-align: center;
}

.lp-target__title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: bold;
}

.lp-target__title::before,
.lp-target__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: #333;
  transform: translateY(-50%) rotate(110deg);
}

.lp-target__title::before {
  left: -60px;
  transform: translateY(-50%) rotate(-110deg);
}

.lp-target__title::after {
  right: -60px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.card {
  background: #fff;
  min-width: 300px;
  height: 160px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.card::after {
  content: '';
  display: block;
  background-image: url('../img/target01.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -75px;
  left: 55%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

.card p {
  font-size: 18px;
  line-height: 1.6;
  z-index: 3;
}

@media (max-width: 768px) {
  .lp-target h2 {
    font-size: 22px;
  }

  .card {
    min-width: 260px;
    height: 120px;
    margin-top: 40px;
  }

  .card::after {
    top: -40px;
  }

  .card p {
    font-size: 16px;
  }
}

/* about */
.lp-about {
  padding: 80px 0;
  text-align: center;
}

.lp-about__inner {
  max-width: 640px;
  margin: 0 auto;
}

.lp-about__description {
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: left;
}

.lp-about iframe {
  width: 100%;
  height: 400px;
  border: none;
}

@media (max-width: 768px) {
  .lp-about__description {
    padding: 0 20px;
  }

  .lp-about iframe {
    width: 90%;
    height: 200px;
    margin: 0 auto;
  }
}

/* features */
.lp-features {
  padding: 80px 20px;
  background-color: #F8F8EF;
}

.lp-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}

.feature-text {
  width: 55%;
  text-align: left;
}

.feature-text h3 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.0;
  width: fit-content;
}

.feature-title {
  background-color: #003366;
  color: #fff;
  padding: 10px;
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
}

.feature-image {
  width: 40%;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.feature-number {
  position: absolute;
  top: -60px;
  right: 10px;
  font-size: 80px;
  color: #006699;
}

.feature-number::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 100px;
  height: 2px;
  background: #006699;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .feature-item {
    flex-direction: column-reverse;
    align-items: center;
  }

  .feature-text {
    width: 100%;
  }

  .feature-text h3 {
    line-height: 2.0;
    margin-top: 10px;
  }

  .feature-image {
    width: 100%;
  }

  .feature-number {
    top: -50px;
    font-size: 60px;
  }

  .feature-number::before {
    width: 50px;
  }
}

/* メンバーの声 */
.lp-members {
  padding: 60px 20px;
  margin: 0 auto;
  text-align: center;
}

.member-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.member {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F1F1F1;
  position: relative;
  z-index: -2;
}

.member::after {
  content: 'MEMBER';
  position: absolute;
  font-size: 100px;
  font-weight: bold;
  display: block;
  color: #fff;
  bottom: -36px;
  right: 30px;
  z-index: -1;
}

.member-photo {
  width: 300px;
  height: 300px;
  object-fit: cover;
}

.member-text {
  padding: 30px;
  text-align: left;
}

.member-text h4 {
  font-size: 20px;
  font-weight: bold;
}

.member-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .member {
    flex-direction: column;
    align-items: center;
  }

  .member-photo {
    margin: 0 0 15px 0;
    width: 100%;
    height: auto;
  }

  .member-text {
    padding: 20px;
  }

  .member-text h4 {
    font-size: 18px;
  }

  .member::after {
    font-size: 60px;
    bottom: -24px;
  }
}

/* CTA2 */
.lp-cta2 {
  background-image: url('../img/cta_bg.png');
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
}

.lp-cta2 p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  padding-bottom: 16px;
  display: inline-block;
  position: relative;
  letter-spacing: 0.1em;
}

.balloon1 {
  position: relative;
  display: inline-block;
  margin-bottom: -20px;
  z-index: 1;
  padding: 7px 10px;
  min-width: 180px;
  max-width: 100%;
  background: #fff;
  border-radius: 50px;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
}

.balloon1 p {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
}

.lp-cta2__button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 32px;
  border-radius: 5px;
  width: 540px;
  height: 120px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25);
  background-image: linear-gradient(to bottom right, rgba(255, 214, 100, 1), rgba(254, 133, 10, 1));
}

.lp-cta2__button:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0);
}

.lp-cta2__button::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50px;
  width: 22px;
  height: 22px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}

.lp-cta2__button::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 55px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #0c0c31;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .lp-cta2 {
    padding: 60px 20px;
  }

  .lp-cta2 p {
    font-size: 1.2rem;
  }

  .lp-cta2__button {
    font-size: 24px;
    width: 100%;
    height: 100px;
  }

  .lp-cta2__button::before {
    width: 18px;
    height: 18px;
    right: 30px;
  }

  .lp-cta2__button::after {
    right: 34px;
    border-top: 5px solid transparent;
    border-left: 8px solid #0c0c31;
    border-bottom: 5px solid transparent;
  }
}


/* 活動 */
.lp-activity {
  padding: 60px 20px;
  background-color: #F8F8EF;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.activity-item.reverse {
  flex-direction: row-reverse;
}

.activity-text {
  text-align: left;
  padding: 20px;
  flex: 1 1 80%;
  /* 50%幅で自動調整 */
}

.activity-text h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #006699;
}

.activity-text p {
  line-height: 1.6;
  border-top: 1px solid #B3B3B3;
  padding-top: 20px;
}

.activity-img {
  flex: 1 1 50%;
}

.activity-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .activity-item {
    flex-direction: column;
  }

  .activity-item.reverse {
    flex-direction: column;
  }

  .activity-text {
    padding: 20px;
  }

  .activity-text h3 {
    font-size: 1.2rem;
  }

  .activity-img {
    flex: 1 1 100%;
  }
}

/* join */
.lp-join {
  padding: 60px 20px;
  background-color: #fff;
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.step {
  background-color: #f1f1f1;
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}

.step h3 {
  width: 100%;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 10px;
  background-color: #006699;
  border-radius: 8px 8px 0 0;
  line-height: 1.2;
  padding: 32px;
  position: relative;
}

.step h3:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #006699;
}


.step_number {
  font-size: 1.8rem;
}

.step h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 32px 0 18px;
}

.step p {
  font-size: 0.9rem;
  color: #333;
  padding: 30px;
  text-align: left;
}

/* FAQ */

.lp-faq {
  padding: 60px 20px;
  background-color: #F8F8EF;
}

details {
  margin-bottom: 20px;
}

summary {
  list-style: none;
  position: relative;
  padding: 20px 40px 20px 80px;
  cursor: pointer;
  background-color: #fff;
  text-align: left;
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 20px;
  border: 1px solid #006699;
}

summary::before {
  content: 'Q';
  font-size: 1.5rem;
  position: absolute;
  font-weight: bold;
  top: 32px;
  left: 0;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background-color: #006699;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  top: 40%;
  right: 20px;
  border: 2px solid;
  border-color: transparent transparent #006699 #006699;
  transform: rotate(-45deg);
}

details[open] summary::after {
  transform: rotate(135deg);
  top: 50%;
}

.answer {
  padding: 20px 40px 20px 80px;
  position: relative;
  text-align: left;
  border: 1px solid #fff;
}

.answer::before {
  content: 'A';
  font-size: 1.5rem;
  position: absolute;
  font-weight: bold;
  top: 32px;
  left: 0;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  background-color: #fff;
  color: #006699;
  display: flex;
  align-items: center;
  justify-content: center;
}

details[open] .answer {
  animation: fadein 0.5s ease;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  summary {
    padding: 20px 40px 20px 60px;
  }

  summary::before {
    top: 24px;
    left: 0;
    width: 48px;
    height: 48px;
  }

  summary::after {
    top: 35%;
    right: 16px;
  }

  .answer {
    padding: 20px 40px 20px 60px;
  }

  .answer::before {
    top: 24px;
    left: 0;
    width: 48px;
    height: 48px;
  }
}

/* message */
.lp-message {
  padding: 60px 20px;
}

.message-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.message-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.message-text h3 {
  font-size: 22px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 20px;
}

.message-photo {
  flex: 0 0 370px;
  border-radius: 8px;
  overflow: hidden;
}

.message-photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .message-wrap {
    flex-direction: column-reverse;
  }

  .message-text h3 {
    font-size: 20px;
  }

  .message-photo {
    flex: 0 0 100%;
  }
}

/* contact */
.lp-contact {
  background: #f5f5f5;
  padding: 60px 20px;
}

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

.contact-form-wrap {
  background-color: #fff;
  padding: 40px;
}

.form-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 0.25px solid #000;
  padding: 32px 0;
}

.no-border {
  border-bottom: none;
}

.form-title {
  display: flex;
  align-items: baseline;
  justify-content: start;
  width: 300px;
}

.form-required {
  color: #fff;
  background-color: #DC9200;
  padding: 2px 12px;
  border-radius: 5px;
}

.form-nonrequired {
  color: #fff;
  background-color: #BFBFBF;
  padding: 2px 12px;
  border-radius: 5px;
}

.form-name {
  text-align: left;
  margin-left: 8px;
}

.wpcf7-radio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.form-input input {
  width: 100%;
  padding: 16px;
  border: 0.25px solid #000;
  border-radius: 5px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px auto;
  position: relative;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 26px;
  border-radius: 5px;
  width: 540px;
  height: 80px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.25);
  background-color: [object object];
  background-image: linear-gradient(180deg, rgba(0, 81, 143, 1), rgba(0, 51, 102, 1));
}

.form-submit:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0);
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50px;
  width: 22px;
  height: 22px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}

.form-submit::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 55px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #0c0c31;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 0;
  }

  .contact-form-wrap {
    padding: 20px;
  }

  .form-title {
    margin-bottom: 10px;
  }

  .form-input input {
    width: 100%;
    padding: 12px;
  }

  .form-submit {
    width: 100%;
    font-size: 20px;
    height: 60px;
    margin: 20px auto;
  }

  .form-submit::before {
    width: 18px;
    height: 18px;
    right: 30px;
  }

  .form-submit::after {
    right: 34px;
    border-top: 5px solid transparent;
    border-left: 8px solid #0c0c31;
    border-bottom: 5px solid transparent;
  }
}