@charset "utf-8";
/* CSS Document */

/* ==========================================
   このページ（.coat_body）内部だけに限定する設定
   ========================================== */

/* 全体の初期化を.coat_body内だけに限定 */
.coat_body * {
  box-sizing: border-box;
}

.coat_body {
/**  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;**/
  color: #333;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* 画像指定も.coat_body内だけに限定 */
.coat_body img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* コンテナも固有の名称にして他ページとのバッティングを防止 */
.coat_body .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   Section 1: Hero (Top View)
   ========================================== */
.coat_body .hero {
  position: relative;
  background-color: #0f1115;
  text-align: center;
  padding-bottom: 40px;
}

.coat_body .hero-img-wrap {
  max-width: 700px;
  margin: 0 auto;
}

.coat_body .hero-content {
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.coat_body .hero-title-sub {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #c5a059;
  font-weight: 600;
  text-transform: uppercase;
}

.coat_body .hero-title-main {
  font-size: 26px;
  color: #ffffff;
  font-weight: 700;
  margin: 10px 0 15px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.coat_body .hero-lead {
  font-size: 14px;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 10px;
}

/* ==========================================
   Section 2: Concept & Flip Video
   ========================================== */
.coat_body .section-concept {
  padding: 60px 0;
  background-color: #14171d;
  color: #fff;
  text-align: center;
  border-top: 1px solid #222733;
}

.coat_body .section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #c5a059;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.coat_body .section-heading {
  font-size: 22px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* 3つの理由（CSS Grid） */
.coat_body .logic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.coat_body .logic-card {
  background-color: #1a1e27;
  padding: 25px 20px;
  border-radius: 6px;
  border: 1px solid #2a2f3d;
}

.coat_body .logic-card .num {
  font-size: 13px;
  font-weight: 700;
  color: #c5a059;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.coat_body .logic-card h3 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.4;
}

.coat_body .logic-card h3 span {
  display: block;
  font-size: 12px;
  color: #a0a6b5;
  font-weight: normal;
  margin-top: 2px;
}

.coat_body .logic-card p {
  font-size: 13px;
  color: #cccccc;
  line-height: 1.7;
}

/* ==========================================
   Column: Quiet Luxury
   ========================================== */
.coat_body .section-column {
  padding: 40px 0;
  background-color: #14171d;
}

.coat_body .column-box {
  border: 1px solid #c5a059;
  background-color: rgba(197, 160, 89, 0.04);
  padding: 30px;
  border-radius: 6px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.coat_body .column-tag {
  background-color: #c5a059;
  color: #0f1115;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.coat_body .column-title {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.coat_body .column-text {
  font-size: 13px;
  color: #dddddd;
  line-height: 1.8;
  text-align: justify;
  text-align-last: left;
}

/* ==========================================
   Section 3: Details (Craftsmanship)
   ========================================== */
.coat_body .section-details {
  padding: 70px 0;
  background-color: #f8f9fa;
  color: #333;
}

.coat_body .section-details .section-heading {
  color: #111111;
  text-align: center;
}

.coat_body .details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.coat_body .detail-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #eef0f2;
  display: flex;
  flex-direction: column;
}

.coat_body .detail-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #eee;
}

.coat_body .detail-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coat_body .detail-img-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 280px;
  gap: 2px;
  background-color: #eee;
}

.coat_body .detail-img-double img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coat_body .detail-content {
  padding: 20px;
  flex-grow: 1;
}

.coat_body .detail-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2b4c;
  margin-bottom: 10px;
  border-bottom: 2px solid #c5a059;
  padding-bottom: 6px;
  display: inline-block;
}

.coat_body .detail-text {
  font-size: 13px;
  color: #555555;
  line-height: 1.7;
}

/* ==========================================
   Section 4: Q&A
   ========================================== */
.coat_body .section-qa {
  padding: 60px 0 80px;
  background-color: #ffffff;
  border-top: 1px solid #eef0f2;
}

.coat_body .section-qa .section-heading {
  color: #111;
  text-align: center;
}

.coat_body .qa-list {
  max-width: 800px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.coat_body .qa-card {
  background-color: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 25px;
}

.coat_body .qa-question {
  font-size: 15px;
  font-weight: 700;
  color: #1a2b4c;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.coat_body .qa-question .q-badge {
  background-color: #1a2b4c;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.coat_body .qa-answer {
  font-size: 13.5px;
  color: #444444;
  line-height: 1.8;
  padding-left: 32px;
}

/* ==========================================
   Fabric Section & wpautop 対策
   ========================================== */
.coat_body .section-fabric {
  padding: 70px 0;
  background-color: #14171d;
  color: #ffffff;
  border-top: 1px solid #222733;
}

.coat_body .section-fabric .section-heading {
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}

.coat_body .fabric-lead {
  text-align: left;
  font-size: 13px;
  color: #aaaaaa;
  margin-bottom: 40px;
}

.coat_body .fabric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.coat_body .fabric-card {
  background-color: #1a1e27;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2a2f3d;
  display: flex;
  flex-direction: column;
}

.coat_body .fabric-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #000;
}

.coat_body .fabric-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coat_body .fabric-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* 勝手に入るpタグの余白を除去 */
.coat_body .fabric-content > p,
.coat_body .color-item > p,
.coat_body .covert-item > p {
  margin: 0 !important;
  padding: 0 !important;
}

.coat_body .fabric-tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: bold;
  color: #0f1115;
  background-color: #c5a059;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.coat_body .fabric-title {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 700;
}

.coat_body .fabric-desc {
  font-size: 12.5px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.coat_body .fabric-price {
  font-size: 12px;
  color: #aaa;
  border-top: 1px dashed #333d52;
  padding-top: 10px;
  margin-top: 10px;
}

.coat_body .fabric-price span {
  font-size: 16px;
  font-weight: bold;
  color: #c5a059;
}

.coat_body .price-note {
  font-size: 11px;
  color: #e6b455;
  font-weight: normal;
}

/* カラーバリエーション（横並び＋75x75px設定） */
.coat_body .fabric-colors {
  margin: 15px 0 5px;
  padding-top: 10px;
  border-top: 1px dashed #2a2f3d;
}

.coat_body .color-title {
  font-size: 10px;
  color: #c5a059;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.coat_body .color-list {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.coat_body .color-item {
  text-align: center;
  width: 75px;
}

.coat_body .color-item img {
  width: 75px !important;
  height: 75px !important;
  object-fit: cover !important;
  border-radius: 4px;
  border: 1px solid #3a4152;
  display: block;
  margin: 0 auto;
}

.coat_body .color-item span {
  font-size: 10px;
  color: #aaa;
  display: block;
  margin-top: 4px;
  line-height: 1.2;
}

/* COVERT 21μ セクション（75x75px設定） */
.coat_body .section-covert {
  border-top: 1px solid #222733;
  background-color: #0f1115;
}

.coat_body .covert-grid {
  display: flex !important;
  justify-content: center !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
  margin: 20px 30px 0 30px;
}

.coat_body .covert-item {
  background-color: #1a1e27;
  border: 1px solid #2a2f3d;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  width: 91px;
}

.coat_body .covert-item img {
  width: 75px !important;
  height: 75px !important;
  object-fit: cover !important;
  border-radius: 4px;
  display: block;
  margin: 0 auto 6px;
}

.coat_body .covert-item span {
  font-size: 11px;
  color: #ffffff;
  font-weight: bold;
  display: block;
}

/* ==========================================
   Responsive (Mobile Settings)
   ========================================== */
@media screen and (max-width: 768px) {
  .coat_body .hero-title-main { font-size: 20px; }
  .coat_body .section-heading { font-size: 18px; }

  .coat_body .logic-grid,
  .coat_body .details-grid,
  .coat_body .fabric-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .coat_body .detail-img-wrap, 
  .coat_body .detail-img-double {
    height: 240px;
  }

  .coat_body .column-box { padding: 20px 15px; }
  .coat_body .column-text { text-align: left; text-align-last: left; }

  .coat_body .qa-answer { padding-left: 0; margin-top: 10px; }
  
  .coat_body .covert-grid {
    gap: 10px !important;
    margin:20px 5px 0 5px;
  }
}
/* ==========================================
   Vertical Fabric Layout (Zegna Main / Italy Sub)
   ========================================== */
.coat_body .fabric-stacked-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 主役：ゼニアカード */
.coat_body .fabric-main-card {
  background-color: #1a1e27;
  border-radius: 8px;
  border: 1px solid #c5a059; /* 主役らしくゴールド枠 */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.coat_body .fabric-hero-img {
  margin: 0 auto;
  width: 100%;
  max-width: 600px; /* 横幅が広がりすぎないよう中央にキュッと収める場合 */
  height: 280px;
  background-color: #000;
  overflow: hidden;

  /* ▼ 画像を上下左右の真ん中に配置する設定 */
  display: flex;
  justify-content: center; /* 横方向の中央寄せ */
  align-items: center;     /* 縦方向の中央寄せ */
}

.coat_body .fabric-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* または contain（切れずに全体を見せたい場合） */
  object-position: center; /* 画像の中心を表示 */
}

.coat_body .fabric-main-body {
  padding: 25px;
}

.coat_body .fabric-title-large {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin: 8px 0;
}

.coat_body .fabric-price-large {
  font-size: 13px;
  color: #cccccc;
  border-top: 1px dashed #3a4152;
  padding-top: 15px;
  margin-top: 15px;
}

.coat_body .fabric-price-large span {
  font-size: 22px;
  font-weight: bold;
  color: #c5a059;
}

/* サブ：イタリーカード */
.coat_body .fabric-sub-card {
  background-color: #14171f;
  border-radius: 8px;
  border: 1px solid #2a2f3d;
  padding: 20px;
}

.coat_body .fabric-tag-sub {
  font-size: 10px;
  color: #aaa;
  background-color: #2a2f3d;
  padding: 2px 6px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 5px;
}

.coat_body .fabric-title-sub {
  font-size: 16px;
  color: #dddddd;
  font-weight: 700;
  margin: 0 0 8px;
}

.coat_body .fabric-desc-sub {
  font-size: 12.5px;
  color: #ccc;
  line-height: 1.6;
}

.coat_body .fabric-price-sub {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}

.coat_body .fabric-price-sub span {
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
}

/* 共通カラーバリエーション */
.coat_body .fabric-common-colors {
  background-color: #1a1e27;
  border-radius: 8px;
  border: 1px solid #2a2f3d;
  padding: 20px;
  text-align: center;
}

.coat_body .fabric-common-colors .color-list {
  justify-content: center !important;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .coat_body .fabric-hero-img {
    height: 200px;
  }
}

.fabric_flex{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	width:100%;
}
.fabric_flex .fabric-lead{width:75%;padding:5px;}
.fabric_flex .covert-item{width:20%;}
@media screen and (max-width: 768px) {
	.fabric_flex{
	display:block;
}
.fabric_flex .fabric-lead{width:100%;}
.fabric_flex .covert-item{width:100%;}
}