.lmct {
  --lmct-deep: #52808d;
  --lmct-deep-dark: #3f6e77;
  --lmct-mist: #c7dadd;
  --lmct-cream: #fbf8f2;
  --lmct-ink: #313c3f;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  overflow-anchor: none;
  padding: clamp(76px, 9vw, 138px) 24px clamp(84px, 10vw, 150px);
  background: var(--lmct-cream);
  color: var(--lmct-ink);
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.lmct *, .lmct *::before, .lmct *::after { box-sizing: border-box; }
.lmct__inner { position: relative; z-index: 2; width: min(1120px, 100%); margin-inline: auto; }
.lmct__header { margin-bottom: clamp(52px, 7vw, 92px); }
.lmct .lmct__heading {
  margin: 0;
  color: var(--lmct-deep);
  font-size: 50px !important;
  font-weight: 400;
  letter-spacing: .1em;
  line-height: 1.15;
}

.lmct-slider { position: relative; }
.lmct-slider__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lmct-slider__viewport::-webkit-scrollbar { display: none; }
.lmct__list { display: flex; width: 100%; }
.lmct-card {
  display: grid;
  flex: 0 0 100%;
  grid-template-columns: minmax(0, 48%) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 106px);
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.lmct-card__media-link { display: block; color: inherit; text-decoration: none; }
.lmct-card__visual { position: relative; width: min(100%, 500px); aspect-ratio: 1 / 1; }
.lmct-card__figure {
  position: absolute;
  inset: 7%;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  background: #d9e3e1;
  border-radius: 50%;
  transform: translateZ(0);
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.lmct-card__image, .lmct-card__placeholder { display: block; width: 100%; height: 100%; }
.lmct-card__image { object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .6s ease; }
.lmct-card__placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--lmct-mist), #eef3f0);
  color: rgba(82,128,141,.7);
  font-size: clamp(19px, 2vw, 28px);
  letter-spacing: .12em;
}
.lmct-card__shape {
  position: absolute;
  inset: 0 3% 2% 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(232,240,239,.98) 5%, rgba(163,195,201,.88) 52%, rgba(82,128,141,.78) 100%);
  border-radius: 49% 51% 52% 48% / 51% 49% 51% 49%;
  filter: saturate(.82);
  animation: lmct-morph 9s ease-in-out infinite alternate, lmct-float 7s ease-in-out infinite;
}
.lmct-card__date {
  display: block;
  color: var(--lmct-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: .16em;
}
.lmct-rise--date { margin-bottom: 16px; }
.lmct-card__title { margin: 0; font-size: clamp(22px, 2.5vw, 34px); font-weight: 500; line-height: 1.65; }
.lmct-rise--title { margin-bottom: 20px; }
.lmct-card__title a { color: var(--lmct-ink); text-decoration: none; transition: color .3s ease; }
.lmct-card__excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 27px;
  color: #586265;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .055em;
  line-height: 2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.lmct-card__more {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 5px 0 9px;
  color: var(--lmct-deep-dark);
  font-size: 13px;
  letter-spacing: .14em;
  text-decoration: none;
}
.lmct-card__more::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--lmct-deep);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.lmct-card__more svg { width: 42px; height: 12px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1; transition: transform .4s ease; }

@media (hover: hover) {
  .lmct-card:hover .lmct-card__figure { transform: translateY(-5px); }
  .lmct-card:hover .lmct-card__image { transform: scale(1.045); filter: saturate(1.04); }
  .lmct-card__title a:hover { color: var(--lmct-deep); }
  .lmct-card__more:hover::after { transform: scaleX(1); }
  .lmct-card__more:hover svg { transform: translateX(7px); }
}

.lmct-slider__controls {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: -24px;
  left: -24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}
.lmct-slider__arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(82,128,141,.42);
  border-radius: 50%;
  outline: 0;
  background: rgba(251,248,242,.94);
  color: var(--lmct-deep-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 8px 24px rgba(63,110,119,.12);
  transition: color .3s ease, background-color .3s ease, opacity .3s ease, transform .3s ease;
}
.lmct-slider__arrow:disabled { opacity: .25; cursor: default; }
@media (hover: hover) {
  .lmct-slider__arrow:not(:disabled):hover { background: var(--lmct-deep); color: #fff; transform: translateY(-2px); }
}

.lmct-pager { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: clamp(70px, 9vw, 120px); }
.lmct-pager a, .lmct-pager span { text-decoration: none; }
.lmct-pager__number, .lmct-pager__arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(82,128,141,.32);
  border-radius: 50%;
  color: var(--lmct-deep-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  transition: color .3s ease, background-color .3s ease, transform .3s ease;
}
.lmct-pager__number.is-current { border-color: transparent; background: linear-gradient(145deg, var(--lmct-mist), var(--lmct-deep)); color: #fff; }
.lmct-pager__arrow { font-size: 18px; }
.lmct-pager__arrow--prev { margin-right: 8px; }
.lmct-pager__arrow--next { margin-left: 8px; }
@media (hover: hover) { .lmct-pager a:hover { background-color: var(--lmct-deep); color: #fff; transform: translateY(-2px); } }

.lmct__ambient { position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; filter: blur(2px); opacity: .45; }
.lmct__ambient--one { top: 4%; right: -110px; width: 330px; aspect-ratio: 1; background: radial-gradient(circle at 35% 35%, rgba(232,240,239,.85), rgba(128,172,180,.24) 55%, transparent 72%); }
.lmct__ambient--two { bottom: 11%; left: -150px; width: 380px; aspect-ratio: 1; background: radial-gradient(circle at 60% 45%, rgba(199,218,221,.55), transparent 68%); }

.lmct-reveal { opacity: 0; transform: translateY(34px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1); }
.lmct-reveal.is-visible { opacity: 1; transform: translateY(0); }
.lmct-rise { overflow: hidden; }
.lmct-rise__inner {
  opacity: 0;
  transform: translate3d(0, 105%, 0);
  transition: transform 1.5s cubic-bezier(.23,1,.32,1) var(--lmct-delay, 0ms), opacity .45s ease var(--lmct-delay, 0ms);
  will-change: transform;
}
.lmct-rise.is-visible > .lmct-rise__inner { opacity: 1; transform: translate3d(0,0,0); }

@keyframes lmct-morph {
  0% { border-radius: 49% 51% 52% 48% / 51% 49% 51% 49%; }
  50% { border-radius: 52% 48% 49% 51% / 48% 52% 49% 51%; }
  100% { border-radius: 50% 50% 47% 53% / 52% 48% 52% 48%; }
}
@keyframes lmct-float { 0%,100% { transform: translate3d(0,0,0) rotate(-1deg); } 50% { transform: translate3d(8px,-9px,0) rotate(2deg); } }

@media (max-width: 767px) {
  .lmct { padding: 68px 20px 84px; }
  .lmct__header { margin-bottom: 50px; }
  .lmct .lmct__heading { font-size: 34px !important; text-align: center; }
  .lmct-card { grid-template-columns: 1fr; gap: 32px; }
  .lmct-card__visual { width: 100%; }
  .lmct-card__content { padding-inline: 4px; }
  .lmct-card__title { font-size: clamp(21px, 6.3vw, 27px); line-height: 1.65; }
  .lmct-card__excerpt { margin-bottom: 20px; font-size: 13px; line-height: 1.9; }
  .lmct-pager { gap: 5px; }
  .lmct-pager__number, .lmct-pager__arrow { width: 40px; height: 40px; }
  .lmct-pager__arrow--prev { margin-right: 2px; }
  .lmct-pager__arrow--next { margin-left: 2px; }
  .lmct-slider__controls { right: 2px; left: 2px; }
  .lmct-slider__arrow { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .lmct *, .lmct *::before, .lmct *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .lmct-reveal, .lmct-rise__inner { opacity: 1; transform: none; }
  .lmct-slider__viewport { scroll-behavior: auto; }
}
