@charset "UTF-8";
/*
固定ページ用（汎用）scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run watch
*/
.section .post-nav__item, .slider2 .card {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  box-shadow: 0px 0px 19px 0px #cecece;
  border-radius: 10px;
  overflow: hidden;
  font-weight: 500;
}

/*
固定ページ用（汎用）scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run watch
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.15rem;
  margin: 0;
  color: #333;
  background-color: #FFF;
  line-height: 1.7;
  overflow: auto;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    letter-spacing: 0.05rem;
  }
}
body.is-scroll-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
}

h1 {
  font-size: 32px;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
}

h2 {
  font-size: 28px;
}
@media (max-width: 1024px) {
  h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-size: 24px;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 16px;
}
@media (max-width: 1024px) {
  h4 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  h4 {
    font-size: 13px;
  }
}

h5 {
  font-size: 16px;
}
@media (max-width: 1024px) {
  h5 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  h5 {
    font-size: 13px;
  }
}

p {
  font-size: 16px;
}
@media (max-width: 1024px) {
  p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  p {
    font-size: 12px;
  }
}
p {
  line-height: 3rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  p {
    line-height: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.page-id-95 h3, .page-id-106 h3 {
  background-color: transparent;
}

/* セクション共通 */
.section {
  padding: 4rem 1rem;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .section {
    padding: 2.5rem 1rem;
  }
}
.section__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section__deco {
  position: absolute;
  z-index: -1;
}

/* =========================
   Headings (Gutenberg)
   ========================= */
:root {
  /* ここはテーマの設計に合わせて調整 */
  --heading-font: var(v.$font-base, "Zen Maru Gothic", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif);
  --heading-color: var(v.$color-text, #111);
  --heading-line: 1.25;
  --heading-letter: 0.02em;
  --h1: clamp(1.9rem, 1.35rem + 1.8vw, 2.8rem);
  --h2: clamp(1.6rem, 1.2rem + 1.2vw, 2.2rem);
  --h3: clamp(1.35rem, 1.05rem + 0.9vw, 1.8rem);
  --h4: clamp(1.15rem, 1.0rem + 0.5vw, 1.4rem);
  --h5: clamp(1.05rem, 0.95rem + 0.3vw, 1.2rem);
  --heading-mt: 2.2em;
  --heading-mb: 0.8em;
  /* 装飾用（ブランド色に寄せてOK） */
  --accent: v.$color-brand;
  --muted: rgba(0,0,0,.08);
}

/* WPブロックの見出しにも確実に当たるように */
:where(h1, h2, h3, h4, h5, .wp-block-heading) {
  font-family: var(--heading-font);
  color: var(--heading-color);
  line-height: var(--heading-line);
  letter-spacing: var(--heading-letter);
  font-weight: 700;
  margin: var(--heading-mt) 0 var(--heading-mb);
  scroll-margin-top: 110px; /* 固定ヘッダーがあるサイト向け */
}

/* 見出し直後の余白を少し詰める（読みやすさ） */
:where(h1, h2, h3, h4, h5) + :where(p, ul, ol, .wp-block-image, .wp-block-columns) {
  margin-top: 0.6em;
}

/* -------------------------
    デザイン差分（見出しごとの“らしさ”）
    ------------------------- */
/* H1：ページの主役。下に細いライン */
/* H2：セクション見出し。左にアクセントバー */
/* H3：小見出し。下に点線 */
/* H4：ラベル感。背景で薄く面を作る */
/* H5：控えめ。大文字化などは避け、字間だけ少し */
/* モバイルで余白を少し圧縮 */
@media (max-width: 600px) {
  :root {
    --heading-mt: 1.8em;
    --heading-mb: 0.7em;
  }
}
/*
固定ページ用（汎用）scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run watch
*/
/*=============================
共通スタイル
=============================*/
/* 画面リーダー用テキスト非表示クラス */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* WIDEのみ非表示 */
.hide-wide {
  display: none;
}
@media (max-width: 1024px) {
  .hide-wide {
    display: auto;
  }
}

/* PCのみ非表示 */
@media (min-width: 769px) and (max-width: 1024px) {
  .hide-pc {
    display: none !important;
  }
}

/* タブレットのみ非表示 */
@media (min-width: 601px) and (max-width: 768px) {
  .hide-tab {
    display: none !important;
  }
}

/* スマホのみ非表示 */
@media (max-width: 600px) {
  .hide-sp {
    display: none !important;
  }
}

/* スマホのみ改行 */
br.sp {
  display: none;
}
@media (max-width: 600px) {
  br.sp {
    display: inline;
  }
}

/* ボタン共通スタイル */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 3.7rem 0.6rem 2.7rem;
  font-size: 0.95rem;
  border-radius: 10px;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.1s ease-out;
  text-decoration: none;
  position: relative;
  line-height: 2rem;
}
@media (max-width: 768px) {
  .btn {
    font-size: 0.75rem;
  }
}
.btn--primary, .btn--primary-large {
  background-color: #0b2520;
  border-color: #0b2520;
  color: #fff;
}
.btn--primary::after, .btn--primary-large::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border: solid 1px #fff;
  border-bottom: unset;
  border-left: unset;
  right: 2rem;
  transform: rotate(45deg);
  transition: 0.2s ease-out;
}
.btn--primary:hover::after, .btn--primary-large:hover::after {
  transform: rotate(45deg) translate(0.3rem, -0.3rem);
}
.btn--primary-large {
  display: block;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 1.3rem;
}
.btn--outline {
  background-color: #fff;
  border-color: #0b2520;
  color: #0b2520;
}
.btn--outline::after {
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border: solid 1px #0b2520;
  border-bottom: unset;
  border-left: unset;
  right: 2rem;
  transform: rotate(45deg);
  transition: 0.2s ease-out;
}
.btn--outline:hover::after {
  transform: rotate(45deg) translate(0.3rem, -0.3rem);
}
/* icon(svg) */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  color: #fff;
  fill: #fff;
}

/* リンクアイコン */
.link-icon::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../assets/images/icon/link-icon.jpg");
}

/*=============================
画像スライダー タイプ1（左流れ・エンドレス）
=============================*/
.slider1 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.slider1__track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
}
.slider1__picture {
  position: relative;
  flex: 0 0 100%;
  display: block;
  width: 100%;
  height: 100%;
}
.slider1__picture source,
.slider1__picture img {
  display: block;
}
.slider1__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider1__footer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.slider1__prev, .slider1__next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 60px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}
.slider1__prev:active, .slider1__next:active {
  background-color: rgba(0, 0, 0, 0.4941176471);
}
.slider1__prev .icon, .slider1__next .icon {
  display: none;
}
.slider1__prev {
  left: 0;
}
.slider1__next {
  right: 0;
}
.slider1__fraction {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}
.slider1__fraction span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
}
.slider1__fraction span.is-active {
  width: 22px;
  border-radius: 999px;
  background: #fff;
}

/*=============================
画像スライダー タイプ2（左流れ・前後ボタン）
=============================*/
.slider2 {
  position: relative;
  overflow: visible;
  width: 100%;
}
.slider2__track {
  overflow: visible;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .slider2__track {
    width: calc(100% - 60px);
  }
}
.slider2__rail {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
  align-items: center;
}
.slider2 .card {
  flex: 0 0 calc((100% - 24px * 2) / 3);
  width: calc((100% - 24px * 2) / 3);
  overflow: hidden;
}
@media (max-width: 600px) {
  .slider2 .card {
    flex-basis: 100%;
    width: 100%;
  }
}
.slider2 .card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}
.slider2 .card__thumb source,
.slider2 .card__thumb img {
  display: block;
}
.slider2 .card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider2 .card__body {
  padding: 1rem 0;
}
.slider2 .card__meta {
  font-size: 1rem;
  font-weight: 600;
}
.slider2__footer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.slider2__prev, .slider2__next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 50px;
  z-index: 2;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: #0b2520;
  cursor: pointer;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .slider2__prev, .slider2__next {
    width: 40px;
    height: 40px;
  }
}
.slider2__prev:active, .slider2__next:active {
  background-color: rgba(0, 0, 0, 0.4941176471);
}
.slider2__prev icon, .slider2__next icon {
  width: 33.33%;
  height: 33.33%;
}
.slider2__prev {
  left: 10px;
}
@media (max-width: 768px) {
  .slider2__prev {
    left: 0px;
  }
}
.slider2__next {
  right: 10px;
}
@media (max-width: 768px) {
  .slider2__next {
    right: 0px;
  }
}
.slider2__next .icon {
  transform: rotate(180deg);
}
.slider2__fraction {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slider2__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(11, 37, 32, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider2__dot.is-active {
  width: 24px;
  border-radius: 999px;
  background: #0b2520;
}

/*=============================
template-parts/components/
=============================*/
/* page-header.php */
.page-header .breadcrumb {
  position: absolute;
  bottom: 100%;
  left: 2em;
  width: 100%;
}
.page-header .breadcrumb__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  font-size: 1rem;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  .page-header .breadcrumb__list {
    font-size: 0.85rem;
  }
}
.page-header .breadcrumb__link::after, .page-header .breadcrumb__current:not(:last-child)::after {
  content: " / ";
  margin-left: 0.2rem;
}
.page-header__inner {
  max-width: 1280px;
  margin: 8em auto;
  position: relative;
  padding: 0 2em;
}
@media (max-width: 768px) {
  .page-header__inner {
    margin-bottom: 4em;
  }
}

/*
固定ページ用（汎用）scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run watch
*/
.site-header {
  width: 100%;
  position: relative;
  top: 0;
  z-index: 100;
  background-color: transparent;
  transition: 0.5s ease;
}
.site-header.blur .site-header__inner::before {
  backdrop-filter: blur(8px);
  background-color: rgba(244, 239, 237, 0.25);
}
.site-header.blur .global-nav .menu-item a {
  color: #333 !important;
}
.site-header.blur .global-nav .menu-item a::after {
  background-color: #333 !important;
}
.site-header.blur .btn-hamburger span {
  background-color: #333;
}
.site-header.blur .btn-hamburger__label {
  color: #333;
}
.site-header__inner {
  background-color: #fff;
  padding: 0 76px 0 16px;
  height: 65px;
  width: 100vw;
  display: grid;
  grid-template-columns: 1fr 980px 1fr;
  position: fixed;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .site-header__inner {
    padding: 0 66px 0 16px;
    height: 55px;
    column-gap: 12px;
    justify-content: end;
  }
}
.site-header__inner::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
}
.site-header .site-branding {
  display: flex;
  align-items: center;
  min-width: 0;
}
@media (max-width: 768px) {
  .site-header .site-branding {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.site-header .site-branding a {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-header .site-branding .logo {
  height: 30px;
  width: 190px;
  transition: opacity 0.5s ease;
}
@media (max-width: 768px) {
  .site-header .site-branding .logo {
    height: 23px;
    width: 153px;
  }
}
.site-header .site-branding .logo use {
  color: #0b2520;
}
.site-header .global-nav {
  display: flex;
  justify-content: center;
}
@media (min-width: 1025px) and (max-width: 1280px) {
  .site-header .global-nav {
    justify-content: flex-end;
  }
}
.site-header .global-nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .global-nav .menu-item {
  position: relative;
}
.site-header .global-nav .menu-item a {
  display: inline-block;
  padding: 4px 0;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.5s ease;
}
.site-header .btn-hamburger {
  width: 40px;
  height: 48px;
  cursor: pointer;
  display: none;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s;
  box-sizing: border-box;
  position: fixed;
  top: 9px;
  right: 16px;
  z-index: 100000000;
}
@media (max-width: 768px) {
  .site-header .btn-hamburger {
    top: 3px;
    right: 13px;
  }
}
@media (max-width: 1024px) {
  .site-header .btn-hamburger {
    display: flex !important;
  }
}
.site-header .btn-hamburger:hover {
  opacity: 0.8;
}
.site-header .btn-hamburger:active {
  opacity: 0.6;
}
.site-header .btn-hamburger__inner {
  width: 18px;
  height: 16px;
  position: inherit;
  margin-bottom: 3px;
}
.site-header .btn-hamburger__label {
  font-size: 0.65rem;
  color: #333;
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translate(-50%, 0px);
  white-space: nowrap;
  transition: color 0.5s ease;
}
.site-header .btn-hamburger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 1px;
  transition: background-color 0.5s ease;
}
.site-header .btn-hamburger span:nth-of-type(1) {
  top: 0%;
  animation: bar1-animation 0.5s forwards;
}
.site-header .btn-hamburger span:nth-of-type(2) {
  top: 50%;
  animation: bar2-animation 0.5s forwards;
}
.site-header .btn-hamburger span:nth-of-type(3) {
  top: 100%;
  animation: bar3-animation 0.5s forwards;
}
.site-header .btn-hamburger.active .btn-hamburger__label {
  color: #333;
}
.site-header .btn-hamburger.active span:nth-of-type(1) {
  animation: active-bar1-animation 0.5s 0s forwards;
}
.site-header .btn-hamburger.active span:nth-of-type(2) {
  animation: active-bar2-animation 0.5s 0s forwards;
}
.site-header .btn-hamburger.active span:nth-of-type(3) {
  animation: active-bar3-animation 0.5s 0s forwards;
}
@keyframes bar1-animation {
  0% {
    top: 50%;
    transform: rotate(-45deg);
  }
  50% {
    top: 50%;
    transform: rotate(0);
  }
  100% {
    top: 0%;
    transform: rotate(0);
  }
}
@keyframes bar2-animation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bar3-animation {
  0% {
    top: 50%;
    transform: rotate(45deg);
  }
  50% {
    top: 50%;
    transform: rotate(0);
  }
  100% {
    top: 100%;
    transform: rotate(0);
  }
}
@keyframes active-bar1-animation {
  0% {
    top: 0%;
    transform: rotate(0);
  }
  50% {
    top: 50%;
    transform: rotate(0);
  }
  100% {
    top: 50%;
    transform: rotate(-45deg);
  }
}
@keyframes active-bar2-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes active-bar3-animation {
  0% {
    top: 100%;
    transform: rotate(0);
  }
  50% {
    top: 50%;
    transform: rotate(0);
  }
  100% {
    top: 50%;
    transform: rotate(45deg);
  }
}
.site-header .global-modal {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: opacity 0.2s ease;
  overflow: hidden;
}
.site-header .global-modal.active {
  visibility: visible;
  opacity: 1;
}
.site-header .global-modal.active .global-modal__container {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.site-header .global-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
}
.site-header .global-modal__container {
  opacity: 0;
  position: relative;
  text-align: center;
  z-index: 2;
  transform: translateY(-10px);
}
@media (max-width: 768px) {
  .site-header .global-modal__container {
    height: 100dvh;
    width: 100vw;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 24px;
  }
}
.site-header .global-modal .global-modal__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 48px;
}
@media (max-width: 900px) {
  .site-header .global-modal .global-modal__menu {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.site-header .global-modal .global-modal__menu > .menu-item > a {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.9;
  color: #454545;
  text-decoration: none;
}
.site-header .global-modal .global-modal__menu .sub-menu {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.site-header .global-modal .global-modal__menu .sub-menu li {
  margin-top: 10px;
}
.site-header .global-modal .global-modal__menu .sub-menu a {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #333;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.site-header .global-modal .global-modal__menu .sub-menu a:hover {
  opacity: 0.65;
  transform: translateX(2px);
}

/*
固定ページ用（汎用）scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run watch
*/
.section {
  padding-top: 0px;
}
.section .post-eyecatch {
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section .post-eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.section .post-nav {
  margin-top: 48px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .section .post-nav {
    grid-template-columns: 1fr;
  }
}
.section .post-nav__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  padding: 16px;
}
.section .post-nav__thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
}
.section .post-nav__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section .post-nav__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.section .post-nav__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.5);
}
.section .post-nav__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.85);
}
.section .post-nav:has(.post-nav__item:only-child) {
  justify-content: center;
}

/*
固定ページ用（汎用）scssファイル

    （コンパイルコマンド）npm run sass
    （監視用コマンド）npm run watch
*/
.site-footer {
  overflow: hidden;
  position: relative;
  background-color: #0b2520;
}
.site-footer__inner {
  position: relative;
  max-width: 768px;
  margin: 0 auto;
  color: #333;
  padding: 1rem 1rem 3rem 1rem;
  display: grid;
  grid-template-areas: "a" "b" "c";
  grid-template-columns: 1fr;
}
@media (max-width: 768px) {
  .site-footer__inner {
    padding-bottom: 6rem;
  }
}
.site-footer__inner .site-branding {
  grid-area: a;
  display: flex;
  justify-content: center;
}
.site-footer__inner .site-branding svg {
  color: #fff;
  fill: #fff;
}
@media (max-width: 768px) {
  .site-footer__inner .site-branding svg {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 8/3;
  }
}
.site-footer__inner .footer-nav {
  grid-area: b;
}
@media (max-width: 768px) {
  .site-footer__inner .footer-nav {
    max-width: 400px;
    margin: 0 auto;
  }
}
.site-footer__inner .footer-nav .menu {
  list-style: none;
  padding: 0px;
  font-size: 1rem;
  font-weight: normal;
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 768px) {
  .site-footer__inner .footer-nav .menu {
    font-size: 0.85rem;
    justify-content: space-between;
  }
}
.site-footer__inner .footer-nav .menu .menu-item {
  margin-bottom: 1rem;
  min-width: 33.33%;
  color: #fff;
  text-align: center;
}
.site-footer__inner .footer-nav .menu .menu-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.site-footer__inner .sns {
  grid-area: c;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.site-footer__inner .sns .icon {
  width: 2rem;
  height: 2rem;
}
.site-footer__inner .policy {
  font-size: 0.77rem;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
}
@media (max-width: 768px) {
  .site-footer__inner .policy {
    font-size: 0.8rem;
  }
}
.site-footer__inner .policy a {
  display: flex;
}
.site-footer__inner .copy {
  font-size: 0.77rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: #fff;
}
@media (max-width: 768px) {
  .site-footer__inner .copy {
    font-size: 0.7rem;
  }
}

/*# sourceMappingURL=page.css.map */
