@charset "utf-8";
/* ==========================================================
   DT-01 デジドラページ専用CSS
   ========================================================== */

/* ---- Variables ---- */
:root {
  --dj-dark: #1f2b35;
  --dj-blue: #0054a0;
  --dj-light-blue: #d4e1ed;
  --dj-accent: #f0bf46;
}

/* ---- Utility ---- */
body { margin: 0; color: #222; background: #fff; font-size: 16px;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; }
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; }
.only-sp { display: none; }
@media (max-width: 767px) {
  .only-pc { display: none; }
  .only-sp { display: block; }
}

/* ==========================
   HERO
   ========================== */
.dj-hero {
  background: linear-gradient(0deg, rgba(18, 23, 29, 1) 0%, rgba(54, 63, 72, 1) 88%);
  color: #fff;
}
.dj-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.dj-hero__sub {
  padding-top: 30px;
  position: relative;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  display: block;
  width: 780px;
  margin: 0 auto;
}
.dj-hero__sub span {
  color: #f0bf46;
  position: absolute;
  top: -10px;
  left: -20px;
  transform: rotate(-10deg);
}
.dj-hero__title {
  text-align: center;
}
.dj-hero__title img {
  vertical-align: middle;
}
.dj-hero__title strong {
  font-size: 3.8rem;
  margin-left: 20px;
}
.dj-hero__txt {
  font-weight: 600;
  text-align: center;
}
.dj-hero__txt span {
  width: 120px;
  height: 45px;
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  background: linear-gradient(0deg, rgba(37, 58, 75, 1) 0%, rgba(80, 125, 160, 1) 88%);
  border-radius: 10px;
  line-height: 1;
  vertical-align: top;
  padding-top: 8px;
}
.dj-hero__txt span:nth-child(2) {
  font-size: 1rem;
}
.dj-hero__txt p {
  display: inline-block;
  font-size: 1.7rem;
  margin-top: 8px;
}
.dj-hero__img-area {
  display: flex;
}
.dj-hero__list {
  display: flex;
}
.dj-hero__list div {
  display: block;
  position: relative;
}
.dj-hero__list span {
  display: block;
  text-align: center;
  font-weight: 600;
  width: 60%;
  font-size: 1.1rem;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

/* ==========================
   POINT sections
   ========================== */
.dj-point__head {
  background: var(--dj-light-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
.dj-point__number {
  background: var(--dj-blue);
  color: #fff;
  display: inline;
  font-size: 1.5rem;
  font-weight: 600;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
}
.dj-point__head h2 {
  color: var(--dj-blue);
  margin-left: 20px;
  font-size: 2rem;
}
.dj-point__body {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px 60px;
}
.dj-point--3 .dj-point__body {
  padding: 30px 20px 0;
}
.dj-point__body > p {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin: 0 0 20px;
}

/* features grid */
.dj-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
}
.dj-features__card {
  background: #fff;
  padding: 20px 25px 25px;
  border-radius: 20px;
  border: 1px solid var(--dj-blue);
  text-align: center;
}
.dj-features__card img {
  max-width: 100px;
}
.dj-features__card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dj-blue);
  margin: 0 0 20px;
}
.dj-features__text {
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  color: #000;
  text-align: left !important;
  margin: 0 !important;
}

/* point cards */
.dj-point__cards img {
  width: 100%;
}

/* ==========================
   CTA Button
   ========================== */
.dj-btn {
  margin: 80px 0;
}
.dj-btn__link {
  display: block;
  font-weight: 600;
  text-decoration: none;
  color: #000;
  padding: 20px;
  border-radius: 60px;
  background: var(--dj-accent);
  font-size: 1.7rem;
  text-align: center;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.dj-btn__link:hover {
  opacity: .7;
}

/* ==========================
   機能一覧 (funcs)
   ========================== */
.dj-funcs {
  background: linear-gradient(0deg, rgba(18, 23, 29, 1) 0%, rgba(54, 63, 72, 1) 88%);
  color: #fff;
  padding: 36px 0;
}
.dj-funcs__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dj-funcs h2 {
  font-size: 2.5rem;
  margin: 0 0 20px;
}
.dj-funcs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 980px;
  margin-top: 18px;
}
.dj-funcs__item {
  background: #fff;
  color: #222;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #2f3940;
}
.dj-funcs__item img {
  max-width: 100px;
}
.dj-funcs__item h3 {
  font-size: 1.3rem;
}

/* ==========================
   Detail sections
   ========================== */
.dj-details {
  margin: 70px 0;
}
.dj-details__title {
  font-size: 2.8rem;
  text-align: center;
  font-weight: 600;
  color: #13528a;
}
.dj-details__block {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 40px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.25);
}
.dj-details__thumb {
  background: var(--dj-light-blue);
  color: #13528a;
  font-size: 2rem;
  font-weight: 600;
  padding: 10px 20px;
  margin: 0;
}
.dj-details__content {
  padding: 30px;
}
.dj-details__content p {
  margin: 0 0 20px;
  font-size: 1.3rem;
  font-weight: 600;
}
.dj-details__content p span {
  color: var(--dj-blue);
}

/* ==========================
   Specs
   ========================== */
.dj-specs {
  background: var(--dj-light-blue);
  padding-bottom: 70px;
}
.dj-specs h2 {
  color: #13528a;
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  padding: 50px 0;
  margin: 0;
}
.dj-specs__block {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
}
.dj-specs__block > p {
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
}
.dj-specs__flex {
  display: flex;
}
.dj-specs__flex h3 {
  font-size: 1.1rem;
  position: relative;
  padding-left: 20px;
}
.dj-specs__flex h3 span {
  font-size: .9rem;
}
.dj-specs__flex h3::before {
  content: "";
  background: var(--dj-blue);
  width: 10px;
  height: 15px;
  display: block;
  position: absolute;
  left: 0;
}
.dj-specs__img {
  width: 40%;
  margin-right: 5%;
}
.dj-specs__table {
  flex: 1;
}
.dj-specs__table table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  text-align: left;
}
.dj-specs__table table th,
.dj-specs__table table td {
  padding: 10px;
  border: 1px solid #ccc;
}
.dj-specs__tr-title {
  background: var(--dj-blue);
  color: #fff;
}
.dj-specs__tr-blue {
  background: #deebf7;
}
.dj-specs__table table span {
  color: var(--dj-blue);
}

/* ==========================
   Footer
   ========================== */
.dj-footer {
  text-align: center;
  padding: 30px 20px;
}
.dj-footer__inner div {
  margin-bottom: 20px;
}
.dj-footer__inner a {
  text-decoration: underline;
  font-weight: 500;
  color: #000;
}

/* ==========================
   Responsive: Tablet
   ========================== */
@media (max-width: 1180px) {
  .dj-hero__img-area {
    display: block;
  }
  .dj-hero__img img {
    display: block;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
  }
  .dj-hero__list {
    display: flex;
    justify-content: center;
  }
  .dj-hero__list span {
    top: 64%;
  }
}

@media (max-width: 1079px) {
  .dj-point__head h2 {
    margin-left: 10px;
    font-size: 1.6rem;
    max-width: 85%;
  }
  .dj-point__number {
    font-size: 1.1rem;
  }
}

/* ==========================
   Responsive: SP
   ========================== */
@media (max-width: 767px) {
  /* hero */
  .dj-hero__sub {
    font-size: 1.5rem;
    width: 100%;
  }
  .dj-hero__sub span {
    top: 0;
    left: 0;
  }
  .dj-hero__title img {
    width: 100%;
    max-width: 200px;
  }
  .dj-hero__title strong {
    font-size: 2rem;
  }
  .dj-hero__txt span {
    width: 100%;
    max-width: 100px;
    height: 45px;
  }
  .dj-hero__txt p {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .dj-hero__list div img {
    width: 100%;
  }
  .dj-hero__list span {
    top: 64%;
    width: 70%;
    font-size: .8rem;
  }

  /* point */
  .dj-point__head {
    display: block;
    padding: 10px 20px 20px;
  }
  .dj-point__number {
    font-size: 1rem;
    padding: 5px 10px;
  }
  .dj-point__head h2 {
    margin: 0;
    font-size: 1.4rem;
  }
  .dj-point__body > p {
    font-size: 1.1rem;
  }

  /* features grid → stack */
  .dj-features {
    display: block;
  }
  .dj-features__card {
    padding: 10px 20px 25px;
    margin-bottom: 10px;
  }
  .dj-features__card h3 {
    font-size: 1.6rem;
  }

  /* CTA */
  .dj-btn {
    margin: 80px 20px;
  }
  .dj-btn__link {
    font-size: 1.4rem;
  }

  /* funcs */
  .dj-funcs h2 {
    font-size: 2rem;
  }
  .dj-funcs__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .dj-funcs__item {
    padding: 10px 18px 20px;
  }
  .dj-funcs__item img {
    max-width: 80px;
  }
  .dj-funcs__item h3 {
    font-size: 1.2rem;
    margin: 0;
  }

  /* details */
  .dj-details__title {
    font-size: 2rem;
    margin: 0 20px 20px;
  }
  .dj-details__thumb {
    font-size: 1.5rem;
  }
  .dj-details__content p {
    font-size: 1rem;
  }

  /* specs */
  .dj-specs h2 {
    font-size: 2rem;
    padding: 50px 0 40px;
  }
  .dj-specs__block {
    width: 93%;
  }
  .dj-specs__block > p {
    font-size: 1rem;
  }
  .dj-specs__flex {
    display: block;
  }
  .dj-specs__img {
    width: 100%;
    margin-right: 0;
  }
}
