/* ========================================
   Work Hero
======================================== */

.work-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.work-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}

.work-hero__kicker {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.work-hero__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

.work-hero__lead {
  font-size: 18px;
  color: #374151;
  margin-bottom: 32px;
  line-height: 1.7;
}

.work-hero__actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.work-hero__back {
  font-size: 14px;
  color: #6b7280;
}

.work-hero__link {
  font-size: 14px;
  font-weight: 600;
  color: #2f80ed;
}

.work-hero__thumb img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* ========================================
   Section 共通
======================================== */

.work-section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.work-text {
  line-height: 1.9;
  color: #374151;
  margin-bottom: 32px;
}


/* ========================================
   Spec（基本情報）
======================================== */

.work-spec {
  padding: 80px 0;
}

.work-spec__inner {
  max-width: 900px;
  margin: 0 auto;
}

.work-spec__list {
  border-top: 1px solid #e5e7eb;
}

.work-spec__row {
  display: flex;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}

.work-spec__term {
  width: 180px;
  font-weight: 600;
}

.work-spec__desc {
  flex: 1;
}


/* ========================================
   Content
======================================== */

.work-content {
  padding: 80px 0;
  background: #fafafa;
}

.work-content__inner {
  max-width: 900px;
  margin: 0 auto;
}

.work-points {
  padding-left: 18px;
}

.work-points__item {
  margin-bottom: 10px;
  line-height: 1.7;
}


/* ========================================
   Screenshots
======================================== */

.work-shots {
  padding: 80px 0;
}

.work-shots__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.work-shot {
  margin-bottom: 80px;
}

.work-shot__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.work-shot__figure img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* PCとSPの全体画像を横並び（SP小さめ） */
.work-shots__pair{
  display: grid;
  grid-template-columns: 2fr 1fr; /* ← PC:SP = 2:1 */
  gap: 24px;
  align-items: start;
}

.work-shots__pc img,
.work-shots__sp img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.work-shots__cap{
  margin-top: 10px;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

/* SP画像は縦長なので “最大幅” を少し抑えても見やすい */
.work-shots__sp{
  max-width: 360px;   /* 好みで 320〜420 くらい */
  justify-self: center;
}

/* スマホでは縦並びに戻す */
@media (max-width: 768px){
  .work-shots__pair{
    grid-template-columns: 1fr;
  }
  .work-shots__sp{
    max-width: 320px;
  }
}

.work-shots__sp{
  max-width: 360px;
  justify-self: center;
  margin-top: 40px; /* ←これ */
}
@media (max-width: 768px){
  .work-shots__sp{ margin-top: 0; }
}

/* ========================================
   Navigation
======================================== */

.work-nav {
  padding: 80px 0 120px;
  text-align: center;
}

.work-nav__back {
  display: inline-block;
  margin-bottom: 24px;
  color: #6b7280;
}

.work-nav__contact {
  display: inline-block;
  margin-top: 10px;
}


/* ========================================
   Responsive
======================================== */

@media (max-width: 768px) {

  .work-hero {
    padding: 80px 0 50px;
  }

  .work-hero__title {
    font-size: 28px;
  }

  .work-spec__row {
    flex-direction: column;
    gap: 6px;
  }

  .work-spec__term {
    width: auto;
  }

}

/* cta */

.work-nav{
  padding: 80px 0 120px;
}

.work-nav__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.work-nav__back{
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.work-nav__back:hover{
  opacity: 0.6;
}

.work-nav__cta{
  margin-top: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2f80ed, #56ccf2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(47, 128, 237, 0.25);
}

.btn:active{
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(47, 128, 237, 0.2);
}

/*ビジネスセミナーLP*/

.work-shots__sp-list{
  display:grid;
  gap:24px;
  margin-top:24px;
}

.work-shots__sp-list figure{
  text-align:center;
}

.work-shots__sp-list img{
  width:100%;
  max-width:420px;
  border-radius:8px;
}

.work-shots__sp-list figcaption{
  margin-top:8px;
  font-size:14px;
  color:#666;
}

@media(min-width:768px){

.work-shots__sp-list{
  grid-template-columns:repeat(3,1fr);
}

}