@font-face {
  font-family: 'AcuminLCS';
  src: url('Acumin Pro Condensed.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'NotoSansJPLCS';
  src: url('NotoSansJP-Light.otf') format('opentype');
  font-weight: 300;
}
@font-face {
  font-family: 'NotoSansJPLCS';
  src: url('NotoSansJP-Regular.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'NotoSansJPLCS';
  src: url('NotoSansJP-Bold.otf') format('opentype');
  font-weight: 700;
}

:root{
  --bg:#e6e6e6;
  --bg-soft:#f4f4f4;
  --surface:#ffffff;
  --surface-2:#f0f0f0;
  --text:#111111;
  --muted:#5f6368;
  --line:#1f1f1f;
  --dark:#0d0f1a;
  --dark-2:#171c31;
  --accent:#0f172a;
  --accent-soft:#20283f;
  --radius:28px;
  --shadow:0 16px 40px rgba(0,0,0,.08);
  --container:min(1180px, calc(100% - 40px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'NotoSansJPLCS',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{display:flex;max-width:100%}
a{color:inherit}
.container{width:var(--container);margin:0 auto}
.section{padding:88px 0}
.section--line{border-top:1px solid var(--line)}
.eyebrow,.section-kicker,.page-kicker{
  margin:0 0 12px;
  font:700 20px/1 'AcuminLCS',sans-serif;
  letter-spacing:.14em;
  text-transform:uppercase;

}
.h1,.page-hero h1{
  margin:0 0 18px;
  font:700 clamp(44px,8vw,92px)/.95 'AcuminLCS',sans-serif;
  letter-spacing:.01em;
}
.h2,.section-title{
  margin:0 0 18px;
  font:700 clamp(34px,5.5vw,62px)/1.02 'AcuminLCS',sans-serif;
}
.h3{
  margin:0 0 10px;
  font:700 clamp(24px,3vw,36px)/1.1 'AcuminLCS',sans-serif;
}
.lead{
  font-size:20px;
  line-height:1.9;
  color:var(--text);
}
.muted{color:var(--muted)}
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(230,230,230,.92);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(6px);
}
.header-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:0;
}
.logo img{
  width:auto;
  height:44px;
}
.logo-text{
  font:700 40px/1 'AcuminLCS',sans-serif;
  letter-spacing:.02em;
}
.global-nav{
  display:flex;
  align-items:center;
  gap:22px;
}
.global-nav a,.footer-nav a{
  text-decoration:none;
  font:700 18px/1 'AcuminLCS',sans-serif;
  letter-spacing:.05em;
}
.nav-pill,.btn,.btn-secondary,.btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 24px;
  border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;
  transition:.2s ease;
  font-weight:700;
}
.btn,.nav-pill{
  background:#111;
  color:#fff;
}
.btn:hover,.nav-pill:hover{transform:translateY(-1px)}
.btn-secondary{
  background:#fff;
  color:#111;
}

/*youtubeの自社運営チャンネルの形状*/
.btn-youtube{
    background-color: #ffffff; /* 背景色 */
    color: #000000;              /* 文字色 */
   border-radius: 0; 
   border: Yes;             /* 枠線なし */
}



.btn-ghost{
  background:transparent;
  color:inherit;
}
.menu-toggle{
  display:none;
  width:42px;
  height:32px;
  border:0;
  background:transparent;
  padding:0;
}
.menu-toggle span{
  display:block;
  height:2px;
  margin:7px 0;
  background:#111;
}
.page-hero{
  padding:112px 0 72px;
  background:linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}
.page-hero .lead{max-width:960px;margin:0}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card-pad{
  padding:28px;
  overflow:hidden;
}
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.stats{display:grid;gap:18px}
.stat{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:22px;
}
.stat-label{
  margin:0 0 8px;
  color:var(--muted);
  font-size:14px;
}
.stat-value{
  margin:0;
  font:700 clamp(28px,4vw,48px)/1 'AcuminLCS',sans-serif;
}
.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.media-box{
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--line);
  background:#ddd;
  box-shadow:var(--shadow);
}
.media-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.tile-link{
  position:relative;
  min-height:240px;
  padding:28px;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.tile-link__label{
  font:700 18px/1 'AcuminLCS',sans-serif;
  letter-spacing:.12em;
}
.tile-link__title{
  margin:0;
  font:700 clamp(34px,4vw,56px)/.95 'AcuminLCS',sans-serif;
}
.tile-link__sub{
  margin:10px 0 0;
  color:var(--muted);
}
.table{
  width:100%;
  border-collapse:collapse;
}
.table th,.table td{
  padding:18px 16px;
  border-top:1px solid #cfcfcf;
  vertical-align:top;
}
.table th{
  width:220px;
  text-align:left;
  font-weight:700;
}
.table tr:first-child th,.table tr:first-child td{border-top:0}
.faq-item{
  padding:22px 0;
  border-top:1px solid #cfcfcf;
}
.faq-item:first-child{border-top:0}
.faq-q{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin:0 0 10px;
  font-weight:700;
}
.qa-icon{
  flex:none;
  width:34px;
  height:34px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#111;
  color:#fff;
  font:700 20px/1 'AcuminLCS',sans-serif;
}
.qa-icon.a{background:#fff;color:#111;border:1px solid #111}
.video{
  position:relative;
  border-radius:0px; /*youtubeのサイズ変更*/
  overflow:hidden;
  background:#000;
  padding-top:56.25%;
}
.video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
.cta-band{
  background:linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color:#fff;;
  padding:72px 0;
}
.cta-band__inner{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
}
.cta-band h2{
  margin:0 0 12px;
  font:700 clamp(34px,5vw,58px)/1.05 'AcuminLCS',sans-serif;
}
.cta-band p{margin:0;max-width:760px}
.site-footer{
  background:#000;
  color:#fff;
  padding:48px 0 18px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:16px;
}
.footer-brand img{height:44px;width:auto}
.footer-nav{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.copyright{
  margin:18px 0 0;
  text-align:center;
  font-size:12px;
  opacity:.75;
}
.contact-panel{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
}
.contact-card{
  padding:28px;
}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:20px;
}
.note{
  font-size:14px;
  color:var(--muted);
}
.notice{
  padding:16px 18px;
  border-left:4px solid #111;
  background:#f7f7f7;
  border-radius:0 14px 14px 0;
}
@media (max-width: 1024px){
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .split,.contact-panel,.cta-band__inner{grid-template-columns:1fr;display:grid;align-items:start}
}
@media (max-width: 840px){
  :root{--container:min(100% - 32px, 1180px)}
  .menu-toggle{display:block}
  .global-nav{
    display:none;
    position:absolute;
    left:16px;
    right:16px;
    top:88px;
    flex-direction:column;
    align-items:stretch;
    padding:18px;
    border:1px solid var(--line);
    border-radius:20px;
    background:rgba(244,244,244,.98);
    box-shadow:var(--shadow);
  }
  .global-nav.is-open{display:flex}
  .global-nav a{padding:8px 0}
  .page-hero{padding:92px 0 56px}
  .lead,.page-hero .lead{font-size:17px}
  .section{padding:60px 0}
  .grid-2,.grid-3,.grid-4,.split,.contact-panel{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;align-items:flex-start}
  .logo-text{font-size:34px}
}

/*
.title-youtube{
.container {
  display: flex;
  justify-content: center; 
  align-items: center;     
  height: 100vh;
*/
.button {
  padding: 12px 24px;
  background: #2ecc71;
  color: white;
  border-radius: 6px;
}

