@charset "UTF-8";



/*======================================================================================================================
========================================================================================================================*/


    :root{
      --red:#e72b22;
      --red-deep:#bd2019;
      --pink:#f7c9d9;
      --pink-soft:#fff1f6;
      --pink-line:#eda9c1;
      --color-dark: #F29FB0;/* 濃色（文字・強調用） */
      --gold:#b28a12;
      --ink:#252321;
      --muted:#675f5b;
      --paper:#fffdfc;
      --cream:#fff8f1;
      --panel:#ffffff;
      --shadow:0 24px 70px rgba(184,56,44,.16);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:var(--paper);
      font-family:"BIZ UDPGothic","Yu Gothic","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
      line-height:1.75;
    }
    a{color:inherit;text-decoration:none}
    .site-header{
      position:fixed;
      inset:0 0 auto 0;
      z-index:10;
      min-height:70px;
      padding:13px clamp(18px,4vw,54px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      background:rgba(255,253,252,.86);
      border-bottom:1px solid rgba(231,43,34,.13);
      backdrop-filter:blur(18px);
    }
    .brand{
      color:var(--red);
      font-weight:900;
      line-height:1.2;
      letter-spacing:.03em;
    }
    .brand small{
      display:block;
      color:var(--gold);
      font-size:11px;
      letter-spacing:.16em;
      text-transform:uppercase;
    }
    .nav{
      display:flex;
      align-items:center;
      gap:22px;
      color:var(--muted);
      font-size:13px;
      font-weight:800;
      white-space:nowrap;
    }
    .nav a:not(.btn){
      transition:color .18s ease;
    }
    .nav a:not(.btn):hover{
      color:var(--red);
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:48px;
      padding:0 24px;
      border:1px solid var(--red);
      background:var(--red);
      color:#fff;
      font-size:14px;
      font-weight:900;
      box-shadow:0 14px 30px rgba(231,43,34,.20);
      transition:transform .22s ease, background .22s ease, box-shadow .22s ease;
    }
    .btn:hover{
      transform:translateY(-2px);
      background:var(--red-deep);
      box-shadow:0 18px 36px rgba(231,43,34,.26);
    }
    .btn.sub{
      background:#fff;
      color:var(--ink);
      border-color:var(--pink-line);
      box-shadow:none;
    }
    .hero{
      position:relative;
      min-height:100svh;
      overflow:hidden;
      padding:126px clamp(20px,5vw,72px) 72px;
      display:grid;
      align-items:end;
      background:
        linear-gradient(180deg,rgba(247,201,217,.94) 0%,rgba(247,201,217,.90) 66%,#fffdfc 66%,#fffdfc 100%);
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      /* background-image:url("../jla_2026_leather_parts_asset.png"); */
      background-repeat:no-repeat;
      background-position:center 28px;
      background-size:min(1260px,116vw) auto;
      opacity:.72;
      pointer-events:none;
    }
    .hero:after{
      content:"";
      position:absolute;
      left:clamp(20px,5vw,72px);
      right:clamp(20px,5vw,72px);
      bottom:44px;
      height:1px;
      background:linear-gradient(90deg,var(--red),rgba(231,43,34,0));
      opacity:.42;
    }
    .hero-inner{
      position:relative;
      z-index:1;
      width:100%;
      max-width:1180px;
      margin:0 auto;
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(310px,420px);
      gap:clamp(34px,6vw,86px);
      align-items:end;
    }
    /* .hero-inner:before{
      content:"";
      position:absolute;
      z-index:-1;
      left:-28px;
      bottom:108px;
      width:min(560px,56vw);
      height:1px;
      background:linear-gradient(90deg,var(--red),rgba(231,43,34,0));
      opacity:.55;
    } */
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:12px;
      margin-bottom:20px;
      color:var(--red);
      font-size:13px;
      font-weight:900;
    }
    .eyebrow:before{
      content:"";
      width:44px;
      height:1px;
      background:var(--red);
    }
    h1{
      margin:0;
      max-width:830px;
      color:var(--gold);
      font-size:clamp(44px,7.3vw,92px);
      line-height:1.13;
      font-weight:900;
      letter-spacing:.01em;
    }
    .h1-line{
		display:block;
		margin-top:.06em;
		text-indent: -0.11em;
    }
    .hero-copy{
      max-width:720px;
      margin:25px 0 0;
      padding-left:18px;
      border-left:2px solid rgba(231,43,34,.38);
      color:#342f2c;
      font-size:clamp(16px,1.7vw,19px);
      font-weight:800;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:34px;
    }
    .hero-panel{
      position:relative;
      display:grid;
      gap:14px;
    }
    .impact-card{
      padding:28px 28px 30px;
      background:#fff;
      border:1px solid rgba(231,43,34,.18);
      border-top:12px solid var(--red);
      box-shadow:var(--shadow);
    }
    .impact-label{
      display:inline-block;
      margin-bottom:18px;
      padding:2px 10px;
      background:var(--pink-soft);
      color:var(--red);
      font-size:12px;
      font-weight:900;
    }
    .impact-card strong{
      display:block;
      color:var(--red);
      font-size:clamp(70px,8vw,104px);
      line-height:.86;
      letter-spacing:-.055em;
      text-wrap:nowrap;
    }
    .impact-card p{
      margin:18px 0 0;
      color:var(--ink);
      font-size:20px;
      font-weight:900;
      line-height:1.45;
    }
    .impact-card small{
      display:block;
      margin-top:7px;
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }
    .mini-proof{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
    }
    .mini-proof span{
      min-height:88px;
      padding:14px 12px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:rgba(255,255,255,.90);
      border:1px solid rgba(237,169,193,.78);
      box-shadow:0 10px 30px rgba(184,56,44,.08);
      color:var(--muted);
      font-size:11px;
      font-weight:900;
    }
    .mini-proof b{
      color:var(--red);
      font-size:25px;
      line-height:1;
    }
    .section{
      padding:96px clamp(20px,5vw,72px);
    }
    .section:nth-of-type(3){
      background:var(--cream);
    }
    .section-inner{
      max-width:1160px;
      margin:0 auto;
    }
    .section-head{
      display:grid;
      grid-template-columns:minmax(0,.95fr) minmax(270px,.55fr);
      gap:42px;
      align-items:end;
      margin-bottom:46px;
    }
    .label{
      display:inline-block;
      margin-bottom:14px;
      padding:3px 14px;
      border:1px solid #d18ca5;
      background:var(--pink);
      color:var(--ink);
      font-size:13px;
      font-weight:900;
    }
    h2{
      margin:0;
      color:var(--ink);
      font-size:clamp(30px,4.3vw,54px);
      line-height:1.18;
      font-weight:900;
    }
    .lead{
      margin:0;
      color:var(--muted);
      font-size:16px;
      font-weight:800;
    }
    .evidence-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:34px;
      align-items:stretch;
    }
    .large-evidence{
      padding:36px;
      background:var(--red);
      color:#fff;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .large-evidence:after{
      content:"";
      position:absolute;
      right:-70px;
      bottom:-88px;
      width:220px;
      height:220px;
      border:1px solid rgba(255,255,255,.28);
      border-radius:50%;
    }
    .large-evidence small{
      display:block;
      margin-bottom:30px;
      font-size:13px;
      font-weight:900;
      opacity:.85;
    }
    .large-evidence b{
      display:block;
      font-size:clamp(76px,11vw,138px);
      line-height:.85;
      letter-spacing:-.06em;
    }
    .large-evidence p{
      max-width:480px;
      margin:24px 0 0;
      font-size:24px;
      line-height:1.42;
      font-weight:900;
    }
    .data-cards{
      display:grid;
      grid-template-columns:1fr 1fr;
      border-top:1px solid var(--pink-line);
      border-left:1px solid var(--pink-line);
      background:#fff;
    }
.data-card{
  min-height:188px;
  padding:26px;
  border-right:1px solid var(--pink-line);
  border-bottom:1px solid var(--pink-line);
  background:#fff;

  display:flex;
  flex-direction:column;
  gap:16px; /* ←固定間隔 */
}
.data-card small{
  display:block;
  margin-bottom:0;
  color:var(--muted);
  font-size:12px;
  font-weight:900;
}

.data-card b{
  display:block;
  color:var(--red);
  font-size:clamp(38px,5vw,58px);
  line-height:1;
  letter-spacing:-.035em;
}
    .data-card p{
      margin:14px 0 0;
      font-size:15px;
      font-weight:900;
      line-height:1.55;
    }
    .effect{
      background:#fff;
      border-top:1px solid rgba(237,169,193,.65);
      border-bottom:1px solid rgba(237,169,193,.65);
    }
    .effect-grid{
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(290px,.78fr);
      gap:52px;
      align-items:start;
    }
    .bars{
      display:grid;
      gap:18px;
      margin-top:30px;
    }
    .bar{
      display:grid;
      grid-template-columns:210px 1fr 70px;
      gap:16px;
      align-items:center;
      color:var(--ink);
      font-size:14px;
      font-weight:900;
    }
    .track{
      height:14px;
      background:#f1eceb;
      overflow:hidden;
      border-radius:999px;
    }
    .fill{
      height:100%;
      width:var(--w);
      background:linear-gradient(90deg,var(--red),#ee6fa5);
      transform-origin:left;
      animation:grow 1.15s ease both;
      border-radius:999px;
    }
    .quote{
      position:sticky;
      top:100px;
      padding:34px;
      background:var(--pink);
      border:12px solid #fff;
      outline:1px solid var(--pink-line);
      box-shadow:0 18px 50px rgba(184,56,44,.12);
    }
    .quote:before{
      content:"“";
      display:block;
      height:42px;
      color:var(--red);
      font-family:Georgia,serif;
      font-size:76px;
      line-height:.75;
    }
    .quote p{
      margin:12px 0 0;
      font-size:18px;
      line-height:1.85;
      font-weight:900;
    }
    .quote small{
      display:block;
      margin-top:22px;
      color:var(--muted);
      font-size:12px;
      font-weight:900;
    }
    .note{
      margin-top:24px;
      padding-top:16px;
      border-top:1px solid var(--pink-line);
      color:var(--muted);
      font-size:12px;
      font-weight:700;
    }
    .story-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      border-left:1px solid var(--pink-line);
      border-top:1px solid var(--pink-line);
    }
    .story{
      min-height:292px;
      padding:32px;
      border-right:1px solid var(--pink-line);
      border-bottom:1px solid var(--pink-line);
      background:#fff;
      display:flex;
      flex-direction:column;
      gap:30px;
      transition:background .22s ease, transform .22s ease;
    }
    .story:hover{
      transform:translateY(-4px);
      background:var(--pink-soft);
    }
    .tag{
      color:var(--red);
      font-size:12px;
      font-weight:900;
      letter-spacing:.12em;
    }
    .story h3{
      margin:0;
      font-size:24px;
      line-height:1.36;
      font-weight:900;
    }
    .story p{
      margin:22px 0 0;
      color:var(--muted);
      font-size:15px;
      font-weight:800;
    }
    .cta{
      position:relative;
      overflow:hidden;
      background:var(--pink);
      padding:104px clamp(20px,5vw,72px);
    }
    .cta:before{
      content:"";
      position:absolute;
      inset:28px clamp(18px,4vw,50px);
      border:1px solid rgba(255,255,255,.78);
      pointer-events:none;
    }
    .cta-inner{
      position:relative;
      z-index:1;
      max-width:1160px;
      margin:0 auto;
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:36px;
      align-items:end;
    }
    .cta h2{
      max-width:760px;
      color:var(--red);
    }
    .cta p{
      max-width:720px;
      margin:22px 0 0;
      color:#342f2c;
      font-weight:800;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:14px;
      min-width:310px;
    }
    .source{
      display:inline-block;
      margin-top:30px!important;
      padding-left:14px;
      border-left:2px solid rgba(231,43,34,.34);
      color:#6a5752!important;
      font-size:12px;
      font-weight:800!important;
      line-height:1.7;
    }
    .reveal{
      opacity:0;
      transform:translateY(18px);
      transition:opacity .65s ease, transform .65s ease;
    }
    .reveal.show{opacity:1;transform:none}
    @keyframes grow{from{transform:scaleX(0)}to{transform:scaleX(1)}}
    @media (max-width:900px){
      .site-header{min-height:64px}
      .nav a:not(.btn){display:none}
      .hero{padding-top:104px}
      .hero-inner,.section-head,.evidence-grid,.effect-grid,.cta-inner{grid-template-columns:1fr}
      .hero-inner:before{display:none}
      .hero-panel{max-width:440px}
      .story-grid{grid-template-columns:1fr}
      .quote{position:relative;top:auto}
      .cta-actions{justify-content:flex-start}
      .cta-actions{min-width:0}
    }
    @media (max-width:620px){
      .hero{min-height:auto;padding-bottom:54px}
      .h1-line{transform:none}
      .hero-actions,.cta-actions{display:grid}
      .btn{width:100%}
      .mini-proof,.data-cards{grid-template-columns:1fr}
      .bar{grid-template-columns:1fr;gap:8px}
      .section{padding-top:72px;padding-bottom:72px}
      .large-evidence,.impact-card,.quote{padding:26px}
      .cta{  padding:104px clamp(20px,36px,72px);
 }
    }

/*footer
=================================================*/
#index .footer {
  background: #fff;
}

#index .footer_sns {
  background: #fff;
}

.footer_sns {
  padding: 20px 20px 20px;
}

.footer_sns,
.footer {
  background-color: var(--color-lite-bg);
}


/*  */
.footer .social_icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.footer .social_icons a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  /* background: #f3d682; */
  background: #ed95aa;
  border-radius: 50%;
  flex: 0 0 48px;
  transition: opacity 0.25s ease;
}

.footer .social_icons a:hover {
  opacity: 0.7;
}

.footer .social_icons img {
  display: block;
  width: 30px;
  height: 30px;
}

.footer .fb .social_icons img {
  width: 36px;
  height: 36px;
}




.footer_main {
  background: #ed95aa;
  color: #fff;
}

.footer_inner {
  max-width: 940px;
  margin: 0 auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

.footer_mark {
  padding-top: 48px;
  text-align: center;
  opacity: 0.35;
}

.footer_mark img {
  width: 70px;
  height: 70px;
}

.footer_nav {
  margin-top: -6px;
  padding-bottom: 85px;
}

.footer_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer_nav li+li {
  margin-top: 28px;
}

.footer_nav a {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  padding: 22px 0;
}

.footer-logo {
  display: block;
  width: auto;
  height: 50px;
}


.footer-logo img {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .footer_sns {
    padding: 14px 20px;
  }

  .social_icons {
    gap: 16px;
  }

  .social_icons img {
    width: 48px;
    height: 48px;
  }

  .footer_inner {
    padding-inline: 30px;
  }

  .footer_mark {
    padding-top: 26px;
    padding-bottom: 20px;
  }

  .footer_mark img {
    width: 70px;
    height: 70px;
  }

  .footer_nav {
    margin-top: -2px;
  }

  .footer_nav li+li {
    margin-top: 28px;
  }

  .footer_nav a {
    font-size: 1.6rem;
  }

  .footer_bottom {
    padding: 20px 0 22px;
  }

  .footer_bottom .footer_inner {
    padding-inline: 54px;
  }

  .footer-logo {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 430px) {
  .footer_inner {
    padding-inline: 34px;
  }

  /* .footer_nav a {
    font-size: 22px;
  } */

  .footer_bottom .footer_inner {
    padding-inline: 34px;
  }
}



/*ボタン=============*/
/* .index_wrap{
position: relative;
} */


.btn_primary {
  display: inline-block;
  width: 160px;
  text-decoration: none;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 5px 0;
  border-radius: 100px;
  letter-spacing: 0;
  color: #fff;
  background: var(--color-font);
  margin: 10px;
}

.btn-container {
  width: 100%;
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 80;

  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* フッターに入った時：右寄せ */
.btn-container.is-footer {
  bottom: 90px;
}

/* ボタン本体 */
.btn-container a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/*pagetop
============================*/
.wrapper_pagetop {
  position: relative;
}


#pagetop {
  /*ページトップへ*/
  display: flex;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 56px;
  opacity: 0.8;
  z-index: 1;
}

#pagetop a {
  content: "";
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  transition: opacity 2s linear;
  box-shadow: 0px 10px 10px -5px rgba(108, 24, 11, 0.1);
}

#pagetop a::after {
  content: "";
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  top: 5px;
  bottom: 0;
  width: 1em;
  height: 1em;
  border-left: solid 2px var(--color-dark);
  border-top: solid 2px var(--color-dark);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#pagetop a:hover {
  opacity: 0.7;
}

/* スマホファーストで小さめに */
@media (max-width: 991px) {
  .footer_ogo {
    width: 100px;
  }
}

/* タブレット／PC（992px以上） */
@media (min-width: 992px) {

  /*半円を消してフラット背景に*/
  #index .area_footer {
    padding-top: 0;
  }

  #index .footer_arc {
    display: none;
  }

  .footer_logo {
    width: 140px;
  }

  #index ul.footer_nav {
    margin: 0 0 240px 0px;
  }

  .footer_nav a {
    font-size: 1.6rem;
  }

  .social_icons img {
    width: 24px;
  }

  /*ボタン設定＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  .btn_primary,
  #index .btn_primary {
    width: 220px;
    font-size: 1.6rem;
    color: #fff;
    background: var(--color-font);
  }

  /* フッターに入った時 */
  .btn-container {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    transition: bottom 0.3s ease;
  }

  /* フッターに入った時 */
  .btn-container.is-footer {
    bottom: 120px;
    /* right: 40px; */
  }

  @media screen and (max-width: 768px) {
    .btn-container {
      /* right: 16px; */
      bottom: 16px;
    }

    .btn-container.is-footer {
      bottom: 120px;
    }
  }

  /*pagetop==============*/
  #pagetop {
    right: 50px;
  }
}

.footer .footer_sns,
.footer .footer_main>.footer_inner {display: none;}








