@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Tenor+Sans&family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");

/* =========================================================
the terrace — Design tokens
========================================================= */
:root {
  --c-key: #ffd93d; /* キーカラー（黄） */
  --c-key-d: #d6b633; /* hover用の濃い黄 */
  --c-dark: #222222; /* ダーク（背景/ボタン） */
  --c-dark-2: #2b2b2b;
  --c-text: #2a2a2a; /* 本文 */
  --c-muted: #777;
  --c-line: #e0ddd4; /* 罫線 */
  --c-bg: #fff;
  --c-bg-2: #efece4; /* ライトセクション背景 */

  /* 見出し・装飾用（ラテン）。Tenor Sans は regular(400) のみ */
  --f-en:
    "Tenor Sans", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝",
    YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;

  /* 見出し・本文・キャプション用（和文）。日本語は全て Zen 角ゴシック New に統一 */
  --f-ja:
    "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN",
    "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic",
    YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;

  --wrap: 1120px;
  @media screen and (min-width: 641px) {
    --header-h: 70px;
  }
  @media screen and (max-width: 640px) {
    --header-h: 50px;
  }
}

/* =========================================================
Reset / Base
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--f-ja);
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition:
    opacity 0.25s,
    color 0.25s,
    background-color 0.25s;
}
ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
svg {
  display: block;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* SP/PC 出し分けユーティリティ（data-sc-* 属性） */
@media screen and (min-width: 641px) {
  [data-sc-sp] {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  [data-sc-pc] {
    display: none !important;
  }
}

/* =========================================================
Buttons
========================================================= */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-ja);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.2;
  border-radius: 2px;
  transition:
    opacity 0.25s,
    background-color 0.25s,
    color 0.25s;
  @media screen and (min-width: 641px) {
    min-width: 220px;
    padding: 1.4rem 3rem;
  }
  @media screen and (max-width: 640px) {
    min-width: 0;
    width: 100%;
    max-width: 340px;
    padding: 1.5rem 2rem;
  }
}
.c-btn--reserve {
  background: var(--c-key);
  color: var(--c-dark);
  @media (hover: hover) {
    &:hover {
      background: var(--c-key-d);
    }
  }
}
.c-btn--soon {
  background: transparent;
  color: var(--c-key);
  border: 1px solid var(--c-key);
  font-family: var(--f-en);
  letter-spacing: 0.08em;
  pointer-events: none; /* Coming Soonは非インタラクティブ */
  & .c-btn__cap {
    font-size: 1.3em; /* 頭文字(C/S)だけ大きく */
  }
  @media (hover: hover) {
    &:hover {
      background: var(--c-key);
      color: var(--c-dark);
    }
  }
}
.c-btn--dark {
  background: var(--c-dark);
  color: #fff;
  @media (hover: hover) {
    &:hover {
      background: #000;
    }
  }
}
.c-btn--lg {
  padding: 1.8rem 3.2rem;
  font-size: 1.6rem;
  @media screen and (min-width: 641px) {
    min-width: 320px;
  }
  @media screen and (max-width: 640px) {
    min-width: 0;
    width: 100%;
    max-width: 340px;
  }
}

/* =========================================================
Section title
========================================================= */
.c-secttl {
  text-align: center;
  @media screen and (min-width: 641px) {
    margin-bottom: 4rem;
  }
  @media screen and (max-width: 640px) {
    margin-bottom: 3rem;
  }
}
.c-secttl__en {
  display: block;
  font-family: var(--f-en);
  line-height: 1.1;
  color: var(--c-dark);
  @media screen and (min-width: 641px) {
    font-size: 5.2rem;
  }
  @media screen and (max-width: 640px) {
    font-size: 4.2rem;
  }
}
.c-secttl__ja {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: var(--c-muted);
}
.c-secttl--light {
  & .c-secttl__en {
    color: var(--c-key);
  }
  & .c-secttl__ja {
    color: #fff;
  }
}

/* =========================================================
Header
========================================================= */
.g-header {
  top: 0;
  z-index: 900;
  background: var(--c-dark);
  @media screen and (min-width: 641px) {
    position: sticky;
  }
  @media screen and (max-width: 640px) {
    position: fixed;
    width: 100%;
  }

  .p-mv & {
    @media screen and (min-width: 641px) {
      position: absolute;
      width: 100%;
      background-color: transparent;
    }
    @media screen and (max-width: 640px) {
      display: none;
    }
  }
}
.g-header__inner {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  max-width: var(--wrap);
  height: var(--header-h);
  margin: 0 auto;
  padding: 0 3rem;
  @media screen and (max-width: 1080px) {
    gap: 1.6rem;
    padding: 0 2rem;
  }
}
.g-header__logo {
  flex: 0 0 auto;
  & img {
    display: block;
    width: 150px;
    height: auto;
  }
}
.g-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.2rem;
  @media screen and (max-width: 1080px) {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: var(--header-h) 2rem 4rem;
    background: var(--c-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.3s,
      transform 0.3s,
      visibility 0.3s;
    overflow-y: auto;
    .spmenuopen & {
      opacity: 1;
      visibility: visible;
      transform: none;
    }
  }
}
.g-nav__list {
  display: flex;
  align-items: center;
  @media screen and (max-width: 1080px) {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 420px;
  }
}
.g-nav__item {
  position: relative;
  @media screen and (max-width: 1080px) {
    width: 100%;
    border-bottom: 1px solid color-mix(in srgb, var(--c-key) 25%, transparent);
  }
  & + .g-nav__item {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 1.3rem;
      background: color-mix(in srgb, var(--c-key) 50%, transparent);
    }
    .p-mv &::before {
      background-color: #fff;
    }
    @media screen and (max-width: 1080px) {
      margin-left: 0;
      padding-left: 0;
      &::before {
        display: none;
      }
    }
  }
  & > a {
    font-family: var(--f-en);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--c-key);
    white-space: nowrap;
    @media (hover: hover) {
      &:hover {
        opacity: 0.6;
      }
    }
    @media screen and (max-width: 1080px) {
      display: block;
      padding: 1.8rem 0.5rem;
      font-size: 1.6rem;
      text-align: center;
    }
    .p-mv & {
      @media screen and (min-width: 641px) {
        color: #fff;
      }
    }
  }
}
.g-nav__sns {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  @media screen and (max-width: 1080px) {
    margin-top: 2.6rem;
    gap: 2rem;
  }
  & a {
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--c-key);
    @media (hover: hover) {
      &:hover {
        opacity: 0.6;
      }
    }
  }
  & img {
    width: 2rem;
    height: auto;
    @media screen and (max-width: 1080px) {
      width: 2.6rem;
    }
  }
}
.g-nav__contact {
  display: none; /* SPドロワー専用 */
  @media screen and (max-width: 1080px) {
    display: block;
    margin-top: 2.6rem;
    text-align: center;
    & .c-btn {
      width: 100%;
      max-width: 300px;
      /* 炭色ドロワー上では予約ボタンを黄背景＋黒文字に反転 */
      background: var(--c-key);
      color: var(--c-dark);
      @media (hover: hover) {
        &:hover {
          background: var(--c-key-d);
        }
      }
    }
  }
}
.g-nav__contact-ttl {
  @media screen and (max-width: 1080px) {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--c-key);
  }
}
.g-nav__tel {
  @media screen and (max-width: 1080px) {
    display: inline-block;
    font-family: var(--f-en);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--c-key);
    letter-spacing: 0.04em;
    margin: 0.4rem 0 1.6rem;
  }
}
.g-header__reserve {
  flex: 0 0 auto;
  min-width: 0;
  padding: 1rem 2rem;
  font-size: 1.3rem;
  /* 炭色ヘッダー上では予約ボタンを黄背景＋黒文字に反転（.c-btn--darkを上書き） */
  background: var(--c-key);
  color: var(--c-dark);
  @media (hover: hover) {
    &:hover {
      background: var(--c-key-d);
    }
  }
  @media screen and (max-width: 1080px) {
    display: none;
  }
}

/* hamburger */
.menubtn {
  display: none;
  position: relative;
  width: 30px;
  height: 22px;
  flex: 0 0 auto;
  margin-left: auto;
  z-index: 1100;
  @media screen and (max-width: 1080px) {
    display: block;
  }
}
.menubtn__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--c-key);
  transition:
    transform 0.3s,
    opacity 0.3s,
    top 0.3s;
  &:nth-child(1) {
    top: 0;
  }
  &:nth-child(2) {
    top: 10px;
  }
  &:nth-child(3) {
    top: 20px;
  }
  .spmenuopen &:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }
  .spmenuopen &:nth-child(2) {
    opacity: 0;
  }
  .spmenuopen &:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
  }
}
.spmenuopen {
  @media screen and (max-width: 1080px) {
    overflow: hidden;
  }
}

/* =========================================================
Footer
========================================================= */
.g-footer {
  background: var(--c-key);
  color: var(--c-dark);
  text-align: center;
  @media screen and (min-width: 641px) {
    padding: 7rem 2rem 6rem;
  }
  @media screen and (max-width: 640px) {
    padding: 5rem 0 4.5rem;
  }
}
.g-footer__logo img {
  width: 220px;
  height: auto;
}
.g-footer__addr {
  margin-top: 3rem;
  line-height: 1.9;
  font-size: 1.4rem;
  & b {
    display: block;
    font-weight: 400; /* 太字が気になるため一段階ダウン */
  }
  & span {
    font-weight: 400; /* 太字が気になるため一段階ダウン（旧bold） */
  }
}
.g-footer__info {
  margin-top: 3rem;
}
.g-footer__label {
  display: inline-block;
  position: relative;
  font-weight: 400; /* 太字が気になるため一段階ダウン（旧700） */
  letter-spacing: 0.08em;
  @media screen and (min-width: 641px) {
    margin-bottom: 0.7rem;
    font-size: 1.4rem;
  }
  @media screen and (max-width: 640px) {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
  }
}
.g-footer__dl {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1.3rem;
  line-height: 1.6; /* 行間がやや広いため詰める（旧1.8） */
  font-weight: 400; /* 太字が気になるため一段階ダウン（旧700） */
  &.--type02 {
    @media screen and (max-width: 640px) {
      display: block;
    }
    dt {
      @media screen and (max-width: 640px) {
        display: inline;
        &:after {
          content: "　";
        }
      }
    }
    dd {
      @media screen and (max-width: 640px) {
        display: inline;
      }
    }
  }
}
.g-footer__week {
  font-size: 1.3rem;
  font-weight: 400; /* 太字が気になるため一段階ダウン（旧bold） */
  a {
    text-decoration: underline;
  }
}
.g-footer__tel {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: var(--f-en);
  font-weight: 400;
  letter-spacing: 0.04em;
  @media screen and (min-width: 641px) {
    font-size: 3rem;
  }
  @media screen and (max-width: 640px) {
    font-size: 2.6rem;
  }
}
.g-footer__btn {
  margin-top: 3.4rem;
  & .c-btn {
    display: inline-flex;
  }
  @media screen and (max-width: 640px) {
    display: flex;
    justify-content: center;
  }
}
.g-footer__sns {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin-top: 3.4rem;
  & a {
    display: block;
    color: var(--c-dark);
    @media (hover: hover) {
      &:hover {
        opacity: 0.6;
      }
    }
  }
  & svg {
    width: 2.4rem;
    height: 2.4rem;
  }
}

/* =========================================================
Map + Copyright
========================================================= */
.l-map {
  background: var(--c-dark);
  @media screen and (min-width: 641px) {
    padding: 7rem 0 0; /* 上余白を詰めて存在感を抑える（旧10rem） */
  }
  @media screen and (max-width: 640px) {
  }
}
.l-map__canvas {
  margin: auto;
  @media screen and (max-width: 640px) {
    padding-top: 4rem;
  }
  & iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    display: block;
    /* 存在感を落とす：彩度を下げてやや暗く。レイアウトには影響しない */
    filter: grayscale(0.55) brightness(0.92);
  }
  @media screen and (min-width: 641px) {
    /* メニューのコンテンツ幅(.p-menu__grid=980px)に合わせる（旧 --wrap 1120px） */
    max-width: 980px;
    height: 56rem; /* 高さを下げて存在感を抑える（旧70rem） */
  }
  @media screen and (max-width: 640px) {
    /* SPもメニューの左右余白(2.4rem)に合わせる */
    max-width: calc(100% - 4.8rem);
    height: 260px; /* 高さを下げる（旧320px） */
  }
}
.l-copyright {
  background: var(--c-dark);
  font-family: var(--f-en);
  color: #b9b7b1;
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin: 0;
  @media screen and (min-width: 641px) {
    padding: 2.4rem 2rem 3rem;
  }
  @media screen and (max-width: 640px) {
    padding: 2.4rem 2rem 7rem;
  }
}

/* =========================================================
Pagetop + SP fixed flow bar
========================================================= */
#pagetop {
  position: fixed;
  z-index: 900;
  & a {
    display: block;
    width: 46px;
    height: 46px;
    background: var(--c-dark);
    border-radius: 50%;
    position: relative;
    &::before {
      content: "";
      position: absolute;
      top: 52%;
      left: 50%;
      width: 11px;
      height: 11px;
      border-top: 2px solid var(--c-key);
      border-right: 2px solid var(--c-key);
      transform: translate(-50%, -50%) rotate(-45deg);
    }
    @media (hover: hover) {
      &:hover {
        opacity: 0.85;
      }
    }
  }
  @media screen and (min-width: 641px) {
    bottom: 2.4rem;
    right: 2rem;
  }
  @media screen and (max-width: 640px) {
    bottom: 5rem;
    right: 1.4rem;
    & a {
      width: 42px;
      height: 42px;
    }
  }

  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  .few_scroll & {
    pointer-events: auto;
    opacity: 1;
  }
}

.l-flowfix {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  display: flex;
}
.l-flowfix__btn {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.l-flowfix__btn--tel {
  background: var(--c-dark);
  color: #fff;
}
.l-flowfix__btn--reserve {
  background: var(--c-key);
  color: var(--c-dark);
}

/* =========================================================
下層ページ共通（Information 一覧 / 詳細）
========================================================= */
.informationList,
.informationDetail {
  max-width: var(--wrap);
  margin: 0 auto;
  @media screen and (min-width: 641px) {
    padding: 7rem 2rem 8rem;
  }
  @media screen and (max-width: 640px) {
    padding: 5rem 2rem 10rem;
  }
}
.informationList .ttl,
.informationDetail .ttl,
.informationList .title_head,
.informationDetail .title_head {
  text-align: center;
  margin-bottom: 4rem;
}
.informationList .title_head_en,
.informationDetail .title_head_en {
  display: block;
  font-family: var(--f-en);
  color: var(--c-dark);
  line-height: 1.1;
  @media screen and (min-width: 641px) {
    font-size: 4.6rem;
  }
  @media screen and (max-width: 640px) {
    font-size: 3.6rem;
  }
}
.informationList .title_head_ja,
.informationDetail .title_head_ja {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: var(--c-muted);
}

/* 一覧 */
.informationList {
  & .list {
    display: grid;
    @media screen and (min-width: 641px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 4rem 4rem;
    }
    @media screen and (max-width: 640px) {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }
  & .item {
    display: flex;
    gap: 2rem;
    & .img {
      flex: 0 0 40%;
      & img {
        width: 100%;
        aspect-ratio: 4 / 3;
        object-fit: cover;
      }
    }
  }
  & .caption {
    flex: 1 1 auto;
    & .ttl {
      text-align: left;
      font-size: 1.7rem;
      font-weight: 700;
      line-height: 1.5;
      margin: 0.8rem 0;
    }
  }
  & .date {
    font-size: 1.2rem;
    color: var(--c-muted);
    & span {
      display: inline-block;
      margin-left: 0.8rem;
      padding: 0.1rem 0.8rem;
      background: var(--c-dark);
      color: #fff;
      font-size: 1.1rem;
    }
  }
  & .txt {
    font-size: 1.3rem;
    color: #555;
  }
  & .btnMore a {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.3rem;
    color: var(--c-key-d);
    border-bottom: 1px solid currentColor;
  }
  & .paging {
    margin-top: 5rem;
  }
  & .listNumber {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    & a,
    & span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 3.6rem;
      height: 3.6rem;
      border: 1px solid var(--c-line);
      font-size: 1.4rem;
    }
    & .current {
      background: var(--c-key);
      border-color: var(--c-key);
    }
  }
}

/* 詳細 */
.informationDetail {
  & .content > .ttl {
    text-align: center;
  }
  & .groupArea {
    background: #f0f0ef;
    @media screen and (min-width: 641px) {
      padding: 4rem 5rem 4.5rem;
      margin-bottom: 1.8rem;
    }
    @media screen and (max-width: 640px) {
      padding: 2.4rem 1.6rem 3rem;
      margin-bottom: 1.2rem;
    }
  }
  & .group {
    & .date {
      font-size: 1.3rem;
      color: var(--c-text);
    }
    & > .ttl {
      font-weight: 700;
      line-height: 1.6;
      font-family: var(--f-ja); /* ZEN角ゴシック（ボールド700） */
      border-bottom: 1px solid #ccc;
      @media screen and (min-width: 641px) {
        font-size: 2.6rem;
        margin-top: 1.2rem;
        padding-bottom: 2.4rem;
      }
      @media screen and (max-width: 640px) {
        font-size: 2rem;
        margin-top: 1rem;
        padding-bottom: 1.6rem;
        text-align: left;
      }
    }
  }
  & .social-area-syncer {
    margin: 1.6rem 0;
    & .social-button-syncer {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.8rem;
    }
  }
  & .entry_content {
    margin-top: 2rem;
    &::after {
      content: "";
      display: block;
      clear: both;
    }
    & p {
      margin: 1.6rem 0;
      line-height: 2;
    }
    & img {
      display: block;
    }
    & > h3 {
      font-size: 2rem;
      font-weight: 700;
      margin: 3rem 0 1.4rem;
      padding-left: 1.6rem;
      border-left: 4px solid var(--c-key);
      font-family: var(--f-ja);
    }
    & > blockquote {
      background: #f1ede1;
      margin: 2rem 0;
      padding: 2.4rem 3rem;
      position: relative;
    }
  }
  & .entry_content_block {
    margin: 2rem 0;
    &:after {
      content: "";
      display: block;
      clear: both;
    }
  }
  & .img_place_3columns {
    display: grid;
    gap: 1.6rem;
    @media screen and (min-width: 641px) {
      grid-template-columns: repeat(3, 1fr);
    }
    @media screen and (max-width: 640px) {
      grid-template-columns: 1fr;
    }
  }
  & .img_place_left {
    float: left;
    padding: 0 2rem 2rem 0;
    @media screen and (min-width: 641px) {
      width: 48%;
    }
    @media screen and (max-width: 640px) {
      float: none;
      width: 100%;
      padding: 0 0 1.6rem;
    }
  }
  & .img_place_right {
    float: right;
    padding: 0 0 2rem 2rem;
    @media screen and (min-width: 641px) {
      width: 48%;
    }
    @media screen and (max-width: 640px) {
      float: none;
      width: 100%;
      padding: 0 0 1.6rem;
    }
  }
  & .img_place_3columns_menu {
    display: grid;
    gap: 2.4rem 2rem;
    margin: 2rem 0;
    @media screen and (min-width: 641px) {
      grid-template-columns: repeat(3, 1fr);
    }
    @media screen and (max-width: 640px) {
      grid-template-columns: 1fr;
    }
    & .img_place_3columns_menu_img {
      box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.1);
    }
    & .img_place_3columns_menu_name {
      text-align: center;
      font-weight: 700;
      font-size: 1.6rem;
      line-height: 1.6;
      margin-top: 1.4rem;
    }
    & .img_place_3columns_menu_sub {
      text-align: center;
      font-weight: 700;
      font-size: 1.3rem;
      line-height: 1.6;
      margin-top: 0.4rem;
    }
    & .img_place_3columns_menu_desc {
      font-size: 1.4rem;
      line-height: 1.85;
      margin-top: 0.4rem;
    }
  }
  & .btn_link_content {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
  }
  & .btn_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    padding: 1.5rem 4rem;
    background: var(--c-key);
    color: var(--c-dark);
    font-weight: 400;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: background-color 0.25s;
    @media (hover: hover) {
      &:hover {
        background: var(--c-key-d);
      }
    }
    @media screen and (max-width: 640px) {
      width: 100%;
      max-width: 340px;
      padding: 1.4rem 3rem;
    }
    & > span {
      position: relative;
    }
  }
  & .detail_pager {
    position: relative; /* TOPをPrev/Nextと同じ行に重ねるための基準 */
    margin-top: 5rem;
  }
  & .btns02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    & .prev,
    & .next {
      font-family: var(--f-en); /* Tenor Sans */
      color: var(--c-dark); /* 墨色 */
      font-size: 1.4rem;
      letter-spacing: 0.04em;
      line-height: 1.2;
      border-bottom: 1px solid currentColor;
      @media (hover: hover) {
        &:hover {
          opacity: 0.7;
        }
      }
    }
    @media screen and (min-width: 641px) {
      gap: 3rem;
    }
    @media screen and (max-width: 640px) {
      gap: 1.6rem;
    }
  }
  & .infolist {
    /* TOPをPrev/Nextと同じ高さ（btns02行の中央）に配置 */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    text-align: center;
    & a {
      font-family: var(--f-en);
      font-size: 1.4rem;
      color: var(--c-dark); /* 墨色 */
      border-bottom: 1px solid currentColor;
    }
  }
}
.share {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin: 1.6rem 0;
}

/* =========================================================
404
========================================================= */
.notfoundArea {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 9rem 2rem;
  text-align: center;
  & .cat_title {
    font-family: var(--f-ja);
    font-size: 2.2rem;
    line-height: 1.6;
    margin-bottom: 2.4rem;
  }
  & .caption01 {
    font-size: 1.4rem;
    line-height: 2;
  }
  & .comBtn01 a {
    display: inline-block;
    margin-top: 3rem;
    font-size: 1.4rem;
    border-bottom: 1px solid currentColor;
  }
}
