@charset "utf-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

ul {
  list-style: none;
}

/* ==========================================================================
   pc・sp responsive
   ========================================================================== */
@media screen and (max-width:768px){
  img.sp, .sp {
    display: block !important;
  }
  img.pc, .pc {
    display: none !important;
  }
}
@media screen and (min-width:769px){
  img.sp, .sp {
    display: none !important;
  }
  img.pc, .pc {
    display: block !important;
  }
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.lp-header {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.lp-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 0;
}

/* ロゴ */
.lp-header__logo {
  max-width: 200px;
  flex-shrink: 0;
}
.lp-header__logo a {
  display: block;
}

/* CTAエリア */
.lp-header__cta-list {
  display: flex;
  gap: 15px;
  align-items: center;
}

.lp-header__cta-link {
  display: block;
  transition: opacity 0.3s ease;
}

.lp-header__cta-link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .lp-header__inner {
    max-width: 750px;
    padding: 10px 0;
  }

  .lp-header__logo {
    max-width: 25%;
  }

  .lp-header__nav {
    max-width: 70%;
    width: 100%;
  }

  .lp-header__cta-list {
    gap: 6px;
    justify-content: flex-end;
  }
  
  .lp-header__cta-item {
    flex: 1;
    min-width: 0;
  }
}

/* ==========================================================================
   共通レイアウト
   ========================================================================== */
.contentsL {
  width: 95%;
  max-width: 1350px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .contentsL {
    width: 85% !important;
    max-width: 100%;
  }
}
.contentsM {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

.lp-main {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
    .lp-main {
    padding-top: 60px;
  }
}

/* ==========================================================================
   FV
   ========================================================================== */
.lp-fv {
  width: 100%;
  overflow: hidden;
}

.lp-fv__inner img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   CTA（1250px〜786px）
   ========================================================================== */
.lp-cta {
  background-color: #fffaae;
  padding: 60px 0;
  width: 100%;
}

.lp-cta__container {
  background-color: #ffffff;
  padding: 50px 40px;  
  box-sizing: border-box;
}

.lp-cta__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  /* gap: 40px; 不要のため廃止 */
}

.lp-cta__card {
  flex: 1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.lp-cta__text-img {
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
}

.lp-cta__text-img img {
  height: auto;
  object-fit: contain;
}

.lp-cta__card:nth-child(1) .lp-cta__text-img img {
  width: 100%;
  max-width: 250px; /* 説明会テキスト */
}
.lp-cta__card:nth-child(2) .lp-cta__text-img img {
  width: 100%;
  max-width: 250px; /* 資料請求テキスト */
}
.lp-cta__card:nth-child(3) .lp-cta__text-img img {
  width: 100%;
  max-width: 180px; /* 電話テキスト */
}

.lp-cta__btn-wrap {
  width: 100%;
  text-align: center;
}

.lp-cta__btn {
  display: inline-block;
  width: 100%;
  max-width: 360px;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.22));
}

.lp-cta__btn:hover {
  transform: translateY(2px);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
}

.lp-cta__btn img {
  width: 100%;
  height: auto;
  display: block;
}


@media screen and (min-width: 769px) and (max-width: 1250px) {
  .lp-cta__inner {
    gap: 20px;
  }
  
  .lp-cta__card {
    max-width: 100%;
  }

  .lp-cta__btn {
    max-width: 100%;
  }
}


@media screen and (max-width: 768px) {
  .lp-cta {
    padding: 30px;
  }

  .lp-cta__container {
    width: 100%;
    padding: 40px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
  }

  .lp-cta__inner {
    flex-direction: column;
    gap: 15px;
  }

  .lp-cta__card {
    width: 100%;
    max-width: 100%;
  }

  .lp-cta__text-img {
    margin-bottom: 12px;
    min-height: auto;
  }
  
  .lp-cta__card:nth-child(1) .lp-cta__text-img img {
    width: 100%;
    max-width: 75%;
  }

  .lp-cta__card:nth-child(2) .lp-cta__text-img img {
    width: 100%;
    max-width: 73%;
  }

  .lp-cta__card:nth-child(3) .lp-cta__text-img img {
    width: 100%;
    max-width: 95%;
  }

  .lp-cta__btn {
    max-width: 100%;
    filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.18));
  }
}



/* ==========================================================================
   worries（お悩み）
   ========================================================================== */
.lp-worries {
  width: 100%;
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 60px;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}

.lp-worries__title {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.lp-worries__grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.lp-worries__card {
  flex: 1;
  text-align: center;
}

.lp-worries__card img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .lp-worries {
    padding-top: 50px;
    padding-bottom: 0;
  }
  .lp-worries__title {
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .lp-worries__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    /*padding: 0 15px;*/
  }
}

/* ==========================================================================
   reason（大黒屋が選ばれる4つの理由）
   ========================================================================== */
.lp-reason {
  width: 100%;
  background-color: #fffaac;
  padding-top: 0;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  z-index: 20;
}

.lp-reason__top-badge {
  width: 100%;
  text-align: center;
  line-height: 0;
  margin-bottom: 60px;
  position: relative;
  z-index: 10; 
}

.lp-reason__top-badge-inner {
  width: 100%;
  display: inline-block;
}

.lp-reason__top-badge-inner img {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  margin: 0 auto;
}


.lp-reason__bg-left {
  position: absolute;
  left: 0;
  top: 220px;
  width: 35%;
  max-width: 680px;
  min-width: 280px;
  line-height: 0;
  z-index: 1;
}

.lp-reason__bg-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  max-width: 680px;
  min-width: 280px;
  line-height: 0;
  z-index: 1;
}

.lp-reason__bg-left img,
.lp-reason__bg-right img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-reason__container {
  position: relative;
  z-index: 30;
}

.lp-reason__title {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.lp-reason__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}


h3.lp-reason__card {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(217, 56, 0, 0.06);
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
}

h3.lp-reason__card img {
  width: 100%;
  height: auto;
  display: block;
}

/* PCでSP用のタイトル非表示 */
.lp-reason__ttl-img-sp {
  display: none !important;
}


@media screen and (min-width: 769px) and (max-width: 1100px) {
  .lp-reason__bg-left {
    top: 110px;
    width: 45%;
  }
}


@media screen and (max-width: 768px) {
  .lp-reason {
    padding-bottom: 50px;
  }
  .lp-reason__top-badge {
    margin-bottom: 35px;
  }
  .lp-reason__bg-left {
    top: 130px;
    width: 60%;
  }
  .lp-reason__bg-right {
    width: 60%;
  }
  .lp-reason__title {
    margin-bottom: 30px;
    padding: 0 15px; 
  }
  .lp-reason__ttl-img-sp {
    display: block !important;
    width: 100% !important;
    max-width: 80% !important; 
    height: auto !important;
    margin: 0 auto;
  }
  .lp-reason__list {
    gap: 24px;
    padding: 0 15px;
  }
}

/* ==========================================================================
   movie（動画埋め込みセクション）
   ========================================================================== */
.lp-movie {
  width: 100%;
  background-image: url('../img/movie_bg_pc.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
}

.lp-movie__inner {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

.lp-movie__title {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.lp-movie__video-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  background-color: #000;
  overflow: hidden;
  line-height: 0;
  border: solid 8px #fff;
}

.lp-movie__video-container video {
  width: 100%;
  height: auto;
  display: block;
}


@media screen and (max-width: 768px) {
  .lp-movie {    
    background-image: url('../img/movie_bg_sp.jpg');
    padding: 50px 0;
  }
  .lp-movie__title {
    padding: 0 10% !important;
  }
  
  .lp-movie__title img.sp {
    width: 100% !important;
    max-width: 80% !important;
    height: auto !important;
    margin: 0 auto !important;
  }
  
  .lp-movie__video-container {
    width: 90%;
    border: solid 4px #fff;
  }
}

/* ==========================================================================
   ⑦market（市場環境）
   ========================================================================== */
.lp-market {
  width: 100%;
  background-image: url('../img/market_bg_pc.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.lp-market__title {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto 50px auto;
}

.lp-market__title img {
  display: block;
  margin: 0 auto;
}

.lp-market__content-pc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.lp-market__text-area,
.lp-market__graph-area {
  width: 100%;
  text-align: center;
}

.lp-market__text-area img,
.lp-market__graph-area img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .lp-market {
    background-image: none;
    padding: 0;
  }

  .lp-market .contentsL {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .lp-market__content-sp {
    width: 100%;
    position: relative;
    line-height: 0;
  }

  .lp-market__title--sp {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 15px;
    margin-bottom: 0;
    z-index: 10;
    display: flex !important;
    justify-content: center;
  }

 
  .lp-market__ttl-img-sp {
    display: block !important;
    width: 100% !important;
    max-width: 480px;
    height: auto !important;
  }

 
  .lp-market__sp-base-img {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    height: auto !important;
    visibility: visible !important;
    pointer-events: auto;
  }
}


/* ==========================================================================
   flow
   ========================================================================== */
.lp-flow {
  width: 100%;
background: repeating-linear-gradient(
    45deg,
    #fff2d5,
    #fff2d5 20px,
    #ffeaba 20px,
    #ffeaba 24px
  );
  padding: 80px 0;
  text-align: center;
}

.lp-flow__title {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.lp-flow__content {
  width: 100%;
}

.lp-flow__content img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .lp-flow {
    padding: 50px 0;
    background: repeating-linear-gradient(45deg, #fff2d5, #fff2d5 10px, #ffeaba 10px, #ffeaba 14px);
  }

  .lp-flow__title {
    margin-bottom: 30px;
    padding: 0 20% !important;
  }
  .lp-flow__title img.sp {
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .lp-flow__container {
    width: 90% !important;
    max-width: 90% !important;
    margin: 0 auto;
    padding: 0 !important;
  }

  .lp-flow__content img {
    width: 100%;
    display: block;
    height: auto;
  }
}


/* ==========================================================================
   footer
   ========================================================================== */
.lp-footer {
  width: 100%;
  background-color: #000;
  padding: 30px 0;
}
.lp-footer__inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
.lp-footer__copyright {
  color: #fff;
  font-size: 14px;
  margin: 0;
  font-family: sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

/* ==========================================================================
   下層・プライバシーポリシー
   ========================================================================== */
.privacy-page {
  background-color: #fcfbfa;
  padding: 100px 20px 80px 20px;
  font-family: "Noto Sans JP", sans-serif;
}

/* メインコンテナ */
.privacy-container {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  padding: 0;
  box-sizing: border-box;
}

/* オレンジ背景メインタイトル */
.privacy-main-title {
  background-color: #f15a24;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  padding: 15px 25px;
  margin: 25px 0;
  text-align: left;
  letter-spacing: 0.05em;
}

.privacy-meta {
  padding: 0 30px;
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 30px;
}

.privacy-lead-block {
  padding: 0 30px;
  margin-bottom: 40px;
}
.privacy-lead-block p {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 20px;
}

.privacy-charter-title {
  background-color: #e6e6e6;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 30px;
  margin: 40px 0 25px 0;
  text-align: left;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.privacy-section {
  padding: 0 30px;
  margin-bottom: 35px;
}

.privacy-sub-title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid #999999;
  text-align: left;
}

.privacy-text {
  font-size: 15px;
  line-height: 1.7;
  color: #000000;
  text-align: left;
}
.privacy-text.note {
  margin-top: 12px;
  color: #333333;
}
.privacy-text.indent {
  margin-bottom: 10px;
}

.privacy-list {
  margin: 15px 0;
  padding: 0;
}
.privacy-list li {
  font-size: 15px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 10px;
  padding-left: 2.5em;
  position: relative;
  text-align: left;
}
.privacy-list li span {
  position: absolute;
  left: 0;
  top: 0;
}

.privacy-signer {
  padding: 0 30px;
  text-align: left;
  margin: 40px 0;
  font-size: 15px;
  line-height: 1.6;
}
.privacy-signer .date {
  margin-top: 10px;
  color: #555555;
}

.privacy-divider {
  border: none;
  border-top: 1px dashed #cccccc;
  margin: 40px 30px;
}

.privacy-contact-box {
  background-color: #f9f9f9;
  border: 1px solid #dddddd;
  padding: 20px;
  margin-top: 15px;
  text-align: left;
}
.privacy-contact-box .company-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
}
.contact-details li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
}
.contact-details li a {
  color: #f15a24;
  text-decoration: underline;
}
.contact-details .closed-days {
  color: #666666;
  font-size: 13px;
  display: inline-block;
  margin-left: 5px;
}

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

  .lp-footer__inner {
    max-width: 750px;
  }

  .lp-footer__copyright {
    font-size: 12px;
  }


  .privacy-page {
    padding: 80px 10px 40px 10px;
  }
  .privacy-container {
    width: 100% !important;
    max-width: 100% !important;
  }
  .privacy-main-title {
    font-size: 20px;
    padding: 12px 15px;
    margin-bottom: 15px;
  }
  .privacy-meta,
  .privacy-lead-block,
  .privacy-section,
  .privacy-signer {
    padding: 0 15px;
  }
  .privacy-charter-title {
    font-size: 15px;
    padding: 10px 15px;
    margin: 30px 0 20px 0;
  }
  .privacy-sub-title {
    font-size: 14px;
    padding-bottom: 6px;
  }
  .privacy-lead-block p,
  .privacy-text,
  .privacy-list li,
  .privacy-signer {
    font-size: 13px;
    line-height: 1.6;
  }
  .privacy-list li {
    padding-left: 2.2em;
  }
  .privacy-divider {
    margin: 30px 15px;
  }
  .privacy-contact-box {
    padding: 15px 10px;
  }
  .privacy-contact-box .company-name {
    font-size: 13px;
  }
  .contact-details li {
    font-size: 12px;
    line-height: 1.6;
  }
  .contact-details .closed-days {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }
}


/* ==========================================================================
   voice（先輩オーナーの声）
   ========================================================================== */
.lp-voice {
  padding: 60px 0;
  text-align: center;
}

.lp-voice .lp-section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

.lp-section-title img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.lp-voice__lead {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 40px;
  font-family: sans-serif;
}


.lp-voice__slider-wrap {
  position: relative;
  width: 100%;
  max-width: 1440px; 
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.lp-voice__swiper {
  width: 100%;
  padding: 20px 0 50px 0 !important;
}

.lp-voice__swiper .swiper-slide {
  box-sizing: border-box;
}

/* --- カードデザイン共通 --- */
.lp-voice__card {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.lp-voice__card img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 左右ナビゲーション矢印共通 --- */
.lp-voice__prev,
.lp-voice__next {
  position: absolute;
  width: 44px !important;
  height: 44px !important;
  top: 45%;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.lp-voice__prev::after,
.lp-voice__next::after {
  display: none !important;
}

.lp-voice__prev img,
.lp-voice__next img {
  width: 100%;
  height: auto;
  display: block;
}

.lp-voice__prev { left: 0px; }
.lp-voice__next { right: 0px; }

/* --- インジケーター（下部ドット）共通 --- */
.lp-voice__pagination .swiper-pagination-bullet {
  background: #999999;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
}

.lp-voice__pagination .swiper-pagination-bullet-active {
  background: #ff6f00 !important;
}

@media screen and (min-width: 769px) {
  .lp-voice__swiper .swiper-slide {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .lp-voice__card {
    opacity: 0.5;
    transform: scale(0.9);
  }

  .swiper-slide-active .lp-voice__card {
    opacity: 1;
    transform: scale(1);
  }
}
  @media (max-width: 1400px) {
    .lp-voice {
      padding: 30px 0 60px !important;
    }
    .lp-voice .contentsL {
      width: 95% !important;
      max-width: 1350px !important;
    }
    .lp-voice__slider-wrap {
      padding: 0 40px !important;
    }
  }


@media screen and (max-width: 768px) {
  .lp-voice {
    padding: 20px 0 40px;
  }
  
  .lp-voice__lead {
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 15px;
  }

  .lp-voice .lp-section-title {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding: 0 !important;
    margin-bottom: 20px;
  }

  .lp-voice .lp-section-title img.sp {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .lp-voice__swiper .swiper-slide {
    max-width: calc(100vw - 80px) !important;
  }

  .lp-voice__swiper .swiper-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  
  .lp-voice__swiper .swiper-slide-active {
    opacity: 1;
    visibility: visible;
  }

  .lp-voice__card {
    width: 100%;
    margin: 0 auto;
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  .lp-voice__slider-wrap {
    padding: 0 35px;
  }

  .lp-voice__prev,
  .lp-voice__next {
    display: flex !important;
    width: 32px !important;
    height: 32px !important;
    top: 40%;
    margin-top: -16px;
  }
  .lp-voice__prev { left: 5px; }
  .lp-voice__next { right: 5px; }
}

/* ==========================================================================
   Q&A
   ========================================================================== */
.lp-qa {
  padding: 60px 0;
  font-family: sans-serif;
}
.lp-qa__title-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.lp-qa__title-wrap .lp-qa__title {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.lp-qa__sub-txt {
  font-size: 16px;
  color: #333333;
  font-weight: bold;
  line-height: 1.6;
}

.lp-qa__title {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.lp-qa__title img {
  height: auto;
  margin-bottom: 20px;
}

.lp-qa__title p {
  font-size: 16px;
  color: #333333;
  font-weight: bold;
}

.lp-qa__tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.lp-qa__tab-btn {
  width: 180px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #e24a00;
  border-radius: 30px;
  background-color: #ffffff;
  color: #e24a00;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.lp-qa__tab-btn.is-active {
  background-color: #e24a00;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(226, 74, 0, 0.3);
}

.lp-qa__content {
  display: none;
}
.lp-qa__content.is-active {
  display: block;
}

.lp-qa__item {
  background-color: #ffffff;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.lp-qa__q {
  background-color: #f4f5f7;
  padding: 0;
  font-size: 17px;
  font-weight: bold;
  color: #000000;
  display: flex;
  align-items: center;
  min-height: 56px;
  cursor: pointer;
  position: relative;
}

.lp-qa__icon-q {
  background-color: #002b66;
  color: #ffffff;
  width: 56px;
  align-self: stretch;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  flex-shrink: 0;
  margin-right: 24px !important;
}

.lp-qa__q-txt {
  flex: 1;
  padding-right: 60px;
  text-align: left;
}

/* ＋・ー */
.lp-qa__toggle-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ＋・ーの共通線 */
.lp-qa__toggle-icon::before,
.lp-qa__toggle-icon::after {
  content: "";
  position: absolute;
  background-color: #002b66;
  transition: transform 0.3s ease;
}

/* 横線 */
.lp-qa__toggle-icon::before {
  top: 7px;
  left: 0;
  width: 16px;
  height: 2px;
}

/* 縦線 */
.lp-qa__toggle-icon::after {
  top: 0;
  left: 7px;
  width: 2px;
  height: 16px;
}

.lp-qa__item .lp-qa__toggle-icon::after {
  transform: scaleY(1);
}

.lp-qa__item.is-open .lp-qa__toggle-icon::after {
  transform: scaleY(0);
}

/* 回答エリア */
.lp-qa__a {
  padding: 0 20px 0 0;
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  max-height: 0; /* 高さをゼロに */
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease; /* 開閉アニメーション */
}

.lp-qa__icon-a {
  color: #e24a00;
  font-size: 24px;
  font-weight: bold;
  width: 56px;
  text-align: center;
  flex-shrink: 0;
}

.lp-qa__a-txt {
  flex: 1;
  text-align: left;
}

.lp-qa__a p {
  font-size: 16px;
  color: #000000;
  line-height: 1.8;
}

/* アイテムがオープン（.is-open）の時のスタイル上書き */
.lp-qa__item.is-open .lp-qa__a {
  max-height: 1000px;
  opacity: 1;
  padding: 24px 20px 24px 0;
}

@media screen and (max-width: 768px) {
  .lp-qa {
    padding: 40px 15px;
  }
  .lp-qa__title-wrap {
    margin-bottom: 25px;
  }
  .lp-qa__sub-txt {
    font-size: 13px;
    padding: 0 10px;
  }

  .lp-qa__title img {
    max-width: 60%;
  }

  .lp-qa__title p {
    font-size: 13px;
    padding: 0 10px;
  }

  .lp-qa__tabs {
    gap: 6px;
    margin-bottom: 24px;
  }

  .lp-qa__tab-btn {
    flex: 1;
    width: auto;
    font-size: 12px;
    padding: 10px 0;
  }

  .lp-qa__q {
    font-size: 15px;
    min-height: 60px;
  }

  .lp-qa__icon-q {
    width: 44px;
    font-size: 15px;
    margin-right: 16px !important;
  }
  
  .lp-qa__q-txt {
    padding-right: 45px;
  }
  
  .lp-qa__toggle-icon {
    right: 16px;
    width: 14px;
    height: 14px;
  }
  
  .lp-qa__toggle-icon::before {
    top: 6px;
    width: 14px;
  }
  
  .lp-qa__toggle-icon::after {
    left: 6px;
    height: 14px;
  }

  .lp-qa__a {
    padding: 0 15px 0 0;
  }

  .lp-qa__item.is-open .lp-qa__a {
    padding: 16px 15px 16px 0;
  }

  .lp-qa__icon-a {
    width: 44px;
    font-size: 20px;
  }

  .lp-qa__a p {
    font-size: 16px;
    line-height: 1.6;
  }
}



/* ==========================================================================
   フッター
   ========================================================================== */
.lp-footer {
  width: 100%;
  background-color: #000;
  padding: 30px 0;
}

.lp-footer__inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.lp-footer__nav {
  margin-bottom: 12px;
}


.lp-footer__link {
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  font-family: sans-serif;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.lp-footer__link:hover {
  opacity: 0.7;
}

.lp-footer__copyright {
  color: #fff;
  font-size: 14px;
  font-family: sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 0;
}
