@charset "UTF-8";
/*==============================
設定
==============================*/
html {
  overflow-x: hidden;
  visibility: hidden;
}
html.wf-active,
html.loading-delay {
  visibility: visible;
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
body {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #4f4946;
  background: #fff;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

/*==========================
共通クラス
==========================*/
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 35px;
  padding-left: 35px;
  box-sizing: content-box;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding-right: 27px;
    padding-left: 27px;
  }
}

.section__title {
  letter-spacing: 0.1em;
  font-size: clamp(16px, 2.0833333333vw, 18px);
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: clamp(13px, 4.0625vw, 14px);
  }
}

.page-title__container {
  height: 80px;
  margin: 0 calc(50% - 50vw);
  background: #e1e0e0;
}

.page-title {
  display: flex;
  align-items: center;
  max-width: 1280px;
  height: inherit;
  margin: auto;
  padding: 0 45px;
  letter-spacing: 0.1em;
  font-size: 20px;
  font-weight: 600;
}

/* SP */
@media screen and (max-width: 900px) {
  .page-title__container,
  .page-title {
    display: none;
  }
  .page-title__container.page-title__container--sp {
    display: block;
    height: 70px;
    margin-top: 70px;
  }
  .page-title.page-title--sp {
    display: flex;
    letter-spacing: 0.03em;
  }
  .page-title.page-title--sp {
    padding: 0 27px;
  }
}
.link {
  position: relative;
  display: inline-block;
  width: 160px;
  padding: 20px 0 0;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 600;
}
.link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #4f4946;
  bottom: 0;
  left: 0;
}
.link:hover::before {
  animation: 0.5s border-slide 0s ease-in-out;
}

@keyframes border-slide {
  0% {
    transform-origin: right;
    transform: scale(1);
  }
  50% {
    transform-origin: right;
    transform: scale(0);
  }
  51% {
    transform-origin: left;
    transform: scale(0);
  }
  100% {
    transform-origin: left;
    transform: scale(1);
  }
}

@keyframes border-slide-vertical {
  0% {
    transform-origin: bottom;
    transform: scale(1);
  }
  40% {
    transform-origin: bottom;
    transform: scale(0);
  }
  41% {
    transform-origin: top;
    transform: scale(0);
  }
  80% {
    transform-origin: top;
    transform: scale(1);
  }
}

.link-arrow {
  position: relative;
  display: inline-block;
  width: 160px;
  padding: 20px 0 0;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 600;
}
.link-arrow::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #4f4946;
  bottom: 0;
  left: 0;
}
.link-arrow::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 24px;
  right: 0;
  background: url(../img/arrow.svg) no-repeat center center/contain;
}
.link-arrow:hover::before {
  animation: 0.5s border-slide 0s ease-in-out;
}
.link-arrow-fixed {
  width: 100%;
  background: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  padding: 1px 0 15px 20px;
  border-top: #ccc solid 1px;
}
@media screen and (max-width: 767px){
  .link-arrow-fixed {
    padding: 0.1vw 0 0 5.3vw;
  }
  .link-arrow-fixed .link-arrow {
    padding: 5vw 0 6vw;
  }
  .link-arrow-fixed .link-arrow::before {
    bottom: 5.9vw;
  }
  .link-arrow-fixed .link-arrow::after {
    top: 6vw;
  }
}

/*==========================
header
==========================*/
.header {
  position: relative;
  height: 80px;
  width: 100%;
  z-index: 1030;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding-right: 35px;
  padding-left: 35px;
  box-sizing: content-box;
}

@media screen and (max-width: 900px) {
  .header__container {
    padding-right: 27px;
    padding-left: 27px;
  }
}
/* ロゴ */
.header__logo {
  line-height: 80px;
  padding: 0 10px;
}
.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.header__logo.active {
  position: fixed;
  top: 0;
  left: 28px;
}

.header__logo img {
  height: 44px;
  vertical-align: middle;
}

.header__logo img:hover {
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .header__logo {
    padding: 0;
  }
}
/* ナビゲーション */
.header__navi {
  flex: 1;
  height: 100%;
}

.header__items {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header__item:not(:last-child) {
  margin-right: 50px;
}

.header__item {
  line-height: 80px;
}

.header__item a {
  position: relative;
  display: inline-block;
  transition: 0.2s ease-in-out;
  font-family: "Nunito", sans-serif;
  color: #fff;
}
.header__item a::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 30px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s ease-in-out;
}
.header__item a:hover::after {
  transform: scale(1, 1);
}

.header__items.text-color .header__item a {
  color: #4f4946;
}
.header__items.text-color .header__item a::after {
  background: #4f4946;
}

.header.color-dark .header__item a {
  color: #4f4946;
}

/* ハンバーガーメニュー */
.header__hamburger__button,
.header__hamburger__content {
  display: none;
}

.header__hamburger__item a {
  text-decoration: none;
}

@media screen and (max-width: 900px) {
  .header {
    position: absolute;
    height: 70px;
  }
  .header__logo {
    line-height: 70px;
  }
  .header__logo img {
    height: 32px;
    transform: translateY(-7px);
  }
  /* ナビゲーション */
  .header__navi {
    display: none;
  }
  /* ハンバーガーメニュー */
  .header__hamburger__button {
    position: absolute;
    display: block;
    top: 14px;
    right: 25px;
    width: 42px;
    height: 42px;
    z-index: 1010;
    cursor: pointer;
    text-align: center;
  }
  .header__hamburger__button span {
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #fff;
    transition: 0.3s ease-in-out;
  }
  .header__hamburger__button.header__hamburger__button--color span {
    background: #4f4946;
  }
  .header__hamburger__button.active {
    position: fixed;
  }
  .header__hamburger__button span:nth-child(1) {
    top: 10px;
  }
  .header__hamburger__button span:nth-child(2) {
    top: 20px;
  }
  .header__hamburger__button span:nth-child(3) {
    top: 30px;
  }
  .header__hamburger__button.active span {
    background: #fff;
  }
  .header__hamburger__button.active span:nth-child(1) {
    top: 20px;
    left: 6px;
    transform: rotate(-45deg);
  }
  .header__hamburger__button.active span:nth-child(2),
  .header__hamburger__button.active span:nth-child(3) {
    top: 20px;
    transform: rotate(45deg);
  }
  .header__hamburger__content {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 100vh;
    padding: 89px 25px;
    top: 0;
    right: 0;
    transform: translateX(100%);
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    background: #4f4946;
    z-index: 1000;
  }
  .header__hamburger__content.active {
    transform: translateX(0%);
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
  .header__hamburger__content .header__logo {
    position: absolute;
    top: 0;
    left: 28px;
  }
  .header__hamburger__content nav:first-child {
    padding-bottom: clamp(25px, 7.8125vw, 50px);
    border-bottom: 1px solid #fff;
  }
  .header__hamburger__items__container {
    height: 100%;
  }
  .header__hamburger__item {
    text-align: center;
  }
  .header__hamburger__item a {
    position: relative;
    display: inline-block;
    letter-spacing: 0.02em;
    font-family: "Nunito", sans-serif;
    font-size: clamp(12px, 3.75vw, 24px);
    color: #fff;
  }
  .header__hamburger__item a.arrow::after {
    position: absolute;
    content: "";
    width: clamp(12px, 3.2vw, 20px);
    height: clamp(12px, 3.2vw, 20px);
    top: 50%;
    transform: translateY(-50%);
    right: -30%;
    background: url(../img/arrow-white.svg) no-repeat center center/contain;
  }
  .header__hamburger__item.font-weight-normal a {
    font-weight: 400;
  }
  .header__hamburger__items--01 .header__hamburger__item a {
    padding: clamp(22px, 5.8666666667vw, 50px) 0;
  }
  .header__hamburger__items--icon {
    display: flex;
    justify-content: center;
  }
  .header__hamburger__items--icon a {
    display: block;
    margin-top: clamp(38px, 11.875vw, 75px);
    padding: 0 15px;
    font-size: clamp(23px, 7.1875vw, 46px);
    color: #fff;
  }
  .header__hamburger__items--02 {
    margin-top: clamp(22px, 5.8666666667vw, 65px);
  }
  .header__hamburger__items--02 .header__hamburger__item a {
    padding: clamp(10px, 3.125vw, 20px) 0;
  }
}
/*==========================
  footer
==========================*/
.footer {
  position: relative;
  padding: min(165px, 13.75vw) 0 min(65px, 5.4166666667vw);
  border-top: 3px solid #4f4946;
  background: #fff;
}
.footer .inner {
  position: relative;
  z-index: 40;
}

/* SNSアイコン */
.footer__icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__icon:not(:last-child) {
  margin-right: 40px;
}

.footer__icon a {
  font-size: 30px;
  transition: 0.3s ease-in-out;
}

.footer__icon a:hover {
  opacity: 0.7;
}

/* ナビゲーション */
.footer__navi {
  margin-top: min(152px, 12.9166666667vw);
}

.footer__navi__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__navi__item a {
  display: inline-block;
  margin: 0 15px;
  padding: 0 17px;
  line-height: 2.5714285714;
  letter-spacing: 0.1em;
  font-family: "Nunito", sans-serif;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease-in-out;
}
.footer__navi__item a.link-arrow {
  position: relative;
  width: unset;
  margin: 0 32px 0 15px;
  font-weight: unset;
}
.footer__navi__item a.link-arrow::before {
  display: none;
}
.footer__navi__item a.link-arrow::after {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.footer__navi__item a:hover {
  opacity: 0.7;
  width: unset;
  font-weight: unset;
}

/* コピーライト */
.footer__copyright {
  margin-top: 42px;
  text-align: center;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 15px;
  font-size: 20px;
  color: #4f4946;
  transition: 0.2s;
  z-index: 1030;
}
.page-top:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: min(70px, 18.6666666667vw) 0 min(80px, 21.3333333333vw);
  }
  .footer .inner {
    padding-left: 37px;
  }
  /* SNSアイコン */
  .footer__icons {
    justify-content: flex-start;
  }
  .footer__icons a {
    font-size: 29px;
  }
  .footer__icon:not(:last-child) {
    margin-right: 21px;
  }
  /* ナビゲーション */
  .footer__navi {
    margin-top: min(73px, 19.4666666667vw);
  }
  .footer__navi__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
  .footer__navi__item a {
    margin: 0;
    padding: 0 15px 0 0;
  }
  .footer__navi__item a.link-arrow {
    margin: 0;
  }
  /* コピーライト */
  .footer__copyright {
    margin-top: 67px;
    text-align: left;
    font-size: 15px;
  }
  /* ページトップ */
  .page-top {
    right: 12px;
    bottom: 18px;
    font-size: 18px;
  }
}
/*==========================
  下層ページ・メインビジュアル
==========================*/
#sub-mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
#sub-mv .sub-mv__inner {
  height: inherit;
}
#sub-mv .sub-mv__title {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  writing-mode: vertical-lr;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  #sub-mv .sub-mv__title {
    top: 38%;
    right: 23px;
    transform: none;
    font-size: 14px;
  }
}
/*==========================
  トップページ
==========================*/
#page-top #mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
}
#page-top #mv .mv__inner {
  height: inherit;
}
#page-top #mv .mv__main-title {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  bottom: 50px;
  left: 45px;
  line-height: 1.6111111111;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-weight: 600;
  color: #b3aca7;
  z-index: 20;
}
#page-top #mv .mv__swiper,
#page-top #mv .mv__swiper .swiper-img,
#page-top #mv .mv__swiper .swiper-img img {
  height: inherit;
}
#page-top #mv .mv__swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
#page-top #mv .mv__swiper .swiper-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-top #mv .mv__swiper__shop-name {
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  writing-mode: vertical-lr;
  font-size: 14px;
  color: #fff;
  z-index: 20;
}

@media screen and (max-width: 767px) {
  #page-top #mv .mv__main-title {
    width: calc(100% - 25px);
    bottom: 3vh;
    left: 27px;
    line-height: 1.5;
    font-size: 14px;
  }
  #page-top #mv .mv__swiper__shop-name {
    right: 10px;
  }
}
#page-top #lead {
  position: relative;
  margin-top: 100vh;
  padding: 72px 0 90px;
  background: #fff;
}
#page-top #lead .inner {
  text-align: center;
}
#page-top #lead .lead__title {
  line-height: 1.625;
  font-size: 32px;
  font-weight: 600;
}
#page-top #lead .lead__text {
  max-width: 775px;
  margin: 35px auto 0;
  line-height: 1.75;
  font-size: 18px;
}
#page-top #lead .lead__text + #page-top #lead .lead__text {
  margin-top: 40px;
}
#page-top #lead .link {
  margin-top: 15px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #page-top #lead {
    padding: 60px 0 65px;
  }
  #page-top #lead .inner {
    text-align: left;
  }
  #page-top #lead .inner br {
    display: none;
  }
  #page-top #lead .lead__title {
    line-height: 1.75;
    font-size: clamp(16px, 5vw, 20px);
  }
  #page-top #lead .lead__text {
    margin: 24px auto 0;
    line-height: 1.75;
    font-size: clamp(14px, 4.375vw, 16px);
  }
  #page-top #lead .lead__text + #page-top #lead .lead__text {
    margin-top: 30px;
  }
  #page-top #lead .link {
    margin-top: 14px;
  }
}
#page-top #restaurants-recipe {
  position: relative;
  padding-bottom: 42px;
  background: #fff;
}
#page-top #restaurants-recipe .inner {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap : wrap;
  -ms-flex-wrap : wrap;
  flex-wrap : wrap;
  /* justify-content: center;
  gap: 40px; */
}
#page-top #restaurants-recipe .restaurant-recipe__item {
  width: 48.3%;
  margin-bottom: 68px;
}
#page-top #restaurants-recipe .restaurant-recipe__item__img {
  position: relative;
  overflow: hidden;
  background: #000;
}
#page-top #restaurants-recipe .restaurant-recipe__item__img a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
}
#page-top #restaurants-recipe .restaurant-recipe__item__img a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease-in-out;
  opacity: 0.8;
}
#page-top #restaurants-recipe .restaurant-recipe__item__img a:hover {
  opacity: 0.8;
}
#page-top #restaurants-recipe .restaurant-recipe__item__img a:hover img {
  transform: scale(1.1);
}
#page-top #restaurants-recipe .section__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#page-top #restaurants-recipe .restaurant-recipe__item__text {
  margin-top: 32px;
}
#page-top #restaurants-recipe .restaurant-recipe__item__text p {
  line-height: 1.75;
  font-size: 14px;
}
#page-top #restaurants-recipe .restaurant-recipe__item__text p:not(:first-child) {
  margin-top: 100px;
}
#page-top #restaurants-recipe .link {
  margin-top: 4px;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  #page-top #restaurants-recipe {
    padding-bottom: 75px;
  }
  #page-top #restaurants-recipe .inner {
    display: block;
  }
  #page-top #restaurants-recipe .restaurant-recipe__item {
    width: 100%;
    margin-bottom: 0;
  }
  #page-top #restaurants-recipe .restaurant-recipe__item:not(:first-child) {
    margin-top: 70px;
  }
  #page-top #restaurants-recipe .section__title {
    font-size: clamp(13px, 4.0625vw, 14px);
  }
  #page-top #restaurants-recipe .restaurant-recipe__item__text {
    margin-top: 16px;
  }
  #page-top #restaurants-recipe .restaurant-recipe__item__text p:not(:first-child) {
    margin-top: 50px;
    letter-spacing: 0.04em;
  }
  #page-top #restaurants-recipe .restaurant-recipe__item__text p br {
    display: none;
  }
  #page-top #restaurants-recipe .restaurant-recipe__item__text .text-small {
    font-size: 12px;
  }
  #page-top #restaurants-recipe .link {
    max-width: 45%;
  }
  #page-top #restaurants-recipe .link.text-small {
    margin-top: 4px;
    font-size: 10px;
  }
  #page-top #restaurants-recipe .link-arrow {
    max-width: 45%;
  }
  #page-top #restaurants-recipe .link-arrow::after {
    top: 20px;
  }
  #page-top #restaurants-recipe .link-arrow.text-small {
    margin-top: 8px;
    font-size: 10px;
  }
}
#page-top #recruit {
  overflow: hidden;
  aspect-ratio: 1280/360;
}
#page-top #recruit a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
}
#page-top #recruit a:hover img {
  opacity: 0.8;
  transform: scale(1.1);
}
#page-top #recruit a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
#page-top #recruit a h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  #page-top #recruit {
    aspect-ratio: 750/900;
  }
}
#page-top #topics {
  position: relative;
  padding: 110px 0;
  background: #fff;
}
#page-top #topics .section__title {
  text-align: center;
  font-size: 17px;
  color: #4f4946;
}
#page-top #topics .topics__list {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
#page-top #topics .topics__list__item {
  width: 25%;
  padding: clamp(15px, 1.953125vw, 25px);
  transition: box-shadow 0.3s ease-in-out;
}
#page-top #topics .topics__list__item:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
#page-top #topics .topics__list__item-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out;
}
#page-top #topics .topics__list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
#page-top #topics .topics__list__item-content {
  padding: 15px 0;
}
#page-top #topics .topics__list__item-date {
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-size: 14px;
}
#page-top #topics .topics__list__item-title {
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#page-top #topics .link {
  display: block;
  margin: 27px auto 0;
}

@media screen and (max-width: 767px) {
  #page-top #topics {
    padding: 80px 0;
  }
  #page-top #topics .topics__list {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #page-top #topics .topics__list__item {
    width: 46%;
  }
  #page-top #topics .topics__list__item:nth-child(n+3) {
    margin-top: 28px;
  }
  #page-top #topics .topics__list__item-content {
    padding: 10px 0;
  }
  #page-top #topics .topics__list__item-date {
    font-size: 12px;
  }
  #page-top #topics .topics__list__item-title {
    margin-top: 5px;
    font-size: 14px;
  }
  #page-top #topics .link {
    margin: 0;
  }
}
/*==========================
  店舗一覧ページ
==========================*/
#page-archive-restaurant #sub-mv {
  background: url(../img/restaurant-mv.jpg) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  #page-archive-restaurant #sub-mv {
    background: url(../img/restaurant-mv_sp.jpg) no-repeat center center/cover;
  }
}
#page-archive-restaurant #restaurants {
  margin-top: 100vh;
  padding: 75px 0 100px;
  background: #fff;
}
#page-archive-restaurant #restaurants .restaurants__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#page-archive-restaurant #restaurants .restaurants__list__item {
  display: flex;
  flex-direction: column;
  width: 47%;
}
#page-archive-restaurant #restaurants .restaurants__list__item:nth-child(n+3) {
  margin-top: 80px;
}
#page-archive-restaurant #restaurants .restaurants__list__item-img {
  aspect-ratio: 560/350;
  overflow: hidden;
}
#page-archive-restaurant #restaurants .restaurants__list__item-img a {
  display: block;
  width: 100%;
  height: 100%;
}
#page-archive-restaurant #restaurants .restaurants__list__item-img a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
#page-archive-restaurant #restaurants .restaurants__list__item-img a:hover img {
  transform: scale(1.1);
}
#page-archive-restaurant #restaurants .restaurants__list__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#page-archive-restaurant #restaurants .restaurants__list__item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 120px;
}
#page-archive-restaurant #restaurants .restaurants__list__item-logo img {
  width: 50%;
  min-width: 72px;
}
#page-archive-restaurant #restaurants .restaurants__list__item:first-child .restaurants__list__item-logo img {
  transform: translateY(-5px);
}
#page-archive-restaurant #restaurants .restaurants__list__item-tag {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
#page-archive-restaurant #restaurants .restaurants__list__item-location,
#page-archive-restaurant #restaurants .restaurants__list__item-concept {
  width: -moz-max-content;
  width: max-content;
  padding: 1px 5px;
  line-height: 1.75;
  font-size: clamp(12px, 1.5625vw, 14px);
  border: 1px solid #4f4946;
}
#page-archive-restaurant #restaurants .restaurants__list__item-michelin {
  width: 40px;
  margin-left: 20px;
  box-sizing: content-box;
}
#page-archive-restaurant #restaurants .restaurants__list__item-michelin img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#page-archive-restaurant #restaurants .restaurants__list__item-title {
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-size: 18px;
  font-weight: 600;
}
#page-archive-restaurant #restaurants .restaurants__list__item-text {
  margin: 19px 0 16px;
  line-height: 1.75;
  font-size: 14px;
}
#page-archive-restaurant #restaurants .link {
  padding: 5px 0 0;
}

/* 1100px以下 */
@media screen and (max-width: 1110px) {
  #page-archive-restaurant #restaurants .restaurants__list__item-head {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 15px;
  }
  #page-archive-restaurant #restaurants .restaurants__list__item-tag {
    margin: 15px 0;
  }
  #page-archive-restaurant #restaurants .restaurants__list__item:first-child .restaurants__list__item-logo img {
    transform: translateY(0);
  }
}
/* SP */
@media screen and (max-width: 767px) {
  #page-archive-restaurant #restaurants {
    padding: 55px 0 107px;
  }
  #page-archive-restaurant #restaurants .restaurants__list {
    display: block;
  }
  #page-archive-restaurant #restaurants .restaurants__list__item {
    width: 100%;
  }
  #page-archive-restaurant #restaurants .restaurants__list__item:nth-child(n+2) {
    margin-top: 100px;
  }
  #page-archive-restaurant #restaurants .restaurants__list__item-head {
    align-items: flex-start;
    min-height: 120px;
    margin: 23px 0 0;
  }
  #page-archive-restaurant #restaurants .restaurants__list__item-logo img {
    width: 43%;
  }
  #page-archive-restaurant #restaurants .restaurants__list__item-tag {
    margin: 40px 0 12px;
  }
  #page-archive-restaurant #restaurants .restaurants__list__item-location,
  #page-archive-restaurant #restaurants .restaurants__list__item-concept {
    padding: 1px 8px;
    font-size: 10px;
  }
  #page-archive-restaurant #restaurants .restaurants__list__item-michelin {
    width: 35px;
    margin-left: 20px;
  }
  #page-archive-restaurant #restaurants .restaurants__list__item-title {
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  #page-archive-restaurant #restaurants .restaurants__list__item-text {
    margin: 13px 0 16px;
  }
}
/*==========================
  店舗詳細ページ
==========================*/
#page-single-restaurant {
  padding: 0 80px 80px;
  background: #e1e0e0;
}
#page-single-restaurant .inner {
  position: relative;
  max-width: 1120px;
  padding: 55px 60px 60px;
  box-sizing: border-box;
  background: #fff;
  z-index: 30;
}
#page-single-restaurant .reservation-link__container {
  position: fixed;
  width: 100%;
  max-width: 1280px;
  margin: auto;
  top: 215px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.1em;
  text-align: right;
  writing-mode: vertical-rl;
  z-index: 20;
}
#page-single-restaurant .reservation-link__container .reservation-link {
  white-space: nowrap;
  display: block;
  line-height: 80px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
#page-single-restaurant .reservation-link__container .reservation-link .reservation-link-text {
  margin-bottom: 3px;
}
#page-single-restaurant .reservation-link__container .reservation-link .reservation-link-text::after {
  display: inline-block;
  content: "";
  width: 1px;
  height: 70px;
  margin-right: 10px;
  background: #4f4946;
  animation: border-slide-vertical 2.5s infinite ease-in-out;
}
#page-single-restaurant .reservation-link__container .reservation-link:hover {
  opacity: 0.8;
  transform: translateY(10px);
}

/* SP */
@media screen and (max-width: 900px) {
  #page-single-restaurant {
    padding: 0;
    background: #fff;
  }
  #page-single-restaurant .inner {
    padding: 0;
  }
  #page-single-restaurant .reservation-link__container {
    display: none;
  }
}
#page-single-restaurant #js-sub-mv-swiper {
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
#page-single-restaurant #js-sub-mv-swiper .swiper-android .swiper-slide,
#page-single-restaurant #js-sub-mv-swiper .swiper-wrapper {
  aspect-ratio: 1000/600;
}
#page-single-restaurant #js-sub-mv-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-single-restaurant #js-sub-mv-swiper .swiper-button-prev {
  left: 25px;
}
#page-single-restaurant #js-sub-mv-swiper .swiper-button-next {
  right: 25px;
}
#page-single-restaurant #js-sub-mv-swiper .swiper-button-prev:after,
#page-single-restaurant #js-sub-mv-swiper .swiper-button-next:after {
  content: "";
  margin: auto;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}
#page-single-restaurant #js-sub-mv-swiper .swiper-button-prev:after {
  background-image: url(../img/arrow-prev.png);
}
#page-single-restaurant #js-sub-mv-swiper .swiper-button-next:after {
  background-image: url(../img/arrow-next.png);
}

@media screen and (max-width: 767px) {
  #page-single-restaurant #js-sub-mv-swiper {
    /* 前へ次への矢印カスタマイズ */
  }
  #page-single-restaurant #js-sub-mv-swiper .swiper-android .swiper-slide,
  #page-single-restaurant #js-sub-mv-swiper .swiper-wrapper {
    aspect-ratio: 1/1;
  }
  #page-single-restaurant #js-sub-mv-swiper .swiper-button-prev {
    left: 5px;
  }
  #page-single-restaurant #js-sub-mv-swiper .swiper-button-next {
    right: 5px;
  }
  #page-single-restaurant #js-sub-mv-swiper .swiper-button-prev:after,
  #page-single-restaurant #js-sub-mv-swiper .swiper-button-next:after {
    content: "";
    width: 12px;
    height: 20px;
  }
}
#page-single-restaurant #restaurant-detail {
  /* SNSアイコン */
}
#page-single-restaurant #restaurant-detail .reservation-link.is-sp {
  display: none;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__logo {
  width: 16.4%;
  max-width: 200px;
  margin: 60px auto 0;
  text-align: center;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__inner {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info {
  width: 64%;
  padding-right: 40px;
  box-sizing: border-box;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__tag {
  display: flex;
  align-items: center;
  gap: 10px;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__location,
#page-single-restaurant #restaurant-detail .restaurant-detail__info__concept {
  padding: 1px 8px;
  line-height: 1.75;
  font-size: clamp(12px, 1.5625vw, 14px);
  border: 1px solid #4f4946;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__michelin {
  width: 40px;
  margin-left: 20px;
  box-sizing: content-box;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__michelin img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__title {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__text {
  margin-top: 25px;
  line-height: 1.75em;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__img.restaurant-detail__img--sp {
  display: none;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__menu {
  margin-top: 40px;
  padding-bottom: 53px;
  border-bottom: 1px solid #c9c9c9;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__menu .restaurant-detail__info__menu-title {
  padding-bottom: 13px;
  line-height: 1.75;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 1px solid #c9c9c9;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__menu .restaurant-detail__info__menu-list {
  margin-top: 13px;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__menu .restaurant-detail__info__menu-list li {
  display: flex;
  align-items: center;
  padding: 14px 0;
  line-height: 1.75;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__menu .restaurant-detail__info__menu-list li .line {
  flex: 1 1 auto;
  display: flex;
  content: "";
  min-width: 20px;
  height: 7px;
  margin: 0 10px;
  padding: 0;
  border: 0;
  outline: 0;
  background: radial-gradient(#000 10%, transparent 30%) center/7px 7px;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__menu .restaurant-detail__info__menu-list li .tax {
  display: block;
  font-size: 12px;
  margin-top: -7px;
  text-align: right;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__menu .restaurant-detail__info__menu-note {
  margin-top: 13px;
  line-height: 2;
  font-size: 14px;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__menu .link {
  margin-top: 10px;
  font-size: 12px;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__other-container {
  padding-bottom: 40px;
  border-bottom: 1px solid #c9c9c9;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__other {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 31px;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__other-term {
  width: 17%;
  min-width: 100px;
  line-height: 1.75;
  font-weight: 600;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__other-description {
  flex: 1;
  width: 100%;
  line-height: 1.75;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__other-description.restaurant-detail__info__other-description--address br.is-sp, #page-single-restaurant #restaurant-detail .restaurant-detail__info__other-description.restaurant-detail__info__other-description--time br.is-sp {
  display: none;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__other-description .link {
  padding: 15px 0 0;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__other-note {
  margin-top: 30px;
  line-height: 1.75;
  font-size: 14px;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 40px;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__icon:not(:last-child) {
  margin-right: 30px;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__icon a {
  font-size: 30px;
  transition: 0.3s ease-in-out;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__info__icon a:hover {
  opacity: 0.7;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__img {
  flex: 1;
}
#page-single-restaurant #restaurant-detail .restaurant-detail__img__list li:not(:first-child) {
  margin-top: 40px;
}

/* SP */
@media screen and (max-width: 900px) {
  #page-single-restaurant #restaurant-detail {
    position: relative;
    /* SNSアイコン */
  }
  #page-single-restaurant #restaurant-detail .reservation-link.is-sp {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    writing-mode: vertical-rl;
    line-height: 27px;
    font-size: 14px;
  }
  #page-single-restaurant #restaurant-detail .reservation-link.is-sp .reservation-link-text {
    margin-bottom: 1vw;
  }
  #page-single-restaurant #restaurant-detail .reservation-link.is-sp .reservation-link-text::after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 18.6vw;
    margin: 0.8vw 10px 0 0;
    background: #4f4946;
    animation: border-slide-vertical 2.5s infinite ease-in-out;
  }
  #page-single-restaurant #restaurant-detail .reservation-link.is-sp:hover {
    opacity: 0.8;
    transform: translateY(10px);
  }
  #page-single-restaurant #restaurant-detail .reservation-link.is-sp.fixed {
    position: fixed;
    top: 30px;
    right: 0;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__logo {
    width: 35%;
    margin: 40px auto 0;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__inner {
    display: block;
    margin-top: 42px;
    padding: 0 27px;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info {
    width: 100%;
    padding-right: 0;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__title {
    margin-top: 20px;
    line-height: 1.4;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__michelin {
    width: 35px;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__img.restaurant-detail__img--sp {
    display: block;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__img.restaurant-detail__img--sp .restaurant-detail__img__list {
    margin: auto;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__img.restaurant-detail__img--sp .restaurant-detail__img__list li {
    width: 100%;
    margin-top: 55px;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__img.restaurant-detail__img--sp .restaurant-detail__img__list li:not(:first-child) {
    margin-top: 32px;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__img.restaurant-detail__img--sp .restaurant-detail__img__list li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__menu {
    margin-top: 53px;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__menu .restaurant-detail__info__menu-title {
    text-align: center;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__menu .restaurant-detail__info__menu-note {
    margin-top: 15px;
    line-height: 1.75;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__menu .link {
    margin-top: 20px;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__other-container {
    padding-bottom: 32px;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__other {
    margin-top: 31px;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__other-term {
    width: 32%;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__other-description .space {
    display: none;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__other-description.restaurant-detail__info__other-description--address br.is-sp, #page-single-restaurant #restaurant-detail .restaurant-detail__info__other-description.restaurant-detail__info__other-description--time br.is-sp {
    display: block;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__other-description .link {
    margin-top: 0;
    padding: 14px 0 0;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__other-note {
    margin-top: 27px;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__icons {
    padding-top: 55px;
    justify-content: center;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__info__icon:not(:last-child) {
    margin-right: 40px;
  }
  #page-single-restaurant #restaurant-detail .restaurant-detail__img {
    display: none;
  }
}
#page-single-restaurant #restaurant-img {
  margin-top: 80px;
}
#page-single-restaurant #restaurant-img .restaurant-img__container {
  display: flex;
}
#page-single-restaurant #restaurant-img .restaurant-img__item {
  width: 100vw;
}
#page-single-restaurant #restaurant-img .restaurant-img__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-single-restaurant #restaurant-img .restaurant-img__item--01 {
  margin-left: calc(50% - 50vw);
}
#page-single-restaurant #restaurant-img .restaurant-img__item--02 {
  margin-right: calc(50% - 50vw);
}

@media screen and (max-width: 767px) {
  #page-single-restaurant #restaurant-img {
    margin-top: 68px;
  }
  #page-single-restaurant #restaurant-img .restaurant-img__container {
    display: block;
  }
  #page-single-restaurant #restaurant-img .restaurant-img__item--01 {
    width: 100%;
  }
  #page-single-restaurant #restaurant-img .restaurant-img__item--02 {
    width: 100%;
    margin-top: 23px;
  }
}
#page-single-restaurant #reservation {
  position: relative;
  max-width: 1120px;
  margin: 80px auto 0;
  z-index: 30;
}
#page-single-restaurant #reservation .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 67px 0 66px;
}
#page-single-restaurant #reservation .link-arrow {
  padding: 10px 0 0;
  width: 215px;
}
#page-single-restaurant #reservation .link-arrow::after {
  width: 15px;
  height: 15px;
  top: 12px;
}
#page-single-restaurant #reservation .reservation_text {
  margin-top: 65px;
  font-size: 14px;
}
#page-single-restaurant #reservation .reservation__tel {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  #page-single-restaurant #reservation {
    margin-top: 0;
    z-index: unset;
  }
  #page-single-restaurant #reservation .inner {
    align-items: flex-start;
    padding: 35px 27px 33px;
  }
  #page-single-restaurant #reservation .reservation_text {
    margin-top: 32px;
    font-size: 12px;
  }
  #page-single-restaurant #reservation .reservation__tel {
    margin-top: 10px;
    letter-spacing: 0.03em;
    font-size: 14px;
    font-weight: 400;
  }
}
#page-single-restaurant #restaurants-list {
  position: relative;
  max-width: 1120px;
  margin: auto;
  z-index: 30;
}
#page-single-restaurant #restaurants-list .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  padding: 23px 0 50px;
}
#page-single-restaurant #restaurants-list .link {
  width: 215px;
}

@media screen and (max-width: 767px) {
  #page-single-restaurant #restaurants-list {
    z-index: unset;
  }
  #page-single-restaurant #restaurants-list .inner {
    justify-content: flex-start;
    margin-top: 0;
    padding: 33px 27px 78px;
  }
  #page-single-restaurant #restaurants-list .link {
    padding: 13px 0 0;
    text-align: left;
  }
}
/*==========================
  レシピ一覧ページ
==========================*/
#page-archive-recipe #sub-mv {
  background: url(../img/recipe-mv.jpg) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  #page-archive-recipe #sub-mv {
    background: url(../img/recipe-mv_sp.jpg) no-repeat center center/cover;
  }
}
#page-archive-recipe #recipe {
  margin-top: 100vh;
  padding: 61px 0 90px;
  background: #fff;
}
#page-archive-recipe #recipe .recipe__lead {
  line-height: 1.75;
  text-align: center;
}
#page-archive-recipe #recipe .recipe__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 54px;
}
#page-archive-recipe #recipe .recipe__list:after {
  content: "";
  width: 33.3333333333%;
}
#page-archive-recipe #recipe .recipe__list__item {
  display: flex;
  flex-direction: column;
  width: 33.3333333333%;
  padding: clamp(30px, 3.90625vw, 35px) clamp(30px, 3.90625vw, 50px) clamp(15px, 1.953125vw, 25px);
  transition: box-shadow 0.3s ease-in-out;
}
#page-archive-recipe #recipe .recipe__list__item:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
#page-archive-recipe #recipe .recipe__list__item a {
  display: block;
  width: 100%;
  height: 100%;
}
#page-archive-recipe #recipe .recipe__list__item-img {
  aspect-ratio: 1/1;
}
#page-archive-recipe #recipe .recipe__list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-archive-recipe #recipe .recipe__list__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#page-archive-recipe #recipe .recipe__list__item-date {
  display: inline-block;
  margin-top: 12px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  font-size: 14px;
}
#page-archive-recipe #recipe .recipe__list__item-title {
  margin-top: 5px;
  line-height: 1.5625;
  font-weight: 600;
}
#page-archive-recipe #recipe .link {
  display: block;
  margin: 62px auto 0;
}

/* SP */
@media screen and (max-width: 767px) {
  #page-archive-recipe #recipe {
    padding: 47px 0 90px;
  }
  #page-archive-recipe #recipe .recipe__lead {
    text-align: left;
  }
  #page-archive-recipe #recipe .recipe__list {
    margin-top: 63px;
  }
  #page-archive-recipe #recipe .recipe__list__item {
    width: 47%;
    padding: 0 0 10px;
    border: none;
  }
  #page-archive-recipe #recipe .recipe__list__item:nth-child(n+3) {
    margin-top: 30px;
  }
  #page-archive-recipe #recipe .recipe__list__item-date {
    margin-top: 7px;
    letter-spacing: 0.1em;
  }
  #page-archive-recipe #recipe .recipe__list__item-title {
    margin-top: 8px;
    line-height: 1.4285714286;
    font-size: 14px;
  }
  #page-archive-recipe #recipe .link {
    margin: 30px 0 0 0;
  }
}
/*==========================
  タグ別一覧ページ
==========================*/
#page-archive-tag {
  background: #e1e0e0;
}
#page-archive-tag #recipe {
  padding: 61px 0 90px;
  background: #fff;
}
#page-archive-tag #recipe .recipe__tag {
  line-height: 1.75;
}
#page-archive-tag #recipe .recipe__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 54px;
}
#page-archive-tag #recipe .recipe__list:after {
  content: "";
  width: 33.3333333333%;
}
#page-archive-tag #recipe .recipe__list__item {
  display: flex;
  flex-direction: column;
  width: 33.3333333333%;
  padding: clamp(30px, 3.90625vw, 35px) clamp(30px, 3.90625vw, 50px) clamp(15px, 1.953125vw, 25px);
  border: 1px solid #f2f0eb;
  transition: 0.3s ease-in-out;
}
#page-archive-tag #recipe .recipe__list__item:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
#page-archive-tag #recipe .recipe__list__item a {
  display: block;
  width: 100%;
  height: 100%;
}
#page-archive-tag #recipe .recipe__list__item-img {
  aspect-ratio: 1/1;
}
#page-archive-tag #recipe .recipe__list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-archive-tag #recipe .recipe__list__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#page-archive-tag #recipe .recipe__list__item-date {
  display: inline-block;
  margin-top: 12px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  font-size: 14px;
}
#page-archive-tag #recipe .recipe__list__item-title {
  margin-top: 5px;
  line-height: 1.5625;
  font-weight: 600;
}
#page-archive-tag #recipe .link {
  display: block;
  margin: 62px auto 0;
}

/* SP */
@media screen and (max-width: 767px) {
  #page-archive-tag #recipe {
    padding: 47px 0 90px;
  }
  #page-archive-tag #recipe .recipe__lead {
    text-align: left;
  }
  #page-archive-tag #recipe .recipe__list {
    margin-top: 63px;
  }
  #page-archive-tag #recipe .recipe__list__item {
    width: 47%;
    padding: 0 0 10px;
    border: none;
  }
  #page-archive-tag #recipe .recipe__list__item:nth-child(n+3) {
    margin-top: 30px;
  }
  #page-archive-tag #recipe .recipe__list__item-date {
    margin-top: 7px;
    letter-spacing: 0.1em;
  }
  #page-archive-tag #recipe .recipe__list__item-title {
    margin-top: 8px;
    line-height: 1.4285714286;
    font-size: 14px;
  }
  #page-archive-tag #recipe .link {
    margin: 30px 0 0 0;
  }
}
/*==========================
  レシピ詳細ページ
==========================*/
#page-single-recipe {
  padding: 0 80px 80px;
  background: #e1e0e0;
  /* SNSアイコン */
}
#page-single-recipe .inner {
  max-width: 800px;
  padding: 55px 60px 80px;
  box-sizing: border-box;
  background: #fff;
}
#page-single-recipe .recipe__thumbnail {
  aspect-ratio: 1/1;
}
#page-single-recipe .recipe__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-single-recipe .recipe__date {
  display: inline-block;
  margin-top: 17px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-size: 14px;
}
#page-single-recipe .recipe__title {
  margin-top: 20px;
  line-height: 1.4166666667;
  font-size: 24px;
  font-weight: 600;
}
#page-single-recipe .recipe__description {
  margin-top: 23px;
  line-height: 1.75;
}
#page-single-recipe .recipe__youtube {
  aspect-ratio: 16/9;
  margin-top: 35px;
}
#page-single-recipe .recipe__youtube iframe {
  width: 100%;
  height: 100%;
}
#page-single-recipe .link.youtube {
  width: 215px;
}
#page-single-recipe .recipe__content {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
}
#page-single-recipe .recipe__content__item {
  width: 47%;
  padding: 25px 25px;
  background: #e1e0e0;
}
#page-single-recipe .recipe__content__item-title {
  line-height: 1.75;
  font-weight: bold;
}
#page-single-recipe .recipe__content__item-list {
  margin-top: 28px;
}
#page-single-recipe .recipe__content__item-list li {
  display: flex;
  align-items: center;
  line-height: 1.75;
}
#page-single-recipe .recipe__content__item-list li.additional__items {
  margin-top: 15px;
}
#page-single-recipe .recipe__content__item-list li .line {
  flex: 1 1 auto;
  display: flex;
  content: "";
  min-width: 20px;
  height: 7px;
  margin: 0 10px;
  padding: 0;
  border: 0;
  outline: 0;
  background: radial-gradient(#000 10%, transparent 30%) center/7px 7px;
}
#page-single-recipe .recipe__item__text {
  margin-top: 28px;
}
#page-single-recipe .recipe__item__text li {
  line-height: 1.75em;
  padding-left: 1em;
  text-indent: -1em;
}
#page-single-recipe .recipe__item__text li:not(:first-child) {
  margin-top: 27px;
}
#page-single-recipe .recipe__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
#page-single-recipe .recipe__icon:not(:last-child) {
  margin-right: 36px;
}
#page-single-recipe .recipe__icon a {
  font-size: 30px;
  transition: 0.3s ease-in-out;
}
#page-single-recipe .recipe__icon.youtube a {
  font-size: 34px;
}
#page-single-recipe .recipe__icon a:hover {
  opacity: 0.7;
}
#page-single-recipe .recipe__tags {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 52px;
}
#page-single-recipe .recipe__tags li {
  min-width: 76px;
  margin-bottom: 8px;
  line-height: 30px;
  border-radius: 16px;
  border: 1px solid #4f4946;
  transition: background-color 0.3s ease-in-out;
}
#page-single-recipe .recipe__tags li:not(:last-child) {
  margin-right: 12px;
}
#page-single-recipe .recipe__tags li:hover {
  background-color: #4f4946;
}
#page-single-recipe .recipe__tags li:hover a {
  color: #fff;
}
#page-single-recipe .recipe__tags li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1px 10px;
  text-align: center;
  font-size: 14px;
  transition: color 0.3s ease-in-out;
}
#page-single-recipe .link.link__recipe-list {
  display: block;
  margin: auto;
  width: 210px;
}

/* SP */
@media screen and (max-width: 900px) {
  #page-single-recipe {
    padding: 0;
    background: #fff;
    /* SNSアイコン */
  }
  #page-single-recipe .inner {
    padding: 0 27px 84px;
  }
  #page-single-recipe .recipe__thumbnail {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  #page-single-recipe .recipe__date {
    margin-top: 45px;
    letter-spacing: 0.05em;
  }
  #page-single-recipe .recipe__title {
    margin-top: 10px;
    line-height: 1.75;
    font-size: 18px;
  }
  #page-single-recipe .recipe__description {
    margin-top: 13px;
  }
  #page-single-recipe .link.youtube {
    padding: 15px 0 0;
  }
  #page-single-recipe .recipe__content {
    display: block;
    margin-top: 47px;
  }
  #page-single-recipe .recipe__content__item {
    width: 100%;
  }
  #page-single-recipe .recipe__content__item:not(:first-child) {
    margin-top: 30px;
  }
  #page-single-recipe .recipe__icons {
    margin-top: 40px;
  }
  #page-single-recipe .recipe__tags {
    margin-top: 45px;
  }
  #page-single-recipe .recipe__tags li {
    margin-bottom: 13px;
    padding: 0 20px;
  }
  #page-single-recipe .recipe__tags li:not(:last-child) {
    margin-right: 10px;
  }
  #page-single-recipe .link.link__recipe-list {
    margin: unset;
    margin-top: 31px;
  }
}
/*==========================
  TOPICS一覧ページ
==========================*/
#page-archive-topics #sub-mv {
  background: url(../img/topics-mv.jpg) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  #page-archive-topics #sub-mv {
    background: url(../img/topics-mv_sp.jpg) no-repeat center center/cover;
  }
}
#page-archive-topics #topics {
  margin-top: 100vh;
  padding: 40px 0 90px;
  background: #fff;
}
#page-archive-topics #topics .inner {
  max-width: 1280px;
  padding: 0 15px;
}
#page-archive-topics #topics .topics__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#page-archive-topics #topics .topics__list__item {
  display: flex;
  flex-direction: column;
  width: 25%;
  padding: clamp(15px, 1.953125vw, 25px);
  transition: 0.3s ease-in-out;
}
#page-archive-topics #topics .topics__list__item:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
#page-archive-topics #topics .topics__list__item a {
  display: block;
  width: 100%;
  height: 100%;
}
#page-archive-topics #topics .topics__list__item-img {
  aspect-ratio: 1/1;
}
#page-archive-topics #topics .topics__list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-archive-topics #topics .topics__list__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#page-archive-topics #topics .topics__list__item-date {
  display: inline-block;
  margin-top: 12px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  font-size: 14px;
}
#page-archive-topics #topics .topics__list__item-title {
  margin-top: 5px;
  line-height: 1.75;
  font-weight: 600;
}
#page-archive-topics #topics .link {
  display: block;
  margin: 62px auto 0;
}

/* SP */
@media screen and (max-width: 767px) {
  #page-archive-topics #topics {
    padding: 45px 0 72px;
  }
  #page-archive-topics #topics .topics__list {
    justify-content: space-between;
    margin-top: 6px;
  }
  #page-archive-topics #topics .topics__list__item {
    width: 50%;
    padding: 0 10px;
  }
  #page-archive-topics #topics .topics__list__item:nth-child(n+3) {
    margin-top: 40px;
  }
  #page-archive-topics #topics .topics__list__item-date {
    margin-top: 7px;
    letter-spacing: 0.1em;
    font-size: 12px;
  }
  #page-archive-topics #topics .topics__list__item-title {
    margin-top: 5px;
    line-height: 1.75;
    font-size: 14px;
  }
  #page-archive-topics #topics .link {
    margin: 30px 0 0 10px;
  }
}
/*==========================
  トピックス詳細ページ
==========================*/
#page-single-topics {
  padding: 0 80px 150px;
}
#page-single-topics .inner {
  max-width: 750px;
  padding-top: 50px;
  box-sizing: content-box;
}
#page-single-topics .topics__head {
  display: flex;
  flex-direction: column;
}
#page-single-topics .topics__text__date {
  display: inline-block;
  margin-top: 17px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-size: 14px;
}
#page-single-topics .topics__text__title {
  margin-top: 12px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  font-size: 32px;
  font-weight: 600;
}
#page-single-topics .topics__head__thumbnail {
  margin: 33px 0 65px;
  aspect-ratio: 1/1;
}
#page-single-topics .topics__head__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-single-topics .topics__body p {
  line-height: 1.75;
  letter-spacing: 0.02em;
}
#page-single-topics .topics__body img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#page-single-topics .link.link__topics-list {
  display: block;
  margin: 70px auto 0;
  width: 210px;
}

/* SP */
@media screen and (max-width: 900px) {
  #page-single-topics {
    padding: 0;
    background: #fff;
  }
  #page-single-topics .inner {
    padding: 0 27px 98px;
  }
  #page-single-topics .topics__head {
    flex-direction: column-reverse;
  }
  #page-single-topics .topics__head__thumbnail {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  #page-single-topics .topics__text__date {
    margin-top: 42px;
    letter-spacing: 0.05em;
  }
  #page-single-topics .topics__text__title {
    margin: 0 0 52px;
    line-height: 1.75;
    font-size: 20px;
  }
  #page-single-topics .link.link__topics-list {
    margin: unset;
    margin-top: 38px;
  }
}
/*==========================
  PHILOSOPHYページ
==========================*/
#page-philosophy #sub-mv {
  background: url(../img/philosophy-mv.jpg) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  #page-philosophy #sub-mv {
    background: url(../img/philosophy-mv_sp.jpg) no-repeat center center/cover;
  }
}
#page-philosophy #philosophy {
  margin-top: 100vh;
  padding: 85px 0 130px;
  background: #fff;
}
#page-philosophy #philosophy .inner {
  max-width: 1000px;
}
#page-philosophy #philosophy .text-inner {
  max-width: 750px;
  margin: auto;
}
#page-philosophy #philosophy .philosophy__section {
  line-height: 1.5;
}
#page-philosophy #philosophy .philosophy__section:not(:first-child) {
  margin-top: 95px;
}
#page-philosophy #philosophy .philosophy__section p {
  letter-spacing: 0.02em;
  line-height: 1.75;
}
#page-philosophy #philosophy .philosophy__section p:first-of-type {
  margin-top: 35px;
}
#page-philosophy #philosophy .philosophy__section p:not(:first-of-type) {
  margin-top: 27px;
}
#page-philosophy #philosophy .section__title {
  letter-spacing: 0;
  font-size: 23px;
  font-weight: 600;
  color: #4f4946;
}
#page-philosophy #philosophy .philosophy__img {
  margin: 95px 0;
}
#page-philosophy #philosophy .philosophy__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#page-philosophy #philosophy .philosophy__img--flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#page-philosophy #philosophy .philosophy__img__item {
  display: flex;
  flex-direction: column;
  width: 48%;
}
#page-philosophy #philosophy .philosophy__img__item:nth-child(n+3) {
  margin-top: 50px;
}
#page-philosophy #philosophy .philosophy__img__item-img {
  aspect-ratio: 480/320;
}
#page-philosophy #philosophy .philosophy__img__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* SP */
@media screen and (max-width: 767px) {
  #page-philosophy #philosophy {
    padding: 50px 0 75px;
  }
  #page-philosophy #philosophy .philosophy__section:not(:first-child) {
    margin-top: 70px;
  }
  #page-philosophy #philosophy .philosophy__section.margin-top-double {
    margin-top: 95px;
  }
  #page-philosophy #philosophy .philosophy__section p:first-of-type {
    margin-top: 25px;
  }
  #page-philosophy #philosophy .philosophy__section p.margin-top-double {
    margin-top: 54px;
  }
  #page-philosophy #philosophy .philosophy__img {
    margin: 45px 0 47px;
  }
  #page-philosophy #philosophy .philosophy__img--flex {
    display: block;
    margin-top: 0;
  }
  #page-philosophy #philosophy .philosophy__img--flex .philosophy__img {
    margin-top: 30px;
  }
  #page-philosophy #philosophy .philosophy__img--flex p:first-of-type {
    margin-top: 35px;
  }
  #page-philosophy #philosophy .philosophy__img__item {
    width: 100%;
  }
  #page-philosophy #philosophy .philosophy__img__item:nth-child(n+3) {
    margin-top: 0;
  }
  #page-philosophy #philosophy .philosophy__img__item-img {
    margin-top: 35px;
  }
}
/*==========================
  ABOUTページ
==========================*/
#page-about {
  padding: 0 80px 83px;
}
#page-about .inner {
  max-width: 600px;
}
#page-about .about__list__container {
  margin-top: 80px;
}
#page-about .about__list {
  display: flex;
  align-items: center;
  line-height: 1.75;
  border-top: 1px solid #c9c9c9;
}
#page-about .about__list:last-child {
  border-bottom: 1px solid #c9c9c9;
}
#page-about .about__term,
#page-about .about__description {
  padding: 18px 0;
  font-size: 14px;
}
#page-about .about__term {
  width: 23%;
}
#page-about .about__description {
  flex: 1;
}

/* SP */
@media screen and (max-width: 767px) {
  #page-about {
    padding: 0;
    background: #fff;
  }
  #page-about .inner {
    padding: 0 27px 66px;
  }
  #page-about .about__list__container {
    margin-top: 48px;
  }
  #page-about .about__term,
  #page-about .about__description {
    padding: 20px 0;
  }
  #page-about .about__term {
    width: 30%;
  }
}
/*==========================
  PRIVACY POLICYページ
==========================*/
#page-privacy-policy {
  padding: 0 80px 83px;
  /* テーブル幅全て均等 */
  /* 一部は固定で後は均等 */
  /* テーブル内の高さ */
}
#page-privacy-policy a {
  text-decoration: underline;
}
#page-privacy-policy .inner {
  max-width: 750px;
}
#page-privacy-policy .privacy-policy__container {
  margin-top: 55px;
}
#page-privacy-policy .privacy-policy__lead {
  padding: 25px 30px;
  line-height: 1.9285714286;
  font-size: 14px;
  background: #e1e0e0;
}
#page-privacy-policy .privacy-policy__sec {
  margin-top: 50px;
  line-height: 1.9285714286;
  font-size: 14px;
}
#page-privacy-policy .privacy-policy__sec:not(:first-child) {
  margin-top: 45px;
}
#page-privacy-policy .privacy-policy__sec__title {
  font-weight: 600;
}
#page-privacy-policy .privacy-policy__sec__description {
  margin-top: 10px;
}
#page-privacy-policy .privacy-policy__sec__item {
  margin-top: 10px;
}
#page-privacy-policy .privacy-policy__sec__item {
  padding-left: 1em;
  text-indent: -1.3em;
}
#page-privacy-policy .privacy-policy__sec__sub-list li {
  padding-left: 1em;
  text-indent: -1em;
}
#page-privacy-policy .privacy-policy__table {
  border-collapse: collapse;
  width: 100%;
}
#page-privacy-policy .privacy-policy__table,
#page-privacy-policy .privacy-policy__table th,
#page-privacy-policy .privacy-policy__table td {
  border: 1px solid #c9c9c9;
}
#page-privacy-policy th:first-child {
  width: 30%;
}
#page-privacy-policy .privacy-policy__table th,
#page-privacy-policy .privacy-policy__table td {
  padding: 5px;
  text-align: left;
}
#page-privacy-policy .privacy-policy__table td .privacy-policy__sec__item {
  margin-top: 0;
}
#page-privacy-policy .privacy-policy__sec__contact dl {
  display: flex;
}
#page-privacy-policy .privacy-policy__sec__contact dt {
  width: 3rem;
}
#page-privacy-policy .privacy-policy__sec__contact dd {
  flex: 1;
  padding-left: 1em;
  text-indent: -1em;
}
#page-privacy-policy .privacy-policy__sec__contact .text-align-right {
  margin-top: 25px;
  text-align: right;
}

/* SP */
@media screen and (max-width: 767px) {
  #page-privacy-policy {
    padding: 0;
    background: #fff;
    /* 一部は固定で後は均等 */
    /* テーブル内の高さ */
  }
  #page-privacy-policy .inner {
    padding: 0 27px 66px;
  }
  #page-privacy-policy .privacy-policy__container {
    margin-top: 45px;
  }
  #page-privacy-policy .privacy-policy__lead {
    padding: 14px 20px;
    line-height: 1.8571428571;
  }
  #page-privacy-policy .privacy-policy__sec {
    line-height: 1.8571428571;
  }
  #page-privacy-policy .privacy-policy__sec:not(:first-child) {
    margin-top: 40px;
  }
  #page-privacy-policy .privacy-policy__sec__item {
    margin-top: 7px;
  }
  #page-privacy-policy th:first-child {
    width: 40%;
  }
  #page-privacy-policy .privacy-policy__table th,
  #page-privacy-policy .privacy-policy__table td {
    padding: 5px;
  }
}