/* ========================================
   リセットcss
 ========================================= */
 *,
 *::before,
 *::after {
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
 }
 
 html,
 body,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 ul,
 ol,
 dl,
 li,
 dt,
 dd,
 p,
 div,
 span,
 img,
 a,
 table,
 tr,
 th,
 td {
   border: 0;
   font-size: 100%;
   font-weight: normal;
   margin: 0;
   padding: 0;
   vertical-align: baseline;
 }
 
 header,
 footer,
 nav,
 section,
 article,
 main,
 aside,
 figure,
 figcaption {
   display: block;
 }
 
 ol,
 ul {
   list-style: none;
 }
 
 img {
   height: auto;
   max-width: 100%;
   vertical-align: middle;
 }
 
 a {
   text-decoration: none;
   -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
 }
 
 a:hover,
 a:focus { /* 文字色をアクセントオレンジに */
   text-decoration: underline;
 }
 
 a:active {
   opacity: 0.8; /* クリック時の軽いフィードバック */
 }
 
 button {
   background: transparent;
   border: none;
   -webkit-box-shadow: none;
   box-shadow: none;
   cursor: pointer;
   font: inherit;
   margin: 0;
   padding: 0;
 }
 
 input,
 select,
 textarea {
   color: inherit;
   font: inherit;
   vertical-align: top;
 }
 
 /* ========================================
    ベースcss
  ========================================= */
 html {
   -webkit-text-size-adjust: 100%;
   -webkit-font-smoothing: antialiased;
   scroll-behavior: smooth;
 }
 
 body {
   font-size: 16px;
   /* background: linear-gradient(175deg, #FFF 20.37%, #FFF9EE 96.07%); */
    background-color: #fff;
   -webkit-font-feature-settings: "pkna" 1;
   font-feature-settings: "pkna" 1;
   font-family: "Helvetica Neue", Arial, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Nunito", sans-serif;
   color: #333;
   font-weight: 400;
   line-height: 1.8;
 }
 
 @media screen and (max-width: 996px) {
   body {
     font-size: 15px;
     background-color: #fff;
     -webkit-font-feature-settings: "pkna" 1;
     font-feature-settings: "pkna" 1;
     font-family: "Helvetica Neue", Arial, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", "Nunito", sans-serif;
     color: #333;
     font-weight: 400;
     line-height: 1.8;
   }
 }
 
 img {
   height: auto;
   max-width: 100%;
 }
 
 * {
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
 }
 
 /* ========================================
    ヘッダー
  ========================================= */
 .header {
   background-color: #fff;
   position: relative;
   z-index: 100;
 }
 
 .header__inner {
   max-width: 1180px;
   margin: 0 auto;
   padding: 0 20px;
 }
 
 @media screen and (min-width: 996px) {
   .header__inner {
     padding: 0 40px;
   }
 }
 
 .header__logo {
   display: block;
   padding: 24px 0 14px 0;
   text-align: center;
 }
 
 .header__logo:hover {
   opacity: 0.8;
   -webkit-transform: scale(1.02);
   transform: scale(1.02);
 }
 
 .header__logo img {
   height: 40px;
   width: auto;
 }
 
 @media screen and (min-width: 768px) and (max-width: 996px) {
   .header__logo img {
     height: 50px;
   }
 }
 
 @media screen and (min-width: 996px) {
   .header__logo img {
     height: 50px;
   }
 }
 
 /* ========================================
    Layout
  ========================================= */
 .dl-main {
   padding: 30px 0 60px;
 }
 
 .dl-container {
   max-width: 1180px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr;
   gap: 32px;
   padding: 0 20px;
 }
 
 @media (min-width: 996px) {
   .dl-container {
     grid-template-columns: minmax(0, 1fr) 500px;
     gap: 54px;
   }
 }
 
 .dl-content {
   background: #fff;
   border-radius: 6px;
 }
 
 .dl-sidebar {
   position: relative;
 }
 
 .dl-card {
   /* position: sticky; */
   top: 24px;
   background: #fff;
   box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
   border-radius: 6px;
   padding: 20px;
 }
 
 @media (min-width: 996px) {
   .dl-card {
     padding: 24px;
   }
 }
 
 /* Hero title */
 .dl-hero__title {
   font-weight: 700;
   font-size: 20px;
   line-height: 1.6;
   margin: 0 0 18px;
   margin-right: auto;
   margin-left: auto;
   text-align: center;
 }
 
 @media (min-width: 996px) {
   .dl-hero__title {
     font-size: 28px;
     padding-bottom: 30px;
     border-bottom: 1px solid #ddd;
   }
 }
 
 /* Carousel */
 .dl-carousel {
   position: relative;
   overflow: hidden;
   border-radius: 6px;
   margin: 0 0 28px;
 }
 
 .dl-carousel__track {
   display: flex;
   transition: transform .4s ease;
 }
 
 .dl-carousel__slide {
   min-width: 100%;
   display: flex;           /* ★追加 */
   justify-content: center; /* ★追加：水平方向中央 */
   align-items: center;  
 }

 /* スライド内の画像を中央表示 */
.dl-carousel__slide img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto; /* ★追加：念のため中央寄せ */
}
 
 .dl-carousel__nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: #E77104;
   color: #fff;
   border: none;
   border-radius: 50%;
   width: 36px;
   height: 36px;
   display: grid;
   place-items: center;
   transition: all ease 0.3s;
 }
 
 .dl-carousel__nav.prev {
   left: 8px;
 }
 
 .dl-carousel__nav.next {
   right: 8px;
 }
 
 .dl-carousel__nav:hover {
   background: #f18e31;
   cursor: pointer;
 }
 
 .dl-carousel__dots {
   display: flex;
   gap: 8px;
   justify-content: center;
 }
 
 .dl-carousel__dots .dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   border: 0;
   background: #ddd;
 }
 
 .dl-carousel__dots .dot.is-active {
   background: #EB7100;
 }
 
 /* Section */
 .dl-section {
   margin: 32px 0;
 }
 
 .dl-sec__title {
   font-weight: 700;
   font-size: 20px;
   margin: 0 0 14px;
   padding-bottom: 8px;
   border-bottom: 2px solid #ddd;
   position: relative;
   color: #EB7100;
 }
 
 .dl-sec__title::before {
   content: "";
   position: absolute;
   left: 0;
   bottom: -2px;
   width: 25%;
   height: 2px;
   background: #EB7100;
 }
 
 @media (min-width: 996px) {
   .dl-sec__title {
     font-size: 22px;
   }
 }


 .dl-sec__body p {
   margin: 0 0 12px;

 }
 
 .dl-sec__box {
   padding: 18px;
   border-radius: 6px;
 }
 
 .dl-sec__box--gray {
   background: #f7f7f7;
 }
 
 .dl-under-media {
   margin: 28px 0;
 }
 
 .dl-under-media img {
   display: block;
   margin: 0 auto;
   max-width: 100%;
 }
 
 /* ======== Form（このLP専用）======== */
 .dlp-form-lead {
   text-align: center;
   margin: 0 0 20px;
 }
 
 .dlp-form-lead__img {
   margin: 0 auto 8px;
   max-width: 300px;
 }
 
 .dlp-form-lead__title {
   font-weight: 700;
   line-height: 1.5;
   font-size: clamp(1.125rem, 0.9rem + 1vw, 1.5rem);
   margin-bottom: 10px;
 }
 
 /* ここは .dlp-form-lead__text が直接 <p> を含む/含まない両方に対応 */
 .dlp-form-lead__text,
 .dlp-form-lead__text p {
   font-size: 12px;
   color: #666;
   line-height: 1.7;
   margin: 0;
 }
 
 /* 2カラム行 */
 .form-row {
   /* SPは縦積み（デフォルト） */
 }
 
 @media (min-width: 996px) {
   .form-row {
     display: flex;
     gap: 16px;
   }
 
   .form-row--two > .form-group {
     flex: 1 1 0;
     min-width: 0;
   }
 }
 
 /* グループ・ラベル・入力 */
 .form-group {
   margin: 0 0 20px;
 }
 
 .form-group label {
   display: block;
   font-weight: 700;
   font-size: 14px;
   margin-bottom: 6px;
 }
 
 .form-group label.required::after {
   content: "＊";
   color: #f00;
   font-size: 70%;
   vertical-align: text-top;
 }
 
 .form-group input,
 .form-group select {
   width: 100%;
   padding: 10px 16px;
   border: 1px solid #ddd;
   border-radius: 6px;
   background: #f8f9fa;
   font-size: 16px;
   color: #333;
   transition: border-color .2s, background .2s;
 }

/* セレクトボックスの高さを統一 */
.form-group select {
  height: auto;
  min-height: 48px; /* 入力欄と同じ高さに */
  line-height: 1.5;
}

@media (min-width: 996px) {
  .form-group select {
    min-height: 51px; /* PC版も調整 */
  }
}

 
 .form-group input:focus,
 .form-group select:focus {
   outline: none;
   border-color: #EB7100;
   background: #fff;
 }
 
 .form-privacy {
   font-size: 12px;
   color: #666;
   line-height: 1.7;
   margin: 8px 0 18px;
 }
 
 .privacy-link {
   color: #1a0dab;
   text-decoration: underline;
 }

 .privacy-link:hover {
  color: #EB7100;
  text-decoration: underline;
  cursor: pointer;
}
 
 .form-group--submit {
   text-align: center;
 }
 
 .btn--primary {
   background: linear-gradient(101deg, #EC8E38 -8.07%, #E76F00 95.28%);
   color: #fff;
   border: none;
   transition: all 0.3s ease;
 }

 .btn--primary:hover {
  opacity: 0.9;
  -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.2);
          text-decoration: none;
}
 
 .btn--full {
   width: 100%;
   max-width: 280px;
   padding: 14px 20px;
   border-radius: 40px;
   font-weight: 700;
 }
 
 /* ========================================
    フッター
  ========================================= */
 .footer {
   background-color: #474747;
   color: #fff;
   margin-top: 80px;
 }
 
 .footer__inner {
   max-width: 1180px;
   margin: 0 auto;
   padding: 40px 20px 20px;
 }
 
 @media screen and (min-width: 996px) {
   .footer__inner {
     padding: 60px 40px 30px;
   }
 }
 
 @media screen and (min-width: 996px) {
   .footer__content {
     display: -webkit-box;
     display: -ms-flexbox;
     display: flex;
     -webkit-box-pack: justify;
     -ms-flex-pack: justify;
     justify-content: space-between;
     -webkit-box-align: center;
     -ms-flex-align: center;
     align-items: center;
     margin-bottom: 30px;
   }
 }
 
 .footer__logo {
   text-align: center;
   margin-bottom: 30px;
   display: block;
 }
 
 @media screen and (min-width: 996px) {
   .footer__logo {
     text-align: left;
     margin-bottom: 0;
   }
 }
 
 .footer__logo:hover {
   opacity: 0.8;
   -webkit-transform: scale(1.02);
   transform: scale(1.02);
 }
 
 .footer__logo img {
   height: 40px;
   width: auto;
 }
 
 @media screen and (min-width: 996px) {
   .footer__nav {
     margin-left: auto;
   }
 }
 
 .footer__list {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: end;
   -ms-flex-pack: end;
   justify-content: flex-end;
   gap: 40px;
   margin-bottom: 30px;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
 }
 
 @media screen and (min-width: 768px) and (max-width: 996px) {
   .footer__list {
     margin-bottom: 0;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     -webkit-box-pack: center;
     -ms-flex-pack: center;
     justify-content: center;
     gap: 30px;
   }
 }
 
 @media screen and (min-width: 996px) {
   .footer__list {
     margin-bottom: 0;
     -ms-flex-wrap: wrap;
     flex-wrap: wrap;
     gap: 30px;
   }
 }
 
 .footer__list a {
   color: #bdc3c7;
   font-size: 14px;
   -webkit-transition: color 0.3s;
   transition: color 0.3s;
 }
 
 .footer__list a:hover {
   color: #fff;
   text-decoration: underline;
 }
 
 .footer__copy {
   text-align: center;
   padding-top: 40px;
 }
 
 .footer__copy p {
   font-size: 12px;
   color: #bdc3c7;
 }
 
 /* -----------------------------
    placeholder（入力欄の薄いヒント）スタイル
    調整したい値は下の color / font-size を変えてください
    ----------------------------- */
 
 /* input / textarea 用 */
 .form-group input::placeholder,
 .form-group textarea::placeholder {
   color: #999999; /* プレースホルダ色（変更可） */
   font-size: 14px; /* プレースホルダ文字サイズ（変更可） */
   opacity: 1; /* Firefox 用（透明度を明示） */
 }
 
 /* WebKit系（iOS Safari / Chrome） */
 .form-group input::-webkit-input-placeholder,
 .form-group textarea::-webkit-input-placeholder {
   color: #999999;
   font-size: 14px;
   opacity: 1;
 }
 
 /* Firefox（古い） */
 .form-group input::-moz-placeholder,
 .form-group textarea::-moz-placeholder {
   color: #999999;
   font-size: 14px;
   opacity: 1;
 }
 
 /* IE 10-11 */
 .form-group input:-ms-input-placeholder,
 .form-group textarea:-ms-input-placeholder {
   color: #999999;
   font-size: 14px;
   opacity: 1;
 }
 
 /* Edge 古め */
 .form-group input::-ms-input-placeholder,
 .form-group textarea::-ms-input-placeholder {
   color: #999999;
   font-size: 14px;
   opacity: 1;
 }
 
 /* セレクトの "プレースホルダ扱い"（select の先頭に disabled の空 option を置く想定） */
 .form-group select option[disabled][value=""],
 .form-group select option[disabled].placeholder {
   color: #999999;
   font-size: 14px;
 }
 
 /* SP/タブレット専用ダウンロードボタン */
.dl-download-btn-mobile {
  text-align: center;
  margin: 24px 0 32px;
}

@media (min-width: 996px) {
  .dl-download-btn-mobile {
    display: none; /* PC版では非表示 */
  }
}

/* ダウンロードボタンのスタイル（送信ボタンと同じ） */
.btn--download {
  display: inline-block;
  position: relative;
}

.btn--download::after {
  content: "▼";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
