@charset "UTF-8";
/* *****************************************************************

Stylesheet: ベーススタイル（全て）に適応

******************************************************************/
/* TOPのパネル */
.top-panel {
  /* 位置調整 */
  position: relative;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  z-index: 1;
}

.top-panel .smb-panels__item {
  /* パネルの影 */
  -webkit-box-shadow: 0 -6px 8px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 -6px 8px rgba(0, 0, 0, 0.1) !important;
}

.top-panel .smb-panels__item:hover {
  /* 標準であるホバーエフェクトの除去 */
  -webkit-box-shadow: none;
          box-shadow: none;
}

.top-panel .smb-panels__item__body {
  /* 標準のh2装飾の除去 */
  padding: 80px;
}

.top-panel .smb-panels__item__body h2 {
  background-color: transparent;
  border-left: none;
}

/* 3枚並んだパネルの装飾 */
.panels .c-row__col {
  /* パネルの余白除去 */
  padding: 0;
}

.panels .smb-panels__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  /* パネルホバー時の装飾 */
}

.panels .smb-panels__item__figure {
  /* テキストと画像の位置変更 */
  position: relative;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  overflow: hidden;
}

.panels .smb-panels__item__figure::before {
  /* ホバー時の装飾 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: '';
  white-space: pre;
  background: radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
  color: #fff;
  font-size: 13px;
  -webkit-transition: all 0.6s 70ms;
  transition: all 0.6s 70ms;
  opacity: 0;
  z-index: 1;
}

.panels .smb-panels__item__figure img {
  /* 変化の時間 */
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.panels .smb-panels__item__body {
  /* パネルのボーダー部分 */
  -webkit-box-shadow: 0 0 0 1px #ccc;
          box-shadow: 0 0 0 1px #ccc;
  /* パネルのテキストと画像の順序を変更*/
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.panels .smb-panels__item__title {
  font-size: 24px;
}

.panels .smb-panels__item__content {
  font-size: 14px;
}

.panels .smb-panels__item:hover .smb-panels__item__figure::before {
  /* ホバー時に文字浮き出して見えるようにscaleで拡大 */
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  opacity: 1;
}

.panels .smb-panels__item:hover .smb-panels__item__figure img {
  /* ホバー時に画像を拡大 */
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.smb-section__title {
  /* セクションタイトルサイズ変更 */
  font-size: 2.5em;
}

.smb-section__title::after {
  /* 標準であるセクションタイトルの下線除去 */
  display: none;
}

/* バナーの装飾 */
.banners .smb-items__banner__figure {
  /* デフォルトのfilterの除去 */
  -webkit-filter: none !important;
          filter: none !important;
}

.banners .smb-items__banner__figure img {
  /* 常時filterをかける */
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.banners .smb-items__banner__body {
  /* 変化にかける時間 */
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.banners .smb-items__banner__title {
  font-size: 24px;
  font-weight: 600;
}

.banners .smb-items__banner__lede {
  font-size: 16px;
}

.banners .smb-items__banner:hover .smb-items__banner__body {
  /* ホバー時に文字を右に移動 */
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

@media (max-width: 1023px) {
  /******************************************************************

Stylesheet: 1023px以下（タブレット）で適用

******************************************************************/
  /* ヒーロースライダー */
  .hero__title h2 {
    font-size: 32px;
  }
  .hero .swiper-slide {
    height: 80vh;
  }
  /* タブレット以下でパネルの画像の重なりをなくす */
  .top-panel {
    margin-top: 30px;
    -webkit-transform: none;
            transform: none;
    /* パネルの影を調節 */
  }
  .top-panel .smb-panels__item {
    -webkit-box-shadow: 10px 0 -10px rgba(0, 0, 0, 0.2);
            box-shadow: 10px 0 -10px rgba(0, 0, 0, 0.2);
  }
  .top-panel .smb-panels__item__body {
    padding: 30px;
  }
  /* フッターウィジェットエリア */
  .l-footer-widget-area__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    border: none !important;
  }
}

@media (max-width: 639px) {
  /******************************************************************

Stylesheet: 639px以下(スマホ)で適用

******************************************************************/
  /* ヒーロースライダー */
  .hero__title {
    top: 15% !important;
  }
  .hero__title h2 {
    font-size: 24px !important;
  }
  .hero__btn {
    bottom: 20% !important;
  }
  .hero__btn a {
    /* ボタンのサイズを小さく */
    width: 180px !important;
    height: 45px !important;
  }
  /* 3つ並んだパネル */
  .panels {
    /* パネルの余白追加 */
  }
  .panels .c-row__col {
    padding: 0 14px;
  }
  /* ボタン */
  .btn .smb-btn {
    width: 180px !important;
    height: 45px !important;
    margin-top: 30px !important;
  }
  /* 任意のタクソノミーの投稿（リッチメディア）のスタイル（スマホ） */
  .c-entries--rich-media .c-entries__item:nth-of-type(-n + 5) {
    /* 6番目を除く */
    margin-bottom: 30px;
  }
  .c-entries--rich-media .c-entry-summary__content {
    /* スマホでテキスト除去 */
    display: none;
  }
  /* フッター */
  .info-inner {
    display: block !important;
    text-align: center !important;
    height: auto !important;
    padding: 40px;
  }
  .info__logo {
    margin-right: 0 !important;
    margin-bottom: 25px;
  }
  .info__logo img {
    width: 120px;
  }
  .info__text {
    margin-bottom: 25px;
  }
}

.swiper-slide {
  /* 表示させる高さの調整 */
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.swiper-slide .main-visual {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 9s ease;
  transition: -webkit-transform 9s ease;
  transition: transform 9s ease;
  transition: transform 9s ease, -webkit-transform 9s ease;
}

.swiper-slide-active .main-visual {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.swiper-slide-active .hero__title {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

.swiper-slide-active .hero__btn {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

.hero {
  overflow: hidden;
}

.hero__title {
  position: absolute;
  top: 30%;
  left: 50%;
  color: #fff;
  text-align: center;
  width: 90vw;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: opacity 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, transform 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  z-index: 1;
  opacity: 0;
}

.hero__title h2 {
  font-size: 36px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
  line-height: 2em;
}

.hero__title span {
  display: block;
}

.hero__btn {
  position: absolute;
  bottom: 30%;
  left: 50%;
  font-size: 16px;
  color: #fff;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: opacity 1.2s ease 2.5s, -webkit-transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, -webkit-transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, transform 1.2s ease 2.5s, -webkit-transform 1.2s ease 2.5s;
  opacity: 0;
  z-index: 1;
}

.hero__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #cd162c;
  text-decoration: none;
  width: 240px;
  height: 60px;
}

/* ヘッダー */
/* グローバルメニュー位置調整 */
.l-header .c-navbar__item {
  position: relative;
}

.l-header .c-navbar__item::after {
  /* メニューアイテムの左に区切り線 */
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  height: 30px;
  margin-top: -15px;
  border-right: 1px solid #ccc;
}

.l-header .c-navbar__item:last-of-type::before {
  /* 最後のメニューアイテムの右に区切り線 */
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  height: 30px;
  margin-top: -15px;
  border-right: 1px solid #ccc;
}

.btn .smb-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
  height: 60px;
  margin-top: 60px;
}

/* 最近の投稿（テキスト）のスタイル */
.c-entries--text {
  position: relative;
  background-color: #f9f9f9;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}

.c-entries--text .c-entries__item a {
  padding-right: 2em;
  padding-left: 2em;
}

.c-entries--text .c-entries__item .c-entry-summary {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
}

.c-entries--text .c-entries__item .c-entry-summary__title {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-entries--text .c-entries__item .c-entry-summary__figure {
  display: block;
  position: absolute;
  top: -2px;
  left: 6em;
  /* 日付の長さに合わせて調整 */
  background-color: transparent;
}

.c-entries--text .c-entries__item .c-entry-summary__figure img, .c-entries--text .c-entries__item .c-entry-summary__figure::before {
  display: none;
}

.c-entries--text .c-entries__item .c-entry-summary__figure span {
  background-color: #fff;
  border-radius: 15px;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-4 {
  color: #333;
  border: 1px solid #333;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-6 {
  color: #cd162c;
  border: 1px solid #cd162c;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-5 {
  color: #104f96;
  border: 1px solid #104f96;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-7 {
  color: #e97501;
  border: 1px solid #e97501;
}

.c-entries--text .c-entries__item .c-entry-summary__term {
  position: relative;
  left: 0;
  white-space: nowrap;
}

.c-entries--text .c-entries__item .c-entry-summary__meta {
  margin-right: 10rem;
  /* カテゴリー名の長さにあわせて調整 */
}

.c-entries--text .c-entries__item:hover .c-entry-summary__title {
  color: #cd162c;
}

/* 任意のタクソノミーの投稿（リッチメディア）のスタイル */
.c-entries--rich-media .c-entries__item:nth-of-type(-n + 3) {
  /* メディアの下に余白を増やす */
  margin-bottom: 80px;
}

.c-entries--rich-media .c-entries__item .c-entry-summary {
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
}

.c-entries--rich-media .c-entries__item .c-entry-summary__figure {
  /* border-leftを適応するためmarginを消す */
  margin-bottom: 0;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__figure img {
  /* 変化の時間 標準の装飾を除去 */
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-filter: none !important;
          filter: none !important;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__term--category-6 {
  background-color: rgba(205, 22, 44, 0.8);
}

.c-entries--rich-media .c-entries__item .c-entry-summary__term--category-5 {
  background-color: rgba(16, 79, 150, 0.8);
}

.c-entries--rich-media .c-entries__item .c-entry-summary__term--category-7 {
  background-color: rgba(233, 117, 1, 0.8);
}

.c-entries--rich-media .c-entries__item .c-entry-summary__body {
  /* 見栄えを良くするため左側に余白をつける テキスト左側の縦線 */
  padding-left: 30px;
  border-left: 5px solid #cd162c;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__header {
  /* c-entry-summary__figureでmarginを除去したので余白を埋め合わせ */
  padding: 20px 0;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__content {
  /* テキスト部分の装飾 */
  color: #333;
  font-size: 14px;
  line-height: 2.25em;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__meta {
  /* 投稿者・日時の除去 */
  display: none;
}

.c-entries--rich-media .c-entries__item a:hover .c-entry-summary__figure img {
  /* ホバー時の画像拡大 */
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* フッターの上 */
.info {
  /* フッター上部にボーダー */
  border-top: 1px solid #ccc;
}

.info-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1180px;
  height: 140px;
}

.info__logo {
  margin-right: 30px;
}

.info__logo img {
  width: 150px;
}

.info__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
}

.info .social-nav {
  margin-left: 0;
}

.info .social-nav__icon {
  display: inline;
  margin: 0 10px;
  list-style: none;
}

.info .social-nav__icon a {
  color: #212121;
}

/* フッターウィジェットエリア */
.l-footer-widget-area {
  /* ウィジェットエリアの上部にボーダーを入れるため、paddingを除去 */
  border-top: 1px solid #ccc;
  padding: 0;
}

.l-footer-widget-area .c-row {
  /* 左右にボーダー */
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.l-footer-widget-area__item {
  /* paddingを除去し、詰まったのでこちらで追加 */
  padding: 40px;
}

.l-footer-widget-area__item:nth-of-type(n + 2) {
  /* 最初の一つ目を除くブロックにボーダー */
  border-left: 1px solid #ccc;
}

.l-footer-widget-area__item .c-widget__title {
  /* タイトルを左寄せ */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #26BDC2;
}

.l-footer-widget-area__item .c-widget__title::before, .l-footer-widget-area__item .c-widget__title::after {
  /* 左右のボーダーの除去 */
  display: none;
}


















/* =========================================
  JFOODS Common Design CSS
  Snow Monkey Base
========================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* Variables */
:root {
  --jf-font-heading: 'Noto Serif JP', serif;
  --jf-font-body: 'Noto Sans JP', sans-serif;

  --jf-color-main: #d67a1d;
  --jf-color-main-dark: #b85f12;
  --jf-color-dark: #2b221c;
  --jf-color-text: #333333;
  --jf-color-muted: #777777;
  --jf-color-light: #f8f6f2;
  --jf-color-white: #ffffff;
  --jf-color-border: #e8e1d8;

  --jf-radius: 16px;
  --jf-radius-sm: 10px;
  --jf-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

  --jf-container: 1120px;
  --jf-section-pc: 110px;
  --jf-section-sp: 72px;
}

/* Base */
body {
  font-family: var(--jf-font-body);
  color: var(--jf-color-text);
  letter-spacing: 0.04em;
  line-height: 1.9;
}

/* Section Common */
.hero,
.about,
.commitment,
.store,
.news,
.cta {
  padding-top: var(--jf-section-pc);
  padding-bottom: var(--jf-section-pc);
}

.bg-white {
  background: var(--jf-color-white);
}

.bg-light {
  background: var(--jf-color-light);
}

.bg-dark {
  background: var(--jf-color-dark);
  color: var(--jf-color-white);
}

.bg-dark p,
.bg-dark .smb-section__title,
.bg-dark .smb-section__lede {
  color: var(--jf-color-white);
}

/* Section Header */
.smb-section__header {
  margin-bottom: 56px;
}

.smb-section__subtitle {
  font-family: var(--jf-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jf-color-main);
  margin-bottom: 14px;
}

.smb-section__title {
  font-family: var(--jf-font-heading);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: var(--jf-color-dark);
  margin-bottom: 24px;
}

.smb-section__lede {
  font-family: var(--jf-font-body);
  font-size: 15px;
  line-height: 2;
  color: var(--jf-color-muted);
}

/* Text */
p {
  font-size: 15px;
  line-height: 2;
}

strong {
  font-weight: 700;
}

/* Buttons */
.smb-btn,
.wp-block-button__link {
  border-radius: 999px !important;
  padding: 13px 28px !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: 0.3s ease;
}

.btn-primary .smb-btn,
.btn-primary .wp-block-button__link,
.smb-btn.btn-primary,
.wp-block-button__link.btn-primary {
  background: var(--jf-color-main) !important;
  color: var(--jf-color-white) !important;
  border: 1px solid var(--jf-color-main) !important;
}

.btn-primary .smb-btn:hover,
.btn-primary .wp-block-button__link:hover,
.smb-btn.btn-primary:hover,
.wp-block-button__link.btn-primary:hover {
  background: var(--jf-color-main-dark) !important;
  border-color: var(--jf-color-main-dark) !important;
}

.btn-outline .smb-btn,
.btn-outline .wp-block-button__link,
.smb-btn.btn-outline,
.wp-block-button__link.btn-outline {
  background: transparent !important;
  color: var(--jf-color-dark) !important;
  border: 1px solid var(--jf-color-dark) !important;
}

.btn-white .smb-btn,
.btn-white .wp-block-button__link,
.smb-btn.btn-white,
.wp-block-button__link.btn-white {
  background: var(--jf-color-white) !important;
  color: var(--jf-color-dark) !important;
  border: 1px solid var(--jf-color-white) !important;
}

/* Cards Common */
.feature-card,
.store-card,
.news-card,
.product-card {
  background: var(--jf-color-white);
  border-radius: var(--jf-radius);
  box-shadow: var(--jf-shadow);
  overflow: hidden;
}

.feature-card {
  padding: 36px 30px;
}

.feature-card h3,
.product-card h3,
.store-card h3 {
  font-family: var(--jf-font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--jf-color-dark);
  line-height: 1.5;
}

.feature-card p,
.product-card p,
.store-card p {
  font-size: 14px;
  color: var(--jf-color-muted);
  line-height: 1.9;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

.product-card img,
.store-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Utility */
.text-center {
  text-align: center;
}

.text-main {
  color: var(--jf-color-main);
}

.text-dark {
  color: var(--jf-color-dark);
}

.text-muted {
  color: var(--jf-color-muted);
}

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

/* Responsive */
@media (max-width: 781px) {
  .hero,
  .about,
  .commitment,
  .store,
  .news,
  .cta {
    padding-top: var(--jf-section-sp);
    padding-bottom: var(--jf-section-sp);
  }

  .smb-section__header {
    margin-bottom: 40px;
  }

  .smb-section__title {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.45;
  }

  .smb-section__subtitle {
    font-size: 11px;
  }

  p,
  .smb-section__lede {
    font-size: 14px;
    line-height: 1.9;
  }

  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }
}

/* アクセントカラー */

.text-accent{
    color:#D67A1D;
}

.text-white{
    color:#fff;
}

.text-dark{
    color:#2B221C;
}

.text-accent{
    color:#D67A1D;
}

.text-muted{
    color:#777;
}





/* ==================================================
Section Header 共通
================================================== */

/* セクションヘッダー */
.smb-section__header{
    margin-bottom:60px;
}

/* サブタイトル */
.smb-section__subtitle{
    display:flex;
    align-items:center;
    gap:16px;

    color:#D67A1D;
    font-size:15px;
    font-weight:500;
    letter-spacing:.35em;
    text-transform:uppercase;
    line-height:1;
    margin-bottom:22px;
}

/* 左線 */
.smb-section__subtitle::before{
    content:"";
    width:48px;
    height:1px;
    background:#D67A1D;
    flex-shrink:0;
}

/* タイトル */
.section-title,
.smb-section__title{

    font-family:"Noto Serif JP", serif;

    
	 font-size:clamp(30px,3vw,48px);

    line-height:1.35;

    letter-spacing:.03em;

    font-weight:500;

    color:#2B221C;

    margin-bottom:28px;
}

/* リード文 */
.smb-section__lede{

    font-size:18px;

    line-height:2;

    color:#666;

    max-width:720px;
}





.hero .section-title{
    font-size:clamp(48px,5vw,74px);
    color:#fff;
    margin-bottom:35px;
}

.hero .smb-section__subtitle{
    color:#D67A1D;
}

.hero .smb-section__subtitle::before{
    background:#D67A1D;
}

.hero 
.smb-section__subtitle::before{
    content:"";
    width:0px;
    height:0px;
    background:#D67A1D;
    flex-shrink:0;
}


.tex-left{
text-align: left;	
}

.l-contents__inner {
    padding-bottom: 0 !IMPORTANT;
}




/* ===========================================
Buttons
=========================================== */

.button01 .smb-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.button01  .smb-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    min-width:220px;

    height:58px;

    padding:0 32px;

    border-radius:999px;

    font-size:15px;

    font-weight:700;

    letter-spacing:.08em;

    text-decoration:none;

    transition:.35s;

}

/* Primary */

.hero-btn-primary .smb-btn{

    background:#D67A1D !important;

    border:2px solid #D67A1D !important;

    color:#fff !important;

    box-shadow:0 10px 30px rgba(214,122,29,.35);

}

.hero-btn-primary .smb-btn:hover{

    background:#B96419 !important;

    border-color:#B96419 !important;

    color:#fff !important;

    transform:translateY(-3px);

}

/* Outline */

.hero-btn-outline .smb-btn{

    background:#fff !important;

    color:#2B221C !important;

    border:2px solid #fff !important;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.hero-btn-outline .smb-btn:hover{

    background:#D67A1D !important;

    color:#fff !important;

    border-color:#D67A1D !important;

    transform:translateY(-3px);

}

/* Arrow */

.hero-btn-primary .smb-btn__label::after,
.hero-btn-outline .smb-btn__label::after{

    content:"→";

    margin-left:10px;

    transition:.3s;

}

.hero-btn-primary:hover .smb-btn__label::after,
.hero-btn-outline:hover .smb-btn__label::after{

    transform:translateX(4px);

}




/* フッター */

.l-footer-widget-area{
    background:#F9F4EE;
}

/* コピーライト */














/* ==========================================
お知らせ一覧
========================================== */
/* ==========================================
News 共通
========================================== */

.News,
body.blog{
}

/* 本文・画像・投稿者は不要 */
.News .c-entry-summary__figure,
body.blog .c-entry-summary__figure,
.News .c-entry-summary__content,
body.blog .c-entry-summary__content,
.News .c-meta__item--author,
body.blog .c-meta__item--author{
    display:none;
}

/* リスト */

.News .c-entries,
body.blog .c-entries{
    margin:0;
    padding:0;
}

.News .c-entries__item,
body.blog .c-entries__item{
    list-style:none;
    margin:0;
    padding:0;
    border-bottom:1px solid #e8e2da;
}

.News .c-entries__item:last-child,
body.blog .c-entries__item:last-child{
    border-bottom:none;
}

/* リンク */

.News .c-entries__item>a,
body.blog .c-entries__item>a{
    padding:0 !important;
    text-decoration:none;
    color:inherit;
}

/* カード */

.News .c-entry-summary,
body.blog .c-entry-summary{

    display:flex;

    align-items:center;

    padding:20px 0;

    border:none;

    transition:.3s;

}

/* 本体 */

.News .c-entry-summary__body,
body.blog .c-entry-summary__body{

    display:flex;

    align-items:center;

    width:100%;

}

/* タイトル */

.News .c-entry-summary__header,
body.blog .c-entry-summary__header{

    order:3;

    flex:1;

    margin-left:28px;

}

.News .c-entry-summary__title,
body.blog .c-entry-summary__title{

    margin:0;

    font-family:"Noto Serif JP",serif;

    font-size:22px;

    font-weight:600;

    line-height:1.5;

    color:#2B221C;

    transition:.3s;

}

/* メタ */

.News .c-entry-summary__meta,
body.blog .c-entry-summary__meta{

    order:1;

    margin:0;

}

.News .c-meta,
body.blog .c-meta{

    display:flex;

    align-items:center;

    gap:18px;

    margin:0;

    padding:0;

    list-style:none;

}

/* 日付 */

.News .c-meta__item--published,
body.blog .c-meta__item--published{

    width:120px;

    font-size:15px;

    color:#666;

}

/* カテゴリ */

.News .c-meta__item--categories,
body.blog .c-meta__item--categories{

    width:110px;

}

/* バッジ */

.News .c-entry-summary__term,
body.blog .c-entry-summary__term{

    display:inline-block;

    padding:6px 18px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

}

/* News */

.News .c-entry-summary__term--category-slug-news,
body.blog .c-entry-summary__term--category-slug-news{

    background:#F5EFE5;

    color:#8A6A35;

}

/* Press */

.News .c-entry-summary__term--category-slug-press,
body.blog .c-entry-summary__term--category-slug-press{

    background:#FFE4D2;

    color:#C96C2A;

}

/* Recruit */

.News .c-entry-summary__term--category-slug-recruit,
body.blog .c-entry-summary__term--category-slug-recruit{

    background:#EEF7E8;

    color:#5E8A3A;

}

/* Media */

.News .c-entry-summary__term--category-slug-media,
body.blog .c-entry-summary__term--category-slug-media{

    background:#F1F1F1;

    color:#666;

}

/* 矢印 */

.News .c-entry-summary::after,
body.blog .c-entry-summary::after{

    content:"→";

    margin-left:24px;

    font-size:24px;

    color:#999;

    transition:.3s;

}

/* Hover */

.News .c-entry-summary:hover,
body.blog .c-entry-summary:hover{

    border-bottom-color:#D67A1D;

}

.News .c-entry-summary:hover .c-entry-summary__title,
body.blog .c-entry-summary:hover .c-entry-summary__title{

    color:#D67A1D;

}

.News .c-entry-summary:hover::after,
body.blog .c-entry-summary:hover::after{

    color:#D67A1D;

    transform:translateX(6px);

}

/* SP */

@media(max-width:781px){

.News .c-entry-summary,
body.blog .c-entry-summary{

    display:block;

}

.News .c-entry-summary__body,
body.blog .c-entry-summary__body{

    display:block;

}

.News .c-entry-summary__header,
body.blog .c-entry-summary__header{

    margin-top:12px;

}

.News .c-meta,
body.blog .c-meta{

    flex-wrap:wrap;

    gap:10px;

}

.News .c-entry-summary::after,
body.blog .c-entry-summary::after{

    display:none;

}

.News .c-entry-summary__title,
body.blog .c-entry-summary__title{

    font-size:18px;

}

}

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