@charset "utf-8";

/* TOC
---------------------------------------------
  Chapter01 : 基本設定
  Chapter02 : カラー
  Chapter03 : テキスト
  Chapter04 : ナビゲーション
  Chapter05 : ハンバーガー
  Chapter06 : footer
  Chapter08 : 追加CSS
    Chapter08_01 : コンテンツ
---------------------------------------------
*/

/* ==================================
  Chapter01 : Reset & Default
===================================== */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles */
ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}

/* Body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

/* Images */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
}

/* Anchor reset */
a {
  text-decoration: none;
  color: inherit;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
  background: #fff;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* タイトル */
.SectionTitleBox {
  margin: 50px 0;
}

.SectionTitle {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 55px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  color: #4e2d00;
}

.SectionSubTitle {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #775a00;
  text-align: center;
  letter-spacing: 0;
}

/* ボタン */
.BtnBox {
  margin: 50px;
  display: flex;
  justify-content: center;
}

.BtnBox a {
  width: 300px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #e7af00;
  transition: 0.3s ease;
  background: #e7af00;
}

.BtnBox a:hover {
  color: #e7af00;
  border: 1px solid #e7af00;
  background: #fff;
}

.BtnBox.MenuBtn a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  background: url("/img/pdf_icon.svg") no-repeat center/contain;
}

.BtnBox.InstagramBtn a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  background: url("/img/external-icon.svg") no-repeat center/contain;
}

/* ==================================
  Chapter02 : Layout
===================================== */

.site-scale {
  width: 1600px;
  margin: 0 auto;
  transform-origin: top center;
}

.section-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 1600px以下で均一縮小 */
@media (max-width: 1600px) {
  .site-scale {
    transform: scale(calc(100vw / 1600));
  }
}

/* ==================================
  Chapter03 : Header
===================================== */
#header {
  width: 100%;
}

#header img {
  width: 100%;
  height: auto;
  display: block;
}

#header h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.1em;
}

#header a {
  text-decoration: none;
  color: #111;
}

/*---------------------------------------------------------
  Chapter05 : ハンバーガー
---------------------------------------------------------*/

/*   ハンバーガーボタンの動き
-----------------------------------------*/
.HamburgerBtn {
  position: absolute;
  z-index: 9999;
  right: 10px;
  cursor: pointer;
  width: 80px;
  height: 80px;
}

.HamburgerBtn.active {
  position: fixed;
  top: 0;
  right: 0;
}

.HeaderNaviBox.fixed .HamburgerBtn.active {
  top: 0;
  right: 0;
}

/*×に変化*/
.HamburgerBtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 55%;
}

.HamburgerBtn span:nth-of-type(1) {
  top: 15px;
}

.HamburgerBtn span:nth-of-type(2) {
  top: 28px;
}

.HamburgerBtn span:nth-of-type(3) {
  top: 42px;
}

.HamburgerBtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.HamburgerBtn.active span:nth-of-type(2) {
  opacity: 0;
}

.HamburgerBtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

.HamburgerBtn.active span {
  background-color: #444444;
}

nav.HeaderNaviBox.fixed .HamburgerBtn span {
  background-color: #444444;
}

/*   ハンバーガー内メニュー
-----------------------------------------*/
#g-nav {
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 25%;
  height: 100vh; /*ナビの高さ*/
  background: #fff;
  transition: all 0.6s; /*動きのスピード*/
  box-shadow: -5px 4px 5px rgb(0 0 0 / 13%);
  transition: all 300ms ease-out;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 25%;
  height: 100vh; /*表示する高さ*/
  padding: 3%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  margin: 0 0 10%;
  /* position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%); */
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/* ==================================
  Chapter04 : Footer
===================================== */
footer {
  padding: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background-color: #000;
}

.FooterSection {
  display: flex;
  justify-content: space-between;
}

/* ==================================
  Chapter05 : Content
===================================== */

/*   Chapter05_01 : About Section
===================================== */
.AboutSection {
  padding: 120px 0;
}

.AboutSection .mv {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.AboutSection > p {
  margin: 30px;
  font-size: 16px;
  color: #555;
  text-align: center;
  line-height: 2;
}

/*  Chapter05_02 : Menu Section
===================================== */
.MenuSection {
  padding: 120px 0;
  text-align: center;
  background: #dddad2;
}

.MenuItemListSlider {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}

/* スライド間の余白 */
.MenuItemListSlider .slick-slide {
  margin: 0 1rem;
}

.MenuItemListSlider .slick-list {
  margin: 0 -1rem;
}

.MenuItemListSlider li {
  width: 740px;
}

.MenuItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  padding: 30px;
  background: #fff;
}

.MenuPhoto {
  display: block;
  width: 322px;
}

.MenuTextBox {
  width: 300px;
}

.MenuTitle {
  margin: 0;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.MenuPrice {
  margin: 0;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
}

.MenuPrice span {
  margin: 0 0 0 5px;
  font-size: 15px;
}

.MenuText {
  margin: 20px 0 0;
  font-size: 15px;
  text-align: left;
}

/* スライダー設定 */
.MenuItemListSlider .slick-slide {
  width: 750px;
  position: relative;
  overflow: hidden;
}

.MenuItemListSlider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ナビゲーション */
.dots-2 .slick-dots {
  text-align: center;
}

.dots-2 .slick-dots li {
  display: inline-block;
}

.dots-2 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #858585;
  border-radius: 50%;
}

.dots-2 .slick-dots .slick-active button {
  width: 50px;
  height: 15px;
  border-radius: 30px;
  background: #e7af00;
}

/*  Chapter05_03 :Information Section
===================================== */
.InformationSection {
  position: relative;
  margin: 150px 0 0 100px;
  padding: 0;
  height: 650px;
  background: #f5f3ef;
}

.InformationInner {
  position: absolute;
  top: -90px;
  left: -100px;
  display: flex;
  gap: 5rem;
  height: 650px;
}

.Information {
  text-align: left;
}

.Information li {
  padding: 15px 0;
  border-bottom: 1px #dddad2 solid;
}

.Map {
}

.InformationTitleBox {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  margin: 0 0 50px;
  line-height: 1;
}

.InformationTitle {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.InformationText {
  font-size: 15px;
  font-weight: 400;
}

.CreditCardList {
  margin: 10px 0;
  width: 100%;
}

/*  Chapter05_04 :Instagram Section
===================================== */
.InstagramSection {
  padding: 120px 0;
  text-align: center;
}

.InstagramList {
  width: 790px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0 auto;
  list-style: none;
  justify-content: center;
}

.InstagramItem img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.InstagramItem a:hover img {
  transform: scale(1.05);
}

@media (max-width: 1200px) {
  .section-inner {
    padding: 0 20px;
  }

  .AboutSection h2 {
    font-size: 36px;
  }

  .MenuSection h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  #header h1 {
    font-size: 20px;
  }

  .AboutSection {
    padding: 80px 0;
  }

  .MenuSection {
    padding: 80px 0;
  }
  .InstagramList {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/*  Chapter05_05 :Logo Section
===================================== */
.LogoSection {
  max-width: 500px;
  margin: 50px auto;
}

/* =========================
  Chapter06 : slider
========================= */

.AboutSection .slider .slide {
  width: 400px;
  margin: 0 0.5rem;
}

.AboutSection .slider {
  margin: 0 -0.5rem;
}

.AboutSection .slider img {
  display: block;
  backface-visibility: hidden;
}
