:root {
  --kredo-blue: #0057b8;
  --kredo-sky: #0099e5;
  --kredo-accent: #00c4a0;
  --kredo-orange: #ff6b35;
  --kredo-dark: #0d1b2e;
  --kredo-mid: #1e3a5f;
  --kredo-light-bg: #f4f8fd;
  --kredo-border: #dde8f5;
  --text-main: #1a2840;
  --text-sub: #4a6080;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-card: 0 4px 24px rgba(0,87,184,0.10);
  --shadow-hover: 0 8px 36px rgba(0,87,184,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
  color: var(--text-main);
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

/* ======= HERO ======= */
.hero {
  padding: 50px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,196,160,0.15) 0%, transparent 70%);
} */

.hero-en {
  font-weight: 700;
  font-size: 13px;
  line-height: 20.7px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #00BEB3;
  margin-bottom: 12px;
  display: block;
}

.hero-title {
  font-weight: 700;
  font-size: 38px;
  line-height: 20.7px;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 20px;
  text-align: center;
}
.hero-desc {
  font-weight: 700;
  font-size: 13px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 10px 0 25px;
  /* max-width: 580px; */
  margin: 0 auto;
}

/* ======= SECTION COMMON ======= */
.section {
  padding: 40px 24px;
}

.section-alt { background: var(--kredo-light-bg); }

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
}

/* ======= NOTE SECTION ======= */
.page {
  margin: 0 auto;
  padding: 24px 28px 40px;
  background-color: #F8F8F8;
}
.brand {
  text-align: center;
  color: #4b74c9;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 0 auto;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 40px auto;
}

.card {
  background: var(--card);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid #e8e8e8;
  background-color: white;
  box-shadow: 0px 0px 10px 0px #00000040;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 12px;
}

.thumb-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.thumb {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: #ddd;
  transition: transform 0.3s ease;
}
.card:hover .thumb {
  transform: scale(1.06);
}
.count {
  position: absolute;
  right: 22px;
  bottom: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(2px);
}

.content {
  padding: 12px 14px 14px;
}

.title {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
}

.excerpt {
  margin: 12px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 13px;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 28px;
  background: #ddd;
}

.author {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 1.4;
}

.author-name {
  color: #444;
  font-weight: 500;
}

.time {
  color: #777;
}

/* ======= YOUTUBE SECTION ======= */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px auto;
}

.yt-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--kredo-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.yt-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  /* background: #000; */
}

.yt-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s, opacity 0.3s;
}

.yt-card:hover .yt-thumb-wrap img {
  transform: scale(1.04);
  opacity: 0.85;
}

.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-play-btn svg {
  width: 56px;
  height: 56px;
  drop-shadow: 0 2px 8px rgba(0,0,0,0.4);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: transform 0.2s;
}

.yt-card:hover .yt-play-btn svg { transform: scale(1.1); }

.yt-body {
  padding: 16px;
}

.yt-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ff0000;
  background: rgba(255,0,0,0.07);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.yt-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--text-main);
}

.yt-sub {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-sub);
}
.cta-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 20px;
}

/* Base button style */
.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Outline button */
.btn-outline-note {
  color: #4C86CC;
  border: 2px solid #4C86CC;
  background: transparent;
}

.btn-outline-note:hover {
  background: #4C86CC;
  color: #fff;
}
.btn-outline-yt {
  color: #ff1a1a;
  border: 2px solid #ff1a1a;
  background: transparent;
}

.btn-outline-yt:hover {
  background: #ff1a1a;
  color: #fff;
}
.btn-outline-pickup {
  color: #F3920B;
  border: 2px solid #F3920B;
  background: transparent;
}

.btn-outline-pickup:hover {
  background: #F3920B;
  color: #fff;
}

/* ======= PICKUP SECTION ======= */
.pickup {
  display: block;
}
.section-title {
  font-weight: 700;
  font-size: 38px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
  margin: 0 0 15px;
  text-align: center;
}
.section-desc {
  font-weight: 700;
  font-size: 18px;
  line-height: 20.7px;
  letter-spacing: 0;
  color: #000000;
  padding: 20px 0 25px;
  text-align: center;
}
.pickup .pickup-list {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.pickup .pickup-list .pickup-list--item {
  flex: 1;
  transition: 0.3s;
}
.pickup .pickup-list .pickup-list--item figure {
  width: 100%;
  height: 210px;
  overflow: hidden;
  border-radius: 10px;
}
.pickup .pickup-list .pickup-list--item figure img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
  border-radius: 0px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.pickup .pickup-list .pickup-list--item:hover figure img {
  transform: scale(1.06);
  opacity: 0.9;
}
.pickup .pickup-list .pickup-list--item p {
  font-size: 15px;
  margin: 5px 0 7px;
  line-height: 25px;
}
.pickup .pickup-list .pickup-list--item span {
  color: #41aea2;
  font-size: 14px;
}
.pickup .pickup-list .pickup-list--item .details {
  display: block;
  margin: 12px 0 40px;
  overflow: hidden;
}
.pickup .pickup-list .pickup-list--item .details li {
  background-color: #393939;
  color: #fff;
  float: left;
  font-size: 11px;
  margin-right: 5px;
  padding: 6px;
}
.pickup-sp {
  background-color: #d9efec;
  display: none;
  margin: 0 auto;
  padding: 40px 0 0;
  width: 1088px;
}
.pickup-sp .title {
  color: #41aea2;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
}
.pickup-sp .slider-pickup {
  background-color: #d9efec;
  padding: 0;
}
.pickup-sp .slider-pickup .slider-pickup--item .slider-pickup--container {
  display: block;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 15px;
  width: 1088px;
}


/* ======= CTA BANNER ======= */
.cta-section {
  background: linear-gradient(130deg, var(--kredo-blue) 0%, var(--kredo-sky) 100%);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 28px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--kredo-blue);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ======= DIVIDER ======= */
.section-divider-hero{
  width: 357px;
  height: 1px;
  background: #00BEB3;
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-label-note {
  font-weight: 700;
  font-size: 18px;
  line-height: 20.7px;
  letter-spacing: 0;
  display: block;
  margin-bottom: 10px;
  text-align: center;
  color: #4C86CC;
}
.section-divider-note {
  width: 404px;
  height: 1px;
  background: #4C86CC;
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-label-youtube {
  font-weight: 700;
  font-size: 18px;
  line-height: 20.7px;
  letter-spacing: 0;
  display: block;
  margin-bottom: 10px;
  text-align: center;
  color: #FF0302;
}
.section-divider-youtube {
  width: 368px;
  height: 1px;
  background: #FF0302;
  border-radius: 2px;
  margin: 14px auto 0;
}
.section-label-interview {
  font-weight: 700;
  font-size: 18px;
  line-height: 20.7px;
  letter-spacing: 0;
  display: block;
  margin-bottom: 10px;
  text-align: center;
  color: #F3920B;
}
.section-divider-interview {
  width: 20%;
  height: 1px;
  background: #F3920B;
  border-radius: 2px;
  margin: 14px auto 0;
}
hr {
  background-color: #D1D5D4;
  height: 1px !important;
  border: none;
}

/* ======= SCROLL ANIMATION ======= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}
#Ft_cv_Area_bver {
  padding: 8px 0 !important;
}
#footer-lp.footer-corporate-bver {
  padding-bottom: 100px !important;
}
/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  .note-grid,
  .yt-grid,
  .pickup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-nav { display: none; }
}

@media (max-width: 600px) {
  .note-grid,
  .yt-grid,
  .pickup-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 56px 16px; }
  .hero { padding: 56px 16px 44px; }
}
@media (max-width: 768px) {
  .page {
    padding: 24px 15px 40px;
  }
  .hero-title {
    font-size: 23px;
  }
  .section-divider-hero, .section-divider-note, .section-divider-youtube  {
    width: 217px;
  }
  .hero-desc {
    font-size: 11px;
    line-height: 20px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-desc {
    font-size: 13px;
  }
  .title {
    font-size: 15px;
  }
  .pickup .pickup-list {
    flex-direction: column;
    gap: 0px;
  }
  .cta-container {
    padding: 15px 0;
  }
  .btn {
    padding: 15px;
  }
}