.ffch {
  --ffch-wine: #b04a70;
  --ffch-wine-deep: #91324f;
  --ffch-forest: #477a67;
  --ffch-ink: #312b28;
  --ffch-paper: #fffefe;
  --ffch-soft: #fcf6f6;
  --ffch-line: rgba(41, 37, 34, 0.13);
  --ffch-white: #fff;
  --ffch-content: 1280px;
  --ffch-gutter: 40px;
  --ffch-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --ffch-sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, sans-serif;

  display: block;

  /* 修正 */
  width: 100vw;
  min-width: 1180px;
  margin: 0;
  margin-left: calc(50% - 50vw);

  min-height: 126px;
  color: var(--ffch-ink);
  font-family: var(--ffch-sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: normal;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}

.ffch,
.ffch * {
  box-sizing: border-box;
}

.ffch [hidden] {
  display: none !important;
}

.ffch a {
  color: inherit;
  text-decoration: none;
}

.ffch img {
  display: block;
}

.ffch .ffch-fallback {
  padding: 25px 40px;
}

.ffch .ffch-fallback a {
  margin-right: 24px;
  text-decoration: underline;
}


/* =========================
   Announcement
========================= */

.ffch .ffch-announcement {
  width: 100%;
  height: 34px;
  color: var(--ffch-white);
  background: var(--ffch-wine-deep);
  font-size: 13px;
  letter-spacing: .06em;
}

.ffch .ffch-announcement-inner {
  position: relative;

  width: 100%;
  max-width: 1280px;
  height: 34px;

  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;

  display: grid;

  /* 本文を本当の中央へ固定 */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  box-sizing: border-box;
  text-align: center;
}

/* メイン文章 */
.ffch .ffch-announcement p {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
}

.ffch .ffch-announcement strong {
  color: #ffe2a6;
}

.ffch .ffch-announcement small {
  grid-column: 2;
  margin-left: 38px;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  white-space: nowrap;
}

/* 右側リンク */
.ffch .ffch-announcement a {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);

  border-bottom: 1px solid rgba(255,255,255,.5);
  white-space: nowrap;
}

/* =========================
   Site Header
========================= */

.ffch .ffch-site-header {
  position: relative;
  z-index: 20;
  height: 92px;
  background: rgba(255,253,250,.98);
  border-bottom: 1px solid var(--ffch-line);
}

.ffch .ffch-site-header-inner {
  width: min(
    calc(100% - (var(--ffch-gutter) * 2)),
    var(--ffch-content)
  );

  height: 100%;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 18px;
}

.ffch .ffch-site-header.ffch-is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  box-shadow: 0 8px 28px rgba(27,26,24,.09);
  animation: ffch-header-in .28s ease both;
}

@keyframes ffch-header-in {
  from {
    transform: translateY(-100%);
  }
}

.ffch .ffch-brand {
  display: flex;
  align-items: center;
  width: max-content;
}

.ffch .ffch-brand-logo {
  width: 240px;
  height: auto;
}

.ffch .ffch-header-spacer {
  min-width: 0;
}

.ffch .ffch-main-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.6vw, 32px);
  white-space: nowrap;
}

.ffch .ffch-main-nav a {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 14px;
  letter-spacing: .035em;
}

.ffch .ffch-main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 0;
  height: 1px;
  background: var(--ffch-wine);
  transition: width .25s, left .25s;
}

.ffch .ffch-main-nav a:hover::after,
.ffch .ffch-main-nav a:focus-visible::after,
.ffch .ffch-main-nav a.ffch-is-menu-open::after {
  left: 0;
  width: 100%;
}

.ffch .ffch-main-nav a[data-ffch-menu][aria-haspopup="true"] {
  padding-right: 13px;
}

.ffch .ffch-main-nav a[data-ffch-menu][aria-haspopup="true"]::before {
  content: "";
  position: absolute;
  right: 0;
  top: 48%;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform .2s;
}

.ffch .ffch-main-nav a.ffch-is-menu-open::before {
  transform: translateY(-10%) rotate(225deg);
}

.ffch .ffch-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  font-size: 12px;
}

.ffch .ffch-header-actions > a:not(.ffch-header-contact):hover {
  color: var(--ffch-wine);
}

.ffch .ffch-header-contact {
  padding: 10px 16px;
  color: var(--ffch-white);
  background: var(--ffch-forest);
}


/* =========================
   Submenu
========================= */

.ffch .ffch-header-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  color: var(--ffch-ink);
  background: rgba(255,254,254,.99);

  border-top: 1px solid rgba(135,126,118,.1);
  border-bottom: 1px solid var(--ffch-line);

  box-shadow: 0 10px 22px rgba(35,31,29,.08);
}

.ffch .ffch-header-submenu-inner {
  width: min(
    calc(100% - (var(--ffch-gutter) * 2)),
    var(--ffch-content)
  );

  min-height: 54px;
  margin: 0 auto;
  padding: 0;
}

.ffch .ffch-header-submenu-heading,
.ffch .ffch-header-submenu-close {
  display: none;
}

.ffch .ffch-header-submenu-links {
  min-height: 54px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.ffch .ffch-header-submenu-link {
  position: relative;
  min-height: 54px;

  padding: 0 clamp(20px, 2.25vw, 36px);

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

  color: #514944;
  background: transparent;

  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .045em;

  transition: color .2s;
}

.ffch .ffch-header-submenu-link + .ffch-header-submenu-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--ffch-line);
}

.ffch .ffch-header-submenu-link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 10px;
  height: 1px;
  background: var(--ffch-wine);
  transition: left .2s, right .2s;
}

.ffch .ffch-header-submenu-link:hover,
.ffch .ffch-header-submenu-link:focus-visible {
  color: var(--ffch-wine);
}

.ffch .ffch-header-submenu-link:hover::after,
.ffch .ffch-header-submenu-link:focus-visible::after {
  left: clamp(20px, 2.25vw, 36px);
  right: clamp(20px, 2.25vw, 36px);
}

.ffch .ffch-header-submenu-link b {
  display: none;
}