/* ===== 紹介ツール ===== */

.p-core-info {
  position: relative;
  background: linear-gradient(135deg, #fdf8f0 0%, #f5e0b8 55%, #edcf95 100%);
  padding: 56px 20px 64px;
  overflow: hidden;
}

/* T2Sロゴ画像を背景に（黒背景は blend で除去） */
.p-core-info__t2s-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 640px;
  height: auto;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  display: block;
}

.p-core-info .l-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.p-core-info__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.p-core-info__body {
  width: 100%;
}

/* 「全ての始まりはこの2日間」と同サイズ */
.p-core-info__title {
  font-size: 40px;
  font-weight: 700;
  color: #2c1a0e;
  margin: 0 0 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.p-core-info__title-part {
  display: block;
}

.p-core-info__subtitle {
  font-size: 1.125rem;
  font-weight: bold;
  color: #5c3d1e;
  margin: 0 0 24px;
  line-height: 1.5;
}

.p-core-info__desc {
  font-size: 0.9375rem;
  color: #5c3d1e;
  margin: 0;
  line-height: 1.7;
}

.p-core-info__desc-part {
  display: inline;
  white-space: nowrap;
}

/* ボタン */
.p-core-info__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c97c10;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 20px 48px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(180, 100, 0, 0.3);
  transition: background 0.15s ease, transform 0.15s ease;
  min-width: 260px;
  justify-content: center;
}

.p-core-info__btn:hover {
  background: #a8640c;
  transform: translateY(-1px);
}

.p-core-info__btn::after {
  content: '›';
  font-size: 1.3rem;
  line-height: 1;
}

/* SP調整 */
@media (max-width: 768px) {
  .p-core-info {
    padding: 40px 16px 48px;
  }

  .p-core-info__title {
    font-size: 20px;
    line-height: 1.5;
  }

  .p-core-info__subtitle {
    font-size: 1rem;
  }

  .p-core-info__desc-part {
    display: block;
  }

  .p-core-info__btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px;
    min-width: unset;
  }
}
