/*
  IDEALE MAGAZINE - Table Scene List
  用途：/table-scene/ 専用
  画像：
  ・ヒーロー画像：table-scene-hero.png / 推奨 2400×900px 前後
  ・メインカード画像：1600×1000px 以上 / 8:5 推奨
*/

/* ==============================
   Base
============================== */
.idts {
  --blue: #073b74;
  --navy: #061f3d;
  --navy2: #092b52;
  --gold: #c99b3f;
  --cream: #fbf7ef;
  --ink: #172536;
  --muted: #536372;
  --line: #dbe6ef;
  --white: #ffffff;

  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 0 70px;
  color: var(--ink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  line-height: 1.8;
  letter-spacing: .04em;
}

.idts,
.idts * {
  box-sizing: border-box;
}

.idts a {
  color: inherit;
  text-decoration: none;
}

.idts img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}

/* ==============================
   Hero
============================== */
.idts-hero {
  position: relative;
  width: 100vw;
  min-height: 420px;
  margin: 0 calc(50% - 50vw) 56px;
  overflow: hidden;
  background: var(--navy);
}

.idts-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.idts-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.idts-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,18,36,.96) 0%, rgba(4,24,48,.88) 36%, rgba(5,31,61,.44) 64%, rgba(5,31,61,.1) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.2));
}

.idts-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 36px 0 64px;
  color: #fff;
}

.idts-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 42px;
  color: rgba(255,255,255,.86);
  font-family: Arial, "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.idts-breadcrumb a {
  color: rgba(255,255,255,.92);
}

.idts-kicker {
  margin: 0 0 9px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .05em;
}

.idts-hero h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.38;
  font-weight: 500;
  letter-spacing: .08em;
}

.idts-hero__sub {
  display: inline-block;
  margin: 0 0 22px;
  padding-top: 13px;
  border-top: 1px solid rgba(201,155,63,.72);
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

.idts-hero__lead {
  margin: 0;
  max-width: 640px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 2;
}

/* ==============================
   Feature
============================== */
.idts-section {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto 42px;
}

.idts-feature {
  display: grid;
  grid-template-columns: 1fr;
}

.idts-maincard {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(219,230,239,.9);
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(7,59,116,.1);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.idts-maincard:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(7,59,116,.16);
  border-color: rgba(7,59,116,.26);
}

.idts-maincard__image {
  position: relative;
  width: 100%;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  line-height: 0;
  background: #111;
}

.idts-maincard__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.idts-maincard__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 44px;
}

.idts-label {
  display: block;
  margin: 0 0 7px;
  color: var(--gold);
  font-family: Arial, "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}

.idts-maincard h2 {
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: none;
  color: #111;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: .06em;
}

.idts-maincard p {
  margin: 0;
  color: #303b45;
  font-size: 14px;
  line-height: 1.95;
}

.idts-more {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  color: var(--blue);
  font-family: Arial, "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}

.idts-more::after {
  content: " ›";
  font-size: 20px;
  line-height: 1;
}

/* ==============================
   Coming Soon
============================== */
.idts-coming {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto 42px;
  padding: 38px 34px;
  border-radius: 12px;
  background: linear-gradient(90deg, #fffaf0, #f7fbfd);
  border: 1px solid rgba(219,230,239,.8);
}

.idts-coming h2 {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: clamp(21px, 2.5vw, 28px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: .06em;
}

.idts-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.idts-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 8px 16px;
  border: 1px solid rgba(7,59,116,.18);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-family: Arial, "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

/* ==============================
   Back
============================== */
.idts-back {
  width: min(1180px, calc(100vw - 32px));
  margin: 34px auto 0;
  text-align: center;
}

.idts-back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 360px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: #fff;
  font-family: Arial, "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  box-shadow: 0 14px 34px rgba(7,59,116,.22);
  transition: .25s ease;
}

.idts-back a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(7,59,116,.3);
}

.idts-back span {
  font-size: 24px;
  line-height: 1;
}

/* ==============================
   Responsive
============================== */
@media screen and (max-width: 900px) {
  .idts-maincard {
    grid-template-columns: 1fr;
  }

  .idts-maincard__body {
    padding: 34px 30px;
  }
}

@media screen and (max-width: 760px) {
  .idts {
    padding-bottom: 56px;
  }

  .idts-hero {
    min-height: 0;
    margin-bottom: 42px;
  }

  .idts-hero__shade {
    background:
      linear-gradient(90deg, rgba(3,18,36,.95), rgba(4,24,48,.78)),
      linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.2));
  }

  .idts-hero__inner {
    width: min(100% - 24px, 1180px);
    padding: 28px 0 48px;
  }

  .idts-breadcrumb {
    margin-bottom: 34px;
    font-size: 11px;
  }

  .idts-kicker {
    font-size: 17px;
  }

  .idts-hero h1 {
    font-size: 34px;
  }

  .idts-hero__sub {
    font-size: 16px;
  }

  .idts-hero__lead {
    font-size: 14px;
  }

  .idts-section,
  .idts-coming,
  .idts-back {
    width: min(100% - 24px, 1180px);
  }

  .idts-maincard__body {
    padding: 26px 22px 30px;
  }

  .idts-maincard p {
    font-size: 13px;
  }

  .idts-coming {
    padding: 30px 22px;
  }

  .idts-tags span {
    width: 100%;
  }

  .idts-back a {
    width: 100%;
    min-width: 0;
  }
}


/* dinner-scene：組み合わせ例 3カード */
.dinner-coordinate-examples {
  margin: 56px 0;
}

.dinner-coordinate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.dinner-coordinate-card {
  overflow: hidden;
  border: 1px solid #e5dfd4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

.dinner-coordinate-card figure {
  margin: 0;
}

.dinner-coordinate-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dinner-coordinate-card figcaption {
  padding: 10px 16px 0;
  color: #a77b32;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
}

.dinner-coordinate-card h3 {
  margin: 6px 16px 8px;
  font-size: 18px;
  line-height: 1.6;
}

.dinner-coordinate-card p {
  margin: 0;
  padding: 0 16px 20px;
  font-size: 14px;
  line-height: 1.9;
}

@media screen and (max-width: 760px) {
  .dinner-coordinate-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dinner-coordinate-card img {
    aspect-ratio: 4 / 3;
  }
}


/* dinner-scene：商品リンク一覧 12商品 */
.dinner-product-lineup {
  margin: 64px 0;
}

.dinner-product-lineup > p {
  margin-bottom: 30px;
}

.dinner-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  margin-top: 30px;
}

.dinner-product-card {
  background: transparent;
}

.dinner-product-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.dinner-product-card figure {
  margin: 0 0 12px;
  background: #f7f4ef;
  overflow: hidden;
}

.dinner-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}

.dinner-product-card a:hover img {
  transform: scale(1.035);
}

.dinner-product-card__brand {
  display: block;
  margin-bottom: 4px;
  color: #8a6a3f;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dinner-product-card h3 {
  margin: 0 0 8px;
  color: #2f2a24;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

.dinner-product-card p {
  margin: 0;
  color: #5a5249;
  font-size: 13px;
  line-height: 1.8;
}

@media screen and (max-width: 900px) {
  .dinner-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 16px;
  }
}

@media screen and (max-width: 520px) {
  .dinner-product-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}




/* あわせて読みたい記事 自動化 */
.ideale-related-posts {
    margin: 70px 0 20px;
    padding-top: 40px;
    border-top: 1px solid #e5e0d8;
    margin-bottom:60px;
}

.ideale-related-head {
    text-align: center;
    margin-bottom: 28px;
}

.ideale-related-en {
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: #9a8f82;
}

.ideale-related-head h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: #333;
}

.ideale-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ideale-related-card{
    margin-bottom:20px;
}

.ideale-related-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.ideale-related-thumb{
    aspect-ratio: 4 / 3;
    overflow:hidden;
}

.ideale-related-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ideale-related-body {
    padding: 14px 2px 0;
}

.ideale-related-body h3{
    font-size:16px;
    line-height:1.7;
    margin:0;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;

    min-height:3.4em;
}

.ideale-related-card{
    transition:.3s;
}

.ideale-related-card:hover{
    transform:translateY(-4px);
}

.ideale-related-thumb img{
    transition:.4s;
}

.ideale-related-card:hover img{
    transform:scale(1.03);
}

.sns_b{
    margin-top:60px;
}

@media screen and (max-width: 768px) {
    .ideale-related-posts {
        margin-top: 50px;
        padding-top: 32px;
    }

    .ideale-related-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ideale-related-head h2 {
        font-size: 21px;
    }
}



.magazine-back-link{
    margin:40px 0 50px;
    text-align:center;
}

.magazine-back-link a{
    display:inline-block;
    padding:14px 32px;
    border:1px solid #d9d3ca;
    color:#333;
    text-decoration:none;
    font-size:14px;
    letter-spacing:.05em;
    transition:.3s;
}

.magazine-back-link a:hover{
    background:#f7f4ef;
}
