@charset "UTF-8";
/* ========================================
   Design Tokens (CSS Variables)
======================================== */
:root {
  /* Color */
  --color-text: #222222;
  --color-white: #ffffff;
  --color-main: #315391;
  /* Font */
  --font-base: "Noto Sans JP", sans-serif;
  --font-weight-base: 400;
  --line-height-base: 1.76;
  --letter-spacing-base: 0.01rem;
  /* Layout */
  --base-font-size: 16px;
  --content-width: 1030px;
  --content-padding: 40px;
}

html {
  font-family: var(--font-base);
  color: var(--color-text);
  font-weight: var(--font-weight-base);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-base);
  font-size: var(--base-font-size);
}

/* 可変フォントサイズ */
@media (max-width: 1030px) {
  :root {
    --base-font-size: calc(100vw * 16 / 1030);
  }
}
@media (max-width: 766px) {
  :root {
    --base-font-size: 16px;
  }
}
/* ========================================
   Utility
======================================== */
.u-sp {
  display: none;
}

@media (max-width: 766px) {
  .u-sp {
    display: block;
  }
  .u-pc {
    display: none;
  }
}
@media (min-width: 767px) {
  .u-flex {
    display: flex;
    align-items: center;
  }
}
/* ========================================
   Layout
======================================== */
.inner {
  max-width: var(--content-width);
  width: calc(100% - var(--content-padding));
  margin: 0 auto;
}

main {
  margin-top: 70px;
}

.l-section {
  padding-bottom: 100px;
}

.c-page-title {
  font-size: 1.75rem;
  font-weight: bold;
}

.c-sec-title {
  font-size: 1.875rem;
}

.col-main {
  color: var(--color-main);
}

.ff-figtree {
  font-family: "Figtree", sans-serif;
}

.l-page,
.l-section {
  margin-top: 100px;
}
@media (max-width: 766px) {
  .l-page,
  .l-section {
    margin-top: 70px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: #ffffff;
  z-index: 9999;
}

@media (max-width: 766px) {
  .l-header {
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 20px;
}
@media (max-width: 766px) {
  .l-header__inner {
    padding: 0 10px;
  }
}

.l-header__nav-list-link-btn {
  width: 80px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ccc;
}
@media (max-width: 766px) {
  .l-header__nav-list-link-btn {
    border: none;
    width: 50px;
    height: 46px;
  }
}

@media (min-width: 767px) {
  .l-header__logo-title img {
    max-width: 219px;
    max-height: 150px;
  }
}
@media (max-width: 766px) {
  .l-header__logo-title img {
    max-width: 170px;
    max-height: 35px;
    position: relative;
    z-index: 1000;
  }
}

.l-header__nav-list-item-top,
.l-header__nav-list-item-category,
.l-header__nav-list-item-scene {
  border: 1px solid var(--color-main);
  width: 118px;
  height: 35px;
  display: flex;
  align-items: center;
  border-radius: 5px;
  margin-right: 15px;
  padding: 0;
  position: relative;
}
@media (max-width: 766px) {
  .l-header__nav-list-item-top,
  .l-header__nav-list-item-category,
  .l-header__nav-list-item-scene {
    border: none;
  }
}

.l-header__top-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: inherit;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1;
  font-weight: bold;
}

.l-header__mega-toggle {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 0;
  padding: 0 12px;
  border-radius: inherit;
  color: var(--color-text);
  background: transparent;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  font-weight: bold;
}

.l-header__mega-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  top: -1px;
  position: relative;
}

.l-header__nav-list-item.is-open .l-header__mega-toggle::after {
  transform: rotate(-135deg);
  margin-top: 5px;
}

.l-header__mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: 370px;
  padding: 40px 60px;
  background: #fafafa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.l-header__mega-menu[hidden] {
  display: none;
}

.l-header__mega-menu-item + .l-header__mega-menu-item {
  margin-top: 20px;
}
@media (max-width: 766px) {
  .l-header__mega-menu-item + .l-header__mega-menu-item {
    margin-top: 0px;
  }
}

.l-header__mega-menu-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
  line-height: 1.5;
}

.l-header__mega-menu-link::before {
  content: "-";
  margin-right: 12px;
}
@media (max-width: 766px) {
  .l-header__mega-menu-link::before {
    content: "";
    margin-right: 0;
  }
}

.l-header__nav-list-img {
  width: auto;
  height: 22px;
  object-fit: contain;
  margin: 0 auto 4px;
  display: block;
}
@media (max-width: 766px) {
  .l-header__nav-list-img {
    height: 15px;
    width: 15px;
    margin: 0;
    object-fit: contain;
  }
}

.l-header__nav-list-link-tel {
  display: block;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 766px) {
  .l-header__nav-list-link-tel {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 2px;
    justify-content: center;
  }
}

.l-header__nav-list-item-tel {
  margin-left: 23px;
  line-height: 1;
  list-style: none;
  position: relative;
  z-index: 1000;
}

.l-header__nav-list-link-tel-time {
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 766px) {
  .l-header__nav-list-link-tel-time {
    font-size: 10px;
  }
}

/* ハンバーガーメニュー非表示 */
.l-header__toggle-menu {
  display: none;
}

/* ヘッダーリンク */
.l-header__nav-list-items {
  display: flex;
  align-items: center;
}

@media (max-width: 766px) {
  .l-header {
    padding: 10px 0;
  }
  .l-header__inner {
    display: block;
  }
  .l-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .l-header__content-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .l-header-menu-text {
    font-size: 16px;
  }
  /* ハンバーガーメニュー */
  .l-header__toggle-menu {
    display: inline-block;
    width: 40px;
    height: 30px;
    position: relative;
    z-index: 100;
  }
  .l-header__toggle-menu-line {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    text-indent: -9999px;
    width: 25px;
    height: 1px;
    background-color: transparent;
  }
  .l-header__toggle-menu-line::before,
  .l-header__toggle-menu-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 25px;
    height: 1px;
    background-color: #000;
    transition: 0.3s;
  }
  .l-header__toggle-menu-line::before {
    top: -5px;
  }
  .l-header__toggle-menu-line::after {
    top: 5px;
  }
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 90;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .l-header__nav-list {
    margin-top: 60px;
    border-top: 1px solid #eeeeee;
  }
  .l-header__nav-list-items {
    flex-flow: column;
  }
  .l-header__nav-list-item-top,
  .l-header__nav-list-item-category,
  .l-header__nav-list-item-scene {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    border-color: #ffffff;
    padding: 0;
    border-bottom: 1px solid #eeeeee;
    margin-right: 0;
    border-radius: 0;
  }
  .l-header__top-link {
    min-height: 44px;
    padding: 20px;
    justify-content: flex-start;
    font-size: 16px;
  }
  .l-header__mega-toggle {
    height: auto;
    min-height: 44px;
    padding: 12px;
    justify-content: space-between;
    font-size: 16px;
    padding: 20px;
  }
  .l-header__mega-toggle::after {
    border-color: var(--color-text);
  }
  .l-header__mega-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0;
    padding: 0px;
    background: rgba(255, 255, 255, 0.12);
    background: #fafafa;
    box-shadow: none;
  }
  .l-header__mega-menu-item + .l-header__mega-menu-item {
    line-height: 1;
  }
  .l-header__mega-menu-item {
    line-height: 1;
  }
  .l-header__mega-menu-link {
    color: var(--color-text);
    width: 100%;
    padding: 20px;
    position: relative;
  }
  .l-header__mega-menu-link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--color-text);
    border-bottom: 1px solid var(--color-text);
    transition: transform 0.3s ease;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    position: absolute;
    right: 20px;
  }
  .open .l-header__toggle-menu {
    -webkit-transition: all 0.5s linear 1s;
    transition: all 0.5s linear 1s;
  }
  .open .l-header__toggle-menu-line {
    height: 0;
    background-color: var(--color-text);
  }
  .open .l-header__toggle-menu-line::before {
    background-color: var(--color-text);
    transform: rotate(-45deg);
    top: 0;
  }
  .open .l-header__toggle-menu-line::after {
    background-color: var(--color-text);
    transform: rotate(45deg);
    top: 0;
  }
  .open .l-header__nav {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    overflow: auto;
  }
}
/* フッター
***************************************************************/
.l-footer {
  width: 100%;
  margin-top: 120px;
  padding: 70px 0 30px;
  border-top: 1px solid var(--color-main);
  background: #fff;
}

.l-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 72px;
  width: min(100%, 1030px);
  margin: 0 auto;
}
@media (max-width: 1030px) {
  .l-footer__inner {
    display: block;
    padding: 0 24px;
  }
}
@media (max-width: 766px) {
  .l-footer__inner {
    padding: 0 24px;
  }
}

@media (max-width: 1030px) {
  .l-footer__brand {
    display: block;
    text-align: center;
    margin-bottom: 60px;
  }
}

.l-footer__logo-link {
  display: block;
}
@media (max-width: 766px) {
  .l-footer__logo-link {
    text-align: center;
  }
}

.l-footer__logo-img {
  max-width: 170px;
  height: auto;
  margin-bottom: 16px;
}

.l-footer__sns-link-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.l-footer__sns-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--color-text);
  font-size: 14px;
  width: 24px;
}

.l-footer__nav {
  display: flex;
  align-items: flex-start;
  gap: 68px;
}
@media (max-width: 1030px) {
  .l-footer__nav {
    justify-content: center;
  }
}

.l-footer__list {
  min-width: 190px;
}
@media (max-width: 1030px) {
  .l-footer__list {
    width: 33%;
  }
}
@media (max-width: 766px) {
  .l-footer__list {
    width: 100%;
  }
}

.l-footer__list-sub {
  min-width: 84px;
}

.l-footer__item + .l-footer__item {
  margin-top: 8px;
}
@media (max-width: 766px) {
  .l-footer__item + .l-footer__item {
    margin-top: 0px;
  }
}

.l-footer__link {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 766px) {
  .l-footer {
    margin-top: 80px;
    padding: 32px 0 40px;
  }
  .l-footer__inner {
    flex-direction: column;
    gap: 26px;
  }
  .l-footer__nav {
    width: 100%;
    flex-direction: column;
    gap: 0px;
  }
  .l-footer__list,
  .l-footer__list-sub,
  .l-footer__brand {
    min-width: 100%;
  }
  .l-footer__link {
    position: relative;
    width: 100%;
    padding: 14px 20px;
  }
  .l-footer__link::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--color-text);
    border-bottom: 1px solid var(--color-text);
    transition: transform 0.3s ease;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    position: absolute;
    right: 20px;
  }
}
.l-footer__copyright {
  text-align: center;
  margin-top: 40px;
  color: var(--color-text);
  margin-top: 200px;
}
.l-footer__copyright p {
  font-size: 12px;
}

.p-top__box {
  font-size: 1.25rem;
  width: 26.0416666667vw;
  background-color: red;
  color: #fff;
}
@media (max-width: 766px) {
  .p-top__box {
    width: 66.6666666667vw;
  }
}

.c-breadcrumb {
  margin-bottom: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.c-breadcrumb__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px 0;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  line-height: 1.5;
  color: #666666;
}

.c-breadcrumb__item {
  display: flex;
  align-items: center;
}

.c-breadcrumb__item + .c-breadcrumb__item::before {
  content: ">";
  margin: 0 10px;
  color: #000;
}

.c-breadcrumb__link {
  color: #000;
  text-decoration: none;
}

.c-breadcrumb__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.c-breadcrumb__text {
  color: var(--color-text);
}

.p-top-posts__column-label {
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--color-main);
  font-size: 14px;
  line-height: 1.2;
}

/* .p-top-posts {
  margin-top: 120px;
} */

.p-top-posts__list {
  margin-top: 24px;
}

.p-top-posts__item + .p-top-posts__item {
  margin-top: 18px;
}

.p-top-posts__link {
  display: flex;
  align-items: center;
  gap: 18px;
}

.p-top-posts__thumb-wrap {
  width: 180px;
  flex-shrink: 0;
}

.p-top-posts__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.p-top-posts__thumb--placeholder {
  background: #e5e5e5;
}

.p-top-posts__content {
  min-width: 0;
}

.p-top-posts__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  margin-top: 30px;
}
.home .p-top-posts__meta {
  margin-top: 0;
}
.p-top-posts__date {
  font-size: 12px;
  line-height: 1;
  color: #666666;
}

.p-top-posts__category {
  font-size: 12px;
  line-height: 1;
  color: var(--color-main);
}

.p-top-posts__title {
  font-size: 1.25rem;
  line-height: 1.5;
}

.p-top-posts__empty {
  margin-top: 24px;
}

.p-top-posts__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.p-top-posts__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #d4d4d4;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1;
}

.p-top-posts__pagination .page-numbers.current {
  border-color: var(--color-main);
  background: var(--color-main);
  color: #fff;
}

@media (max-width: 766px) {
  .p-top-posts__link {
    align-items: flex-start;
    gap: 12px;
  }
  .p-top-posts__thumb-wrap {
    width: 120px;
  }
  .p-top-posts__title {
    font-size: 1rem;
  }
  .p-top-posts__pagination {
    margin-top: 22px;
  }
}
.p-post-purchase {
  margin-top: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
}

.p-post-purchase__cta-wrap {
  margin: 0;
}

.p-post-purchase__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  background: var(--color-main);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  font-size: 14px;
}

.p-post-purchase__cta .p-recipe__cart-icon {
  filter: brightness(0) invert(1);
}

.p-post-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  padding: 12px 20px;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  line-height: 1;
  border-radius: 5px;
  font-size: 14px;
}

.wp-block-image img {
  margin-bottom: 50px;
}

.l-page {
  margin-bottom: 120px;
}

.c-page-title {
  margin-bottom: 16px;
}
@media (max-width: 766px) {
  .c-page-title {
    font-size: 24px;
  }
}
.l-single-post .inner{
  max-width: 850px;
}

.l-single-post p,
.l-page-content p {
  margin-bottom: 20px;
  font-size: 14px;
}

.p-recipe {
  margin-top: 40px;
}

.p-recipe__thumb {
  margin: 0 0 20px;
}

.p-recipe__thumb img,
.p-recipe__thumb-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1.p-recipe__title.p-recipe__badge {
  margin: 0 0 16px;
  font-weight: 700;
}

.p-recipe__meta {
  margin-bottom: 20px;
}

.p-recipe__lead {
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.85;
}

.p-recipe__section {
  margin-bottom: 32px;
}

.p-recipe__h2 {
  margin: 0 0 14px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-recipe__h2--seasoning {
  font-size: 1rem;
}

.p-recipe__body {
  font-size: 0.9375rem;
  line-height: 1.85;
}

.p-recipe__steps {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.85;
}

.p-recipe__step + .p-recipe__step {
  margin-top: 8px;
}

.p-recipe__product-link-wrap {
  margin-top: 16px;
}

.p-recipe__product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  background: var(--color-main);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.p-recipe__cart-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: middle;
}

.p-recipe__cta-wrap {
  margin-top: 28px;
}

.p-recipe__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border: 1px solid var(--color-main);
  border-radius: 5px;
  background: var(--color-main);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.p-recipe__product-link .p-recipe__cart-icon,
.p-recipe__cta .p-recipe__cart-icon {
  filter: brightness(0) invert(1);
}
.footer__info-text{
  font-size: 12px;
  line-height: 1.5;
  color: #909090;
  margin-bottom: 5px;
}
.p-post-back-button-wrap{
  text-align: center;
}
