@charset "UTF-8";
body,
div,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
blockquote {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-size: 14px;
  letter-spacing: 1px;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  overflow-wrap: break-word;
  color: #333;
  overflow-x: hidden;
}

address,
cite,
code,
dfn,
h1,
h2,
h3,
h4,
th,
var {
  font-style: normal;
  font-weight: normal;
}

fieldset,
abbr {
  border: 0;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

img {
  border: none;
  vertical-align: bottom;
}

a:link {
  color: #253a6e;
  text-decoration: underline;
}

a:hover {
  color: #cc0000;
  text-decoration: underline;
}

.alignleft {
  float: left;
  font-size: 0.9em;
  color: #333;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.alignright {
  float: right;
  font-size: 0.9em;
  color: #333;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 30px;
}

.aligncenter {
  text-align: center !important;
  margin: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 15px;
  padding-left: 0px;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-mac \*/
.clearfix {
  display: block;
}

/* End hide from IE-mac */
.clear {
  clear: both;
  margin: 0px;
  padding: 0px;
}

/* ========================
   ヘッダー共通
======================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  color: #fff;
  font-family: "Noto Serif JP", "游明朝", serif;
  /* ========================
      ハンバーガーアイコン
   ======================== */
  /* ✕状態 */
  /* ========================
      スマホ時
   ======================== */
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  height: 50px;
}
.header__nav {
  transition: all 0.3s ease;
}
.header__menu {
  display: flex;
  gap: 30px;
  list-style: none;
}
.header__menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}
.header__menu li a:hover {
  color: #f7d200;
}
.header__contact img {
  height: 40px;
}
.header__toggle {
  display: none;
  width: 40px;
  height: 30px;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  z-index: 1100;
}
.header__toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__toggle span:nth-child(1) {
  top: 5px;
}
.header__toggle span:nth-child(2) {
  top: 13px;
}
.header__toggle span:nth-child(3) {
  top: 21px;
}
.header.is-open .header__toggle span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
}
.header.is-open .header__toggle span:nth-child(2) {
  opacity: 0;
}
.header.is-open .header__toggle span:nth-child(3) {
  transform: rotate(-45deg);
  top: 13px;
}
@media (max-width: 768px) {
  .header__toggle {
    display: block;
  }
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .header.is-open .header__nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header__menu {
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 10px 0;
  }
  .header__menu li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header__menu li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header__menu li a {
    display: block;
    padding: 14px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
}

.section-takeout {
  background: #fff;
  padding: 60px 0;
  text-align: center;
  background-image: url(../img/bg.svg);
  background-position: top right;
  background-repeat: no-repeat;
}
.section-takeout #itempage .itemimg {
  display: none;
}
.section-takeout #itempage h3 {
  display: none;
}
.section-takeout__title {
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-left: 60px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .section-takeout__title {
    font-size: 26px;
  }
}
.section-takeout__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 40px;
  background: url("../img/title_h2.png") no-repeat center/contain;
}
.section-takeout .takeout-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-takeout .takeout-list {
    display: block;
    gap: 20px;
    padding: 0 20px;
  }
}
.section-takeout .takeout-card {
  background: #fff;
  text-align: center;
  flex: 0 0 80%;
  scroll-snap-align: start;
}
@media (max-width: 768px) {
  .section-takeout .takeout-card {
    margin-bottom: 40px;
  }
}
.section-takeout .takeout-card__img img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.section-takeout .takeout-card__text {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 16px;
}
.section-takeout .takeout-card__price {
  font-size: 14px;
  margin-top: 8px;
}
.section-takeout .takeout-card__price span {
  font-size: 18px;
  font-weight: 700;
  margin-left: 4px;
}
.section-takeout .takeout-card__btn {
  display: inline-block;
  background: #000;
  color: #f6c400;
  font-size: 14px;
  padding: 12px 40px;
  border-radius: 4px;
  margin-top: 16px;
  position: relative;
  text-decoration: none !important;
  font-weight: bold;
}
.section-takeout .takeout-card__btn::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.section-takeout .takeout-card__btn:hover {
  opacity: 0.8;
}
.section-takeout__btn-wrap {
  margin-top: 60px;
  text-align: center;
}
.section-takeout__btn {
  display: inline-block;
  background: #f6c400;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 60px;
  border-radius: 4px;
  position: relative;
  text-decoration: none !important;
  font-weight: bold;
}
.section-takeout__btn::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.section-takeout__btn:hover {
  opacity: 0.8;
}
.section-takeout .section-takeout__contents {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .section-takeout .section-takeout__contents {
    display: block;
    padding: 0;
  }
}
.section-takeout .section-takeout__contents .section-takeout__contents-img {
  width: 40%;
}
@media (max-width: 768px) {
  .section-takeout .section-takeout__contents .section-takeout__contents-img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.section-takeout .section-takeout__contents .section-takeout__contents-img img {
  width: 100%;
  height: auto;
}
.section-takeout .section-takeout__contents .section-takeout__contents-text {
  width: 50%;
  text-align: left;
}
@media (max-width: 768px) {
  .section-takeout .section-takeout__contents .section-takeout__contents-text {
    width: 95%;
    margin: 0 auto;
  }
}
.section-takeout .section-takeout__contents .section-takeout__contents-text p {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 1.6;
}
.section-takeout .sub-text {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .section-takeout .sub-text {
    padding: 0 20px;
  }
}
.section-takeout .section-takeout__subimg {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}
.section-takeout .section-takeout__subimg .img01,
.section-takeout .section-takeout__subimg .img02 {
  flex: 1;
  margin: 0;
}
.section-takeout .section-takeout__subimg .img01 img,
.section-takeout .section-takeout__subimg .img02 img {
  width: 100%;
  height: auto;
  display: block;
}
.section-takeout .section-takeout__subimg .img02 {
  margin-top: 150px;
  transform: translateX(-150px);
}
@media (max-width: 768px) {
  .section-takeout .section-takeout__subimg .img02 {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .section-takeout .section-takeout__subimg {
    flex-direction: column;
    gap: 0px;
  }
  .section-takeout .section-takeout__subimg .img01,
  .section-takeout .section-takeout__subimg .img02 {
    transform: none;
  }
}

.section-knowledge {
  background: #fff9ed;
  padding: 60px 0;
  text-align: center;
  /* ★ ここを追加（余白が効くための指定） */
}
.section-knowledge__inner {
  margin: 0 auto;
}
.section-knowledge__title {
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-left: 60px;
  text-align: center;
  margin-bottom: 50px;
}
.section-knowledge__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 40px;
  background: url("../img/title_h2.png") no-repeat center/contain;
}
.section-knowledge .knowledge-slider .slick-list {
  margin: 0 -15px;
}
.section-knowledge .knowledge-slider .slick-list img {
  width: 100%;
}
.section-knowledge .knowledge-slider .slick-slide {
  margin: 0 15px;
  box-sizing: border-box;
  width: 320px !important;
}
.section-knowledge__btn-wrap {
  text-align: center;
}
.section-knowledge__btn {
  display: inline-block;
  background: #f6c400;
  color: #2b1a08;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 60px;
  border-radius: 4px;
  text-decoration: none !important;
  position: relative;
  transition: 0.3s;
  margin-top: 20px;
  font-weight: bold;
}
.section-knowledge__btn::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.section-knowledge__btn:hover {
  opacity: 0.85;
}

.footer {
  background: #211d1b;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  padding: 40px 0 20px;
  /* 左側（ロゴ＋住所） */
  /* 右側（ナビ＋電話の上下構造） */
  /* ナビ（上段） */
  /* 電話画像（下段） */
  /* コピーライト */
  /* スマホ対応 */
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer__left {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.footer__left .footer__logo {
  width: 50%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.footer__left .footer__address {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}
.footer__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* 右寄せ */
  justify-content: flex-start;
  gap: 10px;
  /* ナビと電話の間隔 */
}
.footer__nav .footer__menu {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__nav .footer__menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}
.footer__nav .footer__menu a:hover {
  color: #f6c400;
}
.footer__tel img {
  height: 40px;
  width: auto;
  display: block;
}
.footer__copy {
  text-align: center;
  font-size: 12px;
  color: #ccc;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .footer__center {
    align-items: center;
  }
  .footer__nav .footer__menu {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer__tel img {
    height: 35px;
  }
}/*# sourceMappingURL=common.css.map */