/*カテゴリー色*/
.kyushu-col{
 color: #0283ff; 
}
.kanto-col{
 color: #41bc3a; 
}
.tokai-col{
 color: #e5a254; 
}
.kansai-col{
 color: #b52929; 
}

/* .momlb-line--kyushu{
background: #0283ff; 
}
.momlb-line--kanto{
background: #41bc3a; 
}
.momlb-line--tokai{
background: #e5a254; 
}
.momlb-line--kansai{
background: #b52929; 
} */

.momlb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.momlb-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.momlb-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  transition: opacity 0.3s ease;
}

.momlb-more:hover {
  opacity: 0.7;
}

.momlb-more-arrow {
  font-size: 18px;
  line-height: 1;
}

.momlb-line {
  width: 100%;
  height: 1px;
  /* margin-bottom: 24px; */
}

.momlb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.momlb-item {
  overflow: hidden;
  background: #f7f7f7;
}

.momlb-link {
  display: block;
  text-decoration: none;
}

.momlb-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.momlb-link:hover .momlb-image {
  transform: scale(1.04);
}

.momlb-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

.momlb-modal.is-active {
  display: flex;
}

.momlb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.momlb-dialog {
  position: relative;
  z-index: 2;
  width: min(700px, calc(100% - 0));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  background: #fff;
  overflow-y: auto;
  padding: 54px 18px 18px;
  box-sizing: border-box;
  border-radius: 8px;
}

.momlb-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  width: 40px;
  height: 40px;
  border: none;
  background: #ffffff;
  color: #939292;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
}

.momlb-ads {
  display: grid;
  gap: 14px;
  justify-content: center;
}

.momlb-ads-top {
  margin-bottom: 14px;
}

.momlb-ads-bottom {
  margin-top: 14px;
}

.momlb-ad-item {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.momlb-ad-item a {
  display: inline-block;
  text-align: center;
  max-width: 340px;
}

.momlb-ad-item img {
  display: block;
  width: 100%;
  max-width: 340px;
}

.momlb-ad-image {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0 auto;
}

/* スマホは画像下に操作UI */
.momlb-viewer {
  display: block;
}

.momlb-image-wrap {
  background: #ffffff;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
}

.momlb-modal-image {
  display: block;
  width: 100%;
  max-height: 56vh;
  object-fit: contain;
  margin: 0 auto;
  opacity: 1;
}

.momlb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: #fff;
  border: none;
  color: #111;
  cursor: pointer;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}

.momlb-nav:hover {
  background: #f5f5f5;
}

.momlb-nav .material-symbols-outlined {
  font-size: 2.5rem;
  line-height: 1;
  display: block;
  color: #939292;
}

.momlb-prev,
.momlb-next {
  display: none;
}

/* スマホ用：画像下の操作UI */
.momlb-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.momlb-nav-text {
  min-width: 48px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.momlb-nav-text:hover {
  background: #f5f5f5;
  border-color: #cfcfcf;
}

.momlb-nav-text .material-symbols-outlined {
  font-size: 2.5rem;
  line-height: 1;
  display: block;
  color: #939292;
}

.momlb-counter {
  min-width: 52px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.momlb-body-lock {
  overflow: hidden;
}

.momlb-modal-image.is-changing {
  animation: momlbImageFade 0.35s ease;
}

@keyframes momlbImageFade {
  0% {
    opacity: 0.35;
  }
  100% {
    opacity: 1;
  }
}
 .momlb-close .material-symbols-outlined{
    font-size: 33px;
  }
@media screen and (min-width: 768px) {
  .momlb-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .momlb-title {
    font-size: 18px;
  }

  .momlb-dialog {
    width: min(620px, calc(100% - 140px));
    max-height: calc(100vh - 12px);
    margin: 2rem auto;
    padding: 45px 20px 45px;
    box-sizing: border-box;
    overflow: visible;
  }

  .momlb-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
  .momlb-close .material-symbols-outlined{
    font-size: 35px;
  }
  .momlb-viewer {
    position: relative;
    display: block;
  }

  .momlb-prev,
  .momlb-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    z-index: 30;
  }

  .momlb-prev {
    left: -55px;
            border-top-left-radius: 5px;   /* 左上 */
  border-bottom-left-radius: 5px; /* 左下 */
  }

  .momlb-next {
    right: -55px;
            border-top-right-radius: 5px;   /* 左上 */
  border-bottom-right-radius: 5px; /* 左下 */
  }

  .momlb-image-wrap {
    padding: 12px;
  }

  .momlb-modal-image {
    max-height: 66vh;
  }

  .momlb-nav {
        width: 35px;
        height: 100px;

  }

  .momlb-controls {
    display: none;
  }
}

.momlb-more-wrap {
  margin-top: 28px;
  text-align: center;
}

.momlb-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 48px;
  padding: 0 24px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.momlb-load-more:hover {
  opacity: 0.75;
}

.momlb-load-more.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.momlb-item.is-appended {
  opacity: 0;
  transform: translateY(18px);
  animation: momlbItemFadeUp 0.5s ease forwards;
}

@keyframes momlbItemFadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.momlb-status {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.momlb-status-sep {
  margin: 0 4px;
}

.momlb-status-label {
  margin-left: 4px;
}

.momlb-list-link {
  position: absolute;
  top: 9px;
  left: 10px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #fff;
  color: #939292 !important;
  text-decoration: none;
  /* border: 1px solid #d9d9d9; */
  /* border-radius: 999px; */
  transition: opacity 0.25s ease, background-color 0.25s ease;
}

.momlb-list-link:hover {
  opacity: 0.75;
  background: #f5f5f5;
}

.momlb-list-link .material-symbols-outlined {
  font-size: 24px;
  line-height: 1;
}
.list-font{
font-size: 33px !important;
}
.momlb-intro {
  margin-bottom: 32px;
}
