@charset "UTF-8";
html,
body {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

/* =============================================== */
*,
::after,
::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  font-size: 62.5%;
}

body {
  background: #f3efeb;
  color: #222;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}
img {
  display: block;
  width: 100%;
}

svg {
  display: block;
}

a {
  color: #222;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[class*=_pc] {
  display: block;
}

@media (max-width: 767px) {
  [class*=_pc] {
    display: none;
  }
}
[class*=_sp] {
  display: none;
}

@media (max-width: 767px) {
  [class*=_sp] {
    display: block;
  }
}
.cmnInner {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 40px;
  width: 100%;
}

@media (max-width: 767px) {
  .cmnInner {
    padding: 0 20px;
  }
}
.cmnSecTtl {
  display: block;
  font-family: "Amatic SC", cursive;
  font-size: 5.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.7;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto 40px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  .cmnSecTtl {
    font-size: 4rem;
    letter-spacing: 0.1em;
    margin: 0 auto 40px;
  }
}
.cmnSecTtl_ja {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .cmnSecTtl_ja {
    font-size: 1.2rem;
    line-height: 1.1;
    margin-top: -4px;
  }
}
.cmnLabel {
  position: absolute;
  display: inline-block;
  height: 24px;
  line-height: 1;
  text-align: center;
  padding: 6px 8px 6px 14px;
  font-size: 12px;
  background: #222;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 8px;
  left: -8px;
  z-index: 1;
}

.cmnLabel::before,
.cmnLabel::after {
  position: absolute;
  content: "";
}

.cmnLabel::before {
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 4px transparent;
  border-right: solid 8px #aaa;
}

.cmnLabel::after {
  width: 0;
  height: 0;
  z-index: 1;
  top: 0;
  right: -8px;
  border-width: 12px 8px 12px 0;
  border-color: #222 transparent #222 transparent;
  border-style: solid;
}

.cmnBtn {
  display: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.cmnBtn__link {
  background: #222;
  border: 1px solid #222;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  line-height: 1.1;
  min-height: 72px;
  min-width: 280px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .cmnBtn__link {
    min-width: 290px;
  }
}
@media (max-width: 374px) {
  .cmnBtn__link {
    min-width: 260px;
  }
}
.cmnBtn__link::after {
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: inline-block;
  height: 10px;
  position: absolute;
  right: 22px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
}

.cmnBtn__link:hover {
  opacity: 1;
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
}

.cmnBtn::before,
.cmnBtn::after {
  content: "";
  background: #222;
  display: block;
  position: absolute;
}

.cmnBtn::before {
  height: 100%;
  top: 6px;
  right: -6px;
  width: 1px;
}

.cmnBtn::after {
  height: 1px;
  left: 6px;
  bottom: -6px;
  width: 100%;
}

/* ===========================
   Left Header
=========================== */
.headerLeft {
  background: #f3efeb;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  max-height: 770px;
  padding: 30px 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 222px;
  z-index: 1;
}

@media (max-width: 1120px) {
  .headerLeft {
    background: transparent;
    display: block;
    max-height: none;
    height: auto;
    padding: 0;
    top: 10px;
    left: 14px;
    min-width: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
/* ===========================
   Logo
=========================== */
.headerLeft__logo {
  margin-bottom: 62px;
}

@media (max-width: 1120px) {
  .headerLeft__logo {
    margin-bottom: 0;
  }
}
.headerLeft__logoImg_pc {
  display: block;
}

.headerLeft__logoImg_sp {
  display: none;
}

@media (max-width: 1120px) {
  .headerLeft__logoImg_pc {
    display: none;
  }
  .headerLeft__logoImg_sp {
    display: block;
  }
}
/* ===========================
   Navigation
=========================== */
.cmnNav {
  margin-bottom: 30px;
}

@media (max-width: 1120px) {
  .cmnNav {
    display: none;
  }
}
.cmnNav__li {
  margin-bottom: 36px;
}

.cmnNav__li:last-of-type {
  margin-bottom: 0;
}

.cmnNav a {
  font-size: 20px;
  font-family: "Noto Serif JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-align: center;
  width: 100%;
  display: block;
}

.cmnNav a span {
  display: block;
  font-size: 1rem;
  font-family: "Noto Serif JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.1;
  margin-top: 6px;
}

/* ===========================
   SNS（左カラム）
=========================== */
.cmnSns {
  display: inline-block;
  margin: 0 auto;
}

@media (max-width: 1120px) {
  .cmnSns {
    display: none;
  }
}
.cmnSns__list {
  display: inline-block;
  margin-right: 24px;
}

.cmnSns__list:last-of-type {
  margin-right: 0;
}

.cmnSns__fa {
  font-size: 2rem;
}

.cmnSns__fa_b {
  color: #fff;
  font-size: 2rem;
}

/* ===========================
   ドロワーメニュー
=========================== */
.menuBtn {
  background: #382620;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  opacity: 0;
  padding: 0;
  position: fixed;
  top: 10px;
  right: 24px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  visibility: hidden;
  width: 60px;
  z-index: 30;
}

.menuBtn__centerLine {
  display: block;
  position: relative;
  width: 27px;
  height: 2.25px;
  background: #fff;
  border-radius: 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.menuBtn__centerLine::before,
.menuBtn__centerLine::after {
  border-radius: 10px;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.menuBtn__centerLine::before {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.menuBtn__centerLine::after {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}

.menuBtn__centerLine.open {
  background: transparent;
}

.menuBtn__centerLine.open::before {
  background: #382620;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.menuBtn__centerLine.open::after {
  background: #382620;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menuBtn.active {
  opacity: 1;
  visibility: visible;
}

.menuBtn.open {
  background: #fff;
}

.hide {
  background: #382620;
  height: 100vh;
  min-width: 376px;
  width: 29%;
  padding: 10px 15px;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 20;
}

@media (max-width: 767px) {
  .hide {
    min-width: 320px;
    width: 100%;
  }
}
.hide__logo {
  margin-bottom: 57px;
}

.hide + .hideCover {
  background: #000;
  display: block;
  height: 100vh;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 10;
}

.hide.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hide.open + .hideCover {
  opacity: 0.7;
  visibility: visible;
}

.hideNav {
  display: block;
  padding-left: 26px;
  margin-bottom: 56px;
}

.hideNav__li {
  margin-bottom: 32px;
}

.hideNav a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  line-height: normal;
  width: 100%;
}

.hideNav span {
  line-height: 1.2;
  margin-left: 30px;
  padding-top: 5px;
  position: relative;
}

.hideNav span::before {
  content: "／";
  font-size: 10px;
  position: absolute;
  left: -22px;
}

/* ===========================
   ドロワーメニューのSNSアイコン
=========================== */
.hideSns {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 0;
}

.hideSns__list {
  margin-right: 34px;
}

.hideSns__fa_b {
  font-size: 3.2rem;
}

.main {
  overflow: hidden;
}

/* ====== ここから“上書き用の追加CSS”（HTMLはそのまま、表示だけ直します） ====== */
.hide {
  background: #382620;
  height: 100vh;
  min-width: 376px;
  width: 29%;
  padding: 10px 15px;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 20;
}

@media (max-width: 767px) {
  .hide {
    min-width: 320px;
    width: 100%;
  }
}
.hide__logo {
  margin-bottom: 57px;
}

.hide + .hideCover {
  background: #000;
  display: block;
  height: 100vh;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 10;
}

.hide.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hide.open + .hideCover {
  opacity: 0.7;
  visibility: visible;
}

.hideNav {
  display: block;
  padding-left: 26px;
  margin-bottom: 56px;
}

.hideNav__li {
  margin-bottom: 32px;
}

.hideNav a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  line-height: normal;
  width: 100%;
}

.hideNav span {
  line-height: 1.2;
  margin-left: 30px;
  padding-top: 5px;
  position: relative;
}

.hideNav span::before {
  content: "／";
  font-size: 10px;
  position: absolute;
  left: -22px;
}

/* ===== 右ドロワーのSNSを左ナビと同じ見え方に（上書き） ===== */
.hide__hideSns.hideSns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  height: auto;
  padding: 0;
  margin: 40px 0 0 100px; /* 左ナビのインデント（.hideNav の padding-left と揃える） */
  text-align: left;
}

/* li の右マージンは不要。gap に任せる */
.hideSns__list {
  margin: 0;
  list-style: none;
}

/* アンカー・画像の基本整形（HTMLはそのまま） */
.hideSns__link {
  display: inline-block;
  line-height: 0;
}

.hideSns__icon {
  display: block;
  width: 24px;
  height: 24px;
}

/* SP でも同じ間隔を維持（必要なら微調整可） */
@media (max-width: 767px) {
  .hide__hideSns.hideSns {
    gap: 29px;
    margin-left: 79px;
    margin-top: 19px;
  }
}
/* =========================
   mv
========================= */
.mv {
  position: relative;
  margin: 0; /* 余白リセット */
  padding: 0; /* 余白リセット */
  height: 795px;
  width: calc(100vw - 202px);
  margin-left: auto;
  z-index: 0;
}

@media (max-width: 1120px) {
  .mv {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mv {
    height: 100vh;
    padding-bottom: 0;
  }
}
/* MV 背景帯 */
.mv::after {
  background: #eae0d5;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 91%;
  height: 300px;
}

@media (max-width: 767px) {
  .mv::after {
    display: none;
  }
}
/* slick コンテナの高さ */
.slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.slider,
.slider .slick-list,
.slider .slick-track {
  height: 735px;
}

@media (max-width: 767px) {
  .slider,
  .slider .slick-list,
  .slider .slick-track {
    height: 100vh;
  }
}
/* 各スライド */
.slider__list {
  margin: 0;
  height: 735px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

@media (max-width: 767px) {
  .slider__list {
    height: 100vh;
  }
}
/* ===========================
   mv 背景画像
=========================== */
.slider__list.list01 {
  background-image: url(../img/mainvisual1.png);
}

.slider__list.list02 {
  background-image: url(../img/mainvisual2.png);
}

.slider__list.list03 {
  background-image: url(../img/mainvisual3.png);
}

@media (max-width: 767px) {
  .slider__list.list01 {
    background-image: url(../img/mainvisual1_sp.png);
  }
  .slider__list.list02 {
    background-image: url(../img/mainvisual2_sp.png);
  }
  .slider__list.list03 {
    background-image: url(../img/mainvisual3_sp.png);
  }
}
/* ドット */
.catch {
  position: absolute;
  top: 594px;
  left: 54px;
  z-index: 2;
}

@media screen and (max-width: 1120px) {
  .catch {
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .catch {
    top: 125px;
    left: 20px;
  }
}
.catch__text {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 2.3;
}

@media screen and (max-width: 1120px) {
  .catch__text {
    font-size: 1.6rem;
    line-height: 2;
  }
}
/* =========================
   pickup
========================= */
.pickup {
  background: #fff;
  min-height: 152px;
  max-width: 388px;
  opacity: 0.85;
  padding: 16px;
  position: absolute;
  top: 562px;
  right: 20px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .pickup {
    min-height: 124px;
    min-width: 336px;
    padding: 10px;
    top: auto;
    bottom: 32px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 374px) {
  .pickup {
    min-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .pickup__label {
    height: 22px;
    padding: 5px 5px 5px 11px;
    top: 7px;
    left: -10px;
  }
}
@media screen and (max-width: 767px) {
  .pickup__label::before {
    border-bottom: solid 5px transparent;
    border-right: solid 10px #aaa;
  }
}
@media screen and (max-width: 767px) {
  .pickup__label::after {
    border-width: 10px 8px 12px 0px;
  }
}
.pickup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pickup__imgWrap {
  height: 120px;
  width: 120px;
}

@media screen and (max-width: 767px) {
  .pickup__imgWrap {
    height: 100px;
    width: 100px;
  }
}
.pickup__imgWrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pickup__textWrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 16px;
  width: 220px;
}

@media screen and (max-width: 767px) {
  .pickup__textWrap {
    padding-top: 11px;
    width: 100%;
  }
}
.pickup__time {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}

.pickup__text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .pickup__text {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.pickup::before {
  background-size: cover;
  content: "";
  display: inline-block;
  min-height: 110px;
  position: absolute;
  top: -76px;
  right: 0;
  vertical-align: middle;
  min-width: 169px;
}

@media screen and (max-width: 767px) {
  .pickup::before {
    top: -39px;
    right: 5px;
    min-height: 71px;
    min-width: 120px;
  }
}
/* =========================
   concept
========================= */
.conceptSec {
  padding: 160px 0 340px;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .conceptSec {
    padding: 110px 0 192px;
    max-width: none;
  }
}
.conceptSec__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1190px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .conceptSec__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-left: 0;
  }
}
.conceptSec__imgWrap {
  margin-right: 30px;
  max-width: 600px;
}

@media screen and (max-width: 767px) {
  .conceptSec__imgWrap {
    max-width: none;
    width: 84%;
  }
}
.conceptSec__textWrap {
  padding: 9px 28px 9px 50px;
  position: relative;
  max-width: 550px;
}

@media screen and (max-width: 767px) {
  .conceptSec__textWrap {
    max-width: none;
    margin-bottom: 85px;
    padding: 0 20px;
    width: 100%;
  }
}
.conceptSec__textWrap::before {
  background-image: url(../img/lunch3.png);
  background-size: cover;
  content: "";
  display: inline-block;
  min-height: 265px;
  position: absolute;
  top: -158px;
  right: -140px;
  vertical-align: middle;
  min-width: 296px;
}

@media screen and (max-width: 1120px) {
  .conceptSec__textWrap::before {
    top: -150px;
  }
}
@media screen and (max-width: 767px) {
  .conceptSec__textWrap::before {
    top: -102px;
    right: 9px;
    min-height: 130px;
    min-width: 145px;
  }
}
.conceptSec__secTtl {
  display: inline-block;
  text-align: left;
  margin-bottom: 55px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .conceptSec__secTtl {
    margin-bottom: 40px;
  }
}
.conceptSec__secTtl_ja {
  line-height: 0.5;
}

@media screen and (max-width: 767px) {
  .conceptSec__secTtl_ja {
    margin-top: 0;
  }
}
.conceptSec__strong {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2.1;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .conceptSec__strong {
    font-size: 2rem;
    margin-bottom: 29px;
    line-height: 2;
  }
}
.conceptSec__textBox {
  margin-bottom: 55px;
}

@media screen and (max-width: 767px) {
  .conceptSec__textBox {
    margin-bottom: 57px;
  }
}
.conceptSec__text {
  line-height: 2;
  margin-bottom: 27px;
  font-size: 17px;
}

@media screen and (max-width: 767px) {
  .conceptSec__text {
    margin-bottom: 28px;
  }
}
.conceptSec__text:last-of-type {
  margin-bottom: 0;
}

.conceptSec__btn {
  margin: 0;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .conceptSec__btn {
    margin: 0 auto;
  }
}
.conceptSec::after {
  background: #eae0d5;
  bottom: 240px;
  left: -100%;
  content: "";
  height: 300px;
  position: absolute;
  width: 193%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .conceptSec::after {
    bottom: 120px;
    left: 0;
    height: 100px;
    width: 94%;
  }
}
/* =========================
   menu
========================= */
.menuSec {
  background: #eae0d5;
  padding: 70px 0 80px;
}

@media screen and (max-width: 767px) {
  .menuSec {
    padding: 52px 0 60px;
  }
}
.menuSec__secTtl {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .menuSec__secTtl {
    margin-bottom: 63px;
  }
}
@media screen and (max-width: 767px) {
  .menuSec__secTtl_ja {
    margin-top: -3px;
  }
}
.menuSec__inner {
  padding: 0 50px;
}

@media screen and (max-width: 767px) {
  .menuSec__inner {
    padding: 0;
  }
}
.menuSec__contWrap {
  background: #fff;
  max-width: 1180px;
  padding: 60px 40px 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .menuSec__contWrap {
    padding: 40px 20px 20px;
    max-width: none;
    width: 100%;
  }
}
.menuSec__contWrap::before {
  background-image: url(../img/haruko.png);
  background-size: cover;
  content: "";
  display: inline-block;
  min-height: 228px;
  position: absolute;
  top: -363px;
  right: -86px;
  vertical-align: middle;
  min-width: 201px;
}

@media screen and (max-width: 767px) {
  .menuSec__contWrap::before {
    top: -370px;
    right: 0px;
    min-height: 135px;
    min-width: 119px;
  }
}
.menuSec__contWrap::after {
  background-image: url(../img/hukidasi.png);
  background-size: cover;
  content: "";
  display: inline-block;
  min-height: 161px;
  position: absolute;
  top: -70px;
  right: -24px;
  vertical-align: middle;
  min-width: 308px;
}

@media screen and (max-width: 1120px) {
  .menuSec__contWrap::after {
    top: -300px;
  }
}
@media screen and (max-width: 767px) {
  .menuSec__contWrap::after {
    top: -234px;
    right: -16px;
    min-height: 105px;
    min-width: 200px;
  }
}
.menuSec__ribbon {
  max-width: 350px;
  position: absolute;
  top: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .menuSec__ribbon {
    top: -21px;
    max-width: 290px;
  }
}
.menuSec__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}

@media screen and (max-width: 1120px) {
  .menuSec__ul {
    margin-bottom: 20px;
  }
}
.menuSec__li {
  margin-right: 20px;
  width: calc(25% - 15px);
}

@media screen and (max-width: 1120px) {
  .menuSec__li {
    max-width: none;
    width: calc(50% - 10px);
  }
}
.menuSec__li:nth-of-type(4n) {
  margin-right: 0;
}

@media screen and (max-width: 1120px) {
  .menuSec__li:nth-of-type(4n) {
    margin-right: 20px;
  }
}
.menuSec__li:nth-of-type(even) {
  padding-top: 40px;
}

@media screen and (max-width: 1120px) {
  .menuSec__li:nth-of-type(even) {
    padding-top: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 1120px) {
  .menuSec__li:not(:nth-last-of-type(-n + 2)) {
    margin-bottom: 17px;
  }
}
.menuSec__menuImg {
  margin-bottom: 16px;
}

@media screen and (max-width: 1120px) {
  .menuSec__menuImg {
    margin-bottom: 8px;
  }
}
.menuSec__menuDetail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.menuSec__menuNum {
  background: #222;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Patua One", cursive;
  font-size: 3.2rem;
  height: 50px;
  margin-right: 12px;
  width: 50px;
}

@media screen and (max-width: 767px) {
  .menuSec__menuNum {
    font-size: 1.9rem;
    height: 24px;
    margin-right: 6px;
    width: 24px;
  }
}
.menuSec__menuName {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  width: 76%;
}

@media screen and (max-width: 1120px) {
  .menuSec__menuName {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .menuSec__menuName {
    font-size: 1.4rem;
  }
}
.menuSec__setCont {
  background: #f7f6f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 172px;
  padding: 17px 0 20px 70px;
  width: 100%;
}

@media screen and (max-width: 1260px) {
  .menuSec__setCont {
    padding: 23px 0 21px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.menuSec__setImg {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin-right: 4%;
}

@media screen and (max-width: 1260px) {
  .menuSec__setImg {
    margin-right: 0;
    margin: 0 auto 16px;
  }
}
.menuSec__setDetail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: auto;
}

@media screen and (max-width: 1260px) {
  .menuSec__setDetail {
    margin: 0 auto;
  }
}
.menuSec__setTtl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 8px;
  text-align: right;
}

@media screen and (max-width: 1260px) {
  .menuSec__setTtl {
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
  }
}
.menuSec__setPrice {
  font-family: "Damion", cursive;
  font-size: 6rem;
  line-height: 1.4;
  margin-bottom: 18px;
  position: relative;
}

@media screen and (max-width: 1260px) {
  .menuSec__setPrice {
    font-size: 4rem;
    margin-bottom: 18px;
    text-align: center;
  }
}
.menuSec__setPrice::after {
  background-size: cover;
  content: "";
  display: inline-block;
  min-height: 5px;
  position: absolute;
  bottom: -8px;
  left: 0;
  vertical-align: middle;
  max-width: 220px;
  width: 100%;
}

@media screen and (max-width: 1260px) {
  .menuSec__setPrice::after {
    max-width: 149px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.menuSec__setTime {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}

@media screen and (max-width: 1260px) {
  .menuSec__setTime {
    font-size: 1.2rem;
    text-align: center;
  }
}
/* =========================
   staff
========================= */
.staffSec {
  padding: 150px 0 160px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .staffSec {
    padding: 112px 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .staffSec__secTtl {
    margin-bottom: 42px;
  }
}
.staffSec__inner {
  padding: 0 90px;
}

@media screen and (max-width: 1120px) {
  .staffSec__inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .staffSec__inner {
    padding: 0 20px;
  }
}
.staffSec__contWrap {
  position: relative;
  padding-bottom: 86px;
}

@media screen and (max-width: 767px) {
  .staffSec__contWrap {
    padding-bottom: 66px;
  }
}
.staffSec__contWrap::after {
  background: #eae0d5;
  bottom: 0;
  right: -100%;
  content: "";
  height: calc(100% - 250px);
  position: absolute;
  width: 185%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .staffSec__contWrap::after {
    height: calc(100% - 67px);
    right: -100%;
    width: 176%;
  }
}
/* =========================
   genre
========================= */
.genreSec {
  margin-bottom: 104px;
}

@media screen and (max-width: 767px) {
  .genreSec {
    margin-bottom: 44px;
  }
}
.genreSec__secTtl {
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  padding: 10px 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .genreSec__secTtl {
    font-size: 2rem;
    margin-bottom: 20px;
    padding: 8px 10px;
  }
}
.genreSec__secTtl::before,
.genreSec__secTtl::after {
  background: #222;
  content: "";
  height: 1px;
  position: absolute;
  left: 0;
  width: 100%;
}

.genreSec__secTtl::before {
  top: 2px;
}

.genreSec__secTtl::after {
  bottom: 2px;
}

.genreSec__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.genreSec__li {
  margin-bottom: 40px;
  width: calc(33.3333333% - 24px);
}

@media screen and (max-width: 767px) {
  .genreSec__li {
    margin-bottom: 20px;
    margin-right: 19px;
    width: calc(50% - 9.5px);
  }
}
.genreSec__li:not(:nth-of-type(3n)) {
  margin-right: 36px;
}

@media screen and (max-width: 767px) {
  .genreSec__li:not(:nth-of-type(3n)) {
    margin-right: 19px;
  }
}
@media screen and (max-width: 767px) {
  .genreSec__li:nth-of-type(even) {
    margin-right: 0;
  }
}
.genreSec__li:nth-last-of-type(-n + 3) {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .genreSec__li:nth-last-of-type(-n + 3) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .genreSec__li:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
  }
}
.genreSec__imgWrap {
  background: #fff;
  padding: 8px;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .genreSec__imgWrap {
    margin-bottom: 8px;
    padding: 5px;
  }
}
.genreSec__menuName {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .genreSec__menuName {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.genreSec__menuPrice {
  font-family: "Damion", cursive;
  font-size: 3.2rem;
  line-height: 1.1;
}

@media screen and (max-width: 767px) {
  .genreSec__menuPrice {
    font-size: 2.4rem;
  }
}
.genreSec:last-of-type {
  margin-bottom: 0;
}

/* =========================
   drink
========================= */
.drinkSec {
  position: relative;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content; /* 中身の幅に合わせる */
  margin: 0 auto; /* 左右中央に配置 */
}

.drinkSec__contWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 画像＋メニューの塊を中央寄せ */
  margin-bottom: 59px;
}

@media screen and (max-width: 767px) {
  .drinkSec__contWrap {
    margin-bottom: 41px;
  }
}
/* 左側の写真 */
.drinkSec__imgWrap {
  background: #fff;
  margin-right: 62px;
  width: 31.1818%;
  height: 31.1818%;
  padding: 8px;
}

@media screen and (max-width: 767px) {
  .drinkSec__imgWrap {
    display: none;
  }
}
/* ▼ 3カラムを“横一列”に固定（PC） */
.drinkSec__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; /* 折り返さない＝横一列 */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 52px; /* カラム間の余白（以前の :not(:nth-of-type) 相当） */
  width: 62%; /* 右側エリア幅（元レイアウトを踏襲） */
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 1120px) {
  .drinkSec__ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; /* タブレット以下は縦並び */
    gap: 40px;
    padding: 0 20px;
  }
}
.drinkSec__li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0; /* 3カラムを均等に伸縮 */
  min-width: 240px; /* 文字が窮屈にならない下限 */
}

@media screen and (max-width: 1120px) {
  .drinkSec__li {
    min-width: 0;
  }
}
/* 見出し（そのまま） */
.drinkSec__liTtl {
  border-bottom: 1px solid #222;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 19px;
  padding-bottom: 10px;
  line-height: 1.4;
}

@media screen and (max-width: 1120px) {
  .drinkSec__liTtl {
    padding-bottom: 12px;
  }
}
/* ===== 行：品名／価格 ===== */
:root {
  --drink-price-width: 7.2em;
} /* 価格列の固定幅（必要なら微調整だけ） */
.drinkSec__menuUl {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drinkSec__menuLi {
  display: grid;
  grid-template-columns: 1fr var(--drink-price-width); /* 左：可変／右：固定 */
  -webkit-column-gap: 28px;
     -moz-column-gap: 28px;
          column-gap: 28px; /* 品名と金額の間隔 */
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 15px;
}

.drinkSec__menuLi:last-of-type {
  margin-bottom: 0;
}

/* 品名は1行で切らさない */
.drinkSec__menuTtl {
  font-size: 12.29px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap; /* 1行固定 */
}

/* 価格は右端に揃える（見た目そのまま） */
.drinkSec__menuPrice {
  font-family: "Damion", cursive;
  font-size: 2rem;
  line-height: 1;
  text-align: right; /* 右寄せで一直線 */
  padding-left: 0; /* 以前の余白指定があれば無効化 */
}

/* =========================
   gallery
========================= */
.gallerySec {
  background: #eae0d5;
  padding: 70px 0 84px;
}

@media screen and (max-width: 767px) {
  .gallerySec {
    padding: 53px 0 107px;
  }
}
/* 見出し */
.gallerySec__secTtl {
  position: relative;
}

.gallerySec__secTtl::before {
  background-size: cover;
  content: "";
  display: inline-block;
  min-height: 139px;
  position: absolute;
  top: -91px;
  left: -254px;
  vertical-align: middle;
  min-width: 266px;
}

@media screen and (max-width: 767px) {
  .gallerySec__secTtl::before {
    top: -109px;
    left: -156px;
    min-height: 104px;
    min-width: 200px;
  }
}
@media screen and (max-width: 374px) {
  .gallerySec__secTtl::before {
    left: -130px;
  }
}
/* コンテンツ横余白 */
.gallerySec__contWrap {
  padding: 0 90px;
}

@media screen and (max-width: 1120px) {
  .gallerySec__contWrap {
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .gallerySec__contWrap {
    padding: 0 20px;
  }
}
/* ===== Swiper（Gallery） ===== */
.gallery__slider {
  position: relative;
  z-index: 2;
  /* 上下に余白を追加 */
  margin: 24px 0 56px;
}

@media screen and (min-width: 900px) {
  .gallery__slider {
    margin: 32px 0 72px;
  }
}
/* スライドの角丸 */
.gallery-swiper__slide {
  overflow: hidden;
  border-radius: 12px;
}

@media screen and (min-width: 900px) {
  .gallery-swiper__slide {
    border-radius: 24px;
  }
}
/* スライド群の左右にパディング（先頭・末尾に余白を作る） */
.gallery-swiper .swiper-wrapper {
  padding: 0 10px;
}

@media screen and (min-width: 900px) {
  .gallery-swiper .swiper-wrapper {
    padding: 0 20px;
  }
}
/* スライド幅とスライド間隔（JSの spaceBetween と揃える） */
.gallery-swiper .swiper-slide {
  width: 100px;
  margin-right: 10px;
}

@media screen and (min-width: 900px) {
  .gallery-swiper .swiper-slide {
    width: 200px;
    margin-right: 20px;
  }
}
/* 画像は枠いっぱいに表示 */
.gallery-swiper__slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* Instagram ボタンの上に余白 */
.gallerySec__btn {
  margin-top: 24px;
  text-align: center;
}

@media screen and (min-width: 900px) {
  .gallerySec__btn {
    margin-top: 40px;
  }
}
/* =========================
   news
========================= */
.newsSec {
  padding: 112px 0 178px;
}

@media screen and (max-width: 767px) {
  .newsSec {
    padding: 114px 0 166px;
  }
}
.newsSec__secTtl {
  margin-bottom: 39px;
}

@media screen and (max-width: 767px) {
  .newsSec__secTtl {
    margin-bottom: 40px;
  }
}
.newsSec__contWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  padding: 0 90px;
  position: relative;
}

@media screen and (max-width: 1120px) {
  .newsSec__contWrap {
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .newsSec__contWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 42px;
    padding: 0 20px;
  }
}
.newsSec__cont {
  margin-right: 38px;
  position: relative;
  max-width: 510px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .newsSec__cont {
    max-width: none;
    margin-right: 0;
    margin-bottom: 22px;
    width: 100%;
  }
}
.newsSec__cont_s {
  position: relative;
  width: calc(50% - 21px);
}

@media screen and (max-width: 767px) {
  .newsSec__cont_s {
    margin-bottom: 22px;
    width: calc(50% - 9.5px);
  }
}
.newsSec__cont_s:nth-of-type(odd) {
  margin-right: 42px;
}

@media screen and (max-width: 767px) {
  .newsSec__cont_s:nth-of-type(odd) {
    margin-right: 19px;
  }
}
.newsSec__cont_s:nth-of-type(n + 3) {
  margin-top: 35px;
}

@media screen and (max-width: 767px) {
  .newsSec__cont_s:nth-of-type(n + 3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .newsSec__cont_s:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
  }
}
.newsSec__link {
  width: 100%;
}

.newsSec__link:hover .newsSec__img,
.newsSec__link_s:hover .newsSec__img_s {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.newsSec__label {
  height: 30px;
  padding: 7px 8px 7px 14px;
  font-size: 1.6rem;
  top: 20px;
}

@media screen and (max-width: 767px) {
  .newsSec__label {
    font-size: 1.2rem;
    height: 24px;
    padding: 6px 10px 6px 14px;
  }
}
.newsSec__label::after {
  border-width: 15px 8px 15px 0px;
}

@media screen and (max-width: 767px) {
  .newsSec__label::after {
    border-width: 12px 8px 12px 0px;
  }
}
.newsSec__label_s {
  top: 12px;
}

@media screen and (max-width: 767px) {
  .newsSec__label_s {
    font-size: 1.2rem;
    height: 22px;
    padding: 5px 4px 5px 10px;
    top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .newsSec__label_s::after {
    border-width: 11px 8px 11px 0px;
  }
}
.newsSec__imgWrap {
  overflow: hidden;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .newsSec__imgWrap {
    margin-bottom: 12px;
  }
}
.newsSec__imgWrap_s {
  overflow: hidden;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .newsSec__imgWrap_s {
    margin-bottom: 8px;
  }
}
.newsSec__img,
.newsSec__img_s {
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.newsSec__dt {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .newsSec__dt {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 9px;
  }
}
.newsSec__dt_s {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .newsSec__dt_s {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }
}
.newsSec__dd {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

@media screen and (max-width: 767px) {
  .newsSec__dd {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
}
.newsSec__timeWrap_s {
  font-size: 1.2rem;
}

.newsSec__time {
  font-size: 1.4rem;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .newsSec__time {
    font-size: 1.2rem;
    line-height: 1.1;
  }
}
.newsSec__time_s {
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .newsSec__time_s {
    line-height: 1.1;
  }
}
.newsSec__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 550px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (max-width: 767px) {
  .newsSec__ul {
    max-width: none;
    width: 100%;
  }
}
/* =========================
   cmnMap
========================= */
.cmnMap {
  background: #eae0d5;
  padding: 300px 0 57px;
}

@media screen and (max-width: 767px) {
  .cmnMap {
    padding: 72px 0 80px;
  }
}
.cmnMap__ttl {
  border-left: 6px solid #382620;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto 24px;
  min-height: 35px;
  max-width: 768px;
  padding-left: 16px;
}

@media screen and (max-width: 767px) {
  .cmnMap__ttl {
    font-size: 2rem;
    min-height: 29px;
    margin-bottom: 19px;
    padding-left: 8px;
  }
}
.cmnMap__name {
  display: block;
  margin-left: 25px;
}

@media screen and (max-width: 767px) {
  .cmnMap__name {
    margin-left: 20px;
  }
}
.cmnMap__inner {
  padding: 0;
  position: relative;
}

.cmnMap__inner::before {
  background-image: url(../img/bg_cat3.png);
  background-size: cover;
  content: "";
  display: inline-block;
  min-height: 359px;
  position: absolute;
  top: -390px;
  vertical-align: middle;
  min-width: 381px;
  right: -78px;
}

@media screen and (max-width: 767px) {
  .cmnMap__inner::before {
    top: -292px;
    right: -18px;
    min-height: 180px;
    min-width: 188px;
  }
}
.cmnMap__contWrap {
  margin: 0 auto;
  max-width: 768px;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .cmnMap__contWrap {
    padding: 0 20px;
  }
}
.cmnMap__mapWrap {
  background: #fff;
  position: relative;
  padding-top: 56%;
  margin-bottom: 0;
  width: 100%;
}

.cmnMap__mapWrap iframe {
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .cmnMap__mapWrap iframe {
    padding: 5px;
  }
}
.cmnMap__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 43px;
}

@media screen and (max-width: 767px) {
  .cmnMap__cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cmnMap__box {
  margin-right: 40px;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .cmnMap__box {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
.cmnMap__box:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .cmnMap__box:last-of-type {
    margin-bottom: 0;
  }
}
.cmnMap__dl {
  border-bottom: 1px solid #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 21px;
  padding-bottom: 14px;
}

@media screen and (max-width: 767px) {
  .cmnMap__dl {
    margin-bottom: 19px;
    padding-bottom: 11px;
  }
}
@media screen and (max-width: 767px) {
  .cmnMap__dl:last-of-type {
    margin-bottom: 0;
  }
}
.cmnMap__dt {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  min-width: 80px;
}

@media screen and (max-width: 767px) {
  .cmnMap__dt {
    line-height: 1.5;
  }
}
.cmnMap__dd {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .cmnMap__dd {
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  .accessSec {
    padding: 180px 0 62px;
  }
}
.accessSec__secTtl {
  position: relative;
}

@media screen and (max-width: 767px) {
  .accessSec__secTtl {
    margin-bottom: 42px;
  }
}
.accessSec__secTtl::before {
  background-image: url(../img/hukidasi2.png);
  background-size: cover;
  content: "";
  display: inline-block;
  min-height: 222px;
  position: absolute;
  top: -119px;
  left: -360px;
  vertical-align: middle;
  min-width: 233px;
}

@media screen and (max-width: 767px) {
  .accessSec__secTtl::before {
    top: -114px;
    left: -167px;
    min-height: 188px;
    min-width: 190px;
  }
}
@media screen and (max-width: 374px) {
  .accessSec__secTtl::before {
    left: -150px;
  }
}
@media screen and (max-width: 767px) {
  .accessSec .cmnMap__cont {
    margin-top: 41px;
  }
}
@media screen and (max-width: 767px) {
  .accessSec .cmnMap__box {
    margin-bottom: 0;
  }
}
.accessSec .cmnMap__dl {
  margin-bottom: 24px;
  padding-bottom: 13px;
}

@media screen and (max-width: 767px) {
  .accessSec .cmnMap__dl {
    margin-bottom: 19px;
    padding-bottom: 11px;
  }
}
.accessSec .cmnMap__dd {
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .accessSec .cmnMap__dd {
    line-height: 1.7;
  }
}
/* =========================
   footer
========================= */
.footer {
  background: #382620;
  padding: 40px 0 20px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 43px 0 22px;
  }
}
.footer__inner {
  text-align: center;
  max-width: 1280px;
  position: relative;
}

.footer__inner::after {
  background-image: url(../img/bg_cat2.png);
  background-size: cover;
  content: "";
  display: inline-block;
  min-height: 289px;
  position: absolute;
  top: -187px;
  left: -66px;
  vertical-align: middle;
  min-width: 322px;
}

@media screen and (max-width: 1120px) {
  .footer__inner::after {
    top: -143px;
    min-height: 242px;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner::after {
    top: -97px;
    left: -33px;
    min-height: 113px;
    min-width: 126px;
  }
}
.footer__sns {
  margin-bottom: 48px;
  display: block;
}

.footer__copy {
  color: #fff;
  display: block;
  font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
  .footer .cmnSns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 145px;
  }
}
@media screen and (max-width: 767px) {
  .footer .cmnSns__fa_b {
    font-size: 2.6rem;
  }
}
/* すべての画面で少し小さく */
.footer .cmnSns__icon {
  width: 20px; /* もともと 24–28px を想定 → 約-15〜-25% */
  height: 20px;
  display: block;
}

/* 大きめ画面ではほんの少しだけ拡大 */
@media (min-width: 900px) {
  .footer .cmnSns__icon {
    width: 22px;
    height: 22px;
  }
}
/* ===============================
     pagetop
  =============================== */
.footer__pagetop {
  margin-top: 24px; /* SPでは下に余白 */
  text-align: center; /* 中央寄せ */
}

/* PCで固定配置 */
@media screen and (min-width: 900px) {
  .footer__pagetop {
    position: fixed; /* 画面に固定配置 */
    right: 40px; /* 右下に固定（少し外側へ） */
    bottom: 40px;
    z-index: 10;
    margin-top: 0;
  }
}
.footer__pagetop img {
  width: clamp(40px, 6vw, 56px); /* 端末に応じて40〜56pxの範囲で可変 */
  height: auto;
  display: inline-block;
}

.footer__pagetop a {
  inline-size: clamp(40px, 6vw, 56px);
  block-size: clamp(40px, 6vw, 56px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===============================
     scrollTop
  =============================== */
.scrollTop {
  position: fixed;
  bottom: 20px;
  right: 18px;
  height: 44px;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  width: 44px;
}

@media screen and (max-width: 767px) {
  .scrollTop {
    bottom: 11px;
    right: 5px;
  }
}
.scrollTop__link {
  background: #fff;
  border-radius: 50%;
  height: 100%;
  position: relative;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 100%;
}

.scrollTop__link::before,
.scrollTop__link::after {
  content: "";
  width: 15px;
  height: 3px;
  display: inline-block;
  border-radius: 2px;
  background: #382620;
  position: absolute;
  right: 14px;
}

.scrollTop__link::before {
  top: calc(50% - 6px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.scrollTop__link::after {
  bottom: calc(50% - 6px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.scrollTop.active {
  opacity: 1;
  visibility: visible;
}

.menuBtnLower {
  top: 20px;
  right: 20px;
}

@media screen and (max-width: 767px) {
  .menuBtnLower {
    top: 10px;
    right: 9px;
  }
}
.mainLower {
  overflow: hidden;
}

.cmnMv {
  height: 320px;
  margin-bottom: 20px;
  padding: 10px;
  position: relative;
  width: 100%;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .cmnMv {
    height: 120px;
    margin-bottom: 7px;
    padding: 6px;
  }
}
.cmnMv__line {
  border: 2px solid #fff;
  height: 100%;
  padding: 4px;
}

@media screen and (max-width: 767px) {
  .cmnMv__line {
    padding: 3px;
  }
}
.cmnMv__line_inner {
  border: 1px solid #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.cmnMv__secTtl {
  color: #fff;
  display: block;
  font-family: "Amatic SC", cursive;
  font-size: 7.2rem;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-align: center;
  padding-left: 14px;
}

@media screen and (max-width: 767px) {
  .cmnMv__secTtl {
    font-size: 3.2rem;
    padding-left: 7px;
  }
}
.cmnMv__secTtl_ja {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.1em;
  margin-top: 10px;
  margin-left: -12px;
}

@media screen and (max-width: 767px) {
  .cmnMv__secTtl_ja {
    margin-top: 3px;
    margin-left: -4px;
    font-size: 1.2rem;
  }
}
.cmnMv::after {
  background: #000;
  content: "";
  height: 100%;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

/* =========================
   パンくず
========================= */
.cmnBreadCrumbs {
  margin: 0 auto 80px;
}

@media screen and (max-width: 767px) {
  .cmnBreadCrumbs {
    margin-bottom: 51px;
  }
}
.cmnBreadCrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1180px;
  padding-left: 100px; /* ★追加：PCで全体を少し右へ */
}

@media screen and (max-width: 767px) {
  .cmnBreadCrumbs__inner {
    padding: 0 10px; /* SPは従来どおり */
  }
}
.cmnBreadCrumbs__inner > span {
  display: block;
  font-weight: 700;
  margin-left: 16px;
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .cmnBreadCrumbs__inner > span {
    font-size: 1.2rem;
    margin-left: 6px;
    margin-right: 6px;
  }
}
.cmnBreadCrumbs__inner > span:first-of-type {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .cmnBreadCrumbs__inner > span:first-of-type {
    margin-left: 0;
  }
}
.cmnBreadCrumbs__inner > span:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .cmnBreadCrumbs__inner > span:last-of-type {
    margin-right: 0;
  }
}
.conceptLower .cmnMv {
  background: url(../img/news-top.png) center/cover no-repeat;
}

.cctSec {
  margin-bottom: 100px;
  padding: 0 0 100px;
  position: relative;
}

@media screen and (max-width: 1120px) {
  .cctSec {
    margin-bottom: 75px;
    padding: 0 0 47px;
  }
}
.cctSec__inner {
  max-width: 1180px;
  padding: 0 40px;
}

@media screen and (max-width: 767px) {
  .cctSec__inner {
    padding: 0 20px;
  }
}
.cctSec__contWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

@media screen and (max-width: 1120px) {
  .cctSec__contWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cctSec__txtWrap {
  margin-right: 70px;
  padding-top: 96px;
  min-width: 389px;
  width: 30%;
}

@media screen and (max-width: 1120px) {
  .cctSec__txtWrap {
    margin-right: 0;
    margin-bottom: 35px;
    padding-top: 0;
    min-width: auto;
    width: 100%;
  }
}
.cctSec__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2.1;
  margin-bottom: 27px;
}

@media screen and (max-width: 767px) {
  .cctSec__ttl {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 30px;
  }
}
.cctSec__txtBox {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .cctSec__txt {
    letter-spacing: 0.01em;
  }
}
.cctSec::after {
  background: #eae0d5;
  bottom: 0;
  right: 0;
  content: "";
  height: 198px;
  position: absolute;
  width: 77%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .cctSec::after {
    height: 100px;
    width: 89%;
  }
}
.cctSec:nth-of-type(even) {
  padding-bottom: 60px;
}

@media screen and (max-width: 1120px) {
  .cctSec:nth-of-type(even) {
    padding-bottom: 22px;
  }
}
.cctSec:nth-of-type(even) .cctSec__contWrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1120px) {
  .cctSec:nth-of-type(even) .cctSec__contWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cctSec:nth-of-type(even) .cctSec__txtWrap {
  margin-right: 0;
  margin-left: 70px;
  padding-top: 70px;
}

@media screen and (max-width: 1120px) {
  .cctSec:nth-of-type(even) .cctSec__txtWrap {
    padding-top: 0;
    margin-left: 0;
  }
}
.cctSec:nth-of-type(even)::after {
  left: 0;
  height: 437px;
  width: 45%;
}

@media screen and (max-width: 767px) {
  .cctSec:nth-of-type(even)::after {
    height: 227px;
    width: 75%;
  }
}
.cctSec.croissant {
  margin-bottom: 170px;
  padding: 40px 0 80px;
}

@media screen and (max-width: 1120px) {
  .cctSec.croissant {
    padding: 0 0 37px;
    margin-bottom: 160px;
  }
}
.cctSec.croissant .cctSec__txtWrap {
  padding-top: 31px;
}

@media screen and (max-width: 1120px) {
  .cctSec.croissant .cctSec__txtWrap {
    padding-top: 0;
  }
}
.cctSec.croissant .cctSec__ttl {
  margin-bottom: 52px;
}

@media screen and (max-width: 1120px) {
  .cctSec.croissant .cctSec__ttl {
    margin-bottom: 33px;
  }
}
@media screen and (max-width: 1120px) {
  .cctSec.croissant .cctSec__imgWrap {
    width: 87%;
    margin-right: auto;
  }
}
.cctSec.croissant::after {
  height: 100%;
  width: 31%;
}

@media screen and (max-width: 767px) {
  .cctSec.croissant::after {
    height: 239px;
    width: 49%;
    right: 20px;
  }
}
.tab {
  padding-bottom: 174px;
}

@media screen and (max-width: 767px) {
  .tab {
    padding-bottom: 160px;
  }
}
.tab__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 842px;
  margin: 0 auto 78px;
}

@media screen and (max-width: 767px) {
  .tab__btnWrap {
    margin: 0 auto 60px;
  }
}
.tab__btn {
  background: #888;
  cursor: pointer;
  margin-right: 14px;
  min-height: 70px;
  padding: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: calc(25% - 10.5px);
}

@media screen and (max-width: 767px) {
  .tab__btn {
    margin-right: 13px;
    margin-bottom: 12px;
    min-height: 64px;
    width: calc(50% - 6.5px);
  }
}
.tab__btn:hover {
  background: #382620;
}

.tab__btn.current {
  background: #382620;
}

.tab__btn:nth-of-type(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .tab__btn:nth-of-type(4n) {
    margin-right: 13px;
  }
}
@media screen and (max-width: 767px) {
  .tab__btn:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .tab__btn:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
  }
}
.tab__btnLine {
  border: 1px solid #fff;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  height: 100%;
  line-height: 1.25;
  text-align: center;
}

.tab__panelWrap {
  max-width: 1100px;
  margin: 0 auto;
}

.tab__panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tab__item {
  margin-right: 40px;
  margin-bottom: 40px;
  width: calc(25% - 30px);
}

@media screen and (max-width: 1120px) {
  .tab__item {
    margin-right: 14px;
    width: calc(25% - 10.5px);
  }
}
@media screen and (max-width: 767px) {
  .tab__item {
    margin-right: 3.28358%;
    margin-bottom: 28px;
    width: 48.35821%;
  }
}
.tab__item:nth-of-type(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .tab__item:nth-of-type(4n) {
    margin-right: 11px;
  }
}
.tab__item:nth-last-of-type(-n + 4) {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .tab__item:nth-last-of-type(-n + 4) {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .tab__item:nth-of-type(even) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .tab__item:nth-last-of-type(-n + 2) {
    margin-bottom: 0;
  }
}
.tab__imgWrap {
  margin-bottom: 13px;
}

@media screen and (max-width: 767px) {
  .tab__imgWrap {
    margin-bottom: 5px;
  }
}
.tab__img {
  height: auto;
}

.tab__menuName {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 3px;
}

@media screen and (max-width: 767px) {
  .tab__menuName {
    margin-bottom: 4px;
  }
}
.tab__menuPrice {
  font-family: "Damion", cursive;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .tab__menuPrice {
    letter-spacing: 0.04em;
  }
}
/* ===============================
     news.html
  =============================== */
.newsLower .cmnMv {
  background: url(../img/news-top.png) center/cover no-repeat;
}

.newsLower__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1180px;
  padding-bottom: 170px;
}

@media screen and (max-width: 1120px) {
  .newsLower__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: none;
  }
}
.newsLower .cmnBreadCrumbs {
  margin-bottom: 86px;
}

@media screen and (max-width: 767px) {
  .newsLower .cmnBreadCrumbs {
    margin-bottom: 51px;
  }
}
.ctg {
  margin-right: 72px;
  max-width: 728px;
  min-width: 61%;
}

@media screen and (max-width: 1120px) {
  .ctg {
    margin-right: 0;
    margin-bottom: 60px;
    max-width: none;
    min-width: auto;
    width: 100%;
  }
}
.ctg__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 26px;
}

@media screen and (max-width: 767px) {
  .ctg__ttl {
    font-size: 2rem;
    line-height: 2;
    margin-bottom: 33px;
  }
}
.ctg__itemWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
  padding-left: 8px;
}

@media screen and (max-width: 767px) {
  .ctg__itemWrap {
    padding-left: 0;
  }
}
.ctg__item {
  position: relative;
  margin-right: 40px;
  width: calc(50% - 20px);
}

@media screen and (max-width: 767px) {
  .ctg__item {
    margin-right: 22px;
    width: calc(50% - 11px);
  }
}
.ctg__item:nth-of-type(even) {
  margin-right: 0;
}

.ctg__item:nth-of-type(n + 3) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .ctg__item:nth-of-type(n + 3) {
    margin-top: 26px;
  }
}
.ctg__link:hover .category__img {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.ctg__label {
  font-size: 1.4rem;
  height: 28px;
  padding: 7px 7px 7px 14px;
  top: 16px;
}

@media screen and (max-width: 767px) {
  .ctg__label {
    font-size: 1.2rem;
    height: 22px;
    padding: 5px 3px 5px 10px;
    top: 10px;
  }
}
.ctg__label::after {
  border-width: 14px 8px 14px 0px;
}

@media screen and (max-width: 767px) {
  .ctg__label::after {
    border-width: 11px 9px 11px 0px;
    right: -9px;
  }
}
.ctg__imgWrap {
  overflow: hidden;
  margin-bottom: 13px;
}

@media screen and (max-width: 767px) {
  .ctg__imgWrap {
    margin-bottom: 8px;
  }
}
.ctg__img {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: auto;
}

.ctg__dt {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 13px;
}

@media screen and (max-width: 767px) {
  .ctg__dt {
    font-size: 1.2rem;
    margin-bottom: 9px;
  }
}
.ctg__time {
  display: block;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .ctg__time {
    font-size: 1.2rem;
    line-height: 1.1;
  }
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px; /* 丸同士の間隔を一定にする */
}

@media screen and (max-width: 767px) {
  .pagination {
    padding: 0 20px;
  }
}
.pagination .page-numbers {
  background: #fff;
  border: 1px solid #382620;
  border-radius: 50%;
  color: #382620;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  height: 40px;
  width: 40px;
}

.pagination a.page-numbers:hover {
  background: #382620;
  color: #fff;
  opacity: 1;
}

.pagination .page-numbers.current {
  background: #382620;
  color: #fff;
}

/* 次へ矢印（画像に変更） */
.pagination .arrow-next {
  display: inline-block;
  width: 12px; /* 画像の幅に合わせて調整 */
  height: 12px; /* 画像の高さに合わせて調整 */
  background: url("../img/arrow-next.png") no-repeat center center;
  background-size: contain;
}

.sideBar {
  max-width: 300px;
  margin-left: -10px; /* 本文とサイドバーの間の余白 */
}

@media screen and (max-width: 1120px) {
  /* 親のflexを解除して縦並びに */
  .newsLower__inner {
    display: block;
  }
  /* サイドバーを中央に */
  .newsLower__sideBar.sideBar {
    width: 100%;
    max-width: 360px; /* 好みで調整 */
    margin-left: auto !important;
    margin-right: auto !important;
    float: none;
    -ms-flex-item-align: center;
        align-self: center; /* 念のため */
  }
}
/* スマホ・タブレットでサイドバーをど真ん中に */
@media screen and (max-width: 1120px) {
  /* 親がflexのままだと左右に寄るため、縦並びに固定 */
  .newsLower__inner {
    display: block !important;
  }
  /* サイドバー本体を中央配置（左右autoを強制） */
  .newsLower__sideBar.sideBar,
  .sideBar {
    /* 念のため両方指定 */
    width: 100%;
    max-width: 360px; /* お好みで調整 */
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  /* 内側に残る左右のズレを無効化 */
  .newsLower__sideBar .aside,
  .newsLower__sideBar .aside__inner {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/* ===== サイドバー（ベース） ===== */
.aside {
  background: #fff;
  padding: 50px 0 85px;
  width: 100%;
  margin-left: 120px; /* PC時の左寄せ */
}

.aside__inner {
  padding: 0 20px;
  margin: 0 auto;
}

/* ===== タブレット以下（必要なら幅制御） ===== */
@media screen and (max-width: 1120px) {
  .aside__inner {
    max-width: none;
  }
}
/* ===== スマホのみ：中身を少し右へ ===== */
@media screen and (max-width: 767px) {
  .aside {
    padding: 24px 0 20px;
    margin-left: 0; /* PC用の120pxをリセット */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .aside__inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 50px; /* ← 中身を“少し右”に移動（値は調整OK） */
    padding-right: 20px; /* 既存と同じ */
  }
}
.aside__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.aside__ttl::after {
  background: #382620;
  content: "";
  display: block;
  height: 1px;
  margin-top: 22px;
  width: 32px;
}

.aside_cate {
  padding: 23px 0 24px;
}

.aside:nth-of-type(n + 2) {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .aside:nth-of-type(n + 2) {
    margin-top: 40px;
  }
}
.new__item:nth-of-type(n + 2) {
  margin-top: 16px;
}

.new__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100px;
}

.new__imgWrap {
  margin-right: 14px;
}

.new__img {
  height: 100px;
  width: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}

.new__dt {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 13px;
}

@media screen and (max-width: 767px) {
  .new__dt {
    letter-spacing: 0.02em;
  }
}
.new__time {
  display: block;
  font-size: 1.2rem;
  line-height: 1.1;
}

/* カテゴリーのリンク先頭に「>」を表示（画像は使わない） */
.genre a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.genre a::before {
  content: ">";
  display: inline-block;
  font-size: 14px;
  line-height: 3;
  margin-right: 6px;
  color: #333; /* 必要なら色は調整可 */
}

.pageLower .cmnMv {
  background: url(../img/news-top.png) center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .pageLower .cmnBreadCrumbs {
    margin-bottom: 55px;
  }
}
.pageLower__inner {
  max-width: 768px;
  padding: 0 40px 170px;
}

@media screen and (max-width: 1120px) {
  .pageLower__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: none;
    padding: 0 40px 160px;
  }
}
@media screen and (max-width: 767px) {
  .pageLower__inner {
    padding: 0 20px 160px;
  }
}
.pageLower__main {
  margin-bottom: 121px;
  padding-right: 28px; /* 本文とサイドバーの間に余白（PCのみ） */
}

@media screen and (max-width: 1120px) {
  .pageLower__main {
    padding-right: 0; /* 縦並びではリセット */
  }
}
@media screen and (max-width: 767px) {
  .pageLower__main {
    margin-bottom: 101px;
  }
}
.pageLower__sec {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .pageLower__sec {
    margin-bottom: 34px;
  }
}
.pageLower__thumbnailWrap {
  margin-bottom: 28px;
}

@media screen and (max-width: 767px) {
  .pageLower__thumbnailWrap {
    margin-bottom: 27px;
  }
}
.pageLower__thumbnail {
  height: auto;
}

.pageLower__ttl_h1 {
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 43px;
}

@media screen and (max-width: 767px) {
  .pageLower__ttl_h1 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 22px;
  }
}
.pageLower h2 {
  border-left: 6px solid #382620;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  min-height: 35px;
  line-height: 1.6;
  margin-top: 96px;
  margin-bottom: 18px;
  padding-left: 16px;
}

@media screen and (max-width: 767px) {
  .pageLower h2 {
    border-left: 4px solid #382620;
    font-size: 1.8rem;
    line-height: 1.5;
    padding-left: 12px;
    margin-top: 76px;
  }
}
.pageLower h3 {
  border-bottom: 1px solid #382620;
  font-size: 2rem;
  line-height: 2;
  margin-top: 50px;
  margin-bottom: 20px;
  padding-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .pageLower h3 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 57px;
    padding-bottom: 11px;
  }
}
.pageLower h4 {
  font-size: 1.6rem;
  line-height: 2.5;
  margin-top: 46px;
  margin-bottom: 7px;
}

@media screen and (max-width: 767px) {
  .pageLower h4 {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 56px;
    margin-bottom: 14px;
  }
}
.pageLower em {
  font-style: normal;
}

.pageLower__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
  min-height: 18px;
}

.pageLower__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
}

.pageLower__time::after {
  background: #382620;
  content: "";
  display: block;
  height: 16px;
  margin-left: 20px;
  width: 1px;
}

.pageLower__cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pageLower__txt p {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .pageLower__txt p {
    font-size: 1.4rem;
  }
}
.pageLower figure {
  margin-top: 35px;
  margin-bottom: 35px;
}

.pageLower ul {
  margin-top: 30px;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .pageLower ul {
    margin-bottom: 38px;
  }
}
.pageLower li {
  padding-left: 18px;
  font-size: 1.7rem;
}

@media screen and (max-width: 767px) {
  .pageLower li {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .pageLower li::before {
    font-size: 1.4rem;
  }
}
.pageLower li:nth-of-type(n + 2) {
  margin-top: 14px;
}

.pageLower blockquote {
  background: #fff;
  padding: 36px 40px;
}

@media screen and (max-width: 767px) {
  .pageLower blockquote {
    padding: 17px 24px;
  }
}
.pageLower blockquote > p {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .pageLower blockquote > p {
    font-size: 1.4rem;
  }
}
.pageLower cite {
  display: block;
  font-size: 1.4rem;
  line-height: 2.2;
  text-align: right;
  letter-spacing: 0.005em;
}

@media screen and (max-width: 767px) {
  .pageLower cite {
    letter-spacing: 0.01em;
    padding-right: 19px;
  }
}
.other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.other__prevWrap,
.other__nextWrap {
  width: 82px;
}

@media screen and (max-width: 767px) {
  .other__prevWrap,
  .other__nextWrap {
    width: 73px;
  }
}
.other__prevWrap > a,
.other__nextWrap > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .other__prevWrap > a,
  .other__nextWrap > a {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.other__prevWrap > a::before {
  background-size: cover;
  content: "";
  display: block;
  height: 13px;
  margin-right: 10px;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  width: 7px;
}

.other__nextWrap > a::after {
  background-size: cover;
  content: "";
  display: block;
  height: 13px;
  margin-left: 10px;
  width: 7px;
}

.other__btn {
  border: 1px solid #382620;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  min-height: 48px;
  width: 136px;
}

@media screen and (max-width: 767px) {
  .other__btn {
    font-size: 1.4rem;
    line-height: 1.7;
    width: 112px;
    min-height: 40px;
  }
}
.other__btn:hover {
  background: #382620;
  color: #fff;
  opacity: 1;
}

.connect__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 59px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .connect__ttl {
    font-size: 2rem;
    margin-bottom: 39px;
  }
}
.connect__itemWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.connect__img {
  height: auto;
}

.connect__item {
  width: calc(33.3333% - 21.3333333333px);
}

@media screen and (max-width: 767px) {
  .connect__item {
    width: calc(50% - 9.5px);
  }
}
.connect__item:nth-of-type(n + 2) {
  margin-left: 32px;
}

@media screen and (max-width: 767px) {
  .connect__item:nth-of-type(n + 2) {
    margin-left: 19px;
  }
}
.connect__item:nth-of-type(4n) {
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .connect__item:nth-of-type(4n) {
    margin-left: 19px;
  }
}
@media screen and (max-width: 767px) {
  .connect__item:nth-of-type(odd) {
    margin-left: 0;
  }
}
.connect__item:nth-of-type(n + 4) {
  margin-top: 42px;
}

@media screen and (max-width: 767px) {
  .connect__item:nth-of-type(n + 4) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .connect__item:nth-of-type(n + 3) {
    margin-top: 20px;
  }
}
.connect__link {
  position: relative;
  padding-left: 8px;
}

@media screen and (max-width: 767px) {
  .connect__link {
    padding-left: 0;
  }
}
.connect__link:hover .connect__img {
  -webkit-transform: scale(1.05, 1.05);
          transform: scale(1.05, 1.05);
}

.connect__label {
  font-size: 1.2rem;
  height: 24px;
  padding: 6px 9px 6px 14px;
  top: 12px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .connect__label {
    height: 20px;
    padding: 4px 3px 4px 10px;
    left: -8px;
  }
}
.connect__label::after {
  border-width: 12px 8px 12px 0px;
}

@media screen and (max-width: 767px) {
  .connect__label::after {
    border-width: 10px 8px 10px 0px;
  }
}
.connect__imgWrap {
  overflow: hidden;
  margin-bottom: 11px;
}

@media screen and (max-width: 767px) {
  .connect__imgWrap {
    margin-bottom: 7px;
  }
}
.connect__img {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.connect__dt {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 11px;
}

@media screen and (max-width: 767px) {
  .connect__dt {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.connect__time {
  display: block;
  font-size: 1.2rem;
  line-height: 1.1;
}

.shopLower .cmnMv {
  background: url(../img/img_firstview_contact.png) center/cover no-repeat;
}

.shopLower .cmnBreadCrumbs {
  margin-bottom: 83px;
}

@media screen and (max-width: 767px) {
  .shopLower .cmnBreadCrumbs {
    margin-bottom: 56px;
  }
}
.shopLower__inner {
  max-width: 1180px;
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .shopLower__inner {
    padding: 0 20px;
  }
}
.shopLower__shopWrap {
  max-width: 689px;
  margin: 0 auto;
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .shopLower__shopWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: none;
    padding-bottom: 160px;
  }
}
.shopLower__shopList:nth-of-type(n + 2) {
  margin-top: 99px;
}

@media screen and (max-width: 767px) {
  .shopLower__shopList:nth-of-type(n + 2) {
    margin-top: 60px;
  }
}
.shopLower__contWrap {
  padding: 0;
}

.shopLower__mapWrap {
  margin-bottom: 0;
}

.shopLower__cont {
  margin-top: 26px;
}

@media screen and (max-width: 767px) {
  .shopLower__cont {
    margin-top: 21px;
  }
}
@media screen and (max-width: 767px) {
  .shopLower__dl {
    padding-bottom: 11px;
  }
}
.productsLower .cmnMv {
  background: url(../img/products/img_firstview_gift.jpg) center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .productsLower .cmnBreadCrumbs {
    margin-bottom: 55px;
  }
}
.productsLower__inner {
  max-width: 1180px;
  padding: 0 40px 170px;
}

@media screen and (max-width: 767px) {
  .productsLower__inner {
    max-width: none;
    padding: 0 20px 160px;
  }
}
.productsLower__boxWrap {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .productsLower__boxWrap {
    margin-bottom: 60px;
  }
}
.productsLower__topWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 41px;
}

@media screen and (max-width: 767px) {
  .productsLower__topWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.productsLower__itemWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.productsLower__itemWrap_2n {
  max-width: 530px;
  min-width: 48%;
}

@media screen and (max-width: 767px) {
  .productsLower__itemWrap_2n {
    max-width: none;
    min-width: auto;
    width: 100%;
  }
}
.productsLower__itemWrap_2n .productsLower__item {
  width: 46.226415%;
}

@media screen and (max-width: 767px) {
  .productsLower__itemWrap_2n .productsLower__item {
    width: calc(50% - 9px);
  }
}
.productsLower__itemWrap_2n .productsLower__item:nth-of-type(n + 2) {
  margin-left: 7.54717%;
}

@media screen and (max-width: 767px) {
  .productsLower__itemWrap_2n .productsLower__item:nth-of-type(n + 2) {
    margin-left: 18px;
  }
}
.productsLower__itemWrap_2n .productsLower__item:nth-of-type(odd) {
  margin-left: 0;
}

.productsLower__itemWrap_2n .productsLower__item:nth-of-type(n + 3) {
  margin-top: 40px;
}

.productsLower__itemWrap_4n .productsLower__item {
  width: 22.27275%;
}

@media screen and (max-width: 767px) {
  .productsLower__itemWrap_4n .productsLower__item {
    width: calc(50% - 9px);
  }
}
.productsLower__itemWrap_4n .productsLower__item:nth-of-type(n + 2) {
  margin-left: 3.63636%;
}

@media screen and (max-width: 767px) {
  .productsLower__itemWrap_4n .productsLower__item:nth-of-type(n + 2) {
    margin-left: 18px;
  }
}
.productsLower__itemWrap_4n .productsLower__item:nth-of-type(4n + 1) {
  margin-left: 0;
}

.productsLower__itemWrap_4n .productsLower__item:nth-of-type(n + 5) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .productsLower__itemWrap_4n .productsLower__item:nth-of-type(n + 5) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .productsLower__itemWrap_4n .productsLower__item:nth-of-type(odd) {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .productsLower__itemWrap_4n .productsLower__item:nth-of-type(n + 3) {
    margin-top: 40px;
  }
}
.newItem {
  margin-right: 3.7037%;
  max-width: 530px;
  min-width: 48%;
}

@media screen and (max-width: 767px) {
  .newItem {
    margin-right: 0;
    margin-bottom: 40px;
    max-width: none;
    min-width: auto;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .newItem .pro__imgWrap {
    margin-bottom: 16px;
  }
}
.newItem .pro__dt {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .newItem .pro__dt {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
.newItem .pro__dd {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 17px;
}

@media screen and (max-width: 767px) {
  .newItem .pro__dd {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 13px;
  }
}
.pro__imgWrap {
  margin-bottom: 17px;
}

@media screen and (max-width: 767px) {
  .pro__imgWrap {
    margin-bottom: 9px;
  }
}
.pro__img {
  height: auto;
}

.pro__dt {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .pro__dt {
    line-height: 1.4;
    margin-bottom: 3px;
  }
}
.pro__dd {
  font-family: "Damion", cursive;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 12px;
}

.pro__dd:last-of-type {
  margin: 0 auto;
  max-width: 174px;
  line-height: normal;
}

.pro__link {
  border: 1px solid #222;
  background: #222;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: normal;
  margin: 0 auto;
  min-height: 36px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .pro__link {
    font-size: 1.2rem;
    min-height: 29px;
    width: 140px;
  }
}
@media screen and (max-width: 374px) {
  .pro__link {
    width: 120px;
  }
}
.pro__link:hover {
  background: #fff;
  color: #222;
  opacity: 1;
}

.giftMsg {
  background: #fff;
  border: 4px solid #382620;
  padding: 6px;
}

.giftMsg__inner {
  border: 1px solid #382620;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 70px 50px;
}

@media screen and (max-width: 767px) {
  .giftMsg__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 28px 29px;
  }
}
.giftMsg__txtWrap {
  max-width: 460px;
  min-width: 42%;
  margin-right: 60px;
}

@media screen and (max-width: 767px) {
  .giftMsg__txtWrap {
    max-width: none;
    min-width: auto;
    margin-right: 0;
    margin-bottom: 36px;
    width: 100%;
  }
}
.giftMsg__ttl {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 36px;
}

@media screen and (max-width: 767px) {
  .giftMsg__ttl {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 21px;
    padding: 0 7px;
  }
}
.giftMsg__ttl::after {
  background: url(../img/products/line-dots_460.svg) left/contain repeat;
  content: "";
  display: block;
  height: 3px;
  margin-top: 21px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .giftMsg__ttl::after {
    background: url(../img/products/line-dots_246.svg) left/contain repeat;
    margin-top: 22px;
  }
}
.giftMsg__txt {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .giftMsg__txt {
    font-size: 1.2rem;
  }
}
.giftMsg__imgWrap {
  max-width: 460px;
  min-width: 42%;
}

@media screen and (max-width: 767px) {
  .giftMsg__imgWrap {
    max-width: none;
    min-width: auto;
    width: 100%;
  }
}
/* =========================
   CONTACT ページ共通
========================= */
/* === contact.html 専用：横スクロール完全禁止 === */
html,
body.contctLower {
  width: 100%;
  overflow-x: hidden !important; /* ← html にも必ず効かせる */
}

/* 画像はみ出し防止 */
body.contctLower img {
  max-width: 100% !important;
  height: auto;
  display: block;
}

/* Google Map の iframe を100%化 */
body.contctLower .cmnMap__mapWrap {
  height: auto;
}

body.contctLower .cmnMap__mapWrap iframe {
  width: 100% !important;
  height: 367px !important; /* PC用の高さ */
  display: block;
  border: 0;
}

@media (max-width: 767px) {
  body.contctLower .cmnMap__mapWrap iframe {
    height: 200px !important; /* ← スマホ用だけ小さめに */
  }
}
/* 電話ブロックは常に画面内に収める */
body.contctLower .contctLower__inner {
  max-width: 768px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 767px) {
  body.contctLower .contctLower__inner {
    max-width: 100%;
    width: 100%;
  }
}
/* アクセスセクションや内枠がはみ出さないよう保険 */
body.contctLower .cmnMap,
body.contctLower .cmnMap__inner,
body.contctLower .cmnInner {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* アクセス周りの装飾（吹き出し等）が右にはみ出す場合のガード */
body.contctLower .accessSec {
  overflow-x: hidden;
}

.contctLower .cmnMv {
  background: url(../img/img_firstview_contact.png) center/cover no-repeat;
}

/* 電話案内ブロック */
.contctLower__inner {
  max-width: 768px;
  margin: 0 auto 60px; /* 下の余白 */
  padding: 40px 40px 40px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .contctLower__inner {
    margin: 0 auto 40px;
    padding: 20px;
  }
}
/* 見出し（ご不明な点〜） */
.contctLower__ttl {
  font-size: 32px; /* PC用フォントサイズ */
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #382620;
}

@media screen and (max-width: 767px) {
  .contctLower__ttl {
    font-size: 20px; /* SP用フォントサイズ */
    line-height: 1.6;
    margin-bottom: 15px;
  }
}
/* メッセージ部分 */
.contctLower__msg {
  font-size: 24px; /* PC用フォントサイズ */
  font-weight: 500;
  line-height: 1.6;
  color: #333;
}

@media screen and (max-width: 767px) {
  .contctLower__msg {
    font-size: 18px; /* SP用フォントサイズ */
    line-height: 1.8;
  }
}
/* 電話番号リンク */
.contctLower__msg a {
  display: inline-block;
  margin-top: 10px;
  font-size: 28px; /* PC用電話番号サイズ */
  font-weight: 700;
  color: #222222;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contctLower__msg a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .contctLower__msg a {
    font-size: 24px; /* SP用電話番号サイズを少し小さめに */
  }
}
/* ============================
   Table of Contents Plus (TOC+)
   美観neko スタイル：枠＋丸番号
   ============================ */
#toc_container {
  --mn-toc-accent: #c65b3a; /* 赤（好みで変更OK） */
  /* ▼ 見出しサイズ：h2 > h3 > h4 の順で小さく */
  --toc-fs-h2: clamp(0.98rem, 0.94rem + 0.25vw, 1.1rem);
  --toc-fs-h3: clamp(0.92rem, 0.88rem + 0.2vw, 1rem);
  --toc-fs-h4: clamp(0.86rem, 0.84rem + 0.15vw, 0.94rem);
  background: #fff;
  border: 2px solid var(--mn-toc-accent);
  border-radius: 8px;
  padding: 1.1rem 1.2rem 1.1rem;
  margin: 2rem 0;
  width: auto; /* TOC+の固定幅対策 */
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  color: #333;
  line-height: 1.7;
}

/* タイトル：中央配置＋下線 */
#toc_container .toc_title {
  text-align: center;
  margin: 0 0 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

#toc_container .toc_title::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--mn-toc-accent);
  opacity: 0.35;
  margin: 0.6rem auto 0;
  width: calc(100% - 2rem);
}

/* リスト共通（TOC+はul出力） */
#toc_container ul.toc_list,
#toc_container ul.toc_list ul {
  list-style: none !important;
  margin: 0;
  padding-left: 0;
}

/* h2（第1階層）＝丸数字バッジ */
#toc_container ul.toc_list {
  counter-reset: toc-h2;
}

#toc_container li.toc_level-1 {
  counter-increment: toc-h2;
  position: relative;
  margin: 0.5rem 0;
  padding-left: 2.2rem; /* バッジ分の余白 */
  font-size: var(--toc-fs-h2); /* ← ここでサイズ指定（最大） */
}

#toc_container li.toc_level-1::before {
  content: counter(toc-h2);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--mn-toc-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.55rem;
  text-align: center;
}

/* h3（第2階層）＝ドット */
#toc_container li.toc_level-2 {
  position: relative;
  margin: 0.35rem 0;
  padding-left: 1.2rem;
  font-size: var(--toc-fs-h3); /* ← h3は少し小さく */
}

#toc_container li.toc_level-2::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mn-toc-accent);
  font-weight: 700;
}

/* h4（第3階層）＝小さめドット */
#toc_container li.toc_level-3 {
  position: relative;
  margin: 0.25rem 0;
  padding-left: 1.2rem;
  font-size: var(--toc-fs-h4); /* ← h4はさらに小さく */
}

#toc_container li.toc_level-3::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  color: #bfa7a7;
}

/* リンクの見た目・ホバー */
#toc_container a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: color 0.2s, border-color 0.2s, -webkit-transform 0.06s;
  transition: color 0.2s, border-color 0.2s, -webkit-transform 0.06s;
  transition: color 0.2s, border-color 0.2s, transform 0.06s;
  transition: color 0.2s, border-color 0.2s, transform 0.06s, -webkit-transform 0.06s;
}

#toc_container a:hover {
  color: #000;
  border-bottom-color: rgba(198, 59, 69, 0.35);
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}

/* 開閉リンク（使っていれば） */
#toc_container .toc_toggle a {
  font-size: 0.85rem;
  color: #888;
}

#toc_container .toc_toggle a:hover {
  color: #333;
  text-decoration: underline;
}

/* 見出しへジャンプ時のずれ＆ハイライト（固定ヘッダー想定） */
.pageLower__txt h2,
.pageLower__txt h3,
.pageLower__txt h4 {
  scroll-margin-top: 96px;
}

:target {
  -webkit-animation: mn-toc-hit 0.8s ease-out;
          animation: mn-toc-hit 0.8s ease-out;
}

@-webkit-keyframes mn-toc-hit {
  0% {
    background: rgba(198, 59, 69, 0.12);
  }
  100% {
    background: transparent;
  }
}

@keyframes mn-toc-hit {
  0% {
    background: rgba(198, 59, 69, 0.12);
  }
  100% {
    background: transparent;
  }
}
/* モバイル調整 */
@media (max-width: 767px) {
  #toc_container {
    padding: 0.95rem 0.95rem;
    border-radius: 8px;
  }
  #toc_container li.toc_level-1 {
    padding-left: 2rem;
  }
  #toc_container li.toc_level-1::before {
    width: 1.4rem;
    height: 1.4rem;
    line-height: 1.4rem;
  }
}
#toc_container li.toc_level-1 > a {
  font-size: 16px;
} /* H2 */
#toc_container li.toc_level-2 > a {
  font-size: 15px;
} /* H3 */
#toc_container li.toc_level-3 > a {
  font-size: 14px;
} /* H4 */
/* ============================
検索窓の入力フィールドを大きく（デフォルトで青枠）
   ============================ */
.widget.widget_search .search-field {
  height: 56px; /* 高さを拡大 */
  font-size: 18px; /* 文字＆プレースホルダーを拡大 */
  padding: 12px 16px; /* 内側の余白を広げる */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 追加：デフォルト状態で青い枠＆やわらかい外枠 */
  border: 2px solid #767676;
  border-radius: 6px;
  background: #fff;
  -webkit-box-shadow: 0 0 0 2px rgba(47, 91, 255, 0.15);
          box-shadow: 0 0 0 2px rgba(47, 91, 255, 0.15);
}

/* フォーカス時も同じ見た目を維持（微調整だけ） */
.widget.widget_search .search-field:focus {
  outline: none;
  border-color: #767676;
  -webkit-box-shadow: 0 0 0 2px rgba(47, 91, 255, 0.2);
          box-shadow: 0 0 0 2px rgba(47, 91, 255, 0.2);
}

@media (max-width: 767px) {
  .widget.widget_search .search-field {
    height: 52px;
    font-size: 21px;
  }
}
/* サイドバー：検索見出しのスタイルを指定どおりに */
.widget.widget_search .widget-title {
  border-left: 4px solid #382620;
  font-size: 1.8rem;
  line-height: 1.5;
  padding-left: 12px;
  margin-top: 76px;
}

/* サイドバー検索：見出しとフォームの間に余白 */
.widget.widget_search .search-form {
  margin-top: 12px; /* お好みで数値調整 */
}

/* =========================
   404 Page Styling
   ========================= */
/* コンテナ */
.entry-404 {
  padding: 60px 20px 85px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 見出し 404 */
.entry-404-head {
  color: #f0cdd0;
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 36px;
}

.entry-404-head span::after {
  content: " ";
}

/* リード文 */
.entry-404-lead {
  color: #808080;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 24px;
}

.entry-404-lead .m_sp {
  display: none;
}

/* 本文 */
.entry-404-content {
  color: #808080;
  font-size: 16px;
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto;
}

/* 検索フォーム（404内に置いた場合の並び/幅） */
.entry-404 .search-form {
  max-width: 520px;
  margin: 24px auto 0;
}

/* ボタン */
.entry-404-btn {
  margin-top: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.entry-404-btn .btn {
  display: inline-block;
  background: #ebebeb;
  color: #8d8d8d;
  border: 1px solid #dddddd;
  border-radius: 4px;
  padding: 12px 20px;
  text-decoration: none;
  -webkit-transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, transform 0.06s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, transform 0.06s ease, box-shadow 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
}

.entry-404-btn .btn:hover {
  background: #ccc;
  opacity: 1;
}

.entry-404-btn .btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.entry-404-btn .btn:focus-visible {
  outline: 2px solid #2f5bff;
  outline-offset: 2px;
  -webkit-box-shadow: 0 0 0 2px rgba(47, 91, 255, 0.15);
          box-shadow: 0 0 0 2px rgba(47, 91, 255, 0.15);
}

/* =========================
   404 の画像サイズ制御（強制）
   - 大きすぎる noimg.png を必ず縮小して中央寄せ
   ========================= */
/* =========================
   404 Page – styles for the template below
   作用範囲を 404 のみ（body.error404）に限定
   ========================= */
/* コンテンツブロック */
body.error404 .entry-404 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 20px 88px;
  text-align: center;
}

/* 画像ラッパー：中央寄せ＋幅制限（ここでサイズを決める） */
body.error404 .pageLower__thumbnailWrap {
  display: block !important;
  width: auto !important;
  max-width: 520px !important; /* ← PC時の最大幅。必要に応じて調整 */
  margin: 0 auto 20px !important;
  text-align: center;
}

/* 画像：ラッパー幅にフィットさせる */
body.error404 .pageLower__thumbnailWrap > img,
body.error404 img.pageLower__thumbnail {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
}

/* 大見出し（404） */
body.error404 .entry-404-head {
  color: #f0cdd0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 24px 0 16px;
}

/* リード文 */
body.error404 .entry-404-lead {
  color: #808080;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* 説明テキスト */
body.error404 .entry-404-content {
  color: #808080;
  font-size: 16px;
  line-height: 1.9;
  max-width: 720px;
  margin: 0 auto;
}

/* ボタン行 */
body.error404 .entry-404-btn {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* ボタン */
body.error404 .entry-404-btn .btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #ebebeb;
  color: #8d8d8d;
  -webkit-transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, transform 0.06s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, transform 0.06s ease, box-shadow 0.2s ease, -webkit-transform 0.06s ease, -webkit-box-shadow 0.2s ease;
}

body.error404 .entry-404-btn .btn:hover {
  background: #ccc;
}

body.error404 .entry-404-btn .btn:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

body.error404 .entry-404-btn .btn:focus-visible {
  outline: 2px solid #2f5bff;
  outline-offset: 2px;
  -webkit-box-shadow: 0 0 0 2px rgba(47, 91, 255, 0.15);
          box-shadow: 0 0 0 2px rgba(47, 91, 255, 0.15);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
  body.error404 .entry-404-head {
    font-size: 64px;
  }
  body.error404 .entry-404-lead {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  body.error404 .entry-404 {
    padding: 40px 16px 64px;
  }
  /* 画像はさらに小さく */
  body.error404 .pageLower__thumbnailWrap {
    max-width: 320px !important;
  }
  body.error404 .entry-404-head {
    font-size: 48px;
    margin: 16px 0 12px;
  }
  body.error404 .entry-404-lead {
    font-size: 18px;
  }
  body.error404 .entry-404-content {
    font-size: 15px;
  }
}