/**
 * File: subp.css
 * Usage: トップページ以外の共通スタイルを定義します。
 * Example: サブページ共通のヘッダーなど
*/

.ly_subpPage {
  /* `overflow-x: clip` (not hidden) so descendants using position:sticky
     — e.g. STRENGTH pinned scroller on the company page — still resolve
     against the document, not a newly created scroll container. */
  overflow-x: clip;
}

.ly_subp {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bl_breadcrumb {
  color: #fff;
  font-size: small;
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .ly_subp {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .ly_subp {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/* ================================================
 サブページ FV (bl_subpFv)
================================================ */
.bl_subpFv {
  padding-top: 80px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Heading */
.bl_subpFv_head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl_subpFv_head_ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-black);
}

.bl_subpFv_head_en {
  font-family: 'Oswald', sans-serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.28px;
  margin: 0;
}

.bl_subpFv_head_en .js_charAnim_char {
  background: linear-gradient(to right, var(--color-main-dark), var(--color-sub-green));
  background-size: var(--char-bg-size, 100%) 100%;
  background-position: var(--char-bg-pos, 0) center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Body (breadcrumb + images) */
.bl_subpFv_body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

/* Breadcrumb */
.bl_subpFv_breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.bl_subpFv_breadcrumb_link {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.65px;
  color: #a0a0a0;
  text-decoration: none;
}

.bl_subpFv_breadcrumb_line {
  display: block;
  width: 24px;
  height: 2px;
  background: #a0a0a0;
  flex-shrink: 0;
}

.bl_subpFv_breadcrumb_current {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.65px;
  color: var(--color-black);
}

/* Images */
.bl_subpFv_images {
  display: flex;
  width: 100%;
}

.bl_subpFv_img__main {
  width: 66%;
  height: 180px;
  overflow: hidden;
  border-radius: 40px 0 0 40px;
  flex-shrink: 0;
}

.bl_subpFv_img__sub {
  width: 34%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.bl_subpFv_img__main img,
.bl_subpFv_img__sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================
 サブページ FV Tablet+ (min-width: 768px)
================================================ */
@media screen and (min-width: 768px) {
  .bl_subpFv {
    width: 94vw;
    margin-left: auto;
    padding-left: 0;
  }
}

/* ================================================
 サブページ FV PC (min-width: 1024px)
================================================ */
@media screen and (min-width: 1024px) {
  .bl_subpFv {
    margin-top: 80px;
    padding-top: 80px;
    gap: 8px;
  }

  .bl_subpFv_head {
    gap: 0;
  }

  .bl_subpFv_head_ja {
    font-size: 22px;
    letter-spacing: 1.1px;
  }

  .bl_subpFv_head_en {
    font-size: 144px;
    letter-spacing: 0;
    width: fit-content;
  }

  .bl_subpFv_body {
    gap: 8px;
  }

  .bl_subpFv_breadcrumb {
    justify-content: flex-end;
    padding-right: 80px;
  }

  .bl_subpFv_img__main {
    width: 75%;
    height: 360px;
  }

  .bl_subpFv_img__sub {
    width: 25%;
    height: 360px;
  }
}

/* ================================================
 テキストのみ FV (bl_textFv)
================================================ */
.bl_textFv {
  padding: 80px 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bl_textFv_head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl_textFv_head_ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-black);
}

.bl_textFv_head_en {
  font-family: 'Oswald', sans-serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2.28px;
  background: linear-gradient(to right, var(--color-main-dark), var(--color-sub-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  width: fit-content;
}

/* Breadcrumb */
.bl_textFv_breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bl_textFv_breadcrumb_link {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.65px;
  color: #a0a0a0;
  text-decoration: none;
}

.bl_textFv_breadcrumb_line {
  display: block;
  width: 24px;
  height: 2px;
  background: #a0a0a0;
  flex-shrink: 0;
}

.bl_textFv_breadcrumb_current {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.65px;
  color: var(--color-black);
}

/* ================================================
 テキストのみ FV PC (min-width: 1024px)
================================================ */
@media screen and (min-width: 1024px) {
  .bl_textFv {
    margin-top: 80px;
    padding: 80px 24px 24px;
    max-width: 1080px;
    margin-inline: auto;
    border-bottom: 1px solid #e8e8e8;
    gap: 8px;
  }

  .bl_textFv_head {
    gap: 0;
  }

  .bl_textFv_head_ja {
    font-size: 22px;
    letter-spacing: 1.1px;
  }

  .bl_textFv_head_en {
    font-size: 144px;
    letter-spacing: 0;
  }

  .bl_textFv_breadcrumb {
    justify-content: flex-end;
  }
}

/* ================================================
 プライバシーポリシー (bl_policy)
================================================ */
.bl_policy {
  padding-bottom: 120px;
}

.bl_policy_container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px 24px;
  color: var(--color-black);
}

.bl_policy_ttl {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.5;
}

.bl_policy_section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bl_policy_section_ttl {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
}

.bl_policy_section_txt {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.75px;
}

.bl_policy_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bl_policy_item_ttl {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}

.bl_policy_item_txt,
.bl_policy_item_txt p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.75px;
}

/* ================================================
 プライバシーポリシー PC (min-width: 1024px)
================================================ */
@media screen and (min-width: 1024px) {
  .bl_policy_container {
    max-width: 800px;
    margin-inline: auto;
    padding: 80px 0;
  }

  .bl_policy_ttl {
    font-size: 42px;
    letter-spacing: 2.1px;
  }

  .bl_policy_section_ttl {
    font-size: 28px;
    letter-spacing: 1.4px;
  }

  .bl_policy_item_ttl {
    font-size: 22px;
    letter-spacing: 1.1px;
  }
}
