
/* ========================================
   Hero
======================================== */

.hero {
  --hero-text-color: #675643;
  /* --hero-accent-color: #c87575; */
  --hero-button-color: #cb7477;
  --hero-pale-color: rgba(248, 224, 216, 0.88);

  position: relative;
  width: 100%;
  min-height: clamp(620px, 66.7vw, 960px);
  overflow: hidden;
  color: var(--hero-text-color);
  background:
    url("images/hero_14_background_image_pc.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

.hero--no-background {
  min-height: auto;
}

.hero__inner {
  position: relative;
  width: min(100%, 1440px);
  min-height: inherit;
  margin: 0 auto;
  padding:
    clamp(120px, 11vw, 180px)
    clamp(24px, 7vw, 104px)
    clamp(150px, 15vw, 220px);
  box-sizing: border-box;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(58%, 760px);
}

.hero__catch {
  margin: 0 0 clamp(20px, 2vw, 32px);
  color: var(--hero-accent-color);
  font-size: clamp(17px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.14em;
  text-align: center;
}

.hero__title {
  margin: 0;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.13em;
}

.hero__title-line {
  display: block;
}

.hero__title-line--top {
  font-size: clamp(32px, 4vw, 58px);
  text-align: center;
}

.hero__title-line--top::first-letter {
  color: var(--hero-accent-color);
}

.hero__title-line--bottom {
  font-size: clamp(31px, 3.9vw, 56px);
}

.hero__features {
  display: flex;
  gap: 12px clamp(10px, 1.5vw, 22px);
  margin: clamp(30px, 4vw, 58px) 0 0;
  padding: 0;
  list-style: none;
}

.hero__feature {
  min-width: min(100%, 190px);
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--hero-pale-color);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.04em;
}

.hero__information {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(260px, 2fr);
  align-items: stretch;
  width: min(100%, 720px);
  margin-top: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 30px rgba(103, 86, 67, 0.05);
}

.hero__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 20px;
  color: var(--hero-accent-color);
  font-size: clamp(18px, 1.8vw, 26px);
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

.hero__descriptions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px clamp(16px, 2vw, 30px);
  border-left: 1px solid rgba(103, 86, 67, 0.12);
  box-sizing: border-box;
}

.hero__description {
  margin: 0;
  font-size: clamp(12px, 1.05vw, 15px);
  line-height: 2;
  letter-spacing: 0.08em;
}

.hero__image-label {
  position: absolute;
  z-index: 2;
  top: clamp(110px, 10vw, 160px);
  right: clamp(24px, 5vw, 72px);
  margin: 0;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.7);
  font-size: clamp(12px, 1.25vw, 18px);
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.hero__cta {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: min(64%, 850px);
  padding:
    clamp(34px, 4vw, 58px)
    clamp(24px, 5vw, 72px)
    clamp(24px, 3vw, 42px);
  border-radius: 50% 50% 0 0 / 48% 48% 0 0;
  box-sizing: border-box;
  text-align: center;
  transform: translateX(-50%);
}

.hero__cta-text {
  margin: 0 0 18px;
  font-size: clamp(11px, 1.2vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.hero__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 400px);
  min-height: 64px;
  padding: 14px 30px;
  border: 0;
  border-radius: 999px;
  box-sizing: border-box;
  color: #fff;
  background: var(--hero-button-color);
  box-shadow: 0 8px 15px rgba(103, 86, 67, 0.2);
  font-family: inherit;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

a.hero__cta-button:hover,
a.hero__cta-button:focus-visible {
  opacity: 0.86;
  transform: translateY(-2px);
}

.hero__cta-button--disabled {
  cursor: default;
}

.hero__cta-icon {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero__cta-label {
  display: inline-block;
}

/* ========================================
   Hero: SP
======================================== */

@media (max-width: 767px) {
  .hero {
    min-height: clamp(570px, 155vw, 720px);
    margin-top: 64px;
  background:
    url("images/hero_14_background_image_sp.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  }

  .hero--no-background {
    min-height: auto;
  }

  .hero__inner {
    min-height: inherit;
    padding:
      clamp(70px, 18vw, 110px)
      20px
      clamp(118px, 32vw, 165px);
  }

  .hero__content {
    width: min(62%, 285px);
  }

  .hero__catch {
    margin-bottom: 12px;
    font-size: clamp(10px, 3vw, 13px);
    line-height: 1.7;
    letter-spacing: 0.1em;
  }

  .hero__title {
    line-height: 1.5;
    letter-spacing: 0.09em;
  }

  .hero__title-line--top {
    font-size: clamp(20px, 6.3vw, 28px);
  }

  .hero__title-line--bottom {
    font-size: clamp(19px, 5.8vw, 26px);
  }

  .hero__features {
    gap: 6px;
    margin-top: 18px;
  }

  .hero__feature {
    min-width: 0;
    padding: 5px 9px;
    font-size: clamp(8px, 2.3vw, 10px);
    line-height: 1.5;
  }

  .hero__information {
    grid-template-columns: minmax(72px, 0.8fr) minmax(120px, 2fr);
    width: min(100%, 285px);
    margin-top: 16px;
  }

  .hero__subtitle {
    padding: 10px 6px;
    font-size: clamp(11px, 3.2vw, 15px);
  }

  .hero__descriptions {
    gap: 2px;
    padding: 8px 9px;
  }

  .hero__description {
    font-size: clamp(8px, 2.2vw, 10px);
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  .hero__image-label {
    top: 66px;
    right: 12px;
    padding: 4px 7px;
    font-size: 9px;
  }

  .hero__cta {
    width: calc(100% - 32px);
    padding: 26px 20px 20px;
    border-radius: 50% 50% 0 0 / 30% 30% 0 0;
  }

  .hero__cta-text {
    margin-bottom: 10px;
    font-size: clamp(9px, 2.8vw, 12px);
  }

  .hero__cta-button {
    width: min(100%, 310px);
    min-height: 48px;
    padding: 10px 20px;
    gap: 8px;
    font-size: clamp(11px, 3.2vw, 14px);
  }

  .hero__cta-icon {
    width: 20px;
    height: 20px;
  }
}

/* ==================================================
   Top Page Navigation
================================================== */

.navigation {
  width: 100%;
  padding: 60px 20px 64px;
  overflow: hidden;
  box-sizing: border-box;
  color: #675748;
  font-family: "Noto Serif JP", serif;
}

.navigation *,
.navigation *::before,
.navigation *::after {
  box-sizing: border-box;
}

.navigation__inner {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}

.navigation__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.navigation__item {
  min-width: 0;
  margin: 0;
}

.navigation__link {
  display: flex;
  width: 100%;
  min-height: 142px;
  max-height: 150px;
  padding: 22px 18px;
  border: 2px solid #c87677;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: inherit;
  text-align: center;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.35);
  transition:
    background-color 0.25s ease,
    opacity 0.25s ease;
}

.navigation__link:hover {
  background-color: rgba(200, 118, 119, 0.08);
}

.navigation__link:focus-visible {
  outline: 2px solid #675748;
  outline-offset: 4px;
}

.navigation__title {
  margin: 0;
  color: #c87677;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: clamp(18px, 1.25vw, 25px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.navigation__description {
  margin-top: 15px;
  color: #675748;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: clamp(12px, 0.85vw, 16px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.navigation__description p {
  margin: 0;
}

@media (max-width: 767px) {
  .navigation {
    padding: 25px 11px 30px;
  }

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

  .navigation__link {
    min-height: 52px;
    padding: 9px 8px;
  }

  .navigation__title {
    font-size: clamp(14px, 3.5vw, 20px);
    line-height: 1.4;
    letter-spacing: 0.06em;
  }

  /*
   * ACF要件定義表のNotes「PCのみ表示」に対応。
   */
  .navigation__description {
    display: none;
  }
}

@media (max-width: 359px) {
  .navigation {
    padding-right: 8px;
    padding-left: 8px;
  }

  .navigation__grid {
    gap: 8px;
  }

  .navigation__link {
    padding-right: 5px;
    padding-left: 5px;
  }

  .navigation__title {
    font-size: 14px;
    letter-spacing: 0.03em;
  }
}

/* =========================================================
   News
========================================================= */

.news {
  position: relative;
  overflow: hidden;
  padding: 72px 20px 92px;
  background: #fffdfa;
  color: #675748;
  font-family: "Noto Serif JP", serif;
}

/*
 * 下部の淡い波形をCSSのみで表現。
 * 画像指定はACF要件表に存在しないため、
 * 外部画像は追加しない。
 */
.news::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -80px;
  width: 110%;
  height: 120px;
  background: #faf3ef;
  border-radius: 50% 50% 0 0 / 35% 35% 0 0;
  transform: rotate(2deg);
  pointer-events: none;
}

.news__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(130px, 180px)
    minmax(0, 1fr)
    auto;
  align-items: center;
  column-gap: clamp(32px, 5vw, 80px);
}

/* -------------------------
   Header
------------------------- */

.news__header {
  min-width: 0;
}

.news__title-en {
  margin: 0 0 5px;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.14em;
}

.news__title-ja {
  margin: 0;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

/* -------------------------
   Content
------------------------- */

.news__content {
  min-width: 0;
  width: 100%;
}

.news__title {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.8;
}

.news__subtitle {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.8;
}

.news__list {
  width: 100%;
  border-top: 1px solid rgba(103, 87, 72, 0.18);
}

.news__item {
  margin: 0;
  border-bottom: 1px solid rgba(103, 87, 72, 0.18);
}

.news__item-link {
  width: 100%;
  min-height: 46px;
  display: grid;
  grid-template-columns:
    minmax(76px, auto)
    minmax(92px, auto)
    minmax(0, 1fr)
    18px;
  align-items: center;
  column-gap: 18px;

  color: inherit;
  text-decoration: none;
}

.news__date {
  white-space: nowrap;
  font-size: 12px;
  line-height: 1.5;
}

.news__category {
  min-width: 88px;
  padding: 4px 13px;
  box-sizing: border-box;

  border-radius: 999px;
  background: #f3d9d0;

  text-align: center;
  white-space: nowrap;

  font-size: 10px;
  line-height: 1.4;
}

.news__post-title {
  min-width: 0;
  overflow: hidden;

  font-size: 13px;
  line-height: 1.6;

  white-space: nowrap;
  text-overflow: ellipsis;
}

.news__item-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 25px;
  line-height: 1;
  color: #dfad9c;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.news__item-link:hover .news__item-arrow {
  transform: translateX(3px);
}

/* -------------------------
   View More
------------------------- */

.news__more {
  display: flex;
  justify-content: flex-end;
}

.news__more-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  color: #675748;
  text-decoration: none;

  white-space: nowrap;
}

.news__more-label {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.news__more-arrow {
  width: 32px;
  height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 50%;
  background: #f3d9d0;

  font-size: 13px;
  line-height: 1;

  transition: transform 0.25s ease;
}

.news__more-link:hover .news__more-arrow {
  transform: translateX(3px);
}


/* =========================================================
   SP
   max-width: 767px
========================================================= */

@media (max-width: 767px) {

  .news {
    padding: 0px 20px 78px;
  }

  .news::after {
    left: -20%;
    bottom: -55px;
    width: 140%;
    height: 100px;
  }

  .news__inner {
    max-width: 100%;
    display: block;
  }

  .news__header {
    margin-bottom: 38px;
  }

  .news__title-en {
    margin-bottom: 4px;
    font-size: clamp(22px, 7vw, 28px);
  }

  .news__title-ja {
    font-size: clamp(12px, 3.7vw, 15px);
  }

  .news__title,
  .news__subtitle {
    font-size: 12px;
  }

  .news__list {
    width: 100%;
  }

  .news__item-link {
    min-height: 67px;
    grid-template-columns:
      auto
      auto
      minmax(0, 1fr)
      16px;

    column-gap: clamp(7px, 2.5vw, 12px);
  }

  .news__date {
    font-size: clamp(10px, 3vw, 12px);
  }

  .news__category {
    min-width: 0;
    padding: 4px 10px;

    font-size: clamp(8px, 2.5vw, 10px);
  }

  .news__post-title {
    font-size: clamp(10px, 3vw, 12px);
  }

  .news__item-arrow {
    font-size: 23px;
  }

  .news__more {
    margin-top: 31px;
    justify-content: center;
  }

  .news__more-link {
    gap: 14px;
  }

  .news__more-label {
    font-size: 12px;
  }

  .news__more-arrow {
    width: 30px;
    height: 30px;
  }
}

/* =========================================================
   Reason
========================================================= */

.reason {
  position: relative;
  overflow: hidden;
  padding: 72px 24px 84px;
  background: #f8f3ef;
  color: #675643;
  font-family: "Noto Serif JP", serif;
  box-sizing: border-box;
}

.reason *,
.reason *::before,
.reason *::after {
  box-sizing: border-box;
}

.reason__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

/* ---------- title ---------- */

.reason__title {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.35em;
  width: min(100%, 760px);
  margin: 0 auto 42px;
  padding: 0;
  color: #675643;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.reason__title-part {
  display: inline-block;
}

.reason__title-part--01,
.reason__title-part--03 {
  font-size: clamp(22px, 2.2vw, 31px);
}

.reason__title-part--02 {
  color: #c87677;
  font-size: clamp(24px, 2.4vw, 34px);
}

/* ---------- layout ---------- */

.reason__grid {
  display: grid;
  grid-template-columns:
    minmax(130px, 1.5fr)
    minmax(0, 2.35fr)
    minmax(34px, 0.55fr)
    minmax(0, 2.35fr)
    minmax(130px, 1.5fr);
  grid-template-areas:
    "image-left text-left . text-right image-right"
    ". image-bottom image-bottom text-bottom text-bottom";
  column-gap: clamp(24px, 4vw, 58px);
  row-gap: clamp(42px, 6vw, 72px);
  align-items: center;
}

/* ---------- images ---------- */

.reason__image-area {
  min-width: 0;
}

.reason__image-area--left {
  grid-area: image-left;
}

.reason__image-area--right {
  grid-area: image-right;
  margin-top: -200px;
}

.reason__image-area--bottom {
  grid-area: image-bottom;
  justify-self: end;
  width: min(100%, 230px);
}

.reason__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.reason__image--left {
  aspect-ratio: 3 / 5;
  margin-top: -200px;
  width: 180px;
  height: auto;
 }

.reason__image--right {
  aspect-ratio: 3 / 5;
  margin-top:250px;
   width: 180px;
  height: auto;
}
.reason__image--bottom {
  aspect-ratio: 4 / 3;
}

/* ---------- text ---------- */

.reason__text {
  min-width: 0;
  margin: 0;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
  word-break: normal;
}

.reason__text--left {
  margin-top: 30px;
  grid-area: text-left;
  align-self: start;
}

.reason__text--right {
   grid-area: text-right;
   margin-top: 160px;
}

.reason__text--bottom {
  grid-area: text-bottom;
}

.reason__text p {
  margin: 0 0 1.35em;
}

.reason__text p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   Reason - SP
========================================================= */

@media (max-width: 767px) {
  .reason {
    padding: 42px 16px 64px;
  }

  .reason__inner {
    width: 100%;
  }

  .reason__title {
    gap: 0.25em;
    margin: 0 0 28px;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }

  .reason__title-part--01,
  .reason__title-part--03 {
    font-size: clamp(19px, 5.8vw, 22px);
  }

  .reason__title-part--02 {
    font-size: clamp(21px, 6.2vw, 24px);
  }

  .reason__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "image-left image-left"
      "text-left text-left"
      "text-right image-right"
      "image-bottom text-bottom";
    gap: 28px 18px;
    align-items: center;
  }

  .reason__image-area--left {
    width: min(76%, 320px);
    justify-self: center;
  }

  .reason__image-area--right,
  .reason__image-area--bottom {
    width: 100%;
    justify-self: stretch;
  }

  .reason__image--left {
    aspect-ratio: 4 / 5;
    margin-top: 0px;
  }

  .reason__image--right {
       aspect-ratio: 3 / 5;
  }

  .reason__image--bottom {
    aspect-ratio: 4 / 3;
  }

  .reason__text {
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.9;
    letter-spacing: 0.05em;
  }

  .reason__text--left {
    margin-top: -4px;
  }

  .reason__text--right,
  .reason__text--bottom {
    align-self: center;
    margin-top: 0px;
  }
}

/* かなり狭い端末でも横方向にはみ出させない */
@media (max-width: 374px) {
  .reason {
    padding-right: 14px;
    padding-left: 14px;
  }

  .reason__grid {
    column-gap: 14px;
  }

  .reason__text {
    font-size: 12px;
    letter-spacing: 0.03em;
  }
}

/* =========================================================
   Message
   ========================================================= */

.message {
  width: 100%;
  padding: clamp(48px, 6vw, 92px) 20px;
  box-sizing: border-box;
  background: #fff;
  color: #675643;
  font-family: "Noto Serif JP", serif;
  overflow: hidden;
}

.message__inner {
  width: min(100%, 1240px);
  margin: 0 auto;

  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(360px, .95fr);

  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

/* -------------------------
   Image
   ------------------------- */

.message__media {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.message__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/*
 * デザイン画像下部の柔らかい白いラインを再現。
 * 画像そのものは加工しない。
 */
.message__media::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: -5%;
  right: -5%;
  bottom: -38px;
  height: 72px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}

/* -------------------------
   Content
   ------------------------- */

.message__content {
  min-width: 0;
  width: 100%;
}

.message__title {
  margin: 0 0 clamp(24px, 3vw, 42px);
  color: #675643;

  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .08em;

  text-align: center;

  overflow-wrap: anywhere;
}

/* -------------------------
   Main text
   ------------------------- */

.message__text {
  width: min(100%, 610px);
  margin: 0 auto;

  color: #675643;
  font-size: clamp(14px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: .05em;

  overflow-wrap: break-word;
  word-break: normal;
}

.message__text p {
  margin: 0 0 1.35em;
}

.message__text p:last-child {
  margin-bottom: 0;
}

/* -------------------------
   Highlight
   ------------------------- */

.message__highlight {
  width: 100%;
  margin: clamp(28px, 4vw, 52px) auto 0;

  color: #c87677;
  font-size: clamp(14px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: .08em;

  text-align: center;

  overflow-wrap: break-word;
}

.message__highlight p {
  margin: 0;
}


/* =========================================================
   Message SP
   ========================================================= */

@media (max-width: 767px) {

  .message {
    padding:
      0
      clamp(20px, 7vw, 32px)
      clamp(44px, 12vw, 70px);
  }

  .message__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  /* -----------------------
     Image
     ----------------------- */

  .message__media {
    width: calc(100% + (clamp(20px, 7vw, 32px) * 2));
    margin-left: calc(clamp(20px, 7vw, 32px) * -1);
    margin-right: calc(clamp(20px, 7vw, 32px) * -1);
    margin-bottom: clamp(24px, 8vw, 40px);
  }

  .message__image {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    object-position: center center;
  }

  .message__media::after {
    left: -10%;
    right: -10%;
    bottom: -34px;
    height: 74px;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  }

  /* -----------------------
     Content
     ----------------------- */

  .message__content {
    width: 100%;
  }

  .message__title {
    width: 100%;
    margin: 0 0 28px;

    font-size: clamp(19px, 6vw, 25px);
    line-height: 1.7;
    letter-spacing: .06em;

    text-align: left;
  }

  .message__title::after {
    content: "";
    display: block;

    width: min(100%, 230px);
    height: 1px;

    margin-top: 16px;

    background: #ead8d1;
  }

  .message__text {
    width: 100%;
    margin: 0;

    font-size: clamp(13px, 3.6vw, 16px);
    line-height: 2;
    letter-spacing: .04em;
  }

  .message__text p {
    margin-bottom: 1.4em;
  }

  .message__highlight {
    position: relative;

    width: 100%;
    margin-top: 34px;
    padding: 0 10px;

    box-sizing: border-box;

    font-size: clamp(13px, 3.7vw, 16px);
    line-height: 2;
    letter-spacing: .05em;

    text-align: center;
  }

  /*
   * SPデザイン下部の斜線。
   */
  .message__highlight::before,
  .message__highlight::after {
    position: absolute;
    bottom: -2px;

    color: #e8b7b7;
    font-size: 22px;
    line-height: 1;

    content: "/";
  }

  .message__highlight::before {
    left: 0;
    transform: scaleX(-1);
  }

  .message__highlight::after {
    right: 0;
  }
}

/* ========================================
   Concept
======================================== */

.concept {
  position: relative;
  overflow: hidden;
  padding: 34px 20px 96px;
  background-color: #f8f3ef;
  background-image: url("images/concept_background_pc.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;

  color: #675643;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

.concept__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.concept__header {
  margin: 0 0 38px;
}

.concept__title {
  margin: 0;
  color: #675643;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.concept__subtitle {
  margin: 3px 0 0;
  color: #675643;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.concept__image-wrap {
  width: min(500px, 100%);
  margin: 0 auto 42px;
}

.concept__image {
  display: block;
  width: 100%;
  height: auto;
}

.concept__text {
  width: min(680px, 100%);
  margin: 0 auto;
  color: #675643;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 400;
  line-height: 2;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
}

.concept__text p {
  margin: 0 0 1.6em;
}

.concept__text p:last-child {
  margin-bottom: 0;
}


/* ========================================
   Concept SP
======================================== */

@media (max-width: 767px) {

  .concept {
    padding: 18px 18px 70px;
  }

  .concept__inner {
    max-width: 100%;
  }

  .concept__header {
    margin-bottom: 28px;
  }

  .concept__title {
    font-size: clamp(19px, 5.9vw, 22px);
    line-height: 1.4;
  }

  .concept__subtitle {
    margin-top: 2px;
    font-size: clamp(9px, 3vw, 11px);
  }

  .concept__image-wrap {
    width: min(100%, 440px);
    margin-bottom: 30px;
  }

  .concept__text {
    width: 100%;
    max-width: 520px;
    font-size: clamp(12px, 3.7vw, 14px);
    line-height: 1.9;
  }

  .concept__text p {
    margin-bottom: 1.55em;
  }
}

/* ==================================================
   Symptoms
================================================== */

.symptoms {
  width: 100%;
  padding: 72px 20px 84px;
  box-sizing: border-box;
  overflow: hidden;
  color: #675748;
  font-family: "Noto Serif JP", serif;
}

.symptoms__inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.symptoms__title {
  margin: 0 0 48px;
  padding: 0;
  text-align: center;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .18em;
}

.symptoms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(32px, 5vw, 72px);
  row-gap: 42px;
}

.symptoms__item {
  min-width: 0;
  text-align: left;
}

.symptoms__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin: 0 0 10px;
}

.symptoms__image img {
  display: block;
  width: auto;
  max-width: 64px;
  max-height: 54px;
  object-fit: contain;
}

.symptoms__item-title {
  margin: 0 0 8px;
  padding: 0;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: .04em;
}

.symptoms__text {
  margin: 0;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: .02em;
}

.symptoms__text p {
  margin: 0;
}

.symptoms__text p + p {
  margin-top: .5em;
}


/* ==================================================
   Symptoms SP
================================================== */

@media (max-width: 767px) {

  .symptoms {
    /* padding: 48px 18px 64px; */
  }

  .symptoms__inner {
    max-width: 560px;
  }

  .symptoms__title {
    max-width: 360px;
    margin: 0 auto 38px;
    font-size: clamp(18px, 5vw, 23px);
    line-height: 1.9;
    letter-spacing: .12em;
  }

  .symptoms__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(20px, 7vw, 38px);
    row-gap: 0;
  }

  .symptoms__item {
    padding: 25px 0 30px;
  }

  /*
   * スマホ参考デザインの横罫線。
   * 2項目単位で区切る。
   */
  .symptoms__item:nth-child(n + 3) {
    border-top: 1px solid rgba(103, 87, 72, .12);
  }

  .symptoms__image {
    min-height: 48px;
    margin-bottom: 10px;
  }

  .symptoms__image img {
    max-width: 54px;
    max-height: 48px;
  }

  .symptoms__item-title {
    margin-bottom: 8px;
    font-size: clamp(12px, 3.5vw, 15px);
    line-height: 1.7;
  }

  .symptoms__text {
    font-size: clamp(10px, 3vw, 13px);
    line-height: 1.9;
  }
}


/*
 * 極端に狭い画面でも文字が潰れないようにする。
 */
@media (max-width: 359px) {

  .symptoms {
    padding-right: 14px;
    padding-left: 14px;
  }

  .symptoms__grid {
    column-gap: 16px;
  }

  .symptoms__title {
    font-size: 18px;
  }

  .symptoms__item-title {
    overflow-wrap: anywhere;
  }

  .symptoms__text {
    overflow-wrap: anywhere;
  }
}

/* =========================================================
   Cause
========================================================= */

.cause {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  padding: clamp(42px, 4.6vw, 62px) 20px clamp(48px, 5vw, 68px);
  background: #f8efeb;
  color: #675643;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

.cause__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1000px);
  margin: 0 auto;
  text-align: center;
}

.cause__title {
  margin: 0;
  font-size: clamp(25px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.cause__separator {
  display: none;
}

.cause__text {
  margin-top: clamp(34px, 3.7vw, 48px);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.08em;
}

.cause__text p {
  margin: 0;
}

/* =========================================================
   SP
========================================================= */

@media (max-width: 767px) {

  .cause {
    /* min-height: 520px; */
    padding:
      clamp(62px, 17vw, 82px)
      clamp(18px, 6vw, 28px)
      clamp(92px, 25vw, 125px);
  }

  /*
   * 添付SPデザイン下部の淡い波形。
   * 画像アセットを追加せずCSSのみで表現。
   */
  .cause::after {
    content: "";
    position: absolute;
    right: -12%;
    bottom: -53px;
    left: -12%;
    height: 110px;
    background:
      radial-gradient(
        ellipse at 18% 25%,
        rgba(244, 229, 221, 0.52) 0 36%,
        transparent 37%
      ),
      radial-gradient(
        ellipse at 75% 45%,
        rgba(243, 226, 218, 0.55) 0 42%,
        transparent 43%
      );
    pointer-events: none;
  }

  .cause__inner {
    max-width: 430px;
  }

  .cause__title {
    font-size: clamp(19px, 5.5vw, 22px);
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .cause__separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 23px auto;
  }

  .cause__separator span {
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(199, 149, 128, 0.45);
  }

  .cause__text {
    margin-top: 0;
    font-size: clamp(12px, 3.55vw, 14px);
    line-height: 2;
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .cause__text p {
    margin: 0;
  }
}

/* =========================================================
   Menu
========================================================= */

.menu {
  width: 100%;
  padding: clamp(48px, 6vw, 88px) 20px;
  box-sizing: border-box;
  background: #f8f4f0;
  color: #675748;
  font-family: "Noto Serif JP", serif;
}

.menu,
.menu *,
.menu *::before,
.menu *::after {
  box-sizing: border-box;
}

.menu__inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.menu__header {
  margin: 0 auto clamp(32px, 4vw, 56px);
  text-align: center;
}

.menu__title-en {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .05em;
}

.menu__title {
  margin: 4px 0 0;
  font-size: clamp(13px, 1.3vw, 16px);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: .08em;
}

.menu__subtitle {
  margin: 2px 0 0;
  font-size: clamp(10px, 1vw, 13px);
  line-height: 1.8;
  font-weight: 400;
}


/* =========================================================
   Menu grid
========================================================= */

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 54px) clamp(20px, 3vw, 34px);
  width: 100%;
}


/* =========================================================
   Menu item
========================================================= */

.menu__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  overflow: hidden;
}

.menu__item-main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 38%) minmax(0, 1fr);
  flex: 1;
  min-width: 0;
  min-height: 175px;
}

.menu__image {
  min-width: 0;
  min-height: 175px;
  overflow: hidden;
}

.menu__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 175px;
  object-fit: cover;
}

.menu__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 16px 16px 18px;
  overflow-wrap: anywhere;
}

.menu__catch {
  display: inline-block;
  max-width: 100%;
  margin: 0 0 7px;
  padding: 2px 9px;
  border-radius: 999px;
  background: #f5eeee;
  font-size: clamp(10px, 1vw, 13px);
  line-height: 1.5;
  font-weight: 400;
}

.menu__item-title {
  margin: 0;
  font-size: clamp(10px, 1.25vw, 15px);
  line-height: 1.65;
  font-weight: 700;
  word-break: normal;
  overflow-wrap: anywhere;
}

.menu__meta {
  /* display: flex; */
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3px 10px;
  margin: 3px 0 0;
  font-size: clamp(12px, 1.2vw, 15px);
  line-height: 1.6;
  font-weight: 700;
}

.menu__time,
.menu__price {
  min-width: 0;
}

.menu__price {
  margin-left: auto;
  white-space: nowrap;
}

.menu__description {
  margin: 9px 0 0;
  padding-right: clamp(0px, 5vw, 65px);
  font-size: clamp(10px, .95vw, 13px);
  line-height: 1.7;
  font-weight: 400;
}

.menu__description p {
  margin: 0;
}

.menu__description p + p {
  margin-top: .4em;
}


/* =========================================================
   Sub image
========================================================= */

.menu__sub-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: clamp(52px, 18%, 82px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.menu__sub-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =========================================================
   Button
========================================================= */

.menu__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  padding: 5px 14px;
  background: #c97979;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: .05em;
  transition: opacity .25s ease;
}

.menu__button:hover {
  opacity: .8;
}


/* =========================================================
   Notice
========================================================= */

.menu__notice {
  display: grid;
  grid-template-columns: minmax(150px, 34%) minmax(0, 1fr);
  align-items: stretch;
  width: min(100%, 720px);
  min-height: 190px;
  margin: clamp(50px, 7vw, 90px) auto 0;
  background: #fff;
  overflow: hidden;
}

.menu__notice-image {
  min-width: 0;
}

.menu__notice-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.menu__notice-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 24px;
  text-align: center;
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 1.8;
  font-weight: 400;
}

.menu__notice-text p {
  margin: 0;
}


/* =========================================================
   SP
========================================================= */

@media (max-width: 767px) {

  .menu {
    padding: 38px 10px 52px;
  }

  .menu__header {
    margin-bottom: 24px;
  }

  .menu__title-en {
    font-size: 20px;
  }

  .menu__title {
    font-size: 12px;
  }

  .menu__subtitle {
    font-size: 10px;
  }

  .menu__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .menu__item-main {
    grid-template-columns: minmax(105px, 34%) minmax(0, 1fr);
    min-height: 138px;
  }

  .menu__image {
    min-height: 138px;
  }

  .menu__image img {
    min-height: 138px;
  }

  .menu__content {
    padding: 9px 10px 10px;
  }

  .menu__catch {
    margin-bottom: 3px;
    padding: 1px 7px;
    font-size: 9px;
  }

  .menu__item-title {
    font-size: clamp(12px, 3.7vw, 15px);
    line-height: 1.55;
  }

  .menu__meta {
    gap: 2px 8px;
    margin-top: 2px;
    font-size: clamp(10px, 3.2vw, 13px);
  }

  .menu__description {
    margin-top: 5px;
    padding-right: 46px;
    font-size: clamp(8px, 2.55vw, 11px);
    line-height: 1.55;
  }

  .menu__sub-image {
    width: clamp(42px, 15vw, 60px);
  }

  .menu__button {
    min-height: 27px;
    padding: 3px 10px;
    font-size: clamp(10px, 3.2vw, 13px);
  }

  .menu__notice {
    grid-template-columns: minmax(105px, 34%) minmax(0, 1fr);
    min-height: 140px;
    margin-top: 34px;
  }

  .menu__notice-image img {
    min-height: 140px;
  }

  .menu__notice-text {
    padding: 15px 10px;
    font-size: clamp(12px, 3.6vw, 15px);
    line-height: 1.8;
  }
}


/* =========================================================
   Very small screens
========================================================= */

@media (max-width: 359px) {

  .menu {
    padding-right: 7px;
    padding-left: 7px;
  }

  .menu__item-main {
    grid-template-columns: minmax(92px, 32%) minmax(0, 1fr);
  }

  .menu__content {
    padding-right: 7px;
    padding-left: 7px;
  }

  .menu__description {
    padding-right: 38px;
  }

  .menu__notice {
    grid-template-columns: 32% minmax(0, 1fr);
  }
}

/* =========================================================
   Voice
========================================================= */

.voice {
  width: 100%;
  padding: 52px 20px 58px;
  background: #fbf8f6;
  color: #675748;
  font-family: "Noto Serif JP", serif;
  box-sizing: border-box;
  overflow: hidden;
}

.voice__inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.voice__header {
  margin: 0 0 38px;
  text-align: center;
}

.voice__title {
  margin: 0;
  color: #675748;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: clamp(25px, 2.2vw, 31px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .08em;
}

.voice__subtitle {
  margin: 4px 0 0;
  color: #675748;
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 400;
  line-height: 1.8;
}

.voice__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
  width: 100%;
}

.voice__item {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 216px;
  padding: 40px 32px 25px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(103, 87, 72, .16);
  border-radius: 24px;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(103, 87, 72, .05);
  overflow: hidden;
}

.voice__item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 7px;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(103, 87, 72, .2);
  border-radius: 50%;
  box-sizing: border-box;
}

.voice__text {
  position: relative;
  z-index: 1;
  width: 100%;
  color: #675748;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .03em;
  overflow-wrap: anywhere;
}

.voice__text p {
  margin: 0;
}

.voice__text p + p {
  margin-top: 1em;
}

.voice__profile {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
  padding-right: 42px;
  color: #675748;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.5;
}

.voice__age,
.voice__initial {
  white-space: nowrap;
}

.voice__leaf {
  position: absolute;
  right: 17px;
  bottom: 8px;
  width: 28px;
  height: 59px;
  opacity: .22;
  transform: rotate(18deg);
  pointer-events: none;
}

.voice__leaf::before {
  content: "";
  position: absolute;
  left: 13px;
  bottom: 0;
  width: 1px;
  height: 58px;
  background: #675748;
  transform: rotate(14deg);
  transform-origin: bottom;
}

.voice__leaf::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 9px;
  width: 22px;
  height: 43px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(103, 87, 72, .9) 0 25%,
      transparent 28%
    );
  background-size: 11px 14px;
  background-repeat: space;
}

/* ==============================
   Voice スライダー矢印
============================== */

.voice__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid #e8d8d3;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.9);

  color: #c99f98;
  font-size: 28px;
  font-family: serif;
  line-height: 1;

  cursor: pointer;

  box-shadow: 0 3px 12px rgba(120, 90, 80, 0.08);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.voice__arrow--prev {
  left: -22px;
}

.voice__arrow--next {
  right: -22px;
}

.voice__arrow:hover {
  background: #ead8d3;
  color: #ffffff;
}

.voice__arrow--prev:hover {
  transform: translateY(-50%) translateX(-2px);
}

.voice__arrow--next:hover {
  transform: translateY(-50%) translateX(2px);
}

.voice__slider {
  position: relative;
}
.voice__arrow {
  position: absolute;
  z-index: 10;
}
/* =========================================================
   Voice - SP
========================================================= */

@media (max-width: 767px) {

  .voice {
    padding: 28px 20px 42px;
  }

  .voice__inner {
    max-width: 100%;
  }

  .voice__header {
    margin-bottom: 22px;
  }

  .voice__title {
    font-size: clamp(22px, 7vw, 27px);
    line-height: 1.35;
  }

  .voice__subtitle {
    margin-top: 2px;
    font-size: 11px;
  }

  .voice__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .voice__item {
    width: 100%;
    min-height: 144px;
    padding: 29px 22px 17px;
    border-radius: 20px;
  }

  .voice__text {
    font-size: clamp(14px, 4vw, 16px);
    line-height: 1.9;
  }

  .voice__profile {
    gap: 10px;
    padding-top: 18px;
    padding-right: 30px;
    font-size: 12px;
  }

  .voice__leaf {
    right: 10px;
    bottom: 5px;
    transform: scale(.82) rotate(18deg);
    transform-origin: bottom right;
  }

}
@media (max-width: 768px) {

  .voice__arrow {
    width: 36px;
    height: 36px;
    font-size: 23px;
  }

  .voice__arrow--prev {
    left: -10px;
  }

  .voice__arrow--next {
    right: -10px;
  }

}
/* ========================================
   News 詳細ページ
======================================== */

.single-news {
  padding: 120px 20px;
  background: #fffaf7;
}

.single-news__inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.single-news__article {
  background: #fff;
  padding: 60px;
}

.single-news__label {
  margin: 0 0 30px;
  font-size: 32px;
  letter-spacing: 0.1em;
}

.single-news__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 14px;
}

.single-news__category {
  display: inline-block;
  padding: 5px 22px;
  border-radius: 999px;
  background: #f4ded8;
}

.single-news__title {
  margin: 0 0 50px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
}

.single-news__thumbnail {
  margin-bottom: 40px;
}

.single-news__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.single-news__content {
  font-size: 16px;
  line-height: 2;
}

.single-news__content > *:first-child {
  margin-top: 0;
}

.single-news__back {
  margin-top: 70px;
  text-align: center;
}

.single-news__back-link {
  text-decoration: none;
}

@media (max-width: 768px) {

  .single-news {
    padding: 80px 20px;
  }

  .single-news__article {
    padding: 35px 20px;
  }

  .single-news__label {
    font-size: 26px;
  }

  .single-news__title {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .single-news__meta {
    gap: 12px;
  }

}
/* ========================================
   News 一覧ページ
======================================== */

.news-archive {
  padding: 120px 20px;
  background: #fffaf7;
}

.news-archive__inner {
  width: min(1000px, 100%);
  margin: 0 auto;
}

.news-archive__header {
  margin-bottom: 60px;
  text-align: center;
}

.news-archive__title-en {
  margin: 0;
  font-size: 32px;
  letter-spacing: 0.12em;
}

.news-archive__title-ja {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 400;
}

.news-archive__list {
  border-top: 1px solid #e7dcd7;
}

.news-archive__item {
  border-bottom: 1px solid #e7dcd7;
}

.news-archive__link {
  display: grid;
  grid-template-columns: 120px 120px 1fr 30px;
  align-items: center;
  gap: 20px;

  padding: 24px 0;

  color: inherit;
  text-decoration: none;
}

.news-archive__date {
  font-size: 14px;
}

.news-archive__category {
  display: inline-block;

  padding: 5px 16px;

  text-align: center;
  font-size: 12px;

  border-radius: 999px;
  background: #f4ded8;
}

.news-archive__post-title {
  font-size: 15px;
}

.news-archive__arrow {
  text-align: right;
  font-size: 24px;
  color: #d8a69b;
}

.news-archive__pagination {
  margin-top: 50px;
  text-align: center;
}

.news-archive__pagination ul {
  display: flex;
  justify-content: center;
  gap: 10px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.news-archive__pagination a,
.news-archive__pagination span {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border-radius: 50%;

  text-decoration: none;
}

.news-archive__pagination .current {
  background: #ead8d3;
}

.news-archive__back {
  margin-top: 60px;
  text-align: center;
}

.news-archive__back-link {
  text-decoration: none;
  color: #c87677;
}


/* ========================================
   SP
======================================== */

@media (max-width: 768px) {

  .news-archive {
    padding: 80px 20px;
  }

  .news-archive__header {
    margin-bottom: 40px;
  }

  .news-archive__link {
    grid-template-columns: 1fr auto;
    gap: 10px 15px;

    padding: 20px 0;
  }

  .news-archive__date {
    grid-column: 1;
    grid-row: 1;
  }

  .news-archive__category {
    grid-column: 1;
    grid-row: 2;

    width: fit-content;
  }

  .news-archive__post-title {
    grid-column: 1;
    grid-row: 3;

    margin-top: 5px;
  }

  .news-archive__arrow {
    grid-column: 2;
    grid-row: 1 / 4;

    align-self: center;
  }

}