* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #333;
  background: #EFEBE0 !important;
}

/* container */
.container {
  margin: 0 auto;
  width: calc(100% - 240px);
  max-width: 1640px;
}
.container--fullwidth {
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

/* section */
.section {
  padding-top: 128px;
  padding-bottom: 160px;
  border-bottom: 1px solid #BFBAB0;
  width: 100%;
}
.section__title {
    max-width: 1200px;
    font-size: 32px;
    font-weight: 400;
    color: #333;
}
.SectionHeading {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.section__header {
  padding-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: calc(100% - 280px); */
  margin: 0 auto;
}
.section__header--default {
  width: auto;
}
.section__controls {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}


.view__more {
  text-align: right;
  padding-top: 64px;
  margin: 0 auto;
  width: calc(100% - 280px);
}

.section--design .view__more,
.news .view__more {
  margin: 0;
  width: auto;
}

/* =========================
   No Image
========================= */
.NoImage {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(212, 208, 199, 0.5);
  color: #333;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================
   Button
========================= */
.btn {
  width: fit-content;
  display: inline-flex;
  gap: 8px;
  align-items: flex-end;
  padding: 34px 24px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  height: 100%;
  box-sizing: border-box;
}

.btn--primary {
  font-size: 18px;
  line-height: normal;
  letter-spacing: 8%;
  color: #fff;
  background-color: #D9B4C6;
}

.btn--secondary {
  color: #333;
  font-size: 22px;
  line-height: normal;
  border: none;
  position: relative;
  border-right: 1px solid #BFBAB0;
}
.btn--secondary:hover {
  color: #D9B4C6;
}
.btn__icon {
  font-size: 0.9em;
  display: inline-flex;
  align-items: center;
}

.btn__icon img {
  transition: filter 0.2s ease;
}

.btn--secondary:hover .btn__icon,
.btn--secondary:focus-visible .btn__icon {
  color: #D9B4C6;
}

.btn--secondary:hover .btn__icon img,
.btn--secondary:focus-visible .btn__icon img {
  filter: invert(75%) sepia(16%) saturate(497%) hue-rotate(286deg) brightness(90%) contrast(89%);
}

/* Primary Button */
.PrimaryButton {
  margin-top: 32px;
  width: fit-content;
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 64px;
  align-items: center;
  border-radius: 999px;
  background: #d6b6c6;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 8%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.PrimaryButton:hover {
  background: #A88C9A;
}

.btn--primary:hover {
  background: #A88C9A;
}
.btn--secondary :hover {
  color: #D9B4C6;
}

/* Primary Button Full Width */
.PrimaryButton--full {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

/* Secondary Button */
.ButtonSecondaryCard {
  width: 100%;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
  border-radius: 999px;
  border: 1px solid #D9B4C6;
  background: rgba(217, 180, 198, 0.2);
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}
.ButtonSecondaryCard:hover {
  background: rgba(217, 180, 198, 0.4);
}
/* Tertiary Button */
.ButtonTertiary {
  width: 100%;
  height: 60px;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 2px solid #D9B4C6;
  color: #333;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  transition: all .3s;
  text-align: right;
}
.ButtonTertiary:hover {
  border: 2px solid #A88C9A;
}
.page--top .ButtonTertiary,
.page--news .ButtonTertiary,
.page--blog .ButtonTertiary,
.SalonDetailPage .ButtonTertiary {
  margin-left: auto;
    width: calc((100% - 140px) / 3);
}
.SalonDetailPage--blog .ButtonTertiary {
    margin-bottom: 64px;
}

/* Tertiary Button Underline */
.ButtonTertiaryUnderline {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  text-decoration: none;
  color: #333;
  text-align: right;
}
.ButtonTertiaryUnderline .UnderlineText {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px; 
  text-decoration: underline;
  text-underline-offset: 6px;
  color: #333;
}
.ButtonTertiaryUnderline:hover .UnderlineText{
  color: #D9B4C6;
}
.ButtonTertiaryUnderline:hover img {
  filter: invert(75%) sepia(16%) saturate(497%) hue-rotate(286deg) brightness(90%) contrast(89%);
}

/* Hover transition unified across button-like controls */
.btn,
.PrimaryButton,
.ButtonSecondaryCard,
.ButtonTertiary,
.ButtonTertiaryUnderline,
.StaffCard__reserve,
.slider__nav,
.hero__arrow,
.DesignModalCard__close-button,
.pagination a, 
.header__nav a,
.salon__item,
.SalonTabList__item,
.footer__list a,
.page-header__link,
.page-header__nav,
.ArticleAuthorCard__sns-link,
.footer__sns a {
  transition: all 0.3s ease-in-out;
}


/* =========================
   Slider
========================= */
.slider {
  position: relative;
  /* overflow: hidden; */
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  touch-action: none;
}

.slider__track {
  display: flex;
  gap: 32px;
  padding: 0;
  transform: translateX(0);
  transition: transform 0.6s ease;
  will-change: transform;
  box-sizing: border-box;
}



.slider__nav {
  border: 1px solid #BFBAB0;
  background-color: rgba(212, 208, 199, 0.2); /* #D4D0C7 20% */
  color: #333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  /* box-shadow: 0 2px 4px rgba(0,0,0,0.16); */
}
.slider__nav:hover {
  background-color: rgba(212, 208, 199, 0.5); /* #D4D0C7 50% */

}

.slider__nav--prev,
.slider__nav--next {
  position: static;
}

.slider__track {
  display: flex;
  gap: 32px;
  transform: translateX(0);
  transition: transform 0.6s ease; /* ゆっくりに */
  will-change: transform;
}

/* =========================
   Grid system
========================= */
.grid {
  display: grid;
  gap: 64px;
  align-items: stretch;
}

.grid--design {
  grid-template-columns: repeat(4, 1fr);
}


/* =========================
    Header
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 94px;
  background: #EFEBE0;
  z-index: 5000;
  border-bottom: 1px solid #BFBAB0;
}

.header__inner {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__logo {
  color: #333;
  font-weight: 700;
  font-size: 40px;
  text-decoration: none;
  width: 168px;
  text-align: center;
}

.header__nav {
  display: flex;
  gap: 40px;
}

.header__nav a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  font-size: 18px;
}

.header__nav a.is-active {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.header__cta {
  display: flex;
  align-items: center;
  height: 100%;
}

.header__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  border-left: 1px solid #BFBAB0;
  border-right: 1px solid #BFBAB0;
  border-radius: 0;
  padding: 0 24px;
}


.header__social-icon {
  display: inline-block;
  font-size: 1rem;
}
.header__social-icon img {
  transition: filter 0.2s ease;
}

.header__social:hover .header__social-icon img,
.header__social:focus-visible .header__social-icon img {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  filter: invert(75%) sepia(16%) saturate(497%) hue-rotate(286deg) brightness(90%) contrast(89%);
}


.header__toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.header__drawer {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #BFBAB0;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 12px 20px 16px;
}

.header__drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.header__drawer-nav a {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
}

.header.is-open .header__drawer {
  display: flex;
}

.header.is-open .header__toggle {
  color: #c7256c;
}

/* =========================
   Header responsive (fluid font)
========================= */

/* ロゴ：40px → 最小20px */
.header__logo {
  font-size: clamp(20px, 2.5vw, 40px);
  width: clamp(80px, 12vw, 168px);
}

/* ナビリンク：18px → 最小12px */
.header__nav {
  gap: clamp(12px, 2vw, 40px);
}

.header__nav a {
  font-size: clamp(12px, 1.2vw, 18px);
  white-space: nowrap;
  line-height: 1.2;
}

/* ソーシャルアイコン余白 */
.header__social {
  padding: 0 clamp(8px, 1.2vw, 24px);
}

/* ≤1024px：ナビをやや詰める */
@media (max-width: 1024px) {
  .header__nav {
    gap: clamp(8px, 1.5vw, 24px);
  }
  .header__nav a {
    font-size: clamp(11px, 1.3vw, 16px);
  }
}

/* =========================
   PAGE HEADER
========================= */
.page-header {
  margin-top: 94px;
  border-bottom: 1px solid #BFBAB0;;
}

/* 内側 */
.page-header__inner {
  max-width: 1640px;
  width: calc(100% - 280px);
  margin: 0 auto;
  padding: 128px 0 64px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* タイトル */
.page-header__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
}

/* パンくず */
.page-header__breadcrumb {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
}

/* リンク */
.page-header__link {
  color: #333;
  text-decoration: none;
}

.page-header__link:hover {
  color: #d6b6c6;
}

.page-header__current {
  color: #BFBAB0;
}

/* スラッシュ */
.page-header__divider {
  color: #BFBAB0;
}

/* Detail Page Header */
.page-header--detail {
  margin-top: 93px;
  border-bottom: 1px solid #BFBAB0;
}

.page-header--detail .page-header__inner {
  padding: 128px 0 64px;
  flex-direction: row;
  justify-content: flex-start;
}

.page-header__nav {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-header__nav img {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease;
}

.page-header__nav:hover {
  color: #d6b6c6;
}

.page-header__nav:hover img {
  filter: invert(75%) sepia(16%) saturate(497%) hue-rotate(286deg) brightness(90%) contrast(89%);
}



/* =========================
   Card common
========================= */
.card {
  display: block;        /* aタグ対策 */
  text-decoration: none;
  color: inherit;
  transition: all .3s;
}
.card:hover {
  transform: translateY(-16px);
}

.card__date {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: #9A9A9A;
}

.card__category, .archive-filter__btn {
  font-size: 14px;
  padding: 8px 24px;
  letter-spacing: 0.1em;
  border: 1px solid #BFBAB0;
  border-radius: 999px;
  text-align: center;
  background: transparent;
  color: #333;
}

.card__category {
  font-size: clamp(10px, 0.9vw, 14px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  text-decoration: none;
}


.card__category:hover {
  background: rgba(217, 180, 198, 0.1);
}

.news__item .card__category,
.card--blog .card__category,
.archive-list__item .card__category,
.DesignModalCard__tags .card__category {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

.news__item .card__category:hover,
.card--blog .card__category:hover,
.archive-list__item .card__category:hover,
.DesignModalCard__tags .card__category:hover {
  opacity: 1 !important;
  color: inherit !important;
  background: transparent !important;
}
.archive-layout--listing .archive-list__content > .archive-list__tags:last-child .card__category {
  font-size: 14px;
  padding: 0;
  border: none;
  background: transparent;
  color: #6F6F6F;
}

.card__title {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-decoration: none;
  color: #333;
}

/* =============================
  レイアウト（共通）
============================= */
.archive-layout {
  padding: 80px 0 160px;
}

.archive-layout__inner {
  max-width: 1640px;
  width: calc(100% - 280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 64px;
  border: 1px solid #BFBAB0;
}

/* 左 */
.archive-filter {
  grid-column: span 3;
  border-right: 1px solid #BFBAB0;
}

.archive-layout .archive-filter {
  background-color: #EFEBE0;
}

/* 右 */
.archive-list {
  margin: 0 64px 64px 0;
  grid-column: span 9;
}


/* =============================
  フィルター
============================= */
.archive-filter__group {
  margin-bottom: 64px;
}

.archive-filter__title {
    padding: 24px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  color: #333;
  border-bottom: 1px solid #BFBAB0;
  border-top: 1px solid #BFBAB0;
}
  .archive-filter__group:first-child .archive-filter__title {
    border-top: none;
  }

.archive-filter__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px;
}


.archive-filter__btn--active {
  background: rgba(217, 180, 198, 0.3);
  border: 1px solid #D9B4C6;
    font-weight: 500;
}

.archive-filter__select {
  width: calc(100% - 48px);
  margin: 0 24px;
  padding: 16px;
  padding-right: 56px;
  border-radius: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background-color: #F7F5EF;
  background-image: url("../images/icon/IconChevron.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  border: 1px solid #BFBAB0;
  color: #6F6F6F;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


/* =============================
  リスト
============================= */
.archive-list__item {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 64px;
  padding: 40px 0;
  border-bottom: 1px solid #BFBAB0;
  text-decoration: none;
  color: inherit;
}
.archive-list__item:first-child {
  padding-top: 64px;
}
.archive-list__image {
  height: -webkit-fill-available;
  grid-column: span 3;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.archive-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.archive-list__item:hover .archive-list__image img {
  transform: scale(1.08);
}

.archive-list__content {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.archive-list__meta {
  display: flex;
  gap: 24px;
  align-items: center;
}

.archive-list__tags {
  display: flex;
  gap: 12px;
}

.archive-list__more {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}


/* =========================
   Article Author Card
========================= */
.ArticleAuthorCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin-top: 0;
}

.ArticleAuthorCard__profile {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ArticleAuthorCard__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.ArticleAuthorCard__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ArticleAuthorCard__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ArticleAuthorCard__role {
  font-size: 14px;
  color: #9A9A9A;
  letter-spacing: 0.1em;
}

.ArticleAuthorCard__name {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: #333;
}

.ArticleAuthorCard__sns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ArticleAuthorCard__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.3s;
}

.ArticleAuthorCard__sns-link:hover {
    filter: invert(75%) sepia(16%) saturate(497%) hue-rotate(286deg) brightness(90%) contrast(89%);
}

.ArticleAuthorCard__sns-link img {
  width: 24px;
  height: 24px;
}


/* =========================
   Footer
========================= */

.footer {
  padding: 128px 0 64px;
  background: #D4D0C7;
  color: #333;
}

/* 上段 */
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: start;
  gap: 128px;
}

/* ロゴ */
.footer__logo {
  font-size: 28px;
  font-weight: bold;
}

.footer__main {
  display: contents;
}

/* ナビ */
.footer__nav {
  display: flex;
  justify-content: flex-end;
  gap: 128px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__list a {
  text-decoration: none;
  color: #333;
  font-size: 22px;
  font-weight: 500;
}

.footer__list a:hover {
  color: #d6b6c6;
}

/* CTA */
.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}
.footer__cta .PrimaryButton {
  margin-top: initial;
  padding: initial;
  height: 60px;
  max-width: 268px;
  width: 100%;
}
.footer__cta .ButtonTertiary {
  padding: initial;
  max-width: 268px;
  width: 100%;
  height: 60px;
  font-size: 22px;
}

/* 下段 */
.footer__bottom {
  margin-top: 128px;
  padding-top: 64px;
  border-top: 1px solid #BFBAB0;
  display: flex;
  justify-content: space-between  ;
  align-items: center;
}

/* リンク */
.footer__links {
  display: flex;
  gap: 32px;
}

.footer__links a {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #333;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.footer__links a:hover {
  opacity: 0.6;
}

/* コピー */
.footer__copy {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #9A9A9A;
  text-align: center;
}

/* SNS */
.footer__sns {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer__sns a:hover {
    filter: invert(75%) sepia(16%) saturate(497%) hue-rotate(286deg) brightness(90%) contrast(89%);
}


/* =========================
   Responsive
========================= */

/* ----------------------------------------1920px */
@media (min-width: 1441px) {
  .page--top .ButtonTertiary {
    width: 100%;
  }
  .container {
    width: calc(100% - 280px);
  }
}
/* ----------------------------------------1440px */
@media (max-width: 1440px) {
  .section__header {
    width: calc(100% - 240px);
  }
  .section__header--default {
    width: auto;
  }
  .container--fullwidth {
    margin: 0;
    width: 100vw;
  }

  .view__more {
    width: initial;
    margin: 0 auto;
  }
  .section--review .view__more, .section--blog .view__more {
    width: calc(100% - 240px);
  }

  /* Page header */
    .page-header__inner {
    width: calc(100% - 240px);
  }

  .page-header__title {
    font-size: 40px;
  }
  .archive-layout__inner {
    width: calc(100% - 240px);
  }

}


/*-------------------------------- 960px */
@media (max-width: 960px) {
  .header {
    height: 94px;
  }

  .header__inner {
    position: relative;
    justify-content: center;
    padding: 0;
  }

  .header__nav {
    display: none;
  }

  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    font-size: 40px;
    line-height: 1;
  }

  
  .header__nav {
    display: none;
  }

  .header__cta {
    display: flex;
    height: 100%;
  }

  .header__social {
    display: inline-flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 94px;
    width: 72px;
    padding: 0;
    border-left: none;
    border-right: 1px solid #BFBAB0;
  }
  .header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 72px;
    height: 94px;
    border-left: 1px solid #BFBAB0;
  }

  .header__toggle-icon {
    display: block;
    width: 20px;
    height: 18px;
    position: relative;
    font-size: 0;
    background:
      linear-gradient(#333333, #333333) 0 0 / 16px 2px no-repeat,
      linear-gradient(#333333, #333333) 0 8px / 16px 2px no-repeat,
      linear-gradient(#333333, #333333) 0 16px / 16px 2px no-repeat;
  }

  .header__drawer {
    position: fixed;
    top: 93px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #EFEBE0;
    border-top: 1px solid #BFBAB0;
    border-bottom: 0;
    padding: 0;
    gap: 0;
    overflow-y: auto;
  }

  .header__drawer-nav {
    gap: 0;
  }

  .header__drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 32px;
    border-bottom: 1px solid #BFBAB0;
    color: #333;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
  }

  .header__drawer-nav a::after {
    content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url("../images/icon/IconAllowRight.svg") center / contain no-repeat;
  }

  .header__drawer > .btn--primary {
    display: none;
  }

  .header.is-open .header__toggle-icon {
    width: 18px;
    height: 18px;
    background: none;
  }

  .header.is-open .header__toggle-icon::before,
  .header.is-open .header__toggle-icon::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 18px;
    height: 2px;
    background: #6F6F6F;
    transform-origin: center;
  }

  .header.is-open .header__toggle-icon::before {
    transform: rotate(45deg);
  }

  .header.is-open .header__toggle-icon::after {
    transform: rotate(-45deg);
  }

  .header.is-open .header__cta .btn--secondary,
  .header.is-open .header__cta .btn--primary {
    display: none;
  }

  .header__cta .btn--secondary,
  .header__cta .btn--primary {
    position: fixed;
    bottom: 0;
    height: 94px;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    border-top: 1px solid #BFBAB0;
  }

  .header__cta .btn--secondary {
    left: 0;
    width: 50%;
    background: #EFEBE0;
    border-right: 1px solid #BFBAB0;
    gap: 4px;
  }

  .header__cta .btn--primary {
    right: 0;
    width: 50%;
    display: inline-flex;
    gap: 4px;
  }

  body,
  .body {
    padding-bottom: 94px;
  }

  /* footer layout -----------------------------------s */
    /* Footer */
    .footer {
    padding: 80px 0 40px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__main {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer__nav {
    justify-content: flex-start;
    gap: 64px;
  }

  .footer__cta {
    width: 253px;
    align-items: flex-start;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__links {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 16px;
  }

  .footer__copy {
    text-align: center;
  }
    .footer__inner {
    align-items: start;
    gap: 64px;
    flex-direction: column;
  }

  .footer__nav {
    flex-direction: row;
    justify-content: flex-end;
    gap: 64px;
  }

  .footer__cta {
    align-items: flex-end;
    justify-content: flex-end;
  }

  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }


  .footer__sns {
    justify-content: flex-end;
  }

  /* section header */
    .section__header {
    padding: 64px 0 40px;
  }
    .section--review .section__header {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .section--blog .section__header {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

 .container
 {
    margin: 0 auto;
    width: calc(100% - 64px);
    max-width: 1640px;
}
}
@media (max-width: 960px) {


  /* archive layout */
    .archive-layout__inner {
    width: calc(100% - 240px);
    grid-template-columns: 1fr;
  }

  .archive-filter,
  .archive-list {
    grid-column: span 12;
  }
  .archive-filter {
    border-right: none;
  }
  .archive-list__image {
    aspect-ratio: 16 / 9;
  }
    .archive-layout--listing {
    padding-top: 0;
    padding-bottom: 128px;
  }

    body.page--news .archive-layout.archive-layout--listing,
    body.page--product .archive-layout.archive-layout--listing,
    body.page--media .archive-layout.archive-layout--listing {
      padding-bottom: 0;
    }

  .archive-layout--listing .archive-layout__inner {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
  }

  .archive-layout__inner--article .archive-filter {
    border-right: none;
    border-bottom: none;
    order: 2;
    width: 100%;
    margin: 0;
    background: transparent;
  }
  .archive-filter__group {
    margin-bottom: 64px;
  }


  .archive-layout--listing .archive-filter__title,
  .archive-layout--article .archive-filter__title {
    display: block;
    padding: 0 0 16px 0 !important;
    margin: 0 0 24px 0 !important;
  }

  .page--news .archive-filter__title,
  .page--blog .archive-filter__title,
  .page--product .archive-filter__title,
  .page--media .archive-filter__title {
    padding: 0 0 16px 0;
    margin-bottom: 16px;
  }
  .archive-filter__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    overflow: visible;
    touch-action: manipulation;
    scroll-padding-right: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .archive-filter__group:last-child .archive-filter__select {
    width: 100%;
    margin: 0;
  }

  .page--news .archive-filter__group:last-of-type,
  .page--blog .archive-filter__group:last-of-type,
  .page--product .archive-filter__group:last-of-type,
  .page--media .archive-filter__group:last-of-type {
    margin-bottom: 0;
  }

  .archive-layout--listing .archive-list {
    width: calc(100% - 64px);
    margin: 80px auto;
    box-sizing: border-box;
  }

  .archive-layout--listing .archive-list__item {
    grid-template-columns: minmax(180px, 32%) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
  }

  .archive-layout--listing .archive-list__item:first-child {
    padding-top: 0;
  }

  .archive-layout--listing .archive-list__image,
  .archive-layout--listing .archive-list__content {
    grid-column: auto;
  }

  .archive-layout--listing .archive-list__image {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .archive-layout--listing .archive-list__content {
    min-width: 0;
  }

  .archive-layout--listing .archive-list__meta,
  .archive-layout--listing .archive-list__tags {
    flex-wrap: wrap;
  }

  /* news, blog, product, media のスマホサイズでarchive-filterをarchive-listの下に配置 */
  .page--news .archive-layout__inner,
  .page--blog .archive-layout__inner,
  .SalonDetailPage--blog .archive-layout__inner,
  .page--product .archive-layout__inner,
  .page--media .archive-layout__inner {
    margin: 0;
    width: 100%;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .page--news .archive-layout--article,
  .page--blog .archive-layout--article,
  .SalonDetailPage--blog .archive-layout--article,
  .page--product .archive-layout--article,
  .page--media .archive-layout--article {
    padding: 0;
  }
  .page--news .article,
  .page--blog .article,
  .SalonDetailPage--blog .article,
  .page--product .article,
  .page--media .article {
    padding: 0 32px 0
  }


  .page--news .archive-filter,

  .page--product .archive-filter,
  .page--media .archive-filter {
    background-color: transparent;
    margin: 0 32px;
    margin-top: 80px;
    padding-bottom: 128px;
    border: none;
    border-bottom: none;
    order: 2;
  }
  .page--product .archive-filter {
    margin-top: 0;
  }

  .page--news .archive-list,
  .page--blog .archive-list,
  .SalonDetailPage--blog .archive-list,
  .page--product .archive-list,
  .page--media .archive-list {
    order: 1;
  }
  .page--blog .archive-list {
    margin: 0;
  }
    .page--blog .archive-layout.archive-layout--listing .archive-list {
    
    margin: 80px auto 0;
    order: 1;
  }

  .page--blog .archive-layout.archive-layout--listing .archive-filter {
    order: 2;
  }
    .archive-layout--listing .archive-list {
    margin: 80px auto 0;
    width: calc(100% - 64px);
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 64px;
    padding: 0;
    border: none;
    box-sizing: border-box;
  }
      .page--news .archive-list__more,
  .page--blog .archive-list__more {
    margin: 0 auto;
      width: calc((100% - 16px) / 2);
      max-width: none;
      display: inline-flex;
      justify-content: center;
  }
    .page--news .ButtonTertiary,
  .page--blog .ButtonTertiary {
    width: 100%;
  }
  .page--product .article__body--product {
    padding: 64px 0 0;
  }


}
/* =========================
   Header CTA buttons — responsive typography
   (mobile ≤768px は既存ルールを維持)
========================= */
@media (min-width: 1025px) {
  .header__cta .btn {
    padding-left: clamp(16px, 1.2vw, 24px);
    padding-right: clamp(16px, 1.2vw, 24px);

    line-height: 1.2;
  }

  .header__cta .btn--primary {
    font-size: clamp(16px, 1.2vw, 18px);
  }

  .header__cta .btn--secondary {
    font-size: clamp(18px, 1.2vw, 22px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .header__cta .btn {
    padding-left: clamp(14px, 1.3vw, 20px);
    padding-right: clamp(14px, 1.3vw, 20px);

    line-height: 1.2;
  }

  .header__cta .btn--primary {
    font-size: clamp(14px, 1.3vw, 16px);
  }

  .header__cta .btn--secondary {
    font-size: clamp(16px, 1.3vw, 18px);
  }
}
/* =========================
   SalonTabList__item — text wrapping fix
   (1440px ～ 960px)
========================= */
@media (min-width: 960px) and (max-width: 1440px) {
  .SalonTabList__item {
    font-size: clamp(13px, 1.1vw, 16px);
    white-space: nowrap;
    padding-left: clamp(6px, 0.8vw, 12px);
    padding-right: clamp(6px, 0.8vw, 12px);
  }

  /* ArticleAuthorCard responsive typography */
  .ArticleAuthorCard__info {
    min-width: 0;
    flex-shrink: 1;
  }

  .ArticleAuthorCard__role {
    font-size: clamp(11px, 1vw, 14px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .ArticleAuthorCard__name {
    font-size: clamp(16px, 1.3vw, 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/* =========================
   Footer CTA buttons — PC size expansion
   (mobile ≤768px は common.css の既存ルールを維持)
========================= */
@media (min-width: 769px) {
  .footer__cta .PrimaryButton,
  .footer__cta .ButtonTertiary {
    max-width: clamp(268px, 20vw, 320px);
    min-height: clamp(60px, 4vw, 72px);
    height: auto;
    padding: clamp(16px, 1.1vw, 22px) clamp(24px, 1.8vw, 36px);
    line-height: 1.2;
    box-sizing: border-box;
  }

  .footer__cta .PrimaryButton {
    font-size: clamp(20px, 1.45vw, 24px);
  }

  .footer__cta .ButtonTertiary {
    font-size: clamp(22px, 1.55vw, 26px);
  }
}



@media (min-width: 769px) and (max-width: 1440px) {
  body.page--news .ButtonTertiary,
  body.page--blog .ButtonTertiary {
    font-size: clamp(14px, 1.2vw, 22px);
    line-height: 1.2;
    letter-spacing: clamp(0.02em, 0.04vw, 0.08em);

    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding-left: clamp(10px, 1vw, 20px);
    padding-right: clamp(10px, 1vw, 20px);
  }
}



/* ----------------------------------------768px */

@media (max-width: 768px) {
  .header {
    height: 94px;
  }

  .header__inner {
    position: relative;
    justify-content: center;
    padding: 0;
  }

  .header__nav {
    display: none;
  }

  .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    font-size: 40px;
    line-height: 1;
  }

  .header__cta {
    display: flex;
    height: 100%;
  }

  .header__social {
    position: absolute;
    left: 0;
    top: 0;
    height: 94px;
    width: 72px;
    padding: 0;
    border-left: none;
    border-right: 1px solid #BFBAB0;
  }

  .header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 72px;
    height: 94px;
    border-left: 1px solid #BFBAB0;
  }

  .header__toggle-icon {
    display: block;
    width: 20px;
    height: 18px;
    position: relative;
    font-size: 0;
    background:
      linear-gradient(#333333, #333333) 0 0 / 16px 2px no-repeat,
      linear-gradient(#333333, #333333) 0 8px / 16px 2px no-repeat,
      linear-gradient(#333333, #333333) 0 16px / 16px 2px no-repeat;
  }

  .header__drawer {
    position: fixed;
    top: 93px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #EFEBE0;
    border-top: 1px solid #BFBAB0;
    border-bottom: 0;
    padding: 0;
    gap: 0;
    overflow-y: auto;
  }

  .header__drawer-nav {
    gap: 0;
  }

  .header__drawer-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 32px;
    border-bottom: 1px solid #BFBAB0;
    color: #333;
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
  }

  .header__drawer-nav a::after {
    content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: url("../images/icon/IconAllowRight.svg") center / contain no-repeat;
  }

  .header__drawer > .btn--primary {
    display: none;
  }

  .header.is-open .header__toggle-icon {
    width: 18px;
    height: 18px;
    background: none;
  }

  .header.is-open .header__toggle-icon::before,
  .header.is-open .header__toggle-icon::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 18px;
    height: 2px;
    background: #6F6F6F;
    transform-origin: center;
  }

  .header.is-open .header__toggle-icon::before {
    transform: rotate(45deg);
  }

  .header.is-open .header__toggle-icon::after {
    transform: rotate(-45deg);
  }

  .header.is-open .header__cta .btn--secondary,
  .header.is-open .header__cta .btn--primary {
    display: none;
  }

  .header__cta .btn--secondary,
  .header__cta .btn--primary {
    position: fixed;
    bottom: 0;
    height: 94px;
    padding: 0 16px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    border-top: 1px solid #BFBAB0;
  }

  .header__cta .btn--secondary {
    left: 0;
    width: 50%;
    background: #EFEBE0;
    border-right: 1px solid #BFBAB0;
        gap: 4px;
  }

  .header__cta .btn--primary {
    right: 0;
    width: 50%;
    display: inline-flex;
        gap: 4px;
  }

  body,
  .body {
    padding-bottom: 94px;
  }

  /* Footer ------------------------------------ */

      .footer__cta {
    width: 100%;
      }

    .footer__cta .PrimaryButton,
  .footer__cta .ButtonTertiary {
    max-width: none;
  }
  /* Grid */
  .grid {
    gap: 32px;
  }
  .grid--design {
    grid-template-columns: repeat(2, 1fr);
  }

  .concept__grid,
  .recruit__grid {
    grid-template-columns: 1fr;
  }

  /* Slider */
  .slider {
    padding: 0;
  }

  .slider__track {
    gap: 16px;
    padding: 0 16px;
  }

  .slider__track .card:first-child {
    margin-left: 0;
  }

  .slider__track .card:last-child {
    margin-right: 0;
  }
/* card */
  .card--review,
  .card--blog {
    flex: 0 0 358px;
    min-width: 358px;
    width: 358px;
    margin: 0;
  }

  /* Page header -----------------------------------*/
  .page-header__inner {
    width: calc(100% - 64px);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 64px 0 40px;
  }

  .page-header__title {
    font-size: 28px;
  }

      .page-header--detail {
    margin-top: 187px;
  }
      .page-header__inner {
    width: calc(100% - 64px);
  }
  .page-header--detail .page-header__inner {
    padding: 64px 0 40px;
  }
  .page-header__breadcrumb {
    font-size: 14px;
        margin-top: 0;
    margin-left: auto;
  }

  /* Article Author Card */
  .ArticleAuthorCard {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }



  .container {
    margin: 0 32px;
    width: auto;
    max-width: none;
  }

  .SectionHeading {
    gap: 32px;
  }

  /* category */
  .archive-filter__list .card__category {
    font-size: 16px;
  }
}

/*-------------------------------- 768px */
@media (max-width: 768px) {
  .ButtonTertiaryUnderline {
    margin-top: 0;
  }
  .section {
    padding-top: 80px;
    padding-bottom: 128px;
  }




  .section__header,
  .section__header--default {
    width: 100%;
    margin: 0;
  }

  .salon .section__header,
  .salon .salon__header {
    width: 100%;
    margin: 0;
  }

  .view__more,
  .section--design .view__more,
  .section--review .view__more,
  .section--blog .view__more,
  .news .view__more {
    width: calc((100% - 64px) / 2);
    margin: 0 0 0 auto;
    text-align: right;
  }

  .view__more .ButtonTertiary {
    width: 100%;
    max-width: none;
  }
  .page--product .archive-list__more .ButtonTertiary,
  .page--media .archive-list__more .ButtonTertiary {
    width: 160px;
    max-width: none;
    display: inline-flex;
    justify-content: center;
  }


  .page--news .archive-list__more,
  .page--blog .archive-list__more,
  .page--product .archive-list__more,
  .page--media .archive-list__more {
    margin: 64px auto 0;
    justify-content: center;
  }



  .section__header .ButtonTertiary,
  .salon .section__header .ButtonTertiary,
  .salon .salon__header .ButtonTertiary {
    width: calc((100% - 64px) / 2);
    max-width: none;
  }

  .recruit__button {
    width: calc((100% - 64px) / 2);
    max-width: none;
  }



  /* archive---------------------------------- */
  .archive-layout--listing .archive-filter__list::-webkit-scrollbar {
    display: none;
  }

  .archive-layout--listing .archive-filter__scroll-button {
    display: none;
  }

  .archive-layout--listing .archive-filter__scroll-button img {
    width: 16px;
    height: 16px;
    display: block;
  }

  .archive-layout--listing .archive-filter__scroll-button.is-hidden {
    display: none;
  }



  .archive-layout--listing .archive-filter__btn--active,
  .archive-layout--listing .card__category.archive-filter__btn--active {
    background: rgba(217, 180, 198, 0.3);
    border-color: #D9B4C6;
    font-weight: 500;
  }
      .archive-list__item {
    grid-template-columns: 1fr;
  }

    .archive-layout--listing .archive-layout__inner {
    border: none;
    border-bottom: none;
  }

  .archive-filter {
    margin: 0 32px;
    margin-top: 80px;
    border: none;
    border-bottom: none;
  }

  .archive-filter__scroll-button {
    padding: 0 24px;
  }
  .archive-layout--listing .archive-list__item {
    width: calc(50% - 8px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    border-bottom: none;
    grid-template-columns: unset;
  }
  .archive-layout--listing .archive-list__item:first-child  {
    padding-top: 0;
  }
  .archive-layout--listing .archive-list__meta {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .archive-layout--listing .archive-list__tags {
    gap: 8px;
  }
  




  /* staffprofilecard */
  .StaffProfileCard__row > span:first-child,
  .StaffProfileCard__row > span:last-child {
    font-size: 16px;
  }

  /* ArticleAuthorCard */
  .ArticleAuthorCard__profile {
    gap: 8px;
  }





  
}

@media (min-width: 1441px) {
  .view__more,
  .section--design .view__more,
  .news .view__more {
    width: calc((100% - 140px) / 4);
    margin: 0 0 0 auto;
  }

  /* .section--review .view__more,
  .section--blog .view__more {
    width: calc(100% - 280px);
    margin: 0 auto;
  } */

  .section__header .ButtonTertiary,
  .salon .section__header .ButtonTertiary,
  .salon .salon__header .ButtonTertiary {
    width: calc((100% - 192px) / 4);
    margin-left: auto;
  }

  .recruit__button {
    width: calc((100% - 192px) / 4);
  }
}


@media (min-width: 1440px) {
  .footer__inner {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 128px;
  }

  .footer__nav {
    gap: 128px;
  }

  .footer__cta {
    flex-direction: column;
    align-items: flex-end;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }

  .footer__links {
    justify-content: flex-start;
  }

  .footer__sns {
    justify-content: flex-end;
  }
}
@media (min-width: 768px) {


  .slider {
    padding: 0;
  }

  .slider__track {
    gap: 32px;
    padding: 0 32px;
  }

  .slider__track .card:first-child,
  .slider__track .card:last-child {
    margin: 0;
  }

  .card--review,
  .card--blog {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}


/* --------------------------------390px */

@media (max-width: 390px) {

  /* Button --------------------------------------- */
  .ButtonTertiary {
    font-size: 14px;
    height: 40px;
        gap: 4px;
  }
  .ButtonTertiary img {
    width: 16px;
    height: 16px;
  }

      .ButtonTertiaryUnderline {
        gap: 4px;
      }
  .ButtonTertiaryUnderline .UnderlineText {
    font-size: 16px;
    font-weight: 400;
  }

  .ButtonTertiaryUnderline img {
    width: 16px;
    height: 16px;
  }
  .ButtonSecondaryCard {
    font-size: 14px;
    font-weight: 400;
    gap: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
   .view__more {
    padding-top: 40px;
  }
    .section__header .ButtonTertiary, .salon .section__header .ButtonTertiary, .salon .salon__header .ButtonTertiary {
    width: 155px;
  }
  .PrimaryButton {
    font-size: 18px;
    gap: 4px;
  }
    .SalonDetailPage .PrimaryButton.PrimaryButton--full {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  /* Header CTA --------------------------------------- */
  .header__cta .btn--secondary, .header__cta .btn--primary {
    height: 74px;

  }

  .header__cta .btn--secondary {
    font-size: 20px;
  }

  .header__cta .btn--primary {
    font-size: 16px;
  }

 
  /* text   --------------------------------------- */
    .section__title {
    font-size: 24px;
  }
/* Hero   --------------------------------------- */
  .hero__slide {
    height: 360px;
  }
  /* container --------------------------------------- */
  .container {
    margin: 0 32px;
  }
  .section__header {
    padding-bottom: 40px;
  }

  .footer__cta {
    width: 200px;
  }
/* slider --------------------------------------- */
  /* review: 200px基準で中央寄せ */
  .section--review .slider__track,.SalonDetailPage__section--salon-review .slider__track {
    gap: 16px !important;
    padding-left: calc((100vw - 200px) / 2) !important;
    padding-right: calc((100vw - 200px) / 2) !important;
    box-sizing: border-box !important;
  }

  /* blog: 20px基準で中央寄せ */
  .section--blog .slider__track {
    gap: 16px !important;
    padding-left: calc((100vw - 20px) / 2) !important;
    padding-right: calc((100vw - 20px) / 2) !important;
    box-sizing: border-box !important;
  }

  .section--review .slider__track .card,
  .section--blog .slider__track .card {
    margin: 0 !important;
    flex-shrink: 0;
  }
/* card   --------------------------------------- */
    .card--review {
      max-height: 420px;
    }
  .card--review,
  .card--blog {
    margin: 0;
  }
  .card__title {
    font-size: 14px;
    font-weight: 400;
  }
  .card.card--review {
    padding: 24px;
    width: 264px;
    min-width: 264px;
    max-width: 264px;
    flex: 0 0 264px;
  }
  .card__date {
      font-size: 14px;
    }
/* grid --------------------------------------- */
  .grid {
    gap: 16px;
  }
  .grid--design {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .view__more {
    text-align: center;
  }

  /* Page header --------------------------------------- */

  .page-header__title {
    font-size: 24px;
  }

  /* Article Author Card --------------------------------------- */

  .article__body p {
    font-size: 14px;
  }
  .ArticleAuthorCard__sns {
    flex-wrap: wrap;
  }
    .ArticleAuthorCard__profile {
    gap: 16px;
  }

  .ArticleAuthorCard__info .StaffCard__role {
    font-size: 12px;
  }

  .ArticleAuthorCard__info .StaffCard__name {
    font-size: 14px;
  }

  .ArticleAuthorCard__info .StaffCard__name-en {
    font-size: 12px;
  }
  .ArticleAuthorCard__role {
    font-size: 14px;
  }
  .ArticleAuthorCard__name {
    font-size: 20px;
  }



  /* category--------------------------------------- */
  .card__category {
    font-size: 10px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
    .archive-filter__list .card__category, .archive-filter__list .archive-filter__btn {
    font-size: 12px;
  }
  .archive-layout--listing .archive-list__content > .archive-list__tags:last-child .card__category {
    font-size: 12px;
  }
  /*  archive--------------------------------------- */

  .archive-filter__title {
    font-size: 16px;
  }


  /* footer----------------------------------------------*/


  .footer__main {
    gap: 40px;
  }


  .footer__cta {
    width: 100%;
  }

  .footer__bottom {
    margin-top: 64px;
  }
  .footer__links a {
    font-size: 12px;
  } 
  .footer__list a {
    font-size: 18px;
  }

}

@media (max-width: 768px) {
  .page--product .archive-list.archive-list--product {
    width: calc(100% - 64px);
    max-width: none;
    margin: 80px auto 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: clip;
  }

  .page--product .archive-list.archive-list--product .product-list {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
    align-items: stretch;
  }

  .page--product .archive-list.archive-list--product .product-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .page--product .archive-list.archive-list--product .product-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .page--product .archive-list.archive-list--product .product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .page--product .archive-list.archive-list--product .product-card__info {
    min-width: 0;
  }

  .page--product .archive-list.archive-list--product .product-card__title,
  .page--product .archive-list.archive-list--product .product-card__volume,
  .page--product .archive-list.archive-list--product .product-card__price {
    min-width: 0;
    max-width: 100%;

    overflow: hidden;
    text-overflow: ellipsis;
  }
}

