@charset "UTF-8";
/*===================================================
 style.scss
 各パーツscssの定義
================================================== */
/* --------------------------------------------------
 configファイル 
-------------------------------------------------- */
/* ===================================================
 _reset.scss
 A Modern CSS Resetの定義
 https://coliss.com/articles/build-websites/operation/css/css-reset-for-modern-browser.html
================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*===================================================
 _settings.scss
 WordPressテーマ定義用scss
================================================== */
/*
Theme Name: Cafe Mitake
Author: Yukuro
Version: 1.0
*/
/*===================================================
 _function.scss
 関数定義ファイル
================================================== */
/* //////////// 変数読み込み(割り算使用のための読み込み) //////////// */
/* --------------------------------------------------
  clamp() 文字サイズ調整の関数定義
-------------------------------------------------- */
/* --------------------------------------------------
  rem単位をpx感覚で使用する関数
-------------------------------------------------- */
/*===================================================
 _variables.scss
 共通使用変数
================================================== */
/* --------------------------------------------------
 ##### Color  #####

 Site-Color サイトカラー
-------------------------------------------------- */
/* --------------------------------------------------
 Font-Color　フォントカラー
-------------------------------------------------- */
/* --------------------------------------------------
 Border-Color　ボーダーカラー
-------------------------------------------------- */
/* --------------------------------------------------
 Border-Color　ホバーカラー
-------------------------------------------------- */
/* --------------------------------------------------
 shadow 影
-------------------------------------------------- */
/* --------------------------------------------------
 Other　その他カラー
-------------------------------------------------- */
/* --------------------------------------------------
 ##### Font #####

 Font-Family 游ゴシック
-------------------------------------------------- */
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-optical-sizing: auto;
  font-style: normal;
}

/* ##### Chivo Googleフォント ##### */
/* --------------------------------------------------
 Heading-size 見出しフォントサイズ
-------------------------------------------------- */
/* --------------------------------------------------
 base-size 基本フォントサイズ
-------------------------------------------------- */
/*===================================================
 _mq.scss
 メディアクエリ定義
================================================== */
/* ⬇︎ PC / SP指定の非表示 ====================== */
@media screen and (min-width: 1025px) {
  .is-pc {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .is-tab {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-sp {
    display: none;
  }
}

/* --------------------------------------------------
 mixinファイル 
-------------------------------------------------- */
/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 mixin.scss
 mixin要素の定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 最大コンテンツ画面幅の定義
-------------------------------------------------- */
/* --------------------------------------------------
 テキスト最大画面幅の定義
-------------------------------------------------- */
/* --------------------------------------------------
 テキストリンク 矢印の定義
-------------------------------------------------- */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 アニメーションの全体的なデフォルト値を設定
-------------------------------------------------- */
/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* --------------------------------------------------
 mixinファイル 
-------------------------------------------------- */
/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 keyframe.scss
 Keyframeの関数定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 moduleファイル 
-------------------------------------------------- */
/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 heading.scss
 見出しの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 キャプチャ用見出しの定義
-------------------------------------------------- */
.heading {
  display: flex;
  align-items: center;
  gap: 32px;
}
.heading__border {
  width: 160px;
  height: 1px;
  background-color: #edeae5;
}
.heading__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.heading__text {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 1.7rem);
  color: #edeae5;
}
.heading__text--sub {
  font-weight: 300;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}
.heading--article {
  top: 40%;
}
@media screen and (max-width: 1024px) {
  .heading--article {
    top: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .heading {
    width: 100%;
    padding-left: 32px;
  }
  .heading__border {
    width: 80px;
  }
  .heading__text {
    font-size: 20px;
  }
  .heading__text--sub {
    font-weight: 300;
    font-size: 0.875rem;
  }
}

/* --------------------------------------------------
 ビジュアル用見出し
-------------------------------------------------- */
.top-visual, .visual-capture {
  position: relative;
}
.top-visual .visual-heading, .visual-capture .visual-heading {
  position: absolute;
  width: 240px;
  top: 50%;
  left: 56%;
  transform: translate(-56%, -50%);
  height: 100%;
  background-color: rgba(253, 255, 252, 0.25);
  display: table;
  font-family: "Source Serif 4", serif;
}
@media screen and (max-width: 767px) {
  .top-visual .visual-heading, .visual-capture .visual-heading {
    width: 200px;
  }
}
.top-visual .visual-heading--center, .visual-capture .visual-heading--center {
  left: 43%;
  transform: translate(-43%, -50%);
}
.top-visual .visual-heading--page, .visual-capture .visual-heading--page {
  left: 50%;
  transform: translate(-50%, -50%);
}
.top-visual .visual-heading__inner, .visual-capture .visual-heading__inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0 16px;
}
.top-visual .visual-heading__main, .visual-capture .visual-heading__main {
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 1.7rem);
  display: block;
  color: #edeae5;
  border-top: 1px solid #edeae5;
  padding-top: 16px;
}
@media screen and (max-width: 767px) {
  .top-visual .visual-heading__main, .visual-capture .visual-heading__main {
    padding-top: 8px;
  }
}
.top-visual .visual-heading__sub, .visual-capture .visual-heading__sub {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 300;
  display: block;
  color: #edeae5;
  padding-bottom: 16px;
  border-bottom: 1px solid #edeae5;
}
@media screen and (max-width: 767px) {
  .top-visual .visual-heading__sub, .visual-capture .visual-heading__sub {
    padding-bottom: 8px;
  }
}

/* --------------------------------------------------
 キャプチャ背景なし見出しの定義
-------------------------------------------------- */
.section-heading {
  width: 240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 16px;
  border-top: 1px solid #4a5733;
  border-bottom: 1px solid #4a5733;
  margin-bottom: 32px;
  font-family: "Source Serif 4", serif;
}
.section-heading__main {
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 1.7rem);
  color: #4a5733;
}
.section-heading__sub {
  font-weight: 300;
  color: #4a5733;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
@media screen and (max-width: 1024px) {
  .section-heading__border {
    width: 80px;
  }
}

/* --------------------------------------------------
 コンテンツラベルの定義
-------------------------------------------------- */
.contents-title {
  display: flex;
  align-items: center;
  color: #4a5733;
  font-family: "Source Serif 4", serif;
}
.contents-title__main {
  font-size: clamp(1.25rem, 1.205rem + 0.23vw, 1.375rem);
  font-weight: 900;
  text-align: center;
  padding-right: 8px;
  position: relative;
}
.contents-title__sub {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 300;
  padding-left: 24px;
  position: relative;
}
.contents-title__sub::before {
  content: "";
  width: 16px;
  height: 1px;
  transform: rotate(-45deg);
  background-color: #4a5733;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .contents-title {
    margin-bottom: 32px;
  }
}
.contents-title--menu {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .contents-title--menu {
    position: static;
    transform: none;
    margin-bottom: 24px;
  }
}

/* --------------------------------------------------
 タイトルラベルの定義
-------------------------------------------------- */
.title-label {
  position: relative;
  padding-left: 80px;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  color: #4a5733;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .title-label {
    padding-left: 64px;
    margin-bottom: 24px;
  }
}
.title-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 56px;
  height: 1px;
  background-color: #aaa;
}
@media screen and (max-width: 767px) {
  .title-label::before {
    width: 48px;
  }
}
.title-label__sub {
  font-size: 1rem;
  margin-left: 16px;
  font-weight: 300;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 button.scss
 ボタンの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 Primary-buttonの定義
-------------------------------------------------- */
.primary-btn {
  width: 240px;
  height: 64px;
  line-height: 64px;
  margin: 0 auto;
  position: relative;
  font-family: "Source Serif 4", serif;
}
.primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 2px;
  background-color: #4a5733;
}
.primary-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 240px;
  height: 2px;
  background-color: #4a5733;
}
.primary-btn:hover::after {
  opacity: 0.6;
}
.primary-btn:hover::before {
  opacity: 0.6;
}
.primary-btn__link {
  padding-right: 0;
  position: relative;
  color: #4a5733;
  font-weight: 600;
  transition: 0.3s;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  text-align: center;
}
.primary-btn__link::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 16px;
  transform: rotate(30deg);
  width: 12px;
  height: 1px;
  background-color: #4a5733;
  transition: 0.3s;
}
.primary-btn__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background-color: #4a5733;
  transition: 0.3s;
}
.primary-btn__link:hover {
  opacity: 0.6;
}
.primary-btn__link:hover::before {
  right: 8px;
}
.primary-btn__link:hover::after {
  right: 8px;
}

/* --------------------------------------------------
 お問い合わせフォームボタンのスタイリング
-------------------------------------------------- */
.form-btn {
  width: 240px;
  height: 56px;
  background-color: #4a5733;
  cursor: pointer;
  color: #edeae5;
  border: none;
  transition: 0.3s;
}
.form-btn:hover {
  opacity: 0.6;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 link.scss
 リンクテキストの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.link {
  font-size: 0.875rem;
  text-align: right;
}
.link--mitake {
  text-align: left;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .link--mitake {
    flex-direction: column;
  }
}
.link__text {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  color: #3a3e33;
  outline: none;
  margin-right: 40px;
  font-weight: 600;
}
.link__text::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 15%;
  width: 85%;
  height: 1px;
  background: #3a3e33;
  transition: all 0.3s;
}
.link__text::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 15px;
  height: 1px;
  background-color: #3a3e33;
  transform: rotate(35deg);
  transition: all 0.3s;
}
.link__text:hover {
  color: #aaa;
}
.link__text:hover::before {
  left: 20%;
}
.link__text:hover::after {
  right: -5%;
}
.link__text--mitake {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .link__text--mitake {
    margin-bottom: 16px;
  }
  .link__text--mitake:last-child {
    margin-bottom: 0;
  }
}

.text-link {
  padding-bottom: 2px;
  border-bottom: 1px solid #4a5733;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Source Serif 4", serif;
}
.text-link__link-text {
  padding-right: 48px;
  position: relative;
  color: #4a5733;
  display: inline-block;
  transition: 0.3s;
}
.text-link__link-text::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  transform: rotate(30deg);
  width: 12px;
  height: 1px;
  background-color: #4a5733;
  transition: 0.3s;
}
.text-link__link-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background-color: #4a5733;
  transition: 0.3s;
}
.text-link__link-text:hover {
  opacity: 0.6;
}
.text-link__link-text:hover::before {
  right: -8px;
}
.text-link__link-text:hover::after {
  right: -8px;
}
.text-link__pdf {
  position: relative;
  padding-right: 24px;
  color: #4a5733;
  transition: 0.3s;
  display: block;
}
.text-link__pdf::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 25%;
  right: 0;
  background-image: url("../../../assets/images/icon/ico_pdf.svg");
  background-repeat: no-repeat;
}
.text-link__pdf:hover {
  opacity: 0.6;
}
.text-link__pdf:hover::before {
  opacity: 0.6;
}
.text-link__external-link {
  position: relative;
  padding-right: 24px;
  color: #4a5733;
  transition: 0.3s;
  display: block;
}
.text-link__external-link::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 30%;
  right: 0;
  background-image: url("../../../assets/images/icon/ico_external-link.svg");
  background-repeat: no-repeat;
  background-size: 12px;
}
.text-link__external-link:hover {
  opacity: 0.6;
}
.text-link__external-link:hover::before {
  opacity: 0.6;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 pagination.scss
 ページネーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.pagination__list {
  margin: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .pagination__list {
    gap: 4px;
  }
}
.pagination__list a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid #aaa;
  color: #4a5733;
  transition: 0.3s;
  font-size: 0.875rem;
}
.pagination__list a:hover {
  background-color: #4a5733;
  opacity: 0.6;
  color: #edeae5;
}
@media screen and (max-width: 767px) {
  .pagination__list a:nth-child(4) {
    display: none;
  }
  .pagination__list a:nth-child(6) {
    display: none;
  }
}
.pagination__list .current {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: #4a5733;
  color: #edeae5;
}
.pagination__list .prev, .pagination__list .next {
  width: 80px;
  height: 48px;
}
@media screen and (max-width: 767px) {
  .pagination__list .prev, .pagination__list .next {
    width: 64px;
  }
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 tab.scss
 タブメニューの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 タブメニューのスタイリング
-------------------------------------------------- */
.tab {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .tab {
    flex-wrap: wrap;
    gap: 8px 0;
  }
}
.tab__item {
  flex-grow: 1;
  padding-bottom: 5px;
  list-style: none;
  border-bottom: solid 1px #aaa;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}
.tab__item.is-active {
  padding-bottom: 4px;
  color: #4a5733;
  font-weight: 600;
  border-bottom: 2px solid #4a5733;
  filter: invert(28%) sepia(51%) saturate(324%) hue-rotate(40deg) brightness(96%) contrast(90%);
  cursor: default;
}
@media screen and (max-width: 767px) {
  .tab__item {
    width: 100%;
    padding-top: 8px;
  }
}
.tab__icon {
  width: 18px;
  height: 18px;
  margin-right: 16px;
  filter: invert(69%) sepia(4%) saturate(6%) hue-rotate(353deg) brightness(99%) contrast(89%);
}
@media screen and (max-width: 767px) {
  .tab__icon {
    margin-right: 8px;
  }
}
.tab__panel {
  display: none;
}
.tab__panel.is-active {
  display: block;
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

/* --------------------------------------------------
 mixinファイル 
-------------------------------------------------- */
/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 catch-copy.scss
 ビジュアルキャッチコピーの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.catch-copy {
  max-width: 1152px;
  margin: 0 auto;
  height: 70%;
  position: relative;
}
.catch-copy__catch-text {
  font-size: clamp(1.5rem, 1.136rem + 1.82vw, 2.5rem);
  font-family: "Source Serif 4", serif;
  color: #edeae5;
  position: absolute;
  top: 50%;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .catch-copy__catch-text {
    padding: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .catch-copy__catch-text {
    padding: 0 16px;
  }
}
.catch-copy__text-top {
  display: block;
  margin-right: 256px;
}
@media screen and (max-width: 1024px) {
  .catch-copy__text-top {
    margin-right: 112px;
  }
}
@media screen and (max-width: 767px) {
  .catch-copy__text-top {
    margin-right: 48px;
  }
}
.catch-copy__text-bottom {
  text-align: right;
  display: block;
}
.catch-copy .js-textanime span {
  opacity: 0;
}
.catch-copy .js-textanime.appeartext span {
  animation: text_anime_on 1.5s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 slider.scss
 カルーセルスライダーの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 スライドパーツ カスタマイズ
-------------------------------------------------- */
.slick-next {
  right: 0 !important;
}
.slick-next::before {
  color: #4a5733 !important;
  font-size: 24px !important;
  line-height: 1;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
}

.slick-prev {
  padding: 8px;
  left: 0 !important;
}
.slick-prev::before {
  color: #4a5733 !important;
  font-size: 24px !important;
  line-height: 1;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
}

.dots-class {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.dots-class button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.dots-class li {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  border: 1px solid #aaa;
}
.dots-class .slick-active {
  background-color: #4a5733;
  border: none;
}

.slick-arrow {
  z-index: 2 !important;
}

/* --------------------------------------------------
 mixinファイル 
-------------------------------------------------- */
/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 desc-card.scss
 トップページのスタイリング
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 index.html / mitake.html テキストボックスの定義
-------------------------------------------------- */
.desc-card {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .desc-card {
    flex-direction: column;
  }
}
.desc-card__item {
  padding: 12px 12px;
  background-color: #edeae5;
  margin-right: 16px;
  position: relative;
  border-radius: 2px;
}
.desc-card__item:nth-child(n+2)::before {
  content: "";
  width: 16px;
  height: 2px;
  background-color: #aaa;
  position: absolute;
  top: 50%;
  left: -16px;
}
@media screen and (max-width: 1024px) {
  .desc-card__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }
  .desc-card__item:nth-child(n+2)::before {
    content: "";
    width: 2px;
    height: 16px;
    background-color: #aaa;
    position: absolute;
    top: -16px;
    left: 50%;
  }
  .desc-card__item:last-child {
    margin-bottom: 0;
  }
}
.desc-card__text {
  font-size: 0.875rem;
  letter-spacing: 0;
  font-weight: 600;
}
.desc-card__text--f-small {
  font-weight: 300;
}
.desc-card__text--single-text {
  line-height: 42px;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 contact.scss
 お問い合わせのスタイリング
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 入力フォームのスタイリング
-------------------------------------------------- */
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.form__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form__item:last-child {
  margin-bottom: 24px;
}
.form__label p {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.form__required-text {
  margin-left: 16px;
  font-size: 0.875rem;
  color: #f24343;
}
.form input, .form textarea {
  width: 440px;
  outline: none;
  padding: 16px;
  font-size: 0.875rem;
  border: 1px solid #aaa;
  background-color: inherit;
}
@media screen and (max-width: 767px) {
  .form input, .form textarea {
    width: 100%;
  }
}
.form .wpcf7-list-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #4a5733;
}
.form .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.form .wpcf7-list-item a {
  display: inline-block;
  color: #4a5733;
  border-bottom: 1px solid #4a5733;
  transition: 0.3s;
}
.form .wpcf7-list-item a:hover {
  opacity: 0.6;
}
.form input[type=submit] {
  display: block;
  background-color: #4a5733;
  color: #edeae5;
  width: 240px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}
.form input[type=submit]:hover {
  opacity: 0.6;
}
.form .wpcf7-not-valid {
  border: 1px solid #f24343;
}
.form .wpcf7-not-valid-tip {
  font-size: 0.875rem;
}
.form__btn {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form {
    justify-content: center;
  }
  .form__item {
    width: 100%;
  }
  .form__label {
    align-items: center;
    text-align: left;
    gap: 8px;
    font-size: 0.875rem;
  }
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 pkz.scss
 パンくずリストの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.breadcrumb {
  padding: 16px 0;
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    padding: 16px 32px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 16px;
  }
}
.breadcrumb__list {
  max-width: 992px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  overflow-x: auto;
  word-break: keep-all;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .breadcrumb__list {
    overflow-x: auto;
    word-break: keep-all;
    white-space: nowrap;
    padding-bottom: 4px;
  }
  .breadcrumb__list::-webkit-scrollbar {
    width: 8px;
    height: 6px;
  }
  .breadcrumb__list::-webkit-scrollbar-track {
    border: 1px solid #aaa;
    border-radius: 8px;
  }
  .breadcrumb__list::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 8px;
  }
}
.breadcrumb span {
  font-size: 0.875rem;
  margin-right: 12px;
}
.breadcrumb span:nth-child(n+2) {
  margin-left: 12px;
}
.breadcrumb span:last-child {
  margin-right: 0;
}
.breadcrumb span a {
  color: #4a5733;
  border-bottom: 1px solid #4a5733;
  transition: 0.3s;
}
.breadcrumb span a:hover {
  opacity: 0.6;
}
.breadcrumb__link {
  color: #4a5733;
  border-bottom: 1px solid #aaa;
  transition: 0.3s;
}
.breadcrumb__link:hover {
  opacity: 0.6;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 prev-next.scss
 前後記事パーツのデザイン
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.prev-next {
  width: 100%;
  margin-bottom: 64px;
  display: flex;
  gap: 2px;
}
@media screen and (max-width: 1024px) {
  .prev-next {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 767px) {
  .prev-next {
    flex-wrap: wrap;
  }
}
.prev-next__item {
  width: 50%;
  background-color: #edeae5;
  padding: 16px;
  border-right: 2px solid #edeae5;
  transition: 0.3s;
}
.prev-next__item:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .prev-next__item {
    width: 100%;
    border-right: none;
    border-top: 2px solid #edeae5;
  }
}
.prev-next__label {
  margin-bottom: 8px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  position: relative;
}
.prev-next__label--prev {
  padding-left: 48px;
}
.prev-next__label--prev::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  transform: rotate(-30deg);
  width: 12px;
  height: 1px;
  background-color: #4a5733;
  transition: 0.3s;
}
.prev-next__label--prev::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background-color: #4a5733;
  transition: 0.3s;
}
.prev-next__label--next {
  text-align: right;
  padding-right: 48px;
}
.prev-next__label--next::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
  transform: rotate(30deg);
  width: 12px;
  height: 1px;
  background-color: #4a5733;
  transition: 0.3s;
}
.prev-next__label--next::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background-color: #4a5733;
  transition: 0.3s;
}
.prev-next__title {
  overflow: hidden;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 8px;
}
.prev-next__time {
  font-size: 0.875rem;
  color: #4a5733;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 fade.scss
 フェードインアニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 desc.scss
 説明文・テキストの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.desc__text {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  margin-bottom: 16px;
}
.desc__text:last-of-type {
  margin-bottom: 0;
}
.desc__text--bold {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 600;
}
.desc__text--large {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  font-family: "Source Serif 4", serif;
  font-weight: 600;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 blog-card.scss
 ブログカードの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.blog-card {
  display: flex;
  flex-direction: column;
  width: 336px;
  margin-right: 40px;
  overflow: hidden;
}
.blog-card:last-child {
  margin-right: 0;
}
.blog-card__info {
  display: flex;
  align-items: flex-end;
  margin-bottom: 8px;
}
.blog-card__time {
  color: #3a3e33;
}
.blog-card__time-year {
  font-size: 0.875rem;
  margin-right: 8px;
}
.blog-card__time-date {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.blog-card__category {
  margin-left: auto;
}
.blog-card__category a {
  font-size: 0.875rem;
  color: #3a3e33;
  position: relative;
  padding-left: 24px;
  transition: 0.3s;
}
.blog-card__category a::after {
  content: "";
  width: 17px;
  height: 14px;
  position: absolute;
  top: 15%;
  left: 0;
  background-image: url("../../../assets/images/icon/ico_folder.svg");
}
.blog-card__category a:hover {
  opacity: 0.6;
}
.blog-card__category a:hover::after {
  opacity: 0.6;
}
.blog-card__thumb {
  display: inline-block;
  margin-bottom: 16px;
}
.blog-card__title {
  overflow: hidden;
}
.blog-card__title-text {
  font-size: 0.875rem;
  font-weight: 300;
  color: #3a3e33;
  line-height: 1.125;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 1024px) {
  .blog-card {
    width: 240px;
    margin: 0 32px 16px 0;
  }
}
@media screen and (max-width: 767px) {
  .blog-card {
    width: 240px;
    margin: 0 32px 16px 0;
  }
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
  instagram.scss
 インスタグラムパーツの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.instagram__label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.instagram__icon {
  padding: 15px;
  border-radius: 50px;
  background-color: #323232;
}
.instagram__icon-img {
  width: 18px;
  height: 18px;
}
.instagram__account-name {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
}

/* --------------------------------------------------
  画像リスト
-------------------------------------------------- */
.instagram-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.instagram-list__item {
  max-width: 238px;
}
@media screen and (max-width: 1024px) {
  .instagram-list {
    gap: 8px;
    margin-bottom: 24px;
  }
  .instagram-list__item {
    width: calc(33.3333333333% - 8px);
  }
}
@media screen and (max-width: 767px) {
  .instagram-list {
    gap: 8px;
  }
  .instagram-list__item {
    width: calc(50% - 4px);
  }
}

.instagram-button {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.instagram-button__more {
  padding: 12px 16px;
  background-color: #323232;
  color: #edeae5;
  border: none;
  border-radius: 4px;
}
.instagram-button__follow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: #5F89C4;
  color: #edeae5;
  border: none;
  border-radius: 6px;
  justify-content: center;
}
.instagram-button__icon {
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 767px) {
  .instagram-button {
    flex-wrap: wrap;
    gap: 16px;
  }
  .instagram-button button {
    width: 100%;
  }
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 tag-list.scss
 ブログ記事タグ一覧の定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.tag-list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.tag-list a {
  padding-left: 16px;
  position: relative;
  font-size: 0.875rem;
  color: #4a5733;
  transition: 0.3s;
}
.tag-list a::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("../../../assets/images/icon/ico_tag.svg");
}
.tag-list a:hover {
  opacity: 0.6;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 tag-list.scss
 ブログ記事タグ一覧の定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
button {
  border: none;
  background-color: transparent;
}

.sns-share {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .sns-share {
    flex-wrap: wrap;
  }
}

.share-button {
  width: 160px;
  height: 48px;
  line-height: 48px;
  color: #edeae5;
  font-size: 0.875rem;
  transition: 0.3s;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .share-button {
    width: calc(50% - 16px);
  }
}
.share-button:hover {
  opacity: 0.8;
}
.share-button--x {
  background-color: #000000;
}
.share-button--facebook {
  background-color: #3975ea;
}
.share-button--pinterest {
  background-color: #ce2c2e;
}
.share-button--line {
  background-color: #50af46;
}
.share-button__inner {
  position: relative;
  padding-left: 16px;
  background-size: 14px 14px;
}
.share-button__inner--x {
  background-color: #000000;
  background-image: url("../../../assets/images/icon/ico_x.svg");
  background-repeat: no-repeat;
}
.share-button__inner--facebook {
  background-color: #3975ea;
  background-image: url("../../../assets/images/icon/ico_facebook.svg");
  background-repeat: no-repeat;
}
.share-button__inner--pinterest {
  background-color: #ce2c2e;
  background-image: url("../../../assets/images/icon/ico_pinterest.svg");
  background-repeat: no-repeat;
}
.share-button__inner--line {
  background-color: #50af46;
  background-size: 14px 14px;
  background-image: url("../../../assets/images/icon/ico_line-share.svg");
  background-repeat: no-repeat;
}
.share-button__inner::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 archive.scss
 アーカイブパーツの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.widgettitle {
  font-family: "Source Serif 4", serif;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 600;
}

.yearArchiveList {
  padding-left: 5px;
}

.yearArchiveList > li {
  border-bottom: dashed 1px #CCC;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.year:before {
  content: url("../../../assets/images/icon/ico_folder.scss");
  font-weight: 800;
  padding-right: 5px;
}

.year {
  cursor: pointer;
}

.eachYearOuter {
  display: none;
}

.eachYear {
  display: flex;
  flex-wrap: wrap;
}

.eachYear li {
  width: 90px;
  margin-bottom: 10px;
}

.yearArchiveList li {
  list-style-type: none;
}

.singleList {
  background-color: #E6E7EB;
  border: dotted 1px #E6E7EB;
  margin-right: 8px;
}

.singleList > a {
  color: #767376 !important;
  font-weight: bold;
  border-radius: 3px;
  text-decoration: none;
  padding-left: 8px;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 article.scss
 記事内容・パーツの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.article-main {
  /* --------------------------------------------------
   見出し
  -------------------------------------------------- */
  /* --------------------------------------------------
   テキスト / 引用
  -------------------------------------------------- */
  /* --------------------------------------------------
   テーブル / 定義リスト
  -------------------------------------------------- */
  /* --------------------------------------------------
   リスト
  -------------------------------------------------- */
  /* --------------------------------------------------
   画像 / カラム
  -------------------------------------------------- */
}
.article-main h2 {
  font-size: clamp(1.25rem, 1.205rem + 0.23vw, 1.375rem);
  padding: 12px;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  position: relative;
  margin: 56px 0 32px 0;
  color: #4a5733;
}
.article-main h2:first-child {
  margin-top: 0;
}
.article-main h2::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #aaa;
}
.article-main h2::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #aaa;
}
.article-main h3 {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  padding: 0 0 8px 8px;
  border-bottom: 1px solid #aaa;
  margin-bottom: 32px;
  color: #4a5733;
}
.article-main h4 {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  position: relative;
  padding-left: 8px;
  margin-bottom: 24px;
  color: #4a5733;
  border-left: 4px solid #4a5733;
}
.article-main p {
  margin-bottom: 8px;
}
.article-main p:last-child {
  margin-bottom: 0;
}
.article-main blockquote {
  border-left: 2px solid #aaa;
  padding-left: 8px;
  margin-bottom: 24px;
}
.article-main a {
  font-weight: 300;
}
.article-main .table-wrap {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .article-main .table-wrap {
    overflow-x: scroll;
  }
}
.article-main .table-wrap table {
  width: 100%;
  -webkit-border-horizontal-spacing: 1px;
  -webkit-border-vertical-spacing: 1px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .article-main .table-wrap table {
    width: 800px;
    overflow-x: scroll;
  }
}
.article-main .table-wrap table th {
  background-color: #edeae5;
}
.article-main .table-wrap table tr {
  height: 48px;
  border-bottom: 1px solid #aaa;
}
@media screen and (max-width: 767px) {
  .article-main .table-wrap table tbody {
    overflow-x: scroll;
  }
}
.article-main .table-wrap table tbody th {
  width: 160px;
  background-color: #edeae5;
}
.article-main .table-wrap table tbody td {
  padding: 0 8px;
}
.article-main .table-wrap table tbody td:first-of-type {
  width: 120px;
}
.article-main dl {
  margin-bottom: 32px;
}
.article-main dl dt {
  font-weight: 600;
}
.article-main dl dd {
  margin-bottom: 24px;
  padding-left: 16px;
  font-size: 0.875rem;
}
.article-main ul {
  margin-bottom: 32px;
  padding-left: 16px;
}
.article-main ul li {
  list-style-type: disc;
}
.article-main address {
  background-color: #edeae5;
  padding: 16px;
  font-style: normal;
}
.article-main img {
  margin-bottom: 32px;
}
.article-main .wp-block-columns {
  margin-bottom: 40px;
  display: flex;
  gap: 48px;
  align-items: center;
}
.article-main .wp-block-button__link {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em;
  padding: 16px;
  border-top: 2px solid #4a5733;
  border-bottom: 2px solid #4a5733;
  color: #4a5733;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-family: "Source Serif 4", serif;
}
.article-main img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
.article-main img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.article-main img.aligncenter {
  display: block;
  margin: 0 auto;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 blog.scss
 ブログページ・パーツの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 24px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 8px;
  }
}
.pagetop__link {
  display: block;
  background-color: #4a5733;
  text-align: center;
  color: #edeae5;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 4px;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.7;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .pagetop__link {
    font-size: 0.875rem;
    padding: 8px 12px;
  }
}
.pagetop__link:hover {
  opacity: 0.5;
}

/* --------------------------------------------------
 commonファイル
-------------------------------------------------- */
/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 header.scss
 ヘッダーの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 ヘッダーの指定
-------------------------------------------------- */
.header {
  width: 100%;
  height: 72px;
  background-color: #edeae5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header {
    height: 64px;
  }
}
.header__inner {
  max-width: 992px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 16px;
  }
}
.header__logo {
  width: 124px;
  height: 40px;
}
.header h1 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.25rem, 1.205rem + 0.23vw, 1.375rem);
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 footer.scss
 フッターの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.footer {
  background-color: #8E9F72;
}
.footer__wrapper {
  max-width: 400px;
  padding: 40px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .footer__wrapper {
    padding: 40px 48px;
  }
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    padding: 40px 16px;
  }
}
.footer__logo {
  width: 178px;
  height: 60px;
  margin: 0 auto 40px auto;
}
.footer .custom-logo {
  filter: brightness(0) saturate(100%) invert(93%) sepia(43%) saturate(1725%) hue-rotate(256deg) brightness(137%) contrast(131%);
}
.footer__nav {
  margin-bottom: 32px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.footer__menu a {
  display: inline-block;
  color: #edeae5;
  position: relative;
  padding-left: 24px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: 0.3s;
}
.footer__menu a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #edeae5;
}
.footer__menu a:hover {
  opacity: 0.6;
}
.footer__address {
  margin-bottom: 24px;
}
.footer__address-text {
  margin-bottom: 8px;
  color: #edeae5;
}
.footer__business-hours {
  margin-bottom: 40px;
}
.footer__bh-label {
  color: #edeae5;
  font-weight: 600;
}
.footer__bh-text {
  color: #edeae5;
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 0 32px;
  margin-bottom: 32px;
}
.footer__sns-icon {
  width: 40px;
  height: 40px;
  background-color: #4a5733;
  border-radius: 50px;
  position: relative;
}
.footer__sns-icon a {
  position: absolute;
  top: 50%;
  left: 53%;
  transform: translate(-50%, -50%);
}
.footer__copyright {
  text-align: center;
  color: #edeae5;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 nav.scss
 ナビゲーションメニューの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 グローバルナビゲーション
-------------------------------------------------- */
.g-nav__menu {
  display: flex;
  gap: 64px;
}
.g-nav__item {
  color: #4a5733;
  transition: 0.3s;
}
.g-nav__item:hover {
  opacity: 0.6;
}
.g-nav__item a {
  font-size: 0.875rem;
  color: #4a5733;
}
@media screen and (max-width: 767px) {
  .g-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(237, 234, 229, 0.9);
    font-size: 0.875rem;
    box-sizing: border-box;
    z-index: 3;
    padding-top: 64px;
    transition: 0.6s;
  }
  .g-nav.open {
    right: 0;
  }
  .g-nav__menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .g-nav__item a {
    margin-bottom: 24px;
  }
}

/* --------------------------------------------------
 モバイルボタン
-------------------------------------------------- */
.mobile-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .mobile-btn {
    display: block;
  }
}

.mobile-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  z-index: 10;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.5s;
}
.mobile-btn__border {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #4a5733;
  border-radius: 4px;
  transition: all 0.5s;
}
.mobile-btn__border:nth-child(1) {
  width: 100%;
  top: 0;
}
.mobile-btn__border:nth-child(2) {
  width: 80%;
  top: 10px;
}
.mobile-btn__border:nth-child(3) {
  width: 60%;
  top: 20px;
}
.mobile-btn .open span:nth-child(1) {
  background-color: #edeae5;
  top: 6px;
  transform: rotate(-45deg);
}
.mobile-btn .open span:nth-child(2), .mobile-btn .open span:nth-child(3) {
  top: 6px;
  background: #edeae5;
  transform: rotate(45deg);
}
.mobile-btn__text {
  position: absolute;
  top: 24px;
  font-size: 0.875rem;
  color: #4a5733;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 visual-capture.scss
 ページキャプチャの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 ビジュアルの定義
-------------------------------------------------- */
.visual-capture {
  width: 100%;
  height: 0;
  padding-top: 45%;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.visual-capture--menu {
  background-image: url("../../images/img/img_menu-capture.jpg");
}
.visual-capture--mitake {
  background-image: url("../../images/img/img_mitake-capture.jpg");
}
.visual-capture--blog {
  background-image: url("../../images/img/img_blog-capture.jpg");
}
.visual-capture--article {
  background-image: url("../../images/img/img_blog-capture.jpg");
  padding-top: 25%;
}
.visual-capture--page-404 {
  background-image: url("../../images/img/img_404page-bg.jpg");
}
.visual-capture .heading {
  position: absolute;
  top: 50%;
  left: 144px;
}
@media screen and (max-width: 767px) {
  .visual-capture {
    height: 320px;
  }
}
.visual-capture .attachment-post-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------
 ビジュアルスクロール固定の定義
-------------------------------------------------- */
.visual-fixed {
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: -1;
}
.visual-fixed__inner {
  max-width: 1152px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .visual-fixed__inner {
    padding: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .visual-fixed__inner {
    padding: 0 16px;
  }
}
.visual-fixed--about {
  background-image: url("../../images/img/img_about-capture.jpg");
}
.visual-fixed--menu {
  background-image: url("../../images/img/img_menu-capture.jpg");
}
.visual-fixed--mitake {
  background-image: url("../../images/img/img_mitake-capture.jpg");
}
.visual-fixed--blog {
  background-image: url("../../images/img/img_blog-capture.jpg");
}

.visual-title {
  max-width: 1152px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .visual-title {
    padding: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .visual-title {
    padding: 0 16px;
  }
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 sidebar.scss
 ベースCSSの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 ブログサイドナビ 共通
-------------------------------------------------- */
.sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .sidebar {
    width: 100%;
    gap: 24px;
  }
}
.sidebar .wp-block-heading {
  font-family: "Source Serif 4", serif;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 600;
}
.sidebar__box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar .cat-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.875rem;
}
.sidebar .cat-item a {
  color: #4a5733;
  padding: 0 8px 8px 8px;
  border-bottom: 1px solid #4a5733;
  transition: 0.3s;
}
.sidebar .cat-item a:hover {
  opacity: 0.6;
}

/* --------------------------------------------------
 pageファイル
-------------------------------------------------- */
/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 base.scss
 ベースCSSの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  box-sizing: border-box;
  background-color: #fdfffc;
  overflow-x: hidden;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: none;
  display: block;
}

p {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  color: #3a3e33;
}

ol {
  margin: 0;
}

.contents {
  max-width: 992px;
  margin: 0 auto;
  padding: 80px 0;
}
.contents--col {
  max-width: 992px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .contents--col {
    flex-wrap: wrap;
    gap: 48px;
  }
}
.contents--article {
  max-width: 768px;
}
.contents .contents-title {
  justify-content: center;
  margin-bottom: 32px;
}
.contents .desc {
  max-width: 992px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .contents {
    padding: 64px 32px;
  }
}
@media screen and (max-width: 767px) {
  .contents {
    padding: 64px 16px 64px 16px;
  }
}

.contents-top {
  padding-top: 64px;
}

/* --------------------------------------------------
 mixinファイル 
-------------------------------------------------- */
/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 top.scss
 トップページのスタイリング
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.top-mv {
  width: 100%;
  height: 100%;
  position: relative;
}
.top-mv::after {
  content: "";
  width: 100%;
  height: 99%;
  background-color: rgba(142, 159, 114, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}
.top-mv #wp-custom-header-video {
  width: 100%;
  height: 100%;
  z-index: 0;
  position: relative;
}
.top-mv #wp-custom-header-video .bg-img {
  width: 100%;
  height: 0;
  background-image: url("/assets/images/img/img_hero-capture.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 45%;
}
.top-mv .heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  z-index: 2;
  gap: 16px;
}
.top-mv .heading__logo {
  width: 228px;
}
@media screen and (max-width: 1024px) {
  .top-mv .heading__logo {
    width: 140px;
    padding-left: 0;
  }
}
.top-mv .heading__catch {
  display: flex;
  flex-direction: column;
  font-family: "Source Serif 4", serif;
  color: #edeae5;
  font-size: clamp(1.25rem, 1.205rem + 0.23vw, 1.375rem);
}
@media screen and (max-width: 1024px) {
  .top-mv .heading__catch {
    font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  }
}
.top-mv .heading__bottom {
  margin-left: 96px;
}
.top-mv button {
  display: none;
}

.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --------------------------------------------------
 トップページ 背景ビジュアルの指定
-------------------------------------------------- */
.top-contents {
  margin: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.top-contents--block {
  max-width: 992px;
  margin: 0 auto;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .top-contents--block {
    padding: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .top-contents--block {
    padding: 0 16px;
  }
}
@media screen and (max-width: 1024px) {
  .top-contents {
    margin-bottom: 80px;
  }
}

.top-visual {
  position: relative;
  width: calc(100% - 144px);
  height: 0;
  padding-top: 34%;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
  box-shadow: 3px 3px 6px rgba(65, 65, 65, 0.2);
}
.top-visual--about {
  background-image: url("../../../assets/images/img/img_about-capture.jpg");
}
.top-visual--menu {
  background-image: url("../../../assets/images/img/img_menu-capture.jpg");
  margin-left: 144px;
}
.top-visual--mitake {
  background-image: url("../../../assets/images/img/img_mitake-capture.jpg");
}
.top-visual--blog {
  background-image: url("../../../assets/images/img/img_blog-capture.jpg");
  margin-left: 144px;
}
@media screen and (max-width: 1024px) {
  .top-visual {
    width: calc(100% - 104px);
  }
  .top-visual--about {
    margin-right: 84px;
  }
  .top-visual--menu {
    width: 100%;
    margin-left: 84px;
  }
  .top-visual--blog {
    width: 100%;
    margin-left: 84px;
  }
}
@media screen and (max-width: 767px) {
  .top-visual {
    width: calc(100% - 32px);
    height: 240px;
  }
  .top-visual--menu {
    width: 100%;
    margin-left: 32px;
  }
  .top-visual--blog {
    width: 100%;
    margin-left: 32px;
  }
}

/* --------------------------------------------------
 blog / インスタ コンテンツの定義
-------------------------------------------------- */
.top-info {
  background-color: #edeae5;
  margin: -80px 64px 0 64px;
  padding: 160px 80px 80px 80px;
}
.top-info--pad-top {
  padding-top: 80px;
}
.top-info--block {
  margin: 0;
  padding: 0;
  background-color: transparent;
}
.top-info__inner {
  max-width: 992px;
  margin: 0 auto;
}
.top-info__col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
.top-info .mitake {
  width: 100%;
  margin: 0 auto;
}
.top-info .desc {
  width: 488px;
}
.top-info .contents-title {
  justify-content: center;
  margin: 0 auto 32px auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-info {
    margin: -64px 32px 0 32px;
    padding: 120px 32px 64px 32px;
  }
  .top-info--pad-top {
    padding-top: 64px;
  }
  .top-info--block {
    margin: 0 32px;
    padding: 0;
    background-color: transparent;
  }
  .top-info__col {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .top-info {
    margin: -64px 12px 0 12px;
    padding: 120px 16px 64px 16px;
  }
  .top-info--pad-top {
    padding-top: 64px;
  }
  .top-info--block {
    margin: 0;
    padding: 0;
  }
  .top-info__col {
    flex-wrap: wrap;
    gap: 32px;
  }
}

/* --------------------------------------------------
 aboutコンテンツの定義 特になし
-------------------------------------------------- */
/* --------------------------------------------------
 menuコンテンツの定義
-------------------------------------------------- */
.top-menu {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.top-menu__figure--overlap {
  margin-top: -24px;
  box-shadow: 3px 3px 6px rgba(65, 65, 65, 0.2);
}
.top-menu__col {
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
}
.top-menu__col .contents-title {
  width: 352px;
}
.top-menu__col .text-link {
  text-align: right;
  margin-top: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .top-menu {
    gap: 56px;
  }
  .top-menu__col {
    flex-wrap: wrap;
    gap: 32px;
  }
  .top-menu .contents-title {
    width: 100%;
    margin-bottom: 0;
  }
  .top-menu__figure {
    width: 80%;
    margin-left: auto;
  }
  .top-menu__figure--overlap {
    width: 50%;
    margin-left: 0;
  }
  .top-menu .desc {
    width: 100%;
  }
  .top-menu .text-link {
    position: sticky;
    display: inline-block;
    margin: 8px auto 0 auto;
  }
}

/* --------------------------------------------------
 blog / インスタ コンテンツの定義
-------------------------------------------------- */
/* --------------------------------------------------
 Accessコンテンツの定義
-------------------------------------------------- */
.access__info {
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .access__info {
    margin-bottom: 0;
  }
}
.access .desc {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .access .desc {
    width: 100%;
  }
}
.access__shopname {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .access__shopname {
    font-size: 1rem;
  }
}
.access__map {
  margin-top: 64px;
}
.access__googlemap {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 1024px) {
  .access__googlemap {
    width: 100%;
  }
}
.access__business-hours {
  font-weight: 600;
}
.access__traffic {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.access__traffic-label {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 600;
  margin-bottom: 8px;
}

/* --------------------------------------------------
 Contactコンテンツの定義
-------------------------------------------------- */
.contact .desc {
  width: 100%;
  margin-bottom: 32px;
}
.contact__form {
  width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact__form {
    width: 100%;
  }
}

/* --------------------------------------------------
 季節のメニュー
-------------------------------------------------- */
.season-menu {
  max-width: 992px;
  margin: 0 auto;
  margin: -40px auto 0 auto;
  padding: 40px;
  background-color: rgba(255, 240, 221, 0.5);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .season-menu {
    margin: -48px 32px;
    padding: 32px 16px;
  }
}
@media screen and (max-width: 767px) {
  .season-menu {
    margin: 0 16px;
    padding: 32px 16px;
  }
}
.season-menu__inner {
  position: relative;
}
.season-menu__list {
  display: flex;
  justify-content: center;
  gap: 64px;
}
.season-menu__figure {
  width: 296px;
}
.season-menu__caption {
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .season-menu .title-label {
    margin-bottom: 64px;
  }
}
.season-menu .text-link {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .season-menu .text-link {
    top: 32px;
  }
}
.season-menu .fdm-section-header {
  display: none;
}
.season-menu .fdm-section {
  display: flex;
  gap: 48px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .season-menu .fdm-section {
    flex-wrap: wrap;
    gap: 32px;
  }
}
.season-menu .fdm-item {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .season-menu .fdm-item {
    width: 100%;
  }
}
.season-menu .fdm-item-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .season-menu .fdm-item-panel {
    gap: 8px;
    width: 100%;
  }
}
.season-menu .fdm-item-image {
  width: 100%;
  height: 344px;
}
@media screen and (max-width: 767px) {
  .season-menu .fdm-item-image {
    height: auto;
    margin-bottom: 8px;
  }
}
.season-menu .fdm-item-has-image .fdm-item-panel p {
  padding: 0;
  margin: 0;
}
.season-menu .fdm-item-price-wrapper {
  display: none;
}
.season-menu .fdm-item-content {
  display: none;
}
.season-menu .fdm-item-title {
  text-align: center;
  font-family: "Source Serif 4", serif;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 menu.scss
 メニューコンテンツの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.menu .desc {
  margin-bottom: 40px;
}

/* --------------------------------------------------
 メニュー内容の定義
-------------------------------------------------- */
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu-contents__desc {
  max-width: 992px;
  margin: 0 auto;
  margin-bottom: 32px;
}
.menu-contents__box {
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .menu-contents__box {
    margin-bottom: 64px;
  }
}
.menu-contents .desc--col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .menu-contents .desc--col {
    flex-direction: column;
    gap: 32px;
  }
}
.menu-contents .desc__figure {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .menu-contents .desc__figure {
    width: 100%;
  }
}
.menu-contents .desc__text {
  flex: 1;
}

/* --------------------------------------------------
 メニューリスト
-------------------------------------------------- */
.menu-list {
  max-width: 992px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .menu-list {
    gap: normal;
    flex-direction: column;
  }
}
.menu-list--mb {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .menu-list--mb {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .menu-list--mb {
    margin-bottom: 48px;
  }
}
.menu-list--mb:last-child {
  margin-bottom: 0;
}
.menu-list .fdm-section-header {
  display: none;
}
.menu-list .fdm-section {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .menu-list .fdm-section {
    gap: 48px;
  }
}
@media screen and (max-width: 767px) {
  .menu-list .fdm-section {
    flex-wrap: wrap;
    gap: 32px;
  }
}
.menu-list .fdm-item {
  width: calc(50% - 32px);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .menu-list .fdm-item {
    width: 100%;
  }
}
.menu-list .fdm-item-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .menu-list .fdm-item-panel {
    gap: 8px;
    width: 100%;
  }
}
.menu-list .fdm-item-price-wrapper {
  top: 360px;
}
@media screen and (max-width: 767px) {
  .menu-list .fdm-item-price-wrapper {
    width: 100%;
    margin-bottom: 0;
    position: static;
    text-align: right;
  }
}
.menu-list .fdm-item-image {
  width: 100%;
  height: 344px;
}
@media screen and (max-width: 767px) {
  .menu-list .fdm-item-image {
    height: auto;
    margin-bottom: 8px;
  }
}
.menu-list .fdm-item-title {
  font-size: 1rem;
  font-family: "Source Serif 4", serif;
}
.menu-list .fdm-item-price {
  text-align: right;
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .menu-list .fdm-item-price {
    text-align: right;
  }
}
.menu-list .fdm-item-has-image .fdm-item-panel p {
  padding: 0;
  margin: 0;
}
.menu-list .fdm-item-content p {
  font-size: 0.875rem;
}

/* --------------------------------------------------
 メニューカード
-------------------------------------------------- */
.menu-card {
  width: 456px;
}
@media screen and (max-width: 1024px) {
  .menu-card {
    width: calc(50% - 24px);
  }
}
@media screen and (max-width: 767px) {
  .menu-card {
    width: 100%;
    margin-bottom: 48px;
  }
  .menu-card:last-child {
    margin-bottom: 0;
  }
}
.menu-card__capture {
  width: 100%;
  margin-bottom: 16px;
}
.menu-card__img {
  height: 344px;
}
.menu-card__name-price {
  display: flex;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .menu-card__name-price {
    flex-wrap: wrap;
  }
}
.menu-card__name {
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .menu-card__name {
    width: 100%;
  }
}
.menu-card__name--drink {
  width: 200px;
  font-weight: 300;
  margin-bottom: 0;
}
.menu-card__price {
  display: flex;
  margin-left: auto;
}
.menu-card__desc {
  font-size: 0.875rem;
}
.menu-card__drink-price {
  display: flex;
  align-items: center;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 mitake.scss
 御岳ページの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 mitakeコンテンツの定義
-------------------------------------------------- */
.mitake__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .mitake__wrapper {
    flex-direction: column;
    margin-bottom: 48px;
  }
  .mitake__wrapper--row-reverse {
    flex-direction: row-reverse;
  }
}
.mitake__figure {
  width: 480px;
}
@media screen and (max-width: 767px) {
  .mitake__figure {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .mitake__wrapper {
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
  }
  .mitake__wrapper--row-reverse {
    flex-direction: column-reverse;
  }
  .mitake__figure {
    width: 100%;
  }
  .mitake .desc {
    width: 100%;
  }
}

/* --------------------------------------------------
 御嶽紹介 コンテンツの定義
-------------------------------------------------- */
.mitake-contents {
  margin-bottom: 80px;
}
.mitake-contents:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .mitake-contents {
    margin-bottom: 64px;
  }
}
.mitake-contents .desc {
  margin-bottom: 32px;
}
.mitake-contents__box {
  margin-bottom: 64px;
}
.mitake-contents__box:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------
 御岳渓谷 
-------------------------------------------------- */
.mitake-valley__figure {
  position: relative;
}
.mitake-valley__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #edeae5;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  width: 100%;
  text-align: center;
  padding: 0 32px;
  font-family: "Source Serif 4", serif;
  font-weight: 600;
}

/* --------------------------------------------------
 御岳山 コンテンツの定義
-------------------------------------------------- */
.mt-mitake__text {
  margin-bottom: 8px;
}
.mt-mitake__text:last-child {
  margin-bottom: 0;
}
.mt-mitake__box {
  margin-bottom: 80px;
}
.mt-mitake__box:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .mt-mitake__box {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .mt-mitake__box {
    margin-bottom: 48px;
  }
}

/* --------------------------------------------------
 カラムアイテムの定義
-------------------------------------------------- */
.mitake-col {
  display: flex;
  gap: 0 64px;
}
.mitake-col--row-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .mitake-col {
    flex-direction: column;
  }
  .mitake-col--row-reverse {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .mitake-col--row-reverse {
    flex-direction: column;
  }
}
.mitake-col__figure {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .mitake-col__figure {
    margin-bottom: 24px;
  }
}
.mitake-col .desc {
  flex: 1;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .mitake-col .desc {
    width: 100%;
  }
}
.mitake-col .text-link {
  display: inline-block;
  margin: 0 8px 12px;
}
.mitake-col .desc-card {
  margin-bottom: 24px;
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 blog.scss
 ブログページ・パーツの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 ブログリストの定義 index.html / blog.html
-------------------------------------------------- */
.blog-list {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}
.blog-list--slide {
  padding: 0 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .blog-list {
    gap: 32px;
    padding: 0 24px;
  }
}

/* --------------------------------------------------
 記事件数の定義
-------------------------------------------------- */
.blog-number {
  display: flex;
  padding-bottom: 8px;
  border-bottom: 1px solid #aaa;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .blog-number {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.blog-number__label {
  font-weight: 600;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.blog-number__box {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .blog-number__box {
    width: 100%;
  }
}
.blog-number__items--value {
  font-weight: 600;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin: 0 8px;
}

/* --------------------------------------------------
 ブログ一覧リストの定義
-------------------------------------------------- */
.top-blog__wrapper {
  margin-bottom: 32px;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .top-blog__wrapper {
    padding: 0;
  }
}

/* --------------------------------------------------
 ブログページの定義
-------------------------------------------------- */
.blog {
  width: 100%;
}
.blog__wrapper {
  width: 712px;
  margin: 0 64px 64px 0;
}
@media screen and (max-width: 1024px) {
  .blog__wrapper {
    padding: 0;
    margin: 0;
    width: 100%;
  }
}
.blog .blog-list {
  width: 100%;
  margin-top: 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .blog .blog-list {
    padding: 0;
  }
}
.blog .blog-card {
  margin-bottom: 0;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .blog .blog-card {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 767px) {
  .blog .blog-card {
    width: 100%;
  }
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 article.scss
 記事内容・パーツの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
/* --------------------------------------------------
 記事コンテンツパーツ
-------------------------------------------------- */
.article {
  padding-bottom: 64px;
  border-bottom: 1px solid #aaa;
  margin: 0 auto 40px auto;
}
@media screen and (max-width: 1024px) {
  .article {
    padding-bottom: 48px;
  }
}
.article__time {
  display: block;
  margin-bottom: 12px;
}
.article__time-year {
  font-size: 0.875rem;
  margin-right: 8px;
}
.article__time-date {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.article__heading {
  margin-bottom: 16px;
}
.article__title-h1 {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  color: #4a5733;
}
@media screen and (max-width: 1024px) {
  .article__title-h1 {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
.article__title-h2 {
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  position: relative;
  color: #4a5733;
  font-size: 1.25rem;
}
.article__title-h2::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #aaa;
  position: absolute;
  top: 4px;
  left: 0;
}
.article__title-h2::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #aaa;
  position: absolute;
  bottom: 4px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .article__title-h2 {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}
.article__text-box {
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .article__text-box {
    margin-bottom: 48px;
  }
}
.article__text {
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .article__text {
    margin-bottom: 32px;
  }
}
.article__title-h3 {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  color: #4a5733;
  padding-bottom: 8px;
  border-bottom: 1px solid #aaa;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .article__title-h3 {
    font-size: 1rem;
  }
}
.article__capture {
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .article__capture {
    margin-bottom: 32px;
  }
}
.article__caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  font-size: 0.75rem;
  letter-spacing: 0;
  background-color: #b5b5b5;
  padding: 5px 0;
}
.article__capture-column {
  display: flex;
  gap: 0 40px;
}
@media screen and (max-width: 1024px) {
  .article__capture-column {
    gap: 0 32px;
  }
}
@media screen and (max-width: 767px) {
  .article__capture-column {
    flex-direction: column;
    gap: 32px 0;
  }
}
.article__column-item {
  position: relative;
  text-align: center;
}

.article-menu {
  margin-bottom: 48px;
}
.article-menu__category a {
  font-size: 0.875rem;
  color: #3a3e33;
  position: relative;
  padding-left: 24px;
  transition: 0.3s;
}
.article-menu__category a::after {
  content: "";
  width: 17px;
  height: 14px;
  position: absolute;
  top: 15%;
  left: 0;
  background-image: url("../../../assets/images/icon/ico_folder.svg");
}
.article-menu__category a:hover {
  opacity: 0.6;
}
.article-menu__category a:hover::after {
  opacity: 0.6;
}

/* --------------------------------------------------
 関連記事パーツ
-------------------------------------------------- */
.related-article__title {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  font-family: "Source Serif 4", serif;
  text-align: center;
  margin-bottom: 32px;
  color: #4a5733;
}
.related-article__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.related-article .blog-card {
  width: calc(50% - 24px);
}

/*===================================================
 animation.scss
 アニメーションの定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/*===================================================
 page.scss
 固定ページパーツのデザイン定義
================================================== */
/* //////////// 変数読み込み ここから //////////// */
/* //////////// 変数読み込み ここまで //////////// */
.page-main {
  /* --------------------------------------------------
   見出し
  -------------------------------------------------- */
  /* --------------------------------------------------
   テキスト / 引用
  -------------------------------------------------- */
  /* --------------------------------------------------
   テーブル / 定義リスト
  -------------------------------------------------- */
  /* --------------------------------------------------
   リスト
  -------------------------------------------------- */
  /* --------------------------------------------------
   画像 / カラム
  -------------------------------------------------- */
}
.page-main h2 {
  font-size: clamp(1.25rem, 1.205rem + 0.23vw, 1.375rem);
  padding: 12px;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  position: relative;
  margin: 56px 0 32px 0;
  color: #4a5733;
}
.page-main h2:first-child {
  margin-top: 0;
}
.page-main h2::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #aaa;
}
.page-main h2::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #aaa;
}
.page-main h3 {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  padding: 0 0 8px 8px;
  border-bottom: 1px solid #aaa;
  margin-bottom: 32px;
  color: #4a5733;
}
.page-main h4 {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  position: relative;
  padding-left: 8px;
  margin-bottom: 24px;
  color: #4a5733;
  border-left: 4px solid #4a5733;
}
.page-main h5 {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  color: #4a5733;
}
.page-main p {
  margin-bottom: 8px;
}
.page-main p:last-child {
  margin-bottom: 0;
}
.page-main blockquote {
  border-left: 2px solid #aaa;
  padding-left: 8px;
  margin-bottom: 24px;
}
.page-main a {
  position: relative;
  color: #4a5733;
  display: inline-block;
  transition: 0.3s;
  border-bottom: 1px solid #4a5733;
  margin-bottom: 8px;
}
.page-main a:hover {
  opacity: 0.6;
}
.page-main .pdf-link a {
  position: relative;
  padding-right: 24px;
  color: #4a5733;
  transition: 0.3s;
  display: inline-block;
}
.page-main .pdf-link a::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 25%;
  right: 0;
  background-image: url("../../../assets/images/icon/ico_pdf.svg");
  background-repeat: no-repeat;
}
.page-main .pdf-link a:hover {
  opacity: 0.6;
}
.page-main .pdf-link a:hover::before {
  opacity: 0.6;
}
.page-main .external-link a {
  position: relative;
  padding-right: 24px;
  color: #4a5733;
  transition: 0.3s;
  display: inline-block;
}
.page-main .external-link a::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 30%;
  right: 0;
  background-image: url("../../../assets/images/icon/ico_external-link.svg");
  background-repeat: no-repeat;
  background-size: 12px;
}
.page-main .external-link a:hover {
  opacity: 0.6;
}
.page-main .wp-block-table {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .page-main .wp-block-table {
    overflow-x: scroll;
  }
}
.page-main .wp-block-table table {
  width: 100%;
  -webkit-border-horizontal-spacing: 1px;
  -webkit-border-vertical-spacing: 1px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .page-main .wp-block-table table {
    width: 800px;
    overflow-x: scroll;
  }
}
.page-main .wp-block-table table th {
  background-color: #edeae5;
}
.page-main .wp-block-table table tr {
  height: 48px;
  border-bottom: 1px solid #aaa;
}
@media screen and (max-width: 767px) {
  .page-main .wp-block-table table tbody {
    overflow-x: scroll;
  }
}
.page-main .wp-block-table table tbody th {
  width: 160px;
  background-color: #edeae5;
}
.page-main .wp-block-table table tbody td {
  padding: 0 8px;
}
.page-main .wp-block-table table tbody td:first-of-type {
  width: 120px;
}
.page-main .wp-element-caption {
  margin-top: 8px;
}
.page-main dl {
  margin-bottom: 32px;
}
.page-main dl dt {
  font-weight: 600;
}
.page-main dl dd {
  margin-bottom: 24px;
  padding-left: 16px;
  font-size: 0.875rem;
}
.page-main ul {
  margin-bottom: 32px;
  padding-left: 16px;
}
.page-main ul li {
  list-style-type: disc;
}
.page-main address {
  background-color: #edeae5;
  padding: 16px;
  font-style: normal;
}
.page-main .wp-block-columns {
  margin-bottom: 40px;
  display: flex;
  gap: 48px;
  align-items: center;
}
.page-main .wp-block-button__link {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  font-size: 1.125em;
  padding: 16px;
  border-top: 2px solid #4a5733;
  border-bottom: 2px solid #4a5733;
  color: #4a5733;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-family: "Source Serif 4", serif;
}
.page-main img.alignright {
  display: block;
  margin: 0 0 0 auto;
}
.page-main img.alignleft {
  display: block;
  margin: 0 auto 0 0;
}
.page-main img.aligncenter {
  display: block;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */