@charset "UTF-8";

/* story-origin.css
   STORY 01 詳細ページ専用。
   文章は story-origin.html、デザインはこのCSSで管理します。
*/

.origin-page{
  background:#fff;
  color:#111;
  font-family:"Yu Mincho","Hiragino Mincho ProN","Noto Serif JP",serif;
  letter-spacing:.06em;
}

.origin-hero{
  position:relative;
  min-height:760px;
  overflow:hidden;
  background:#fff;
}

.origin-hero-copy{
  position:absolute;
  z-index:2;
  top:130px;
  left:70px;
  width:48%;
}

.origin-label{
  margin:0 0 30px;
  font-size:13px;
  letter-spacing:.18em;
}

.origin-hero h1{
  margin:0;
  font-size:42px;
  line-height:1.85;
  font-weight:500;
  letter-spacing:.08em;
}

.origin-hero-image{
  position:absolute;
  top:74px;
  right:0;
  width:78%;
  height:680px;
  margin:0;
  overflow:hidden;
}

.origin-hero-image::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg,#fff 0%,rgba(255,255,255,.9) 22%,rgba(255,255,255,.22) 48%,rgba(255,255,255,0) 78%);
  pointer-events:none;
}

.origin-hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.origin-hero-image figcaption{
  position:absolute;
  right:42px;
  bottom:24px;
  z-index:2;
  font-size:12px;
  color:#222;
}

.origin-text{
  max-width:1100px;
  margin:0 auto;
  padding:42px 64px 80px;
}

.origin-block{
  padding:56px 0;
  border-bottom:1px solid #e8e8e8;
}

.origin-block.first{
  padding-top:20px;
}

.origin-block .lead{
  margin:0;
  font-size:28px;
  line-height:2;
  font-weight:500;
}

.origin-block h2,
.origin-work h2,
.origin-cta h2{
  margin:0 0 28px;
  font-size:25px;
  line-height:1.85;
  font-weight:500;
}

.origin-block p,
.origin-work p,
.origin-cta p{
  margin:0 0 20px;
  font-size:16px;
  line-height:2.2;
}

.origin-work{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:54px;
  align-items:center;
  padding:62px 0;
  border-bottom:1px solid #e8e8e8;
}

.origin-work figure{
  margin:0;
}

.origin-work img{
  width:100%;
   height:auto;
    display:block;
    }

.origin-cta{
  margin:54px 0 0;
  padding:50px 56px;
  background:#f8f8f8;
}

.origin-cta-buttons{
  display:flex;
  gap:16px;
  margin-top:34px;
}

.origin-cta-buttons a{
  width:220px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:14px;
  text-decoration:none;
  border-radius:4px;
  font-family:"Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  font-weight:700;
}

.origin-cta-buttons .line{
  background:#08B56B;
}

.origin-cta-buttons .mail{
  background:#1B55D9;
}

@media(max-width:900px){
  .origin-hero{
    min-height:auto;
    padding:110px 22px 0;
  }

  .origin-hero-copy{
    position:relative;
    top:auto;
    left:auto;
    width:auto;
    margin-bottom:34px;
  }

  .origin-hero h1{
    font-size:32px;
  }

  .origin-hero-image{
    position:relative;
    top:auto;
    right:auto;
    width:100%;
    height:420px;
  }

  .origin-text{
    padding:36px 22px 60px;
  }

  .origin-block .lead{
    font-size:22px;
  }

  .origin-work{
    grid-template-columns:1fr;
  }

  .origin-cta{
    padding:38px 24px;
  }

  .origin-cta-buttons{
    flex-direction:column;
  }

  .origin-cta-buttons a{
    width:100%;
  }
}
