@charset "UTF-8";
/* =========================================================
   kk-kotoshirts.css
   - コトシャツ（親 + 子）共通
   - スコープは .kk-kotoshirts に統一
   ========================================================= */

/* =========================================
   ベース
   ========================================= */
.kk-kotoshirts{
  max-width: 980px;
  margin: 0 auto;
}

.kk-kotoshirts img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* 上部（小タイトル・リード・ヒーロー・本文） */
.kk-kotoshirts__smalltitle{ margin: 0 0 12px; }

.kk-kotoshirts__lead{
  margin: 8px 0 14px;
  font-size: 20px;
  line-height: 1.4;
}

.kk-kotoshirts__hero{ margin: 10px 0 18px; }

.kk-kotoshirts__prose{ margin: 0 0 18px; }
.kk-kotoshirts__prose p{
  margin: 0 0 12px;
  line-height: 1.9;
}

/* 見出し */
.kk-kotoshirts__h2{
  font-size: 20px;
  margin: 18px 0 14px;
  line-height: 1.5;
}

/* HARE タイトル画像を中央寄せ */
.kk-kotoshirts__title2{
  margin: 10px 0 18px;
  display: flex;
  justify-content: center;
}
.kk-kotoshirts__title2 img{
  width: auto;
  max-width: 100%;
  height: auto;
}

/* =========================================
   旧TABLE（2x2）置換：grid2
   ========================================= */
.kk-kotoshirts__panel{ margin: 18px 0 22px; }

.kk-kotoshirts__grid2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #cfd8dc;
}

.kk-kotoshirts__cell{
  border-right: 1px solid #cfd8dc;
  border-bottom: 1px solid #cfd8dc;
  padding: 10px;
}

.kk-kotoshirts__grid2 .kk-kotoshirts__cell:nth-child(2n){
  border-right: none;
}

.kk-kotoshirts__cell--head{
  background: #f6f8f9;
  font-weight: 700;
  font-size: 14px;
}

.kk-kotoshirts__cell--media{ padding: 12px; }

.kk-kotoshirts__thumb{ margin: 0; }

.kk-kotoshirts__thumb img,
.kk-kotoshirts__linkimg img{
  width: 100%;
  height: auto;
}

/* =========================================
   バナー（BIZ / HARE）
   - PC：固定幅で中央寄せ（確実）
   - タブレット/スマホ：4列→2列（etcは非表示）
   ========================================= */

.kk-kotoshirts__grid{
  display: grid;
  gap: 10px;
  margin: 10px 0 22px;
  align-items: start;
}

.kk-kotoshirts__tile{
  display: block;
  line-height: 0;
  border: 0;
  text-decoration: none;
}

.kk-kotoshirts__tile img{
  width: 100%;
  height: auto;
}

/* etc（丸） */
.kk-kotoshirts__etc{
  line-height: 0;
}

/* --- PC（981px〜）：4枚+丸 を固定幅でセンター --- */
@media (min-width: 981px){
  .kk-kotoshirts__grid{
    grid-template-columns: repeat(4, 190px) 80px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .kk-kotoshirts__tile img{
    width: 190px;
    height: auto;
  }

  .kk-kotoshirts__etc{
    grid-column: 5;
    grid-row: 1 / span 2;
    justify-self: center;
    align-self: center;
  }

  .kk-kotoshirts__etc img{
    width: 120px;
    max-width: 120px;
    height: auto;
  }
}

/* --- タブレット（〜980px）：4列、etc非表示 --- */
@media (max-width: 980px){
  .kk-kotoshirts__grid{
    grid-template-columns: repeat(4, 1fr);
  }
  .kk-kotoshirts__etc{
    display: none;
  }
}

/* --- スマホ（〜640px）：2列 --- */
@media (max-width: 640px){
  .kk-kotoshirts__lead{ font-size: 15px; }
  .kk-kotoshirts__h2{ font-size: 18px; }

  .kk-kotoshirts__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* =========================================
   スマホ：grid2 を「見出し→画像」の順に並べ替え
   （DOM順：h1 h2 m1 m2 h3 h4 m3 m4 を補正）
   ========================================= */
@media (max-width: 640px){

  .kk-kotoshirts__grid2{
    grid-template-columns: 1fr;
    grid-template-areas:
      "h1"
      "m1"
      "h2"
      "m2"
      "h3"
      "m3"
      "h4"
      "m4";
  }

  .kk-kotoshirts__grid2 .kk-kotoshirts__cell{
    border-right: none;
  }

  .kk-kotoshirts__grid2 .kk-kotoshirts__cell:nth-child(1){ grid-area: h1; }
  .kk-kotoshirts__grid2 .kk-kotoshirts__cell:nth-child(2){ grid-area: h2; }
  .kk-kotoshirts__grid2 .kk-kotoshirts__cell:nth-child(3){ grid-area: m1; }
  .kk-kotoshirts__grid2 .kk-kotoshirts__cell:nth-child(4){ grid-area: m2; }
  .kk-kotoshirts__grid2 .kk-kotoshirts__cell:nth-child(5){ grid-area: h3; }
  .kk-kotoshirts__grid2 .kk-kotoshirts__cell:nth-child(6){ grid-area: h4; }
  .kk-kotoshirts__grid2 .kk-kotoshirts__cell:nth-child(7){ grid-area: m3; }
  .kk-kotoshirts__grid2 .kk-kotoshirts__cell:nth-child(8){ grid-area: m4; }
}

/* =========================================================
   FIX：PCの「などなど（etc）」丸だけサイズ固定
   ========================================================= */
@media (min-width: 981px){
  .kk-kotoshirts__etc img{
    width: 65px !important;
    max-width: 65px !important;
    height: auto !important;
  }
}

/* デザイナー：3枚画像 */
.kk-kotoshirts__grid3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 12px;
}
@media (max-width: 640px){
  .kk-kotoshirts__grid3{
    grid-template-columns: 1fr;
  }
}

/* 就活：YouTubeをレスポンシブ */
.kk-kotoshirts__video{
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 10px auto 18px;
  aspect-ratio: 16 / 9;
}
.kk-kotoshirts__video iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}