@charset "utf-8";

.header-inner{
  margin-top: 0px;
}

.title {
  min-height: 510px;          /* height → min-height */
  background-image: url(../images/concept/bg-main2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #ffffff;
  text-shadow: 1px 1px 10px #4b2c14;

  margin-top: -260px; /* PCは維持 */
}

.title h1 {
  font-size: 70px;
  color: #e6f4cf;
  font-weight: bold;
  margin-left: 200px;
  margin-top: 0; /* ← マイナス削除 */
}

.title p {
  display: none;
}

/* ===============================
   レイアウト
================================ */

.net1 {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.net1 {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===============================
   左カラム
================================ */

.net2 img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.naiyou {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
}

/* ===============================
   右カラム
================================ */

.about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* タイトルカード */
.about .h2 {
  padding: 24px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);

  color: #eeebe0;
  font-size: 18px;
  line-height: 1.6;
}

/* テキストカード */
.about p {
  margin: 0;
  padding: 22px 24px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);

  color: #eee;
  font-size: 15px;
  line-height: 1.9;
}

/* プライスカード */
.about .price {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.6);
  color: #fff;

}

/* ===============================
   全体カード化
================================ */

.net1 {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px;

  border-radius: 20px;
  backdrop-filter: blur(14px);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);

  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

/* ===============================
   レスポンシブ
================================ */


@media (max-width: 768px) {

  .title {
    margin-top: -260px;          /* ← マイナス解除 */
    min-height: 300px;      /* スマホ用高さ */
    padding: 0 20px;
    align-items: center;
    text-align: center;
  }

  .title h1 {
    font-size: 32px;
    margin-left: 0;         /* ← 左寄せ解除 */
  }

}

@media (max-width: 768px) {

  /* 全体カード */
  .net1 {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    margin: 40px 16px;
  }

  /* 左カラム */
  .net2 {
    width: 100%;
  }

  .img10 {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .naiyou {
    font-size: 13px;
    line-height: 1.8;
    margin-top: 12px;
  }

  /* 右カラム */
  .about {
    width: 100%;
  }

  .about .h2 {
    font-size: 12px;
    line-height: 1.6;
  }

  .about p {
    font-size: 10px;
    line-height: 1.8;
    margin-top: 12px;
  }

  .price {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
  }

}



  