@charset "UTF-8";

:root {
  --blk: #000000;
  --wht: #ffffff;
  --blk-rgb: 0,0,0;
  --wht-rgb: 255,255,255;
  --brown: #802115;
}

/* ==================================================================================

  Font Styles

================================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@font-face {
  font-family: 'Antique-Book-Cover';
  src:url('../fonts/Antique-Book-Cover.ttf.woff') format('woff'),
      url('../fonts/Antique-Book-Cover.ttf.svg#Antique-Book-Cover') format('svg'),
      url('../fonts/Antique-Book-Cover.ttf.eot'),
      url('../fonts/Antique-Book-Cover.ttf.eot?#iefix') format('embedded-opentype'); 
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Marcelle-Script';
  src:url('../fonts/Marcelle-Script.ttf.woff') format('woff'),
      url('../fonts/Marcelle-Script.ttf.svg#Marcelle-Script') format('svg'),
      url('../fonts/Marcelle-Script.ttf.eot'),
      url('../fonts/Marcelle-Script.ttf.eot?#iefix') format('embedded-opentype'); 
  font-weight: normal;
  font-style: normal;
}
.ff-abc { font-family: "Antique-Book-Cover"; }
.ff-ms { font-family: 'Marcelle-Script'; }

/* ==================================================================================

  "Gokuraku Shokudo" Site PC Common Styles

================================================================================== */
body {
  min-width: 1260px;
  font-family: "Noto Sans JP", sans-serif;
}
.inner {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}
.l-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.sp { display: none; }

/*
  Site Header
================================================================================== */
.l-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  background: rgba(var(--blk-rgb), 0);
  transition: background .3s;
}
.l-header.is-scrolled { background: rgba(var(--blk-rgb), .5); }
.l-header h1 {
  width: 200px;
  margin: 0 auto 15px;
  text-align: center;
}
.l-header h1 a, .l-header h1 a img { transition: all .3s; }
.l-header h1 a:hover img { opacity: .7; }
.menu-trigger { display: none; }

/* Global Navi
---------------------------------------------------------------------------------- */
.gnav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gnav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gnav ul li {
  font-size: 36px;
  font-size: 3.6rem;
  color: var(--wht);
  letter-spacing: .05em;
}
.gnav ul li:not(:first-of-type, :last-of-type) { margin: 0 0 0 20px; }
.gnav ul li:last-of-type::before {
  content: "｜";
  display: inline-block;
}
.gnav ul li a {
  position: relative;
  color: var(--wht);
  text-decoration: none;
  transition: all .3s;
}
.gnav ul li:last-of-type a {
  display: inline-block;
  vertical-align: middle;
}
.gnav ul li:last-of-type a:first-of-type { margin: 0 0 0 -10px; }
.gnav ul li:last-of-type a:last-of-type {
  width: 36px;
  padding: .5em 0 0;
}
.gnav ul li:not(:last-of-type) a:hover { color: var(--brown); }
.gnav ul li:not(:last-of-type) a.is-current { color: var(--wht); }
.gnav ul li:not(:last-of-type) a::before {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: solid 2px var(--brown);
}
.gnav ul li:not(:last-of-type) a.is-current::before {
  content: "";
  position: absolute;
  bottom: 0;
  border-bottom: solid 2px var(--wht);
}
.gnav ul li:not(:last-of-type) a::before {
  width: 0;
  transition: all .3s;
}
.gnav ul li:not(:last-of-type) a:hover::before, .gnav ul li:not(:last-of-type) a.is-current::before { width: 100%; }
.gnav ul li:last-of-type a:hover { opacity: .7; }

/*
  Site Footer
================================================================================== */
.l-footer {
  position: relative;
  z-index: 1;
  background-color: var(--blk);
  text-align: center;
  padding: 50px 0 25px;
}
.l-footer h2 {
  width: 450px;
  margin: auto;
}
.copy {
  font-size: 13px;
  font-size: 1.3rem;
  color: var(--wht);
  margin: 50px 0 0;
}

/*
  Background
================================================================================== */
.bg::before {
  content: none;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  background: url(../../images/gokurakushokudo_img.jpg) no-repeat 50% 50%;
  background-size: cover;
}

/*
  Main
================================================================================== */
main section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ==================================================================================

  "Gokuraku Shokudo" WordPress Styles

================================================================================== */
.entry-header, .entry-footer { display: none; }
.post-74 { margin: 0; }