@charset "utf-8";

/* =========================
   Base
========================= */

body{
  background:#0d0d0d;
  color:#fff;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}

.link{
  color:#fff;
  transition:.2s;
}

.link:hover{
  color:#3f51b5;
}


/* =========================
   Title
========================= */

.name-title{
  text-align:center;
  color:#fff;
  font-size:46px;
  line-height:1.3;
  padding-top:40px;
  margin-bottom:20px;
}

.sub-title{
  display:block;
  font-size:30px;
  margin-top:10px;
}


/* =========================
   Gravure List Page
========================= */

.gravure-section{
  max-width:1400px;
  margin:0 auto;
  padding:40px 24px 80px;
}

.gravure-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.gravure-card{
  position:relative;
  display:block;
  overflow:hidden;
  aspect-ratio:3 / 3.8;
  background:#000;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.gravure-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.5s;
}

.gravure-card:hover img{
  transform:scale(1.06);
  opacity:.82;
}

.gravure-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.35) 35%,
    rgba(0,0,0,0) 60%
  );
}

.gravure-content{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  padding:22px;
  color:#fff;
  z-index:2;
}

.gravure-tag{
  display:inline-block;
  background:#1ec7f4;
  color:#fff;
  font-size:13px;
  font-weight:bold;
  padding:6px 14px;
  margin-bottom:14px;
  border-radius:4px;
}

.gravure-date{
  position:absolute;
  right:22px;
  bottom:88px;
  font-size:18px;
  font-weight:bold;
}

.gravure-title{
  font-size:20px;
  font-weight:bold;
  line-height:1.5;
}

.gravure-sub{
  margin-top:6px;
  font-size:15px;
  opacity:.9;
  line-height:1.5;
}


/* =========================
   Cast Gallery Page
========================= */

.cast-card-wrapper{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:30px 24px 80px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.cast-card2{
  overflow:hidden;
  border-radius:16px;
  background:#111;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  transition:.35s;
}

.cast-card2:hover{
  transform:translateY(-6px);
}

.cast-card2 a{
  display:block;
}

.cast-image2{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
  transition:.5s;
}

.cast-card2:hover .cast-image2{
  transform:scale(1.05);
  opacity:.88;
}


/* =========================
   Gravure Detail Page
========================= */

.gravure-detail{
  max-width:1100px;
  margin:0 auto;
  padding:60px 24px;
}

.gravure-detail img{
  width:100%;
  height:auto;
  display:block;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.35);
}


/* =========================
   Tablet
========================= */

@media screen and (max-width:900px){

  .gravure-grid,
  .cast-card-wrapper{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

  .cast-image2{
    height:320px;
  }

}


/* =========================
   Smartphone
========================= */

@media screen and (max-width:600px){

  .name-title{
    font-size:34px;
    padding-top:28px;
  }

  .sub-title{
    font-size:22px;
  }

  .gravure-section,
  .cast-card-wrapper{
    padding:20px 14px 60px;
  }

  .gravure-grid,
  .cast-card-wrapper{
    grid-template-columns:1fr;
    gap:18px;
  }

  .gravure-content{
    padding:18px;
  }

  .gravure-title{
    font-size:17px;
  }

  .gravure-sub{
    font-size:13px;
  }

  .gravure-date{
    font-size:15px;
    right:18px;
    bottom:78px;
  }

  .cast-image2{
    height:auto;
  }

  .gravure-detail{
    padding:20px 12px;
  }

  .gravure-detail img{
    border-radius:10px;
  }


  /* =========================
   Back Button
========================= */

.back-button-wrap{
  text-align:center;
  padding:40px 0 80px;
}

.back-button{
  display:inline-block;
  padding:14px 34px;
  border-radius:999px;
  background:#292929;
  color:#000000;

  text-decoration:none;
  font-size:14px;
  letter-spacing:.08em;

  box-shadow:0 8px 20px rgba(0,0,0,.08);

  transition:.3s;
}

.back-button:hover{
  transform:translateY(-3px);
  background:#f3f3f3;
}
}