/* ==================================================
  base
================================================== */

.lp_main {
  overflow-x: clip;
  overflow-wrap: break-word;
  color: #fff;
  font-size: 16px;
  line-height: 1.375;
  background: #000;
}
.lp_main img {
  height: auto;
}





/* ==================================================
  color
================================================== */

:root {
  --red: #c80f2e;
}





/* ==================================================
  common
================================================== */

/* ----------------------------------------
  section
---------------------------------------- */

.section {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}
.section_wrap {
  padding: 40px 20px;
}

@media (min-width: 768px) {
  .section_wrap {
    padding: 60px 30px;
  }
}

@media (min-width: 1280px) {
  .section_wrap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}




/* ----------------------------------------
  subtitle
---------------------------------------- */

.subtitle,
.subsubtitle {
  font-weight: normal;
  line-height: 1.1;
}
.subtitle + *,
.subsubtitle + * {
  margin-top: 20px;
}
.subtitle {
  font-size: 30px;
}
.subsubtitle {
  font-size: 25px;
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 40px;
  }
  .subsubtitle {
    font-size: 30px;
  }
}

@media (min-width: 1280px) {
  .subtitle {
    font-size: 55px;
  }
  .subsubtitle {
    font-size: 45px;
  }
}



/* ----------------------------------------
  divider
---------------------------------------- */

.divider {
  max-width: 1000px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    to right,
    rgba(255 255 255 / 0),
    rgba(255 255 255 / 1) 50%,
    rgba(255 255 255 / 0)
  );
  border: none;
}



/* ----------------------------------------
  fade_in
---------------------------------------- */

.fade_in {
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
  opacity: 0;
}
.fade_in.is_active {
  transform: translateY(0);
  opacity: 1;
}

/* 少し遅らせて表示 */
.delay_02 { transition-delay: 0.2s; }
.delay_04 { transition-delay: 0.4s; }


/* divider -------------------- */

.divider.fade_in {
  transform: translateY(0);
  transition: opacity 1.5s ease;
  opacity: 0;
}
.divider.fade_in.is_active {
  opacity: 1;
}




/* ==================================================
  hero
================================================== */

.hero {
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
}
.hero_image img {
  width: 100%;
}
.hero_title {
  margin-bottom: 30px;
  font-size: 35px;
  font-weight: normal;
  line-height: 1.1;
}
.hero_desc {
  font-size: 20px;
}

@media (min-width: 768px) {
  .hero_title {
    font-size: 45px;
  }
}

@media (min-width: 1280px) {
  .hero_image img {
    object-fit: cover;
    aspect-ratio: 8 / 3;
  }
  .hero_title {
    font-size: 60px;
  }
  .hero_desc {
    font-size: 22px;
  }
}





/* ==================================================
  category
================================================== */

.category {
  text-align: center;
}



/* ----------------------------------------
  category_title
---------------------------------------- */

.category_title {
  font-size: 25px;
  font-weight: normal;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .category_title {
    font-size: 35px;
  }
}

@media (min-width: 1280px) {
  .category_title {
    font-size: 45px;
  }
}



/* ----------------------------------------
  category_list
---------------------------------------- */

.category_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.category_list a {
  overflow: hidden;
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  text-decoration: none !important;
}
.category_list a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transition: .5s;
  width: 100%;
  height: 100%;
  border: 1px solid var(--red);
  opacity: .4;
}
.category_list a:hover::after {
  opacity: 1;
}
.category_list a img {
  display: block;
  transition: .5s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.category_list a:hover img {
  transform: scale(1.1);
}
.category_name {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  padding: 20px 5px 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0 0 0 / .8) 100%
  );
}

@media (max-width: 767px) {
  .category_list {
    gap: 10px;
  }
  .category_name {
    font-size: 16px;
  }
}





/* ==================================================
  intro
================================================== */

.intro {
  text-align: center;
}
.intro_image {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4 / 2;
  width: 100%;
  max-height: 400px;
  padding: 40px 30px;
  margin-top: 40px;
  background: #fff;
}
.inrto_desc {
  font-size: 18px;
}

@media (min-width: 768px) {
  .intro_image {
    margin-top: 50px;
  }
}

@media (min-width: 1280px) {
  .inrto_desc {
    font-size: 20px;
  }
}





/* ==================================================
  about
================================================== */

.about_title_wrap {
  text-align: center;
}
.about_content {
  display: flex;
  flex-direction: column;
  gap: 30px 40px;
  margin-top: 40px;
}
.about_content_image img {
  width: 100%;
}

@media (min-width: 1024px) {
  .about_content {
    flex-direction: row;
  }
  .about_content_image {
    flex-shrink: 0;
    width: 50%;
  }
  .about_content_text {
    align-self: center;
  }
}



/* ----------------------------------------
  flow_list
---------------------------------------- */

.flow_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.flow_list > li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.flow_list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44px;
  bottom: -26px;
  left: 19px;
  width: 2px;
  background: #fff;
}
.flow_list a:link,
.flow_list a:visited {
  color: #fff;
  text-decoration: underline;
}
.flow_list a:hover {
  text-decoration: none;
}
.flow_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  color: #fff;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
}
.flow_icon span {
  padding-top: 2px;
  line-height: 1;
}
.flow_text {
  padding-top: 4px;
  font-size: 18px;
}
.for_future_counter {
  margin-top: 15px;
}

@media (max-width: 479px) {
  img.for_future_counter {
    width: auto;
    height: 50px;
  }
}

@media (min-width: 1280px) {
  .flow_text {
    font-size: 20px;
  }
}



/* ----------------------------------------
  lets_support
---------------------------------------- */

.lets_support {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 5px;
  margin-top: 30px;
  background: #333;
}
.lets_support_text {
  padding: 0 15px 15px;
  font-size: 22px;
}

@media (min-width: 480px) {
  .lets_support {
    flex-direction: row;
    align-items: center;
  }
  .lets_support_image {
    flex-shrink: 0;
    width: 35.71428571428571%;
  }
  .lets_support_text {
    padding: 15px 15px 15px 0;
  }
}





/* ==================================================
  sns
================================================== */

.sns {
  text-align: center;
}
.sns_desc {
  font-size: 18px;
}
.sns_follow {
  margin-top: 40px;
}
.sns_follow_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: .4s;
  width: 480px;
  max-width: 100%;
  padding: 20px;
  border: 1px solid #fff;
}
.sns_follow_btn:hover {
  text-decoration: none;
  background: var(--red);
  border-color: var(--red);
}
.sns_follow_btn > span {
  color: #fff;
  font-size: 22px;
}

@media (min-width: 1280px) {
  .sns_desc {
    font-size: 20px;
  }
  .sns_follow_btn > span {
    font-size: 25px;
  }
}
