/* LP内全般のリセット設定 */
.lp_container h1,
.lp_container h2,
.lp_container h3,
.lp_container h4,
.lp_container p,
.lp_container ul {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  line-height: 1.6;
  list-style: none;
  letter-spacing: initial;
}

.lp_container {
  line-height: 1.5;
  color: #333333;
}


/* ----------------- */
.ssp_only {
  display: none;
}

@media (max-width: 480px) {
  .ssp_only {
    display: block;
  }
}

/* ----------------- */

/* --------------↓コンテンツ幅↓--------------- */
.w_484 {
  max-width: 484px;
  width: 100%;
  margin: 0 auto;
}

.w_748 {
  max-width: 788px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .w_748 {
    padding: 0 15px;
  }
}

.w_756 {
  max-width: 756px;
  width: 100%;
  margin: 0 auto;
}

.w_846 {
  max-width: 846px;
  width: 100%;
  margin: 0 auto;
}

.w_1040 {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .w_1040 {
    padding: 0 15px;
  }
}

.w_1076 {
  max-width: 1076px;
  width: 100%;
  margin: 0 auto;
}

.w_1140 {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 480px) {
  .w_1140 {
    padding: 0 15px;
  }
}

.w_1440 {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

/* --------------↑コンテンツ幅↑--------------- */


/* すべてのid属性を持つ要素（リンク先）に対して一括設定 */
.lp_container section[id] {
  scroll-margin-top: -8px;
}

@media (max-width: 480px) {
  .lp_container section[id] {
    /* scroll-margin-top: 10px; */
    scroll-margin-top: 40px;
  }
}

@media (max-width: 480px) {
  #ar {
    scroll-margin-top: 60px;

  }
}

/* =============================
   ヘッダー・メニュー完全版（修正最小限）
============================= */

/* ヘッダー基本設定 */
.lp_container .lp_header * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lp_container .lp_header {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
}

@media (max-width: 480px) {
  .lp_container .lp_header {
    height: 40px;
  }
}

/* 【修正】fixedの挙動を安定させるため top:0; left:0; を追加（数値は不変） */
.lp_container .header_inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 0 0;
  /* ベースコード通り */
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  background-color: #e9eeef;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

@media (max-width: 480px) {
  .lp_container .header_inner {
    height: 40px;
    box-shadow: 0px 3px 6px #00000029;
    padding: 0 16px 0 0;
    /* ベースコード通り */
  }
}

/* ロゴ */
.lp_container .header_logo a {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lp_container .header_logo a:hover {
  opacity: 0.5;
}
/* SP版でのhover無効化 */
@media screen and (max-width: 480px) {
  .lp_container .header_logo a:hover {
    opacity: 1;
  }
}

.lp_container .header_logo img {
  display: block;
  width: 232px;
}

@media (max-width: 480px) {
  .lp_container .header_logo img {
    width: 123px;
  }
}

/* ハンバーガーボタン（三本線） */
.hamburger {
  cursor: pointer;
}

/* SPメニュー本体（image_ebd1b7.png 再現用） */
.lp_container .header_menu_box {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 480px) {
  .lp_container .header_menu_box {
    /* 【修正】デザインを維持したままメニューを全画面で固定 */
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #ebf0f2;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* 左寄せ */
    gap: 40px;
    /* ベースコードの数値を維持 */
    transition: right 0.4s ease;
    z-index: 1000;
  }

  .lp_container .header_menu_box.active {
    right: 0;
  }
}

/* メニュー内上部（白帯・ロゴ・×ボタン） */
@media (max-width: 480px) {
  .nav-sp-header {
    width: 100%;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }

  .logo-sp img {
    width: 123px;
  }

  .hum_close-btn {
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
  }

  .hum_close-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #333;
  }

  .hum_close-btn span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .hum_close-btn span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.lp_container .header_nav {
  width: 100%;
}

.lp_container .header_nav .nav_list {
  display: flex;
  list-style: none;
  gap: 32px;
}

@media (max-width: 1024px) {
  .lp_container .header_nav .nav_list {
    gap: 26px;
  }
}

@media (max-width: 480px) {
  .lp_container .header_nav .nav_list {
    margin-top: 60px;
    /* ベースコード通り */
    gap: 40px;
    /* ベースコード通り */
    flex-direction: column;
    margin-left: 36px;
    /* ベースコード通り */
  }
}

/* ナビゲーションリンク */
.lp_container .header_nav .nav_list a {
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  letter-spacing: 0.64px !important;
  line-height: 24px;
  font-weight: bold;
  position: relative;
  padding-bottom: 4px;
}

@media (max-width: 1024px) {
  .lp_container .header_nav .nav_list a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .lp_container .header_nav .nav_list a {
    font-size: 18px;
    /* ベースコード通り */
    padding-bottom: 0;
    letter-spacing: 0.72px !important;
  }
}

.lp_container .header_nav .nav_list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #F37321;
  transition: width 0.3s ease;
}

.lp_container .header_nav .nav_list a:hover {
  opacity: 1;
}
.lp_container .header_nav .nav_list a:hover::after {
  width: 100%;
}
@media (max-width: 480px) {
  .lp_container .header_nav .nav_list a:hover::after {
    width:initial;
  }
}


/* お問い合わせボタン */
.lp_container .btn_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333333;
  box-shadow: 0px 3px 6px #00000029;
  color: #ffffff;
  text-decoration: none;
  width: 216px;
  height: 40px;
  border-radius: 40px;
  font-size: 16px;
  letter-spacing: 0.64px !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

@media screen and (max-width: 480px) {
  .lp_container .header_cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 60px;
  }

  .lp_container .btn_contact {
    width: 302px;
    /* ベースコード通り */
    height: 58px;
    /* ベースコード通り */
  }
}

.lp_container .btn_contact:hover {
  background-color: #707070;
}
@media screen and (max-width: 480px) {
  .lp_container .btn_contact:hover {
    background-color: #333;
    opacity: 1;
  }
}

/* ----ハンバーガー--- */
.sp-only-item,
.hamburger,
.nav-sp-header {
  display: none;
}

/* --- スマホ版設定 (480px以下) --- */
@media screen and (max-width: 480px) {

  /* ヘッダー全体の設定 */
  .lp_container .lp_header {
    height: 40px;
    background-color: #ebf0f2;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
  }

  .header_logo img {
    width: 140px;
    height: auto;
  }

  /* ハンバーガーアイコン */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
  }

  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: #333;
  }

  /* 全画面メニュー本体 */
  .header_menu_box {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    /* 画面外へ隠す */
    width: 100%;
    height: 100vh;
    background-color: #ebf0f2;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.45, 0, 0.55, 1);
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
  }

  /* メニュー展開時 */
  .header_menu_box.active {
    right: 0;
  }

  /* スマホ版のみARシミュレーションを表示 */
  .sp-only-item {
    display: block;
  }

  /* メニュー内ヘッダー */
  .nav-sp-header {
    height: 40px;
    box-shadow: 0px 3px 6px #00000029;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-sizing: border-box;
  }

  .logo-sp img {
    width: 123px;
  }

  .lp_container .hum_close-btn {
    width: 24px;
    height: 20px;
    margin-right: 26px;
    position: relative;
    cursor: pointer;
  }

  .hum_close-btn span {
    position: absolute;
    top: 9px;
    width: 24px;
    height: 2px;
    background-color: #333;
  }

  .hum_close-btn span:nth-child(1) {
    transform: rotate(45deg);
  }

  .hum_close-btn span:nth-child(2) {
    transform: rotate(-45deg);
  }

  /* ナビゲーションリスト */
  .nav_list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .nav_list li {
    margin-bottom: 35px;
  }

  .nav_list li a {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
  }

  /* お問い合わせボタン（下部固定） */
  .header_cta {
    margin-top: auto;
    margin-bottom: 40px;
    text-align: center;
  }

  .btn_contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* ----ハンバーガー--- */



/* <!--------- FV ---------> */
.lp_container .lp_fv {
  width: 100%;
  height: calc(100vh - 64px);
  background-image: url('/wp-content/themes/_child/images/enerich/FV_bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .lp_container .lp_fv {
    height: calc(100vh - 40px);
  }
}

.lp_container .fv_inner {
  max-width: 1440px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 196px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .lp_container .fv_inner {
    flex-direction: column-reverse;
    gap: 30px;
    justify-content: flex-start;
  }
}

.lp_container .fv_image_area {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.lp_container .fv_product_img {
  display: block;
  width: auto;
  height: 84.4vh;
  max-height: 100%;
  max-width: 100%;
  vertical-align: bottom;
  object-fit: contain;
}

@media (max-width: 480px) {
  .lp_container .fv_product_img {
    height: 57vh;
  }
}

/* 右側：テキストエリア */
.lp_container .fv_content_area {
  flex: 0 1 auto;
  text-align: center;
  padding-left: 0;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp_container .fv_sub_copy {
  font-size: clamp(28px, 2.5vw - 8px, 40px);
  letter-spacing: clamp(1.12px, 0.1vw - 0.32px, 1.6px) !important;
  line-height: clamp(36px, 2.917vw - 6px, 50px);
  font-weight: bold;
  color: #FBB584;
  margin-bottom: clamp(8px, calc(8px + (20 - 8) * (100vw - 1440px) / (1920 - 1440)), 20px);
}

@media (max-width: 480px) {
  .lp_container .fv_sub_copy {
    font-size: 20px;
    margin-bottom: 5px;
    line-height: 28px;
    letter-spacing: 0.8px !important;
  }
}

.lp_container .fv_main_copy {
  font-size: clamp(54px, 3.75vw, 72px);
  font-weight: bold;
  line-height: clamp(72px, 6.458vw - 21px, 103px);
  letter-spacing: clamp(2.16px, 0.15vw, 2.88px) !important;
  margin-bottom: clamp(24px, calc(24px + (40 - 24) * (100vw - 1440px) / (1920 - 1440)), 40px);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .lp_container .fv_main_copy {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 57px;
    letter-spacing: 1.28px !important;
  }
}

.lp_container .fv_lead_text {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(24px, 1.667vw, 32px);
  letter-spacing: clamp(0.72px, 0.05vw, 0.96px) !important;
  font-weight: 500;
}

@media (max-width: 480px) {
  .lp_container .fv_lead_text {
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0.48px !important;
  }
}

/* <!----- 新しいエネルギーライフスタイルへ -----> */
.lp_container .lp_intro {
  width: 100%;
  padding: 110px 0 100px;
  background-image: url('/wp-content/themes/_child/images/enerich/energy_life_style_bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 480px) {
  .lp_container .lp_intro {
    padding: 40px 0 0;
    background-image: none;
  }
}

.lp_container .lp_intro::before {
  content: "";
  position: absolute;
  top: 180px;
  left: 0;
  width: 62%;
  height: 4px;
  background: linear-gradient(to right, #F37321 0%, rgba(243, 115, 33, 0) 100%);
  z-index: 1;
}

@media (max-width: 480px) {
  .lp_container .lp_intro::before {
    top: 130px;
    width: 100%;
  }
}

.lp_container .intro_inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}

@media (max-width: 480px) {
  .lp_container .intro_inner {
    flex-direction: column;
    align-items: center;
  }
}

.lp_container .intro_content {
  flex-basis: 100%;
}

.lp_container .intro_title {
  font-size: 40px;
  letter-spacing: 1.6px !important;
  line-height: 58px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

@media (max-width: 480px) {
  .lp_container .intro_title {
    font-size: 28px;
    letter-spacing: 1.12px !important;
    line-height: 40px;
  }
}


.lp_container .intro_text_box {
  margin-top: 180px;
  margin-bottom: 300px;
}

@media (max-width: 480px) {
  .lp_container .intro_text_box {
    margin-top: 0;
    margin-bottom: 40px;
  }
}

.lp_container .intro_text_box p {
  font-size: 16px;
  letter-spacing: 0.64px !important;
  ;
  line-height: 32px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 30px;
}

.lp_container .intro_text_box p:last-child {
  margin-bottom: 0;
}

.lp_container .intro_note {
  font-size: 12px;
  color: #777777;
  margin-top: 40px;
}

@media (max-width: 480px) {
  .lp_container .intro_note {
    display: none;
  }
}

.lp_container .intro_product_area {
  flex-basis: 40%;
  text-align: right;
}

/* PC版：初期状態は非表示 */
.sp-only-visual {
  display: none;
}

@media screen and (max-width: 480px) {

  /* スマホ版：480px以下で表示 */
  body .sp-only-visual {
    display: block;
    width: 100%;
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    position: relative;
  }

  .sp-only-visual img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 「※画像はイメージです」のテキスト調整 */
  .sp-only-visual .image-note {
    position: absolute;
    bottom: 20px;
    left: 15px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
  }
}


/* <!--- こんなお悩みございませんか？ ---->*/
.lp_container .lp_problem {
  width: 100%;
  padding: 120px 0 130px;
  background-color: #e9eeef;
  position: relative;
}

@media (max-width: 480px) {
  .lp_container .lp_problem {
    padding: 54px 0 80px;
  }
}


.lp_container .problem_title_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}

@media (max-width: 480px) {
  .lp_container .problem_title_wrap {
    gap: 20px;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 40px;
  }
}


.lp_container .problem_title_wrap::before,
.lp_container .problem_title_wrap::after {
  content: "";
  flex: 1;
  height: 3px;
  background: linear-gradient(to right, #F37321 0%, rgba(243, 115, 33, 0) 110%);
}

.lp_container .problem_title_wrap::before {
  transform: scaleX(-1);
}

.lp_container .problem_title {
  font-size: 32px;
  letter-spacing: 1.28px !important;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .lp_container .problem_title {
    font-size: 18px;
    letter-spacing: 0.72px !important;
  }
}

.lp_container .problem_title span {
  font-size: 40px;
  letter-spacing: 1.6px !important;
}

@media (max-width: 480px) {
  .lp_container .problem_title span {
    font-size: 24px;
    letter-spacing: 0.96px !important;
  }
}

.lp_container .problem_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 100px;
}

@media (max-width: 480px) {
  .lp_container .problem_flex {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
  }
}

.lp_container .problem_item {
  width: 31.2%;
  text-align: center;
}

@media (max-width: 480px) {
  .lp_container .problem_item {
    width: 66%;
  }
}

@media (max-width: 480px) {
  .lp_container .problem_item:nth-of-type(odd) {
    margin-right: auto;
    margin-left: 0;
  }

  .lp_container .problem_item:nth-of-type(even) {
    margin-left: auto;
    margin-right: 0;
  }
}

.lp_container .problem_img_box {
  border-radius: 10px;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: center;

}

@media (max-width: 480px) {
  .lp_container .problem_img_box {
    margin-bottom: 10px;
  }
}

/* .lp_container .problem_img_box.add_problem_pb {
  padding-bottom: initial;
  min-height: 240px;
} */

.lp_container .problem_img_box img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.lp_container .problem_item_txt {
  font-size: 16px;
  letter-spacing: 0.64px !important;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
}

.lp_container .problem_message {
  text-align: center;
}

.lp_container .problem_message_txt {
  font-size: 24px;
  letter-spacing: 0.96px !important;
  color: #333;
}

@media (max-width: 480px) {
  .lp_container .problem_message_txt {
    font-size: 18px;
    letter-spacing: 0.72px !important;
  }
}

.lp_container .problem_message_txt span {
  font-size: 40px;
  letter-spacing: 1.6px !important;
  font-weight: bold;
  margin-left: 10px;
}

@media (max-width: 480px) {
  .lp_container .problem_message_txt span {
    font-size: 24px;
    letter-spacing: 0.96px !important;
  }
}

/* <!----- ENERICH蓄電池ならではの特長 -----> */
.lp_container .lp_feature {
  width: 100%;
  padding: 100px 0 140px;
  background-image: url('/wp-content/themes/_child/images/enerich/tokuchou_all_bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  position: relative;
}

@media (max-width: 480px) {
  .lp_container .lp_feature {
    /* 背景画像を再定義（パスに間違いがないか念押し） */
    background-image: url('/wp-content/themes/_child/images/enerich/tokuchou_all_bg.webp') !important;
    background-size: auto !important;
    background-attachment: scroll !important;
    background-position: 50% 0 !important;
    background-repeat: repeat !important;
    padding: 90px 0 140px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}


.lp_container .lp_feature::after {
  content: "";
  position: absolute;
  top: -0.1%;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 40px 55px 0 55px;
  border-color: #e9eeef transparent transparent transparent;
}

@media (max-width: 480px) {
  .lp_container .lp_feature::after {
    border-width: 28px 40px 0 40px;
  }
}

.lp_container .feature_main_title {
  font-size: 32px;
  letter-spacing: 1.28px !important;
  font-weight: bold;
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: 0.1em;
  color: #fff;
}

@media (max-width: 480px) {
  .lp_container .feature_main_title {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

.lp_container .feature_main_title span {
  font-size: 48px;
  letter-spacing: 1.92px !important;
  margin-left: 10px;
}

@media (max-width: 480px) {
  .lp_container .feature_main_title span {
    font-size: 24px;
    letter-spacing: 0.96px !important;
    margin-left: 2px;
  }
}

.lp_container .feature_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
}

@media (max-width: 480px) {
  .lp_container .feature_grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.lp_container .feature_card {
  width: calc(50% - 18px);
  /* background: rgba(255, 255, 255, 0.05); */
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .lp_container .feature_card {
    width: 100%;
  }
}

.lp_container .feature_card:hover {
  cursor: pointer;
  opacity: 1;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.18);
}
@media (max-width: 480px) {
  .lp_container .feature_card:hover {
    background:initial;
  }
}

.lp_container .feature_card:nth-child(even) {
  margin-top: 60px;
  margin-bottom: -60px;
}

@media (max-width: 480px) {
  .lp_container .feature_card:nth-child(even) {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.lp_container .feature_card_title {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.96px !important;
  margin-bottom: 4px;
  color: #fff;
  font-weight: bold;
}

.lp_container .feature_card_img {
  width: 84%;
  margin: 0 auto 20px;
}

.lp_container .feature_card_img img {
  max-width: 100%;
  height: auto;
}

.lp_container .feature_card_note {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.64px !important;
  font-weight: bold;
  letter-spacing: 0.05em;
}

/* <!--------- 特長1 ---------> */
.lp_container .feature_detail_border {
  background-color: #333333;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  position: relative;
  overflow: visible;
  padding: 80px 0 100px;
}

@media (max-width: 480px) {
  .lp_container .feature_detail_border {
    padding: 80px 0;
  }
}

.lp_container .feature_bg_wrapper {
  width: 100%;
  min-height: 700px;
  height: auto;
  background-image: url('/wp-content/themes/_child/images/enerich/tokuchou1_bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px 0;
}

@media (max-width: 480px) {
  .lp_container .feature_bg_wrapper {
    padding: 40px 0;
    margin: 40px 0 0;
  }
}

@media (max-width: 480px) {
  .lp_container .feature_bg_wrapper.add_feature2_bg_fill {
    padding: 40px 0 0;
  }
}

/* 特長1：2番目のdivの中の背景 */
.lp_container .lp_feature>div:nth-of-type(2) .feature_bg_wrapper {
  background-image: url('/wp-content/themes/_child/images/enerich/tokuchou1_bg.webp');
}

/* 特長2：3番目のdivの中の背景 */
.lp_container .lp_feature>div:nth-of-type(3) .feature_bg_wrapper {
  background-image: url('/wp-content/themes/_child/images/enerich/tokuchou2_bg.webp');
}

/* 特長3：4番目のdivの中の背景 */
.lp_container .lp_feature>div:nth-of-type(4) .feature_bg_wrapper {
  background-image: url('/wp-content/themes/_child/images/enerich/tokuchou3_bg.webp');
}

/* 特長4：5番目のdivの中の背景 */
.lp_container .lp_feature>div:nth-of-type(5) .feature_bg_wrapper {
  background-image: url('/wp-content/themes/_child/images/enerich/tokuchou4_bg.webp');
}

.lp_container .feature_detail_container {
  margin-top: 180px;
  position: relative;
  scroll-margin-top: 30px;
}

@media (max-width: 480px) {
  .lp_container .feature_detail_container {
    scroll-margin-top: 77px;
    margin-top: 120px;
  }
}

.lp_container .feature_fixed_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/wp-content/themes/_child/images/enerich/tokuchou_all_bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.lp_container .feature_label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(to bottom left, #FBB584 0%, #FBB584 8%, #F37321 80%);
  color: #fff;
  padding: 28px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  z-index: 10;
  letter-spacing: 0.64px !important;
}

@media (max-width: 480px) {
  .lp_container .feature_detail_inner {
    padding: 0 10px;

  }
}


.lp_container .feature_detail_title {
  font-size: 48px;
  letter-spacing: 1.92px !important;
  text-align: center;
  font-weight: bold;
  color: #fff;
  margin-bottom: 60px;
}

@media (max-width: 480px) {
  .lp_container .feature_detail_title {
    font-size: 24px;
    letter-spacing: 0.96px !important;
    margin-bottom: 40px;

  }
}

.lp_container .feature_main_visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lp_container .visual_content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 134px;
  align-items: end;
  text-align: left;
  top: 50%;
  left: 56%;
  transform: translate(-50%, 0%);
}

@media (max-width: 480px) {
  .lp_container .visual_content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 32px;
    top: initial;
    left: initial;
    transform: initial;
  }
}

@media (max-width: 480px) {
  .lp_container div.visual_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .lp_container .visual_text_side {
    order: 1;
  }

  .lp_container .visual_image_side {
    order: 2;
  }
}

.lp_container .visual_text_side {
  width: 54%;
}

.lp_container .visual_text_side.add_visual_ate {
  margin-bottom: 20px;
}


.lp_container .visual_content.add_text_gap {
  gap: 116px;
}

.lp_container .visual_text_side.add_wid {
  width: 58%;
}

@media (max-width: 480px) {
  .lp_container .visual_text_side.add_wid {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .lp_container .visual_text_side {
    width: 100%;
  }
}

.lp_container .visual_sub_title {
  font-size: 32px;
  letter-spacing: 1.28px !important;
  background: linear-gradient(74deg, #F37321 0%, #FBB584 46%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: bold;
  line-height: 48px;
  margin-bottom: 46px;
}

@media (max-width: 480px) {
  .lp_container .visual_sub_title {
    line-height: 1.42;
    margin-bottom: 30px;
  }
}

.lp_container .visual_desc {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px !important;
  line-height: 28px;
  color: #fff;
}

.lp_container .visual_note {
  font-size: 12px;
  letter-spacing: 0.48px !important;
  margin-top: 30px;
  color: #FFFFFF;
  font-weight: 500;
}

.lp_container .visual_image_side {
  width: 55%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 480px) {
  .lp_container .visual_image_side {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .lp_container .visual_image_side.add_sp_fill {}
}

@media (max-width: 480px) {
  .lp_container .visual_image_side.add_sp_fill {
    padding: 40px 20px;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.4) 100%);
    margin-right: -15px;
    margin-left: -15px;
    width: auto;
  }

  .lp_container .visual_image_side.add_sp_fill::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
  }

  .lp_container .visual_image_side.add_sp_fill picture img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
  }
}


.lp_container .btn_3d {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 10px 46px;
  font-size: 16px;
  letter-spacing: 0.64px !important;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.lp_container .btn_3d:hover {
  background: #CCCCCC;
  opacity: 1;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .lp_container .btn_3d:hover {
    background: #fff;
  }
}

.lp_container .feature_point_area {
  margin-top: 80px;
  margin-left: 66px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
}

@media (max-width: 480px) {
  .lp_container .feature_point_area {
    flex-direction: column;
    margin-left: initial;
    align-items: normal;
    gap: 40px;
    margin-top: 80px;
  }
}

.lp_container .point_title_wrap {
  width: 24.8%;
}

@media (max-width: 480px) {
  .lp_container .point_title_wrap {
    width: 76%;
  }
}

.lp_container .point_title {
  font-size: 24px;
  letter-spacing: 0.96px !important;
  font-weight: bold;
  color: #fff;
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
}

.lp_container .point_title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

@media (max-width: 820px) {
  .lp_container .point_title::after {
    bottom: -8px;
  }
}

.lp_container .point_circles {
  display: flex;
  gap: 36px;
}

@media (max-width: 820px) {
  .lp_container .point_circles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
  }
}

.lp_container .point_circle_item {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.56px !important;
  font-weight: 500;
  background: #333333;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.5);
}

@media (max-width: 820px) {
  .lp_container .point_circle_item:first-child {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    width: auto;
    height: auto;
    margin-bottom: 4px;
  }
}

.lp_container .point_circle_item span {
  font-size: 14px;
  letter-spacing: 0.56px !important;
  font-weight: 500;
  line-height: 20px;
}

@media (max-width: 820px) {

  .lp_container .point_circle_item,
  .lp_container .point_circle_item:first-child span {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #333333;
    box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
}

/* （製品についてもっと詳しく知りたい方へ） */
.lp_container .lp_cta {
  padding: 124px 0;
  background-color: #fff;
}

@media (max-width: 480px) {
  .lp_container .lp_cta {
    padding: 40px 0;
  }
}


.lp_container .cta_banner {
  background-image: url('/wp-content/themes/_child/images/enerich/cta_section_bg.webp');
  background-position: center;
  border-radius: 10px;
  padding: 40px 40px;
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .lp_container .cta_banner {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media (max-width: 480px) {
  .lp_container .cta_banner {
    background-image: url('/wp-content/themes/_child/images/enerich/SP_cta_section_bg.webp');
    min-height: 436px;
    background-size: cover;
    padding: 40px 36px;
  }
}

.lp_container .cta_title {
  color: #fff;
  font-size: 32px;
  letter-spacing: 1.28px !important;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .lp_container .cta_title {
    font-size: 24px;
    letter-spacing: 0.96px !important;
    margin-bottom: 82px;
  }
}

.lp_container .cta_button_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

@media (max-width: 820px) {
  .lp_container .cta_button_wrap {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .lp_container .cta_button_wrap {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}

.lp_container .cta_catalog_btn_container {
  position: relative;
  display: flex;
  align-items: center;
}

@media (max-width: 480px) {
  .lp_container .cta_catalog_btn_container {
    width: 100%;
    justify-content: center;
  }
}

.lp_container .cta_catalog_thumb {
  position: absolute;
  left: -55px;
  bottom: -10px;
  width: 110px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 480px) {
  .lp_container .cta_catalog_thumb {
    left: -30px;
    bottom: 18px;
  }
}

/* 共通設定 */
.lp_container .btn_cta {
  position: relative;
  overflow: hidden;
  color: #fff !important;
  transition: box-shadow 0.3s ease;
  z-index: 1;
  padding: 12px 44px;
  border-radius: 50px;
  max-width: 312px;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 480px) {
  .lp_container .btn_cta {
    max-width: 290px;
    padding: 12px 22px;
  }
}


.lp_container .btn_cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  max-width: 312px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.lp_container .btn_cta:hover {
  box-shadow: 0px 3px 6px #00000029;
  opacity: 1;
  transform: none;
}


.lp_container .btn_cta:hover::after {
  opacity: 0.7;
}
@media (max-width: 480px) {
  .lp_container .btn_cta:hover::after {
    opacity: 1;
    background: #F37321;
  }
}
@media (max-width: 480px) {
  .lp_container .btn_cta.btn_beige:hover::after {
    opacity: 1;
    background-color: #f5b085;
  }
}

.lp_container .btn_orange {
  background: #F37321;
}

.lp_container .btn_beige {
  background-color: #f5b085;
}

.lp_container .cta_link_wrap {
  margin-top: 20px;
}

.lp_container .lp_cta .cta_contact_link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.64px !important;
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  font-weight: 500;
  position: relative;
  padding-right: 12px;
}

.lp_container .lp_cta .cta_contact_link::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 0px;
  transform: translateY(-50%) rotate(45deg);
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: right 0.3s ease;
}

.lp_container .lp_cta .cta_contact_link:hover::after {
  right: -10px;
}
@media (max-width: 480px) {
  .lp_container .lp_cta .cta_contact_link:hover::after {
    right:0px;
  }
}

.lp_container .lp_cta .cta_contact_link:hover {
  color: #DDDDDD;
  opacity: 1;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .lp_container .lp_cta .cta_contact_link:hover {
color: #fff;
  }
}


/* <!----- ここも見逃せないポイント ------> */
.lp_container .lp_points {
  background-color: #fff;
}

@media (max-width: 480px) {
  .lp_container .lp_points {
    padding: 0;
  }
}

.lp_container .points_main_title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  letter-spacing: 1.28px !important;
  font-weight: 700;
  margin-bottom: 80px;
  color: #333;
  gap: 70px;
  margin-bottom: 80px;
}

.lp_container .points_main_title span {
  margin-left: -68px;
}

@media (max-width: 480px) {
  .lp_container .points_main_title {
    font-size: 18px;
    letter-spacing: 0.72px !important;
    margin-bottom: 40px;
    gap: 20px;
    margin-right: -15px;
    margin-left: -15px;
  }
}

.lp_container .points_main_title span {
  font-size: 40px;
  letter-spacing: 1.6px !important;
}

@media (max-width: 480px) {
  .lp_container .points_main_title span {
    font-size: 24px;
    letter-spacing: 0.96px !important;
    margin-left: -18px;
  }
}

.lp_container .points_main_title::before,
.lp_container .points_main_title::after {
  content: "";
  flex: 1;
  height: 3px;
  background: linear-gradient(to right, #F37321 0%, rgba(243, 115, 33, 0) 100%);
}

.lp_container .points_main_title::before {
  transform: scaleX(-1);
}

.lp_container .point_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 148px;
  gap: 134px;
}

@media (max-width: 480px) {
  .lp_container .point_item {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
  }
}


.lp_container .point_item.add_phone_bet {
  gap: 10px;
}

.lp_container .point_item.flex_reverse {
  flex-direction: row-reverse;
}

@media (max-width: 480px) {
  .lp_container .point_item.flex_reverse {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
  }
}

.lp_container .point_text {
  width: 39.8%;
}

@media (max-width: 480px) {
  .lp_container .point_text {
    width: 100%;
  }
}

.lp_container .point_text.add_point_wid {
  width: 56.4%;
}

@media (max-width: 480px) {
  .lp_container .point_text.add_point_wid {
    width: 100%;
  }
}

.lp_container .point_image {
  flex: 1;
}

.lp_container .point_image img {
  width: 100%;
  height: auto;
}

.lp_container .point_sub_title {
  font-size: 32px;
  letter-spacing: 1.28px !important;
  font-weight: 700;
  border-left: 17px solid #F37321;
  padding-left: 15px;
  margin-bottom: 45px;
  line-height: 1.4;
  color: #333;
}

@media (max-width: 480px) {
  .lp_container .point_sub_title {
    font-size: 24px;
    letter-spacing: 0.96px !important;
    padding: 13px 0 13px 15px;
    margin-bottom: 40px;
  }
}

.lp_container .point_description {
  font-size: 14px;
  letter-spacing: 0.56px !important;
  line-height: 1.8;
  color: #333;
  font-weight: 500;
  margin-bottom: 80px;
}

.lp_container .btn_point_link {
  display: inline-flex;
  align-items: center;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  letter-spacing: 0.64px !important;
  font-weight: 500;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 480px) {
  .lp_container .btn_point_link {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    max-width: 312px;
    padding: 12px 10px;
  }
}

.lp_container .btn_point_link::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.lp_container .btn_point_link:hover {
  opacity: 1;
  background-color: #707070;
}
@media (max-width: 480px) {
  .lp_container .btn_point_link:hover {
    background-color: #333;
    color: #fff;
  }
}

.lp_container .btn_point_link:hover::after {
  transform: translateX(5px) rotate(45deg);
}
@media (max-width: 480px) {
  .lp_container .btn_point_link:hover::after {
    transform: translateX(0) rotate(45deg);
  }
}

.lp_container .point_image_phone {
  flex: 1;
  max-width: 552px;
  width: 100%;
  margin-left: 50px;
}

@media (max-width: 480px) {
  .lp_container .point_image_phone {
    margin-left: 0;
    max-width: 100%;
  }
}

.lp_container .point_image_phone img {
  width: 100%;
  height: auto;
}

.lp_container .point_icons {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .lp_container .point_icons {
    justify-content: center;
    margin-top: -18px;
  }
}

.lp_container .icon_circle {
  width: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .lp_container .icon_circle {
    width: 100%;
    max-width: 168px;
  }
}

/* -----↓↓↓sp版のみ表示AR機能↓↓↓---- */
.lp_container .ar-simulation-sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .lp_container .ar-simulation-sp {
    display: block;
    padding: 0 15px 80px;
  }

  .lp_container .ar-title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.64px !important;
    color: #333333;
    margin: 0 0 30px 0;
    position: relative;
    padding-bottom: 10px;
  }

  .lp_container .ar-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #F37321 0%, rgba(243, 115, 33, 0) 100%);
    margin-left: -15px;
  }

  .lp_container .ar-description {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0 0 40px 0;
  }

  .lp_container .ar-grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .lp_container .ar-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48.7%;
    border: 1px solid #333333;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  .lp_container .ar-capacity {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.64px !important;
    font-weight: bold;
    margin: 0 0 8px 0;
    box-sizing: border-box;
  }

  .lp_container .ar-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-bottom: 17px;
  }

  .lp_container .ar-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .lp_container .ar-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.56px !important;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0px 3px 6px #00000029;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    opacity: 1;
  }
}

/* -----↓↓↓sp版のみ表示AR機能↓↓↓---- */





/* <!--------- 保証について ---------> */
.lp_container .lp_warranty {
  padding: 120px 0;
  background-color: #DCE2DB;
}

@media (max-width: 480px) {
  .lp_container .lp_warranty {
    padding: 40px 0;
  }
}

.lp_container .warranty_main_title {
  text-align: center;
  font-size: 40px;
  letter-spacing: 1.6px !important;
  font-weight: 700;
  margin-bottom: 80px;
  color: #333;
}

@media (max-width: 480px) {
  .lp_container .warranty_main_title {
    font-size: 24px;
    letter-spacing: 0.96px !important;
    margin-bottom: 40px;
  }
}

.lp_container .warranty_box {
  padding: 140px 0 0;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 140px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

@media (max-width: 480px) {
  .lp_container .warranty_box {
    padding: 160px 0 0;
    margin-bottom: 120px;
  }
}

.lp_container .warranty_header.add_warranty_wid {
  /* padding: 0 0 0 4px; */
}

.lp_container .warranty_header {
  display: inline-flex;
  align-items: center;
  background-color: #6a7372;
  color: #fff;
  height: 76px;
  padding: 0 6px 0 24px;
  font-size: 20px;
  font-weight: 700;
  position: absolute;
  top: 40px;
  clip-path: polygon(0% 0%,
      100% 0%,
      calc(100% - 15px) 50%,
      100% 100%,
      0% 100%);
}

@media (max-width: 480px) {
  .lp_container .warranty_header {
    padding: 0 20px 0 15px;
  }
}

.lp_container .warranty_header.gray {
  top: 142px;
}

.lp_container .warranty_header::before {
  content: "15年の蓄電システム保証";
  display: flex;
  align-items: center;
  background-color: #6a7372;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.96px !important;
  font-weight: 700;
  padding: 0 80px 0 80px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .lp_container .warranty_header::before {
    padding: 0;
    white-space: normal;
  }
}

.lp_container .warranty_header.gray::before {
  content: "通常の15年製品保証に5年追加";
}

@media (max-width: 480px) {
  .lp_container .warranty_header.gray::before {
    /* \A が改行コード */
    content: "通常の15年製品保証に\A 5年追加";
    /* 改行コードを有効化するために必須 */
    white-space: pre-wrap;
    /* 改行を反映させるためインラインから変更 */
    display: inline-block;
    text-align: left;
  }
}

.lp_container .warranty_header::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent transparent transparent #6a7372;
}

.lp_container .warranty_header.gray {
  background-color: #6a7372;
}

@media (max-width: 480px) {
  .lp_container .warranty_header.gray {
    padding: 0 43px 0 15px;
    height: 103px;
  }
}

.lp_container .warranty_sub_title {
  display: none;
}

.lp_container .warranty_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  max-width: 844px;
  margin: 0 auto;
  padding: 0 12px 100px;
  font-weight: 500;
}

@media (max-width: 480px) {
  .lp_container .warranty_content {
    flex-direction: column;
    gap: 30px;
    padding: 0 12px 30px;
  }
}

.lp_container .warranty_content.flex_between {
  max-width: 935px;
  width: 100%;
}

@media (max-width: 480px) {
  .lp_container .warranty_content.flex_between {
    padding: 0 12px 80px;
  }
}

.lp_container .flex_center {
  justify-content: center;
  align-items: center;
}

.lp_container .flex_between {
  justify-content: space-between;
  align-items: center;
}

.lp_container .warranty_badge {
  width: 28.5%;
}

@media (max-width: 480px) {
  .lp_container .warranty_badge {
    width: 100%;
    max-width: 130px;
  }
}

.lp_container .warranty_badge img {
  width: 100%;
  height: auto;
}

.lp_container .warranty_graph img {
  width: 100%;
  max-width: 550px;
  height: auto;
  margin-bottom: 10px;
}

.lp_container .warranty_note {
  font-size: 12px;
  letter-spacing: 0.48px !important;
  line-height: 18px;
  padding-left: 1em;
  text-indent: -1em;
}

.lp_container .warranty_box.special {
  background-color: #333;
  padding-top: 0;
  margin-bottom: initial;
}

.lp_container .special_intro {
  padding: 40px 0 20px;
  text-align: center;
  position: relative;
}

.lp_container .intro_circle {
  display: block;
  width: 111px;
  height: 111px;
  background-color: #fff;
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.8px;
  position: absolute;
  left: 92px;
  top: -58px;
  letter-spacing: 0.8px !important;
  padding-left: 14px;
}

@media (max-width: 1024px) {
  .lp_container .intro_circle {
    left: 10px;
  }
}

@media (max-width: 480px) {
  .lp_container .intro_circle {
    top: -78px;
    left: 20px;
  }
}

.lp_container .special_main_title {
  color: #fff;
  font-size: 32px;
  letter-spacing: 1.28px !important;
  font-weight: 700;
  display: inline-block;
}

@media (max-width: 480px) {
  .lp_container .special_main_title {
    font-size: 24px;
    letter-spacing: 0.96px !important;
  }
}

.lp_container .warranty_box_inner {
  background-color: #fff;
  margin: 0 0px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
  margin-top: -100px;
  padding-top: 96px;
  border-radius: 10px;
}

@media (max-width: 480px) {
  .lp_container .warranty_box_inner {
    padding-bottom: 40px;
    margin-top: -110px;
  }
}

.lp_container .special_lead {
  font-size: 14px;
  letter-spacing: 0.56px !important;
  line-height: 28px;
  font-weight: 500;
  color: #333;
  max-width: 935px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 12px 0;
}

@media (max-width: 480px) {
  .lp_container .special_lead {
    margin-bottom: 20px;
    padding: 170px 12px 0;
  }
}


.lp_container .special_visual_left {
  width: 48%;
  max-width: 400px;
  width: 100%;
}

.lp_container .special_visual_left img {
  /* width: 100%;
  max-width: 400px;
  height: auto; */
}

.lp_container .special_visual_arrow {
  width: 6%;
  max-width: 50px;
  width: 100%;
}

@media (max-width: 480px) {
  .lp_container .special_visual_arrow {
    width: 36px;
    max-width: none;
    margin: 20px auto;
  }

  .lp_container .special_visual_arrow img {
    width: 100%;
    height: auto;
    transform: rotate(90deg);
  }
}

.lp_container .special_visual_arrow img {
  /* width: 100%;
  max-width: 400px;
  height: auto; */
}

.lp_container .special_visual_right {
  width: 48%;
  max-width: 387px;
  width: 100%;
}

.lp_container .special_visual_right img {
  /* width: 100%;
  max-width: 450px;
  height: auto; */
}

.lp_container .warranty_footer_banner {
  text-align: center;
  max-width: 552px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0px 3px 6px #00000029;
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .lp_container .warranty_footer_banner {
    max-width: 92%;
  }
}

.lp_container .warranty_footer_banner a:hover {
  transition: all 0.3s ease;
}

.lp_container .warranty_footer_banner a:hover img {
  opacity: 0.8;
}

.lp_container .warranty_box.special {
  background-color: transparent;
  padding-top: 0;
}

.lp_container .special_intro {
  background-color: #333;
  padding: 44px 0 44px;
  text-align: center;
  position: relative;
  z-index: 2;
  border-bottom-left-radius: 70% 36px;
  border-bottom-right-radius: 70% 36px;
}

@media (max-width: 480px) {
  .lp_container .special_intro {
    margin-right: -15px;
    margin-left: -15px;
  }
}

@media (max-width: 480px) {
  .lp_container .special_intro {
    background-color: transparent;
    padding: 44px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-left: -15px;
    margin-right: -15px;
    width: auto;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 375 140' preserveAspectRatio='none'%3E%3Cpath d='M0 0h375v120Q187.5 145 0 120z' fill='%23333333'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}

/* <!--------- 製品スペック ---------> */
.lp_container .spec_se {
  padding: 120px 20px;
}

@media (max-width: 480px) {
  .lp_container .spec_se {
    padding: 80px 15px;
  }
}

.lp_container .lp_spec {
  padding: 0 0 60px 0;
  display: flex;
  max-width: 1076px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 80px 100px;
  align-items: flex-start;
}

@media (max-width: 480px) {
  .lp_container .lp_spec {
    padding: 36px 0 0;
    flex-direction: column;
    gap: 80px;
  }
}

.lp_container .spec_title {
  text-align: center;
  font-size: 40px;
  letter-spacing: 1.6px !important;
  font-weight: 700;
  margin-bottom: 80px;
  color: #333;
}

@media (max-width: 480px) {
  .lp_container .spec_title {
    font-size: 24px;
    margin-bottom: initial;
  }
}


.lp_container .spec_container {
  width: calc(50% - 50px);
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .lp_container .spec_container {
    width: 100%;
  }
}


.lp_container .spec_header_visible {
  text-align: center;
  margin-bottom: 24px;
}

.lp_container .spec_product_name {
  font-size: 24px;
  letter-spacing: 0.96px !important;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}

@media (max-width: 480px) {
  .lp_container .spec_product_name {
    font-size: 20px;
    margin-bottom: 10px;
  }
}


.lp_container .spec_main_visual {
  height: 312px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp_container .spec_main_visual img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.lp_container .spec_accordion_item {
  background-color: #fff;
  width: 100%;
}

.lp_container .spec_summary {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  font-size: 16px;
  letter-spacing: 0.64px !important;
  font-weight: 500;
  user-select: none;
  border: 1px solid #CCCCCC;
}

.lp_container .spec_icon {
  position: absolute;
  right: 20px;
  width: 12px;
  height: 12px;
}

.lp_container .spec_icon::before,
.lp_container .spec_icon::after {
  content: "";
  position: absolute;
  background-color: #333;
}

.lp_container .spec_icon::before {
  width: 12px;
  height: 1px;
  top: 5px;
  left: 0;
}

.lp_container .spec_icon::after {
  width: 1px;
  height: 12px;
  top: 0;
  left: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lp_container .js-accordion.is-open .spec_icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.lp_container .spec_content_wrapper {
  overflow: hidden;
}

@media (max-width: 480px) {
  .lp_container .spec_content_wrapper {
    overflow-x: auto;
  }
}

.lp_container .spec_content {}

@media (max-width: 480px) {
  .lp_container .spec_content {
    min-width: 484px;
  }
}

.lp_container .ac_close_btn {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  letter-spacing: 0.56px !important;
  cursor: pointer;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .lp_container .ac_close_btn {
    margin: 20px auto;
  }
}

.lp_container .ac_close_btn:hover {
  opacity: 0.8;
}

.lp_container .spec_row {
  display: flex;
  padding-bottom: 20px;
  font-size: 12px;
  line-height: 1.7;
  text-align: left;
  justify-content: center;
  gap: 36px;
}

.lp_container .spec_row dt {
  width: 48%;
  font-weight: 700;
  letter-spacing: 0.48px !important;
  line-height: 19.2px;
  padding-right: 10px;
}

.lp_container .spec_row dd {
  width: 46.5%;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.48px !important;
  line-height: 19.2px;
}


/* ----3列spec---- */
.lp_container .spec_table {
  width: 100%;
  margin-top:20px;
}

.lp_container .spec_row.triple_row {
  justify-content: space-between;
  gap: 70px;
  margin-top: -20px;
}

.lp_container .spec_row.triple_row dt {
  width: 20%;
}

.lp_container .spec_row.add_w_pr {
  gap: 10px;
}

.lp_container .spec_row.add_w_pr dt {
  width: 52%;
  padding-right: initial;
}

.lp_container .triple_group {
  width: 70%;
}

.lp_container .full_data {
  width: 60%;
}

.lp_container .sub_item {
  display: flex;
  margin-bottom: 6px;
  gap: 6px;
}

.lp_container .sub_label {
  width: 30%;
  font-weight: 700;
  line-height: 19.2px;
  font-size: 10px;
}

.lp_container .sub_data {
  width: 55%;
  font-weight: 400;
  line-height: 19.2px;
}

/* ↑----3列spec----↑ */

.lp_container .spec_attention {
  font-size: 10px;
  line-height: 18px;
  text-align: left;
  font-weight: 500;
  color: #333333;
  margin-top: -10px;
}
.lp_container .spec_attention:last-child {
  margin-top: 0;
  margin-bottom: 38px;
}






/* <!------- 資料ダウンロード -------> */
.lp_container .download-section {
  position: relative;
  width: 100%;
  padding: 80px 0 274px;
  background-image: url('/wp-content/themes/_child/images/enerich/24603491_m.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .lp_container .download-section {
    padding: 50px 0 230px;
    background-position: right 40% top -210px;
  }
}


.lp_container .download-inner {
  position: relative;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  box-sizing: border-box;
  text-align: center;
}

.lp_container .download-title {
  font-size: 40px;
  letter-spacing: 1.6px !important;
  font-weight: 700;
  color: #333333;
  margin: 0 0 60px 0;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .lp_container .download-title {
    font-size: 24px;
    margin: 0 0 40px 0;
  }
}


.lp_container .catalog-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

@media (max-width: 480px) {
  .lp_container .catalog-container {
    flex-direction: column;
    gap: 40px;
  }
}

.lp_container .catalog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp_container .catalog-name {
  font-size: 24px;
  letter-spacing: 0.96px !important;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  margin: 0 0 20px 0;
  text-align: center;
  letter-spacing: 0.03em;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  .lp_container .catalog-name {
    font-size: 20px;
  }
}


.lp_container .catalog-image {
  width: 267px;
  height: auto;
  margin-bottom: 30px;
}

@media (max-width: 480px) {
  .lp_container .catalog-image {
    margin-bottom: 20px;
  }
}

.lp_container .catalog-image img {
  width: 100%;
  height: auto;
  display: block;
}

.lp_container .catalog-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media (max-width: 480px) {
  .lp_container .catalog-buttons {
    max-width: 267px;
  }
}

.lp_container .download-section .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  margin: 0 auto;
  border-radius: 22px;
  font-size: 16px;
  letter-spacing: 0.64px !important;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  position: relative;
  letter-spacing: 0.02em;
}

.lp_container .download-section .btn-pdf {
  background-color: #FFFFFF;
  color: #333333;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}

.lp_container .download-section .btn-web {
  background-color: #333333;
  color: #FFFFFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}

/* PDFダウンロードボタン（Hover） */
.lp_container .download-section .btn-pdf:hover {
  background-color: #CCCCCC;
  color: #333333;
  opacity: 1;
}
@media (max-width: 480px) {
  .lp_container .download-section .btn-pdf:hover {
    background-color: #FFFFFF;
    color: #333333;
    opacity: 1;
  }
}


/* 電子カタログを見るボタン（Hover） */
.lp_container .download-section .btn-web:hover {
  background-color: #707070;
  color: #FFFFFF;
  opacity: 1;
}
@media (max-width: 480px) {
  .lp_container .download-section .btn-web:hover {
    background-color: #333333;
    color: #FFFFFF;
    opacity: 1;
  }
}


/* （製品についてもっと詳しく知りたい方へ2つ目） */
.lp_container .add_second_btns {
  padding: initial;
  margin-top: -150px;
}


/* <!------- お問い合わせ -------> */
.lp_container .lp_contact {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 20px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .lp_container .lp_contact {
    padding: 80px 15px 0;
  }
}

.lp_container .contact_inner {
  text-align: center;
}

.lp_container .contact_title {
  font-size: 40px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 80px 0;
  letter-spacing: 1.6px !important;
}

@media (max-width: 480px) {
  .lp_container .contact_title {
    font-size: 24px;
    margin: 0 0 40px 0;
  }
}

.lp_container .contact_lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
  margin: 0 0 120px 0;
  letter-spacing: 0.64px !important;
}

@media (max-width: 480px) {
  .lp_container .contact_lead {
    margin: 0 0 40px 0;
  }
}

.lp_container .contact_card_container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 820px) {
  .lp_container .contact_card_container {
    flex-direction: column;
    gap: 30px;
  }
}

.lp_container .contact_card {
  display: flex;
  align-items: center;
  max-width: 31.2%;
  width: 100%;
  height: 120px;
  background-color: #E9ECEF;
  border-radius: 10px;
  text-decoration: none;
  padding: 0 35px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  box-shadow: 0px 3px 6px #00000029;
}

@media (max-width: 820px) {
  .lp_container .contact_card {
    max-width: 100%;
    height: 104px;
  }
}


.lp_container .contact_icon_wrap {
  width: 64px;
  height: 64px;
  background-color: #333333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lp_container .contact_icon_wrap img {
  width: 32px;
  height: auto;
  display: block;
}

.lp_container .contact_text {
  font-size: 16px;
  letter-spacing: 0.64px !important;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.02em;
}

.lp_container .contact_card:hover {
  background-color: #fff;
  transition: all 0.3s ease;
  opacity: 1;
}
@media (max-width: 480px) {
  .lp_container .contact_card:hover {
   background-color: #E9ECEF;
   opacity: 1;
  }
}


.lp_container .contact_card:hover .contact_icon_wrap {
  background-color: #555555;
}
@media (max-width: 480px) {
  .lp_container .contact_card:hover .contact_icon_wrap {
    background-color: #333333;
  }
}


/* 蓄電システム製品一覧ページへバナー */
.lp_container .product_footer_banner {
  text-align: center;
  max-width: 558px;
  width: 100%;
  margin: 80px auto;
}

@media (max-width: 820px) {
  .lp_container .product_footer_banner {
    padding: 0 15px;
    box-sizing: border-box;
    margin: 80px auto 100px;
  }
}


.lp_container .product_footer_banner a {
  transition: all 0.3s ease;
}
@media (max-width: 820px) {
  .lp_container .product_footer_banner a {
    opacity: 1;
  }
}

/* コピーライト */
.lp_container .footer_copyright {
  text-align: center;
  font-size: 12px;
  color: #333333;
  letter-spacing: 0.48px !important;
  margin: 200px auto 20px;
  font-weight: 500;
}

@media (max-width: 480px) {
  .lp_container .footer_copyright {
    padding: 0 15px;
    margin: 120px auto 88px;
  }
}

/* サイドボタン */
.lp_container .side_button_container {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 480px) {
  .lp_container .side_button_container {
    background-color: rgba(51, 51, 51, 0.7);
    padding: 5px 5px 0 5px;
    flex-direction: initial;
    width: 100%;
    top: initial;
    bottom: 0;
    transform: initial;
    gap: 5px;
  }
}

.lp_container .side_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 48px;
  padding: 20px 0;
  height: 184px;
  background-color: #FFFFFF;
  text-decoration: none;
  border-radius: 12px 0 0 12px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  justify-content: center;
}

@media (max-width: 480px) {
  .lp_container .side_btn {
    flex-direction: row;
    width: 50%;
    padding: 0 20px;
    border-radius: 10px 10px 0px 0px;
    height: 60px;
    gap: 10px;
  }
}

.lp_container .side_btn_icon {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333333;
  border-radius: 50%;
  padding: 9px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .lp_container .side_btn_icon {
    margin-bottom: initial;
  }
}

.lp_container .side_btn_icon.add_w_book {
  padding: 7px;
}

.lp_container .side_btn_icon img {
  width: 100%;
  height: auto;
}

.lp_container .side_btn_text {
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px !important;
  color: #333333;
}

@media (max-width: 480px) {
  .lp_container .side_btn_text {
    writing-mode: initial;
  }
}

.lp_container .side_btn:hover {
  background-color: #E9EEEF;
  opacity: 1;
}
@media (max-width: 480px) {
  .lp_container .side_btn:hover {
  background-color: #FFFFFF;
  }
}

/* ---3Dモーダル--- */
.lp_container .modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lp_container .modal-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 800px;
  border-radius: 8px;
}

.lp_container .close-btn {
  position: absolute;
  top: -9%;
  right: -5%;
  z-index: 10000;
  background: #fff;
  color: #000;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px 7px 8px;
  border-radius: 50px;
  width: 50px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .lp_container .close-btn {
    padding: 7px 8px 7px 8px;
  }
}

.lp_container .close-btn:hover {
  background: #CCCCCC;
  opacity: 1;
}

#ar-modal model-viewer {
  width: 100%;
  height: 500px;
  background-color: #fff;
  border-radius: 5px;
}














/* =============================
   cssアニメーション（干渉防止版）
============================= */

/* 全共通：元のレイアウト（flex, block, absolute等）を維持するため、display指定を削除 */
[class*="anime_"] {
  will-change: transform, opacity, clip-path;
}

/* --- anime_up：浮き上がり --- */
.anime_up {
  opacity: 0;
  /* 移動距離を30pxに抑制し、元の位置を壊さないようにする */
  transform: translateY(30px);
  transition: opacity 1.0s ease-out, transform 1.0s ease-out;
}

.anime_up.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* --- anime_left：左から出現 --- */
.anime_left,
.anime_left_slow {
  /* clip-pathは要素の「切り抜き」のみ行うため、配置に一切影響を与えません */
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.anime_left_slow {
  transition-duration: 2.0s;
}

.anime_left.is-active,
.anime_left_slow.is-active {
  clip-path: inset(0 0 0 0);
}

/* 以前の指示にあったスマホ画像（energy_life_style_bg.webp）の制御 */
@media screen and (max-width: 480px) {

  /* その画像が入っているクラス名に合わせて調整してください */
  .sp-only-visual img {
    display: block;
    width: 100%;
    height: auto;
  }
}