/* ===== history.css — history.html 専用スタイル ===== */

/* ----- Head inline ----- */
.offcanvas__menu-wrapper.mean-container { padding-bottom: 0 !important; }

/* ===== Timeline ===== */
.kc-timeline-section {
  padding: 120px 0 40px;
  background: #e8e8e8;
}
.kc-tl-header {
  text-align: center;
  margin-bottom: 80px;
}
.kc-tl-sub {
  font-family: 'Kanit', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.kc-tl-title {
  font-family: 'M PLUS 1', sans-serif !important;
  font-size: 80px;
  font-weight: 500;
  color: var(--black-2);
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1200px) and (max-width: 1399px) and (pointer: fine) {
  .kc-tl-title { font-size: 60px; }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (pointer: coarse), only screen and (min-width: 768px) and (max-width: 1199px) {
  .kc-tl-title { font-size: 48px; }
}

/* Wrap */
.kc-tl-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

/* Center vertical line */
.kc-tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #1a1a1a;
  transform: translateX(-50%);
}

/* Each item: 3 columns — label | center(badge) | card  or  card | center | label */
.kc-tl-item {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: start;
  margin-bottom: 70px;
  position: relative;
}

/* ---- Center column ---- */
.kc-tl-center-col {
  display: flex;
  justify-content: center;
  padding-top: 18px;
  position: relative;
  z-index: 2;
}

/* Badge (colored square with icon) */
.kc-tl-badge {
  width: 48px;
  height: 48px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.kc-tl-item:nth-child(odd) .kc-tl-badge  { background: #1a1a1a; }
.kc-tl-item:nth-child(even) .kc-tl-badge { background: var(--primary); }

/* ---- Label column ---- */
.kc-tl-label-col {
  display: flex;
  align-items: flex-start;
  padding-top: 18px;
}
/* right-card items: label is on LEFT → right-align */
.kc-tl-right .kc-tl-label-col {
  justify-content: flex-end;
  padding-right: 24px;
}
/* left-card items: label is on RIGHT → left-align */
.kc-tl-left .kc-tl-label-col {
  justify-content: flex-start;
  padding-left: 24px;
}

.kc-tl-label {
  font-family: 'Kanit', sans-serif;
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  white-space: nowrap;
}
.kc-tl-item:nth-child(odd) .kc-tl-label  { color: #1a1a1a; }
.kc-tl-item:nth-child(even) .kc-tl-label { color: var(--primary); }

/* ---- Card column ---- */
.kc-tl-card-col {
  padding-top: 0;
}
.kc-tl-right .kc-tl-card-col { padding-left: 0; }
.kc-tl-left  .kc-tl-card-col { padding-right: 0; }

/* Card */
.kc-tl-card {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.kc-tl-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.14); }

/* Colored header bar */
.kc-tl-card__header {
  padding: 14px 20px;
  color: #fff;
}
.kc-tl-item:nth-child(odd) .kc-tl-card__header  { background: #1a1a1a; }
.kc-tl-item:nth-child(even) .kc-tl-card__header { background: var(--primary); }

.kc-tl-card__header h3 {
  font-family: 'Kanit', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff !important;
  margin: 0;
  line-height: 1.4;
}

/* Image */
.kc-tl-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.kc-tl-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.kc-tl-card:hover .kc-tl-card__img img { transform: scale(1.04); }

/* Body text */
.kc-tl-card__body {
  padding: 16px 20px 20px;
  background: #fff;
}
.kc-tl-card__body p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
  margin: 0 0 10px;
}

/* Horizontal connector line: badge → card edge */
.kc-tl-right .kc-tl-center-col::after {
  content: '';
  position: absolute;
  top: 42px;
  right: 0px;
  width: 26px;
  height: 0;
  border-top: 4px solid #999;
}
.kc-tl-left .kc-tl-center-col::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 0px;
  width: 26px;
  height: 0;
  border-top: 4px solid #999;
}

/* ===== Timeline closing message ===== */
.kc-tl-closing {
  background: #e8e8e8;
  text-align: center;
  padding: 0px 20px 100px;
}
.kc-tl-closing__img {
  display: block;
  margin: 0 auto 24px;
  width: 120px;
}
.kc-tl-closing__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  line-height: 1.5;
}
.kc-tl-closing__text br { display: inline !important; }
/* ===== Mobile ===== */
@media only screen and (max-width: 767px) {
  .kc-tl-closing { padding: 0px 20px 60px; }
  .kc-tl-closing__img { width: 80px; margin-bottom: 16px; }
  .kc-tl-closing__text { font-size: 28px; }

  .kc-timeline-section { padding: 80px 0 20px; }
  .kc-tl-title { font-size: 48px !important; margin-bottom: 32px; }
  .kc-tl-header { margin-bottom: 20px; }

  .kc-tl-line { left: 19px; transform: none; width: 2px; }

  .kc-tl-item {
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto;
    margin-bottom: 40px;
    column-gap: 14px;
  }

  /* badge always col-1 row-1 */
  .kc-tl-right .kc-tl-center-col,
  .kc-tl-left  .kc-tl-center-col {
    grid-column: 1;
    grid-row: 1;
    padding-top: 12px;
    justify-content: flex-start;
  }
  .kc-tl-right .kc-tl-center-col::after,
  .kc-tl-left  .kc-tl-center-col::before { display: none; }

  /* label always col-2 row-1 */
  .kc-tl-right .kc-tl-label-col,
  .kc-tl-left  .kc-tl-label-col {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
    padding-top: 18px;
  }

  /* card spans full width in row-2 */
  .kc-tl-right .kc-tl-card-col,
  .kc-tl-left  .kc-tl-card-col {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 0;
    margin-top: 8px;
  }

  .kc-tl-badge { width: 30px; height: 30px; font-size: 13px; }
  .kc-tl-card__header h3 { font-size: 22px; }
  .kc-tl-card__body p { font-size: 16px; text-align: justify; }
}

/* ===== Customer Voices ===== */
.kc-voices-section {
  padding: 120px 0 100px;
  background: #fff;
}
.kc-voices-header {
  text-align: center;
  margin-bottom: 70px;
}
.kc-voices-sub {
  font-family: 'Kanit', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.kc-voices-title {
  font-family: 'Kanit', 'Noto Sans JP', sans-serif;
  font-size: 80px;
  font-weight: 500;
  color: var(--black-2);
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1200px) and (max-width: 1399px) and (pointer: fine) {
  .kc-voices-title { font-size: 60px; }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (pointer: coarse), only screen and (min-width: 768px) and (max-width: 1199px) {
  .kc-voices-title { font-size: 48px; }
}

.kc-voices-list {
  max-width: 1000px;
  margin: 0 auto;
}

/* Each voice card */
.kc-voice {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  background: #fafafa;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.kc-voice:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.1);
}
/* Alternate photo side */
.kc-voice:nth-child(even) {
  direction: rtl;
}
.kc-voice:nth-child(even) > * {
  direction: ltr;
}

/* Case number badge */
.kc-voice__case {
  display: block;
  font-family: 'Kanit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}

/* Photo column */
.kc-voice__photo {
  position: relative;
  overflow: hidden;
  background: #f7cae1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 30px 80px;
}
.kc-voice__photo img,
.kc-voice__photo picture {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}
.kc-voice__photo picture img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.kc-voice__photo-placeholder {
  width: 100%;
  aspect-ratio: 1/1;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 48px;
}

/* Text column */
.kc-voice__body {
  padding: 32px 36px 32px 0;
}
.kc-voice:nth-child(even) .kc-voice__body {
  padding: 32px 0 32px 36px;
}

.kc-voice__name {
  font-family: 'Kanit', 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--black-2);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.kc-voice__item {
  margin-bottom: 16px;
}
.kc-voice__item:last-child {
  margin-bottom: 0;
}
.kc-voice__q {
  font-family: 'Kanit', 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.kc-voice__a {
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  margin: 0;
  text-align: justify;
}

/* ===== Mobile voices ===== */
@media only screen and (max-width: 767px) {
  .kc-voices-section { padding: 80px 0 60px; }
  .kc-voices-title { font-size: 36px; }
  .kc-voices-header { margin-bottom: 40px; }

  .kc-voice {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 40px;
  }
  .kc-voice:nth-child(even) {
    direction: ltr;
  }
  .kc-voice__photo {
    padding: 24px;
  }
  .kc-voice__body {
    padding: 24px 20px !important;
  }
  .kc-voice__name { font-size: 22px; }
  .kc-voice__a { font-size: 16px; text-align: justify; }
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 1199px) and (pointer: coarse), only screen and (min-width: 768px) and (max-width: 1199px) {
  .kc-voice {
    grid-template-columns: 220px 1fr;
    gap: 30px;
  }
}

/* ===== Campaign Section ===== */
.kc-campaign {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.kc-campaign::before {
  content: '#';
  position: absolute;
  top: -40px;
  right: -20px;
  font-family: 'Kanit', sans-serif;
  font-size: 300px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.kc-campaign__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.kc-campaign__sub {
  font-family: 'Kanit', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.kc-campaign__title {
  font-family: 'Kanit', 'Noto Sans JP', sans-serif;
  font-size: 80px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1200px) and (max-width: 1399px) and (pointer: fine) {
  .kc-campaign__title { font-size: 60px; }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (pointer: coarse), only screen and (min-width: 768px) and (max-width: 1199px) {
  .kc-campaign__title { font-size: 48px; }
}
.kc-campaign__hashtag {
  font-family: 'Kanit', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
  display: inline-block;
  letter-spacing: 0.02em;
  text-shadow: 0 0 40px rgba(208, 77, 133, 0.4);
}
.kc-campaign__lead {
  font-size: 20px;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  margin-bottom: 50px;
}
.kc-campaign__note {
  font-size: 20px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 50px;
}

/* 2-column: content / how-to */
.kc-campaign__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: left;
  margin-bottom: 50px;
}
.kc-campaign__box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 36px 32px;
}
.kc-campaign__box-title {
  font-family: 'Kanit', 'Noto Sans JP', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kc-campaign__box-title i {
  font-size: 22px;
}
.kc-campaign__box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kc-campaign__box ul li {
  font-size: 20px;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  padding-left: 20px;
  position: relative;
}
.kc-campaign__box ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

/* Prize banner */
.kc-campaign__prize {
  background: var(--primary);
  border-radius: 8px;
  padding: 30px 40px;
  text-align: center;
}
.kc-campaign__prize-title {
  font-family: 'Kanit', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.kc-campaign__prize-text {
  font-family: 'Kanit', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}
.kc-campaign__prize-text strong {
  font-size: 36px;
}

/* Instagram link */
.kc-campaign__ig {
  margin-top: 40px;
}
.kc-campaign__ig a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Kanit', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border: 2px solid var(--primary);
  padding: 16px 40px;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}
.kc-campaign__ig a:hover {
  background: var(--primary);
}
.kc-campaign__ig a i {
  font-size: 24px;
}

/* Mobile campaign */
@media only screen and (max-width: 767px) {
  .kc-campaign { padding: 80px 0 60px; }
  .kc-campaign__title { font-size: 36px; }
  .kc-campaign__hashtag { font-size: 36px; margin-bottom: 24px; }
  .kc-campaign__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .kc-campaign__box { padding: 28px 24px; }
  .kc-campaign__prize { padding: 24px 20px; }
  .kc-campaign__prize-text { font-size: 20px; }
  .kc-campaign__prize-text strong { font-size: 28px; }
}

/* ===== Photo Book ===== */
.kc-photobook-section {
  padding: 120px 0 100px;
  background: #1a1a1a;
}
.kc-pb-header {
  text-align: center;
  margin-bottom: 60px;
}
.kc-pb-sub {
  font-family: 'Kanit', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.kc-pb-title {
  font-family: 'Kanit', sans-serif;
  font-size: 80px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}
.kc-pb-lead {
  font-family: 'M PLUS 1', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.5);
}
/* Book area (grid layout) */
.kc-book-area {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  grid-template-rows: auto auto;
  align-items: center;
}
.kc-book-nav--prev { grid-column: 1; grid-row: 1; justify-self: center; }
.kc-book-area .kc-book { grid-column: 2; grid-row: 1; width: 100%; }
.kc-book-nav--next { grid-column: 3; grid-row: 1; justify-self: center; }
.kc-book-area .kc-book-indicator { grid-column: 2; grid-row: 2; }
/* The book */
.kc-book {
  position: relative;
  width: min(1400px, 96vw);
  aspect-ratio: 2 / 1.35;
  perspective: 2000px;
  box-shadow:
    -6px 0 18px rgba(0,0,0,0.18),
    6px 0 18px rgba(0,0,0,0.14),
    0 20px 50px rgba(0,0,0,0.22);
  background: #e8e0d6;
}
/* Pages */
.kc-book__left,
.kc-book__right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.kc-book__left { left: 0; }
.kc-book__right { right: 0; }
.kc-book__left img,
.kc-book__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Page curl shadow on left edge of right page */
.kc-book__right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 20px;
  background: linear-gradient(to right, rgba(0,0,0,0.12), transparent);
  z-index: 1;
  pointer-events: none;
}
/* Flip element */
.kc-book__flip {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  transform-origin: left center;
  transform-style: preserve-3d;
  z-index: 15;
  pointer-events: none;
}
.kc-book__flip-front,
.kc-book__flip-back {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.kc-book__flip-back {
  transform: rotateY(180deg);
}
/* Page shadow during flip */
.kc-book__flip.is-flipping-next .kc-book__flip-front::after,
.kc-book__flip.is-flipping-prev .kc-book__flip-back::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.18) 0%, transparent 50%);
}
/* Flip animations */
@keyframes kc-flip-next {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(-180deg); }
}
@keyframes kc-flip-prev {
  from { transform: rotateY(-180deg); }
  to   { transform: rotateY(0deg); }
}
.kc-book__flip.is-flipping-next {
  animation: kc-flip-next 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.kc-book__flip.is-flipping-prev {
  animation: kc-flip-prev 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
/* Nav buttons */
.kc-book-nav {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.kc-book-nav:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.08);
}
/* Indicator */
.kc-book-indicator {
  text-align: center;
  margin-top: 28px;
  font-family: 'Kanit', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 4px;
}
.kc-book-indicator__current {
  color: #fff;
  font-weight: 600;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1200px) and (max-width: 1399px) and (pointer: fine) {
  .kc-pb-title { font-size: 60px; }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (pointer: coarse), only screen and (min-width: 768px) and (max-width: 1199px) {
  .kc-pb-title { font-size: 48px; }
}
@media only screen and (max-width: 767px) {
  .kc-photobook-section { padding: 80px 0 60px; }
  .kc-pb-title { font-size: 40px; }
  .kc-pb-lead { font-size: 14px; }
  .kc-pb-header { margin-bottom: 24px; }
  /* 1枚表示 + フレックスで2段レイアウト */
  .kc-book-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 16px;
  }
  .kc-book-area .kc-book { flex: 0 0 min(420px, 88vw); width: min(420px, 88vw); order: 0; }
  .kc-book-nav--prev { order: 1; }
  .kc-book-area .kc-book-indicator { order: 2; margin-top: 0; }
  .kc-book-nav--next { order: 3; }
  .kc-book { aspect-ratio: 1 / 1.35; }
  .kc-book__left { width: 100%; }
  .kc-book__right { display: none; }
  .kc-book__flip { width: 100%; right: auto; left: 0; transform-style: flat !important; }
  .kc-book__flip-front { backface-visibility: visible !important; -webkit-backface-visibility: visible !important; }
  .kc-book__flip-back { display: none; }
  @keyframes kc-mob-fadeout { from { opacity: 1; } to { opacity: 0; } }
  .kc-book__flip.is-flipping-next,
  .kc-book__flip.is-flipping-prev { animation: none !important; }
  .kc-book__flip.is-flipping-next .kc-book__flip-front,
  .kc-book__flip.is-flipping-prev .kc-book__flip-front {
    animation: kc-mob-fadeout 0.45s ease forwards !important;
  }
  .kc-book-nav { width: 36px; height: 36px; font-size: 13px; }
  .kc-book-indicator { font-size: 14px; }
}

/* ===== Tablet ===== */
@media only screen and (min-width: 576px) and (max-width: 1199px) and (pointer: coarse), only screen and (min-width: 576px) and (max-width: 1199px) {
  .solution__area { display: none !important; }
  .kc-timeline-section { padding-top: 160px !important; }
  .kc-tl-card__body p { font-size: 16px; line-height: 1.7; text-align: justify; }
  .kc-book-area {
    display: grid !important;
    grid-template-columns: auto auto auto !important;
    grid-template-rows: auto auto !important;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .kc-book-area .kc-book { grid-column: 1 / -1 !important; grid-row: 1 !important; width: min(700px, 92vw) !important; justify-self: center; }
  .kc-book-nav--prev { grid-column: 1 !important; grid-row: 2 !important; justify-self: end; }
  .kc-book-area .kc-book-indicator { grid-column: 2 !important; grid-row: 2 !important; margin: 0; }
  .kc-book-nav--next { grid-column: 3 !important; grid-row: 2 !important; justify-self: start; }
}
