/*===============================
concept
================================*/
#concept {
}
@media screen and (min-width: 768px) {
}
/* ===============================
 #concept コンセプトセクション（Coolvetica風）
================================*/
#concept.concept-section {
 background-color: #000;
 color: #fff;
 padding: 140px 0 80px;
 text-align: center;
}

#concept .wrap-l {
 max-width: 1200px;
 margin: 0 auto;
 display: flex;
 flex-direction: column;
 align-items: center;
}

#concept h2 {
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 700;
 font-size: 2.6rem;
 letter-spacing: 2px;
 color: #f7a800; /* オレンジの差し色 */
 margin-bottom: 40px;
}

#concept h3 {
 font-family: "Sawarabi Mincho", "RyuminPro", "Hiragino Mincho ProN",
  "MS Mincho", serif;
 font-size: 2rem;
 font-weight: 500;
 margin-bottom: 40px;
 color: #fff;
}

#concept .concept-content {
 display: flex;
 flex-wrap: nowrap;
 justify-content: space-between;
 align-items: flex-start;
 gap: 30px;
 width: 100%;
}

/* 画像6割、テキスト4割 */
#concept .concept-image {
 flex: 0 0 50%;
}

#concept .concept-image img {
 width: 100%;
 height: auto;
 border-radius: 8px;
 display: block;
}

#concept .concept-texts {
 flex: 0 0 50%;
 display: flex;
 flex-direction: column;
 gap: 20px;
}

#concept .concept-text {
 text-align: left;
 font-family: "Noto Sans JP", sans-serif;
 line-height: 1.9;
 font-size: 1rem;
 color: #ddd;
}

/* ===============================
  スマホ対応（1カラム）
=============================== */
@media screen and (max-width: 767px) {
 #concept.concept-section {
  padding: 140px 0px 60px;
 }

 #concept h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
 }

 #concept h3 {
  font-size: 1.2rem;
  margin-bottom: 40px;
 }

 #concept .concept-content {
  flex-direction: column;
  align-items: center;
  gap: 30px;
 }

 #concept .concept-image,
 #concept .concept-texts {
  flex: 1 1 100%;
  width: 100%;
 }

 #concept .concept-text {
  text-align: center;
  font-size: 0.95rem;
 }
}
