/* =========================================
   ねこみち編集舎
   トップページCSS
========================================= */

/* -----------------------------------------
   共通セクション
----------------------------------------- */

.nm-home {
  overflow: hidden;
}

.nm-section {
  padding-top: clamp(90px, 11vw, 170px);
  padding-bottom: clamp(90px, 11vw, 170px);
}

.nm-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  margin-bottom: clamp(55px, 7vw, 100px);
}

.nm-section-heading__en,
.nm-store-heading__en,
.nm-about__en,
.nm-instagram__en {
  margin-bottom: 19px;
  color: var(--nm-muted);
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.25em;
}

.nm-section-heading h2,
.nm-store-heading h2,
.nm-about h2,
.nm-instagram h2 {
  margin: 0;
  font-family: var(--nm-serif);
  font-size: clamp(29px, 4.2vw, 57px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.nm-section-heading__description {
  padding-bottom: 8px;
}

.nm-section-heading__description p {
  margin-bottom: 28px;
  color: var(--nm-muted);
  font-family: var(--nm-serif);
  font-size: 13px;
  line-height: 2.15;
}

.nm-text-link {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-family: var(--nm-serif);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.nm-text-link span:last-child {
  transition: transform var(--nm-transition);
}

.nm-text-link:hover span:last-child {
  transform: translateX(5px);
}

/* -----------------------------------------
   メインビジュアル
----------------------------------------- */

.nm-hero {
  background: var(--nm-paper);
}

.nm-hero__visual {
  position: relative;
  height: min(760px, calc(100vh - 138px));
  min-height: 590px;
  overflow: hidden;
}

.nm-hero__image {
  position: absolute;
  inset: 0;
  background-color: #d8d5cc;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.nm-hero__image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(26, 27, 24, 0.03) 30%,
      rgba(26, 27, 24, 0.3) 100%
    );
  content: "";
}

.nm-hero__copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(var(--nm-side), calc((100vw - var(--nm-width)) / 2));
  max-width: 650px;
  color: #fffdf8;
  transform: translateY(-50%);
}

.nm-hero__issue {
  margin-bottom: 27px;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.25em;
}

.nm-hero__title {
  margin-bottom: 31px;
  color: inherit;
  font-family: var(--nm-serif);
  font-size: clamp(43px, 6.6vw, 96px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.nm-hero__text {
  margin-bottom: 38px;
  font-family: var(--nm-serif);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.nm-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 45px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  font-family: var(--nm-serif);
  font-size: 12px;
}

.nm-hero__link span:last-child {
  transition: transform var(--nm-transition);
}

.nm-hero__link:hover span:last-child {
  transform: translateX(6px);
}

.nm-hero__edition {
  position: absolute;
  z-index: 2;
  right: max(var(--nm-side), calc((100vw - var(--nm-width)) / 2));
  bottom: 45px;
  display: flex;
  color: rgba(255, 255, 255, 0.85);
  flex-direction: column;
  font-size: 8px;
  line-height: 1.8;
  letter-spacing: 0.23em;
  text-align: right;
}

.nm-hero-guide {
  border-bottom: 1px solid var(--nm-line);
  background: var(--nm-white);
}

.nm-hero-guide__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.nm-hero-guide__item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  min-height: 105px;
  align-items: center;
  gap: 15px;
  padding: 20px clamp(18px, 3vw, 40px);
  border-right: 1px solid var(--nm-line);
  transition: background var(--nm-transition);
}

.nm-hero-guide__item:first-child {
  border-left: 1px solid var(--nm-line);
}

.nm-hero-guide__item:hover {
  background: var(--nm-accent-light);
}

.nm-hero-guide__number {
  color: var(--nm-muted);
  font-size: 9px;
}

.nm-hero-guide__body {
  display: flex;
  flex-direction: column;
}

.nm-hero-guide__body strong {
  font-family: var(--nm-serif);
  font-size: 15px;
  font-weight: 400;
}

.nm-hero-guide__body small {
  margin-top: 4px;
  color: var(--nm-muted);
  font-size: 7px;
  letter-spacing: 0.19em;
}

.nm-hero-guide__arrow {
  color: var(--nm-muted);
  font-size: 13px;
}

/* -----------------------------------------
   コラム
----------------------------------------- */

.nm-column {
  background: var(--nm-paper);
}

.nm-column-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(30px, 4vw, 60px) clamp(18px, 3vw, 38px);
}

.nm-column-card {
  grid-column: span 4;
}

.nm-column-card--main {
  grid-column: span 8;
  grid-row: span 2;
}

.nm-column-card__link {
  display: block;
}

.nm-column-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--nm-paper-deep);
}

.nm-column-card:not(.nm-column-card--main)
.nm-column-card__image-wrap {
  aspect-ratio: 4 / 3;
}

.nm-column-card--main .nm-column-card__image-wrap {
  aspect-ratio: 16 / 10;
}

.nm-column-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.nm-column-card__link:hover .nm-column-card__image {
  transform: scale(1.035);
}

.nm-column-card__category {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 14px;
  background: var(--nm-paper);
  color: var(--nm-muted);
  font-size: 7px;
  letter-spacing: 0.2em;
}

.nm-column-card__content {
  padding-top: 22px;
}

.nm-column-card--main .nm-column-card__content {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 0 25px;
}

.nm-column-card__number {
  margin-bottom: 12px;
  color: var(--nm-muted);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.nm-column-card--main .nm-column-card__number {
  grid-row: 1 / 4;
}

.nm-column-card h3 {
  margin-bottom: 15px;
  font-family: var(--nm-serif);
  font-size: clamp(17px, 2vw, 25px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.07em;
}

.nm-column-card:not(.nm-column-card--main) h3 {
  font-size: clamp(15px, 1.5vw, 19px);
}

.nm-column-card__summary {
  max-width: 580px;
  margin-bottom: 18px;
  color: var(--nm-muted);
  font-family: var(--nm-serif);
  font-size: 12px;
  line-height: 2;
}

.nm-column-card__read {
  display: inline-block;
  width: max-content;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--nm-muted);
  font-size: 7px;
  letter-spacing: 0.2em;
}

/* -----------------------------------------
   コラムカテゴリー
----------------------------------------- */

.nm-column-index {
  padding: clamp(70px, 8vw, 120px) 0;
  background: var(--nm-charcoal);
  color: #f4f1e9;
}

.nm-column-index__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.nm-column-index__heading p {
  margin: 0;
  color: #98978e;
  font-size: 8px;
  letter-spacing: 0.25em;
}

.nm-column-index__heading h2 {
  margin: 0;
  font-family: var(--nm-serif);
  font-size: clamp(25px, 3.5vw, 43px);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.nm-column-index__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.nm-column-index__item {
  position: relative;
  display: flex;
  min-height: 260px;
  justify-content: space-between;
  flex-direction: column;
  padding: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    background var(--nm-transition),
    color var(--nm-transition);
}

.nm-column-index__item:hover {
  background: var(--nm-accent);
  color: var(--nm-ink);
}

.nm-column-index__number {
  color: #99988f;
  font-size: 8px;
}

.nm-column-index__item:hover .nm-column-index__number {
  color: inherit;
}

.nm-column-index__name {
  font-family: var(--nm-serif);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.nm-column-index__en {
  color: #99988f;
  font-size: 7px;
  letter-spacing: 0.19em;
}

.nm-column-index__item:hover .nm-column-index__en {
  color: inherit;
}

.nm-column-index__arrow {
  position: absolute;
  right: 23px;
  bottom: 23px;
}

/* -----------------------------------------
   イベント
----------------------------------------- */

.nm-event {
  background: var(--nm-white);
}

.nm-event-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(350px, 0.7fr);
  background: var(--nm-paper);
  min-height: 500px;
}

.nm-event-feature__image {
  height: 500px;
  overflow: hidden;
}

.nm-event-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nm-event-feature:hover .nm-event-feature__image img {
  transform: scale(1.025);
}

.nm-event-feature__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(40px, 6vw, 90px);
}

.nm-event-feature__status {
  width: max-content;
  margin-bottom: 35px;
  padding: 5px 12px;
  background: var(--nm-accent);
  font-size: 8px;
  letter-spacing: 0.2em;
}

.nm-event-feature__date {
  margin-bottom: 11px;
  color: var(--nm-muted);
  font-size: 10px;
  letter-spacing: 0.17em;
}

.nm-event-feature h3 {
  margin-bottom: 35px;
  font-family: var(--nm-serif);
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.nm-event-feature__details {
  margin: 0 0 40px;
  padding: 23px 0;
  border-top: 1px solid var(--nm-line);
  border-bottom: 1px solid var(--nm-line);
}

.nm-event-feature__details div {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 12px;
}

.nm-event-feature__details div + div {
  margin-top: 7px;
}

.nm-event-feature__details dt {
  color: var(--nm-muted);
  font-size: 7px;
  letter-spacing: 0.17em;
}

.nm-event-feature__details dd {
  margin: 0;
  font-family: var(--nm-serif);
  font-size: 12px;
}

.nm-event-feature__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--nm-ink);
  font-family: var(--nm-serif);
  font-size: 12px;
}

/* -----------------------------------------
   ストアカテゴリー
----------------------------------------- */

.nm-store {
  padding-top: clamp(90px, 11vw, 165px);
  padding-bottom: clamp(90px, 11vw, 165px);
  background: var(--nm-accent-light);
}

.nm-store-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  align-items: end;
  gap: 60px;
  margin-bottom: clamp(55px, 7vw, 95px);
}

.nm-store-heading__text {
  margin: 0;
  color: #59625e;
  font-family: var(--nm-serif);
  font-size: 13px;
  line-height: 2.1;
}

.nm-store-category {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(39, 39, 34, 0.25);
  border-left: 1px solid rgba(39, 39, 34, 0.25);
}

.nm-store-category__item {
  border-right: 1px solid rgba(39, 39, 34, 0.25);
  border-bottom: 1px solid rgba(39, 39, 34, 0.25);
  background: rgba(255, 253, 248, 0.22);
  transition: background var(--nm-transition);
}

.nm-store-category__item:hover {
  background: var(--nm-white);
}

.nm-store-category__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.nm-store-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.nm-store-category__item:hover img {
  transform: scale(1.035);
}

.nm-store-category__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.5),
      rgba(148, 189, 200, 0.25)
    );
}

.nm-store-category__placeholder span {
  color: var(--nm-muted);
  font-size: 8px;
  letter-spacing: 0.24em;
}

.nm-store-category__content {
  position: relative;
  min-height: 120px;
  padding: 25px;
}

.nm-store-category__number {
  display: block;
  margin-bottom: 15px;
  color: var(--nm-muted);
  font-size: 8px;
}

.nm-store-category__content h3 {
  margin: 0;
  font-family: var(--nm-serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.09em;
}

.nm-store-category__arrow {
  position: absolute;
  right: 25px;
  bottom: 25px;
  transition: transform var(--nm-transition);
}

.nm-store-category__item:hover
.nm-store-category__arrow {
  transform: translateX(5px);
}

/* -----------------------------------------
   商品
----------------------------------------- */

.nm-products {
  background: var(--nm-paper);
}

.nm-products-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(50px, 6vw, 80px);
}

.nm-products-heading h2 {
  margin: 0;
  font-family: var(--nm-serif);
  font-size: clamp(27px, 3.5vw, 45px);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.nm-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 55px clamp(17px, 2.5vw, 35px);
}

.nm-product-card__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
  background: var(--nm-paper-deep);
}

.nm-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.nm-product-card__link:hover .nm-product-card__image {
  transform: scale(1.035);
}

.nm-product-card__soldout {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 13px;
  background: var(--nm-charcoal);
  color: #fff;
  font-size: 7px;
  letter-spacing: 0.17em;
}

.nm-product-card__content {
  padding-top: 19px;
}

.nm-product-card__label {
  margin-bottom: 8px;
  color: var(--nm-muted);
  font-size: 7px;
  letter-spacing: 0.18em;
}

.nm-product-card h3 {
  margin-bottom: 8px;
  font-family: var(--nm-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.nm-product-card__description {
  display: -webkit-box;
  margin-bottom: 10px;
  overflow: hidden;
  color: var(--nm-muted);
  font-family: var(--nm-serif);
  font-size: 10px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nm-product-card__price {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.08em;
}

/* -----------------------------------------
   About
----------------------------------------- */

.nm-about {
  padding: clamp(90px, 11vw, 165px) 0;
  background: var(--nm-white);
}

.nm-about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(50px, 9vw, 145px);
}

.nm-about__image {
  position: relative;
}

.nm-about__image::before {
  position: absolute;
  z-index: 0;
  top: -25px;
  left: -25px;
  width: 45%;
  height: 45%;
  background: var(--nm-accent-light);
  content: "";
}

.nm-about__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.nm-about h2 {
  margin-bottom: 35px;
}

.nm-about__text {
  margin-bottom: 38px;
}

.nm-about__text p {
  color: var(--nm-muted);
  font-family: var(--nm-serif);
  font-size: 13px;
  line-height: 2.15;
}

.nm-about__text p + p {
  margin-top: 18px;
}

.nm-button-outline {
  display: inline-flex;
  min-width: 270px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 17px 20px;
  border: 1px solid var(--nm-ink);
  font-family: var(--nm-serif);
  font-size: 11px;
  transition:
    background var(--nm-transition),
    color var(--nm-transition);
}

.nm-button-outline:hover {
  background: var(--nm-ink);
  color: var(--nm-white);
}

/* -----------------------------------------
   Instagram
----------------------------------------- */

.nm-instagram {
  padding: clamp(80px, 9vw, 135px) 0;
  border-top: 1px solid var(--nm-line);
  background: var(--nm-paper);
}

.nm-instagram__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(40px, 8vw, 120px);
}

.nm-instagram__heading h2 {
  margin-bottom: 23px;
  font-size: clamp(26px, 3.5vw, 43px);
}

.nm-instagram__heading > p:last-child {
  color: var(--nm-muted);
  font-family: var(--nm-serif);
  font-size: 12px;
  line-height: 2;
}

.nm-instagram__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(9px, 1.5vw, 20px);
}

.nm-instagram__photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.nm-instagram__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.nm-instagram__photo:hover img {
  transform: scale(1.04);
}

.nm-instagram__link {
  grid-column: 2;
  padding-top: 5px;
  text-align: right;
}

/* -----------------------------------------
   タブレット
----------------------------------------- */

@media screen and (max-width: 1080px) {
  .nm-column-index__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nm-event-feature {
    grid-template-columns: 1fr 0.8fr;
  }

  .nm-store-category {
    grid-template-columns: repeat(2, 1fr);
  }

  .nm-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -----------------------------------------
   スマートフォン
----------------------------------------- */

@media screen and (max-width: 767px) {
  .nm-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .nm-section-heading {
    display: block;
    margin-bottom: 45px;
  }

  .nm-section-heading__description {
    margin-top: 25px;
  }

  .nm-section-heading__description p br {
    display: none;
  }

  .nm-section-heading h2,
  .nm-store-heading h2,
  .nm-about h2 {
    font-size: 28px;
    line-height: 1.65;
  }

  /* ヒーロー */

  .nm-hero__visual {
    height: 630px;
    min-height: 0;
  }

  .nm-hero__image {
    background-position: center;
  }

  .nm-hero__copy {
    top: auto;
    right: 20px;
    bottom: 65px;
    left: 20px;
    transform: none;
  }

  .nm-hero__issue {
    margin-bottom: 18px;
    font-size: 7px;
  }

  .nm-hero__title {
    margin-bottom: 21px;
    font-size: 39px;
    line-height: 1.38;
  }

  .nm-hero__text {
    margin-bottom: 25px;
    font-size: 12px;
  }

  .nm-hero__edition {
    display: none;
  }

  .nm-hero-guide__inner {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .nm-hero-guide__item {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--nm-line);
  }

  .nm-hero-guide__item:first-child {
    border-left: 0;
  }

  /* コラム */

  .nm-column-grid {
    display: block;
  }

  .nm-column-card + .nm-column-card {
    margin-top: 45px;
  }

  .nm-column-card--main .nm-column-card__content {
    display: block;
  }

  .nm-column-card--main .nm-column-card__image-wrap {
    aspect-ratio: 4 / 3;
  }

  .nm-column-card__image-wrap,
  .nm-column-card:not(.nm-column-card--main)
  .nm-column-card__image-wrap {
    aspect-ratio: 4 / 3;
  }

  .nm-column-card h3,
  .nm-column-card:not(.nm-column-card--main) h3 {
    font-size: 18px;
  }

  .nm-column-card__summary {
    font-size: 11px;
  }

  /* コラムカテゴリー */

  .nm-column-index__heading {
    display: block;
  }

  .nm-column-index__heading h2 {
    margin-top: 13px;
  }

  .nm-column-index__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nm-column-index__item {
    min-height: 200px;
    padding: 19px;
  }

  .nm-column-index__name {
    font-size: 15px;
  }

  /* イベント */

  .nm-event-feature {
    display: block;
  }

  .nm-event-feature__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .nm-event-feature__content {
    padding: 34px 23px 40px;
  }

  .nm-event-feature h3 {
    font-size: 20px;
  }

  /* ストア */

  .nm-store-heading {
    display: block;
  }

  .nm-store-heading__text {
    margin-top: 12px;
  }

  .nm-store-heading__text br {
    display: none;
  }

  .nm-store-category {
    grid-template-columns: 1fr 1fr;
  }

  .nm-store-category__content {
    min-height: 97px;
    padding: 17px;
  }

  .nm-store-category__content h3 {
    padding-right: 18px;
    font-size: 14px;
  }

  .nm-store-category__arrow {
    right: 16px;
    bottom: 16px;
  }

  /* 商品 */

  .nm-products-heading {
    display: block;
  }

  .nm-products-heading .nm-text-link {
    margin-top: 24px;
  }

  .nm-product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 14px;
  }

  .nm-product-card__content {
    padding-top: 13px;
  }

  .nm-product-card h3 {
    font-size: 12px;
  }

  .nm-product-card__description {
    display: none;
  }

  /* About */

  .nm-about__inner {
    display: flex;
    flex-direction: column;
    gap: 55px;
  }

  .nm-about__image {
    width: calc(100% - 15px);
    margin-left: 15px;
  }

  .nm-about__image::before {
    top: -15px;
    left: -15px;
  }

  .nm-button-outline {
    width: 100%;
    min-width: 0;
  }

  /* Instagram */

  .nm-instagram__inner {
    display: block;
  }

  .nm-instagram__heading {
    margin-bottom: 35px;
  }

  .nm-instagram__photos {
    gap: 6px;
  }

  .nm-instagram__link {
    margin-top: 22px;
    text-align: left;
  }
}

/* -----------------------------------------
   小さいスマートフォン
----------------------------------------- */

@media screen and (max-width: 390px) {
  .nm-hero__title {
    font-size: 34px;
  }

  .nm-column-index__grid {
    grid-template-columns: 1fr;
  }

  .nm-column-index__item {
    min-height: 150px;
  }

  .nm-store-category {
    grid-template-columns: 1fr;
  }
}