/* =====================
基本
===================== */
html {
  scroll-behavior: auto;
  scrollbar-gutter: stable;
}


body {
  margin: 0;
  color: #fff;
  width: 100%;
  min-width: 100%;
  padding: 0;
  background: #000;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  line-height: 2;
  letter-spacing: 0.04em;
}

body.no-swipe {
  overscroll-behavior-x: none;
}

section {
  padding: 160px 40px;
}

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

.container.narrow {
  max-width: 960px;
  text-align: center;
}

.concept .container {
  position: relative;
  z-index: 2;
}

/* ======================
セクション背景色
=======================*/

.ramen {
  background: #0d0d0d;
}

.chef {
position: relative;
background: #111;
}

.chef::before {
content: "";
position: absolute;
inset: 0;
background:
radial-gradient(
circle at 35% 50%,
rgba(255,255,255,.03) 0%,
rgba(255,255,255,0) 60%
);
pointer-events: none;
}

.menu {
  background: #181818;
}

@media(min-width:769px){
.shop { background: linear-gradient(231deg, #242424 0%, #000 100%); 
}
}

.shop {
background: linear-gradient(260deg, #242424 0%, #000 100%);
}

.access {
  background: #1c1c1c;
}

.recruit {
  background: #2a2a2a;
}


/* =====================
TOP PAGE
===================== */

/* オープニング */
.opening {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 1;
  transition: opacity 1s ease;
}

.opening.fadeout {
  opacity: 0;
}

/* ロゴ */
.opening img {
  width: 30%;
  max-width: 360px;

  opacity: 0;
  transform: scale(0.9);

  transition:
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.2s ease;
}


/* 拡大＆表示 */
.opening img.zoom {
  opacity: 1;
  transform: scale(1.05);
}

/* スクロール止め */
body.is-loading {
  overflow: hidden;
}

.scroll-down.show {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
ヘッダー
===================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  box-sizing: border-box;
}

/* =====================
ヘッダー配置
===================== */
.header-inner {
  display: flex;
  align-items: center;
  width: 100%;
}

/* 右側まとめ（超重要） */
.header-right {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: auto;
}

header.header {
  background: #3f3552;
  padding: 10px;
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*ヘッダーのロゴ調整*/

.logo img {
  width: 50px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* =====================
ハンバーガーメニュー
===================== */

.hamburger {
  width: 30px;
  height: 22px;
  right: 30px;
  cursor: pointer;
  z-index: 2000;
  position: relative;
}

/* 共通 */
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: .3s;

  top: 50%;

  /* ここ重要 */
  transform: translateY(-50%) !important;
}

/* 上 */
.hamburger span:nth-child(1) {
  transform: translateY(-10px) !important;
}

/* 中 */
.hamburger span:nth-child(2) {
  transform: translateY(-50%) !important;
}

/* 下 */
.hamburger span:nth-child(3) {
  transform: translateY(10px) !important;
}

/* バツ */
.hamburger.active span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg) !important;
}

.hamburger.active span:nth-child(2) {
  opacity: 0 !important;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg) !important;
}


/* =====================
多言語 スイッチ
===================== */


.lang-switch li {
  font-size: 16px;
  letter-spacing: 2px;
}



.lang-switch a:hover {
  color: #c9a46a;
}

.lang-switch {
  display: flex;
  list-style: none;
}

.pll-language-switcher {
  margin-top: 30px;
}

.pll-language-switcher ul {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.menu-item.lang-item {
  display: inline-block;
  margin: 0 10px !important;
}


.menu-item.lang-item-ja,
.menu-item.lang-item-en {
  display: inline-block;
}

.menu-item.lang-item-ja a,
.menu-item.lang-item-en a {
  font-size: 22px !important;
  /* border-bottom: 1px solid rgba(255, 255, 255, .6); */
  padding-bottom: 5px;
}

/* =====================
言語切替
===================== */

/* 横並び */
.lang-switch ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 間隔 */
.lang-switch li {
  margin: 0 4px;
}

/* 通常 */
.lang-switch a {
  color: #fff;
  opacity: 0.6;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.1em;
}

/* ★アクティブ（これでJPに色つく） */
.lang-switch li.current-lang a {
  color: #c9a46a;
  opacity: 1;
}

/* スラッシュ区切り（任意） */
.lang-switch li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  opacity: 0.5;
}





/* =====================
ナブメニュー
===================== */

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #3f3552;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  z-index: 1000;
}

/* 開いた状態 */

.nav-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* WordPressのul */

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

/* li */

.menu-list li {
  margin: 20px 0;
}

/* リンク */

.menu-list a {
  color: #fff;
  font-size: clamp(22px, 4vw, 30px);
  text-decoration: none;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(20px);
  transition: .4s;
}

/* 開いた時アニメーション */

.nav-menu.active a {
  opacity: 1;
  transform: translateY(0);
  transition: .6s;
}

/*メニュー選択で色をつける*/
.nav-menu .current-menu-item>a {
  color: #c9a46a;
  text-shadow: 0 0 8px rgba(201, 164, 106, 0.5);
}

/* hover */

.menu-list a:hover {
  color: #c9a46a;
}

/* ======================
ハンバーガーの中のlang
===================== */

/* 言語共通 */
.menu-list .lang-item a {
  color: #fff;
  position: relative;
  display: inline-block;
  transition: .3s ease;
}

/* アクティブ（今の言語） */
.menu-list .current-lang a {
  color: #c9a46a;
}

/* 下線（デザイン用） */
.menu-list .lang-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #c9a46a;
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s ease;
}

/* アクティブは常に表示 */
.menu-list .current-lang a::after {
  transform: scaleX(1);
}

/* hover */
.menu-list .lang-item a:hover {
  color: #c9a46a;
}

.menu-list .lang-item a:hover::after {
  transform: scaleX(1);
}

.menu-list .current-lang a {
  color: #c9a46a;
  text-shadow: 0 0 6px rgba(201, 164, 106, 0.4);
}

/* =====================
スクロール停止
===================== */

body.menu-open {
  overflow: hidden;
}

/* =====================
hero
===================== */
.hero {
  padding: 0;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/s_19611666.webp") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.hero h1 {
  font-size: 50px;
  letter-spacing: 6px;
}

.site-logo {
  text-align: center;
}


.site-logo img {
  max-width: 250px;
  /* ← 好きなサイズに */
  width: 100%;
  margin: 0 auto;
  display: block;
}



/*メインビジュアルの上のロゴの背景色*/

.hero {
  background: #0d0d0d;
}

.hero-copy {
  text-align: center;
  color: #fff;
}

/* ロゴや文字 */

.hero-inner {
  position: relative;
  z-index: 3;
}

.copy-sub {
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.copy-main {
  font-size: 22px;
  letter-spacing: 4px;
  margin-top: 10px;
}

@media(max-width:768px) {
  .site-logo img {
    max-width: 150px;
  }

  .hero {
    height: 90vh;
  }

.hero h1 {
font-size: 32px;
}

.copy-sub {
font-size: 18px;
letter-spacing: 3px;
margin:2px;
}

.copy-main {
font-size: 20px;
letter-spacing: 4px;
margin-top: 0;
}
}


/* ==========================
 黒オーバーレイ
 ========================== */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  z-index: 2;
}





/* ======================
SCROLL DOWN
====================== */

.scroll-down {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  text-align: center;
  z-index: 10;
}

/* SCROLL文字 */

.scroll-text {
  display: block;
  margin-top: 70px;
  font-size: 12px;
  letter-spacing: 4px;
  color: #fff;
}

/* 矢印 */

.arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(.5);
  width: 50px;
  height: 8px;

  opacity: 0;

  animation: scrollArrow 3s ease-out infinite;
}

/* 遅延 */

.arrow:nth-child(1) {
  animation-delay: 0s;
}

.arrow:nth-child(2) {
  animation-delay: 1s;
}

.arrow:nth-child(3) {
  animation-delay: 2s;
}

/* 矢印の形 */

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: #fff;
}

.arrow::before {
  left: 0;
  transform: skewY(30deg);
}

.arrow::after {
  right: 0;
  transform: skewY(-30deg);
}

/* アニメーション */

@keyframes scrollArrow {

  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(.5);
  }

  25% {
    opacity: 1;
  }

  50% {
    transform: translate(-50%, 30px) scale(.5);
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 60px) scale(.5);
  }

}

@media(max-width:768px) {
  .scroll-down {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    text-align: center;
    z-index: 10;
  }
}

/* =====================
英語のコピー
===================== */
.copy-main-en {
  font-size: 20px;
}

/* =====================
見出し
===================== */

h2 {
  color: #c9a46a;
  letter-spacing: 4px;
  margin-bottom: 30px;
}



/* =====================
画像
===================== */

.image {
  background: #333;
  aspect-ratio: 3/2;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

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


/* =====================
ボタン
===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;

  border: 1px solid #c8a86b;
  color: #c8a86b;
  background: transparent;

  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.btn:hover {
  background: #c9a46a;
  color: #000;
}

.menu-btn {
  text-align: center;
  margin-top: 60px;
}

/* =====================
フェードアニメーション
===================== */

/* 下から */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: .8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}


/* 左から */

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: .8s ease;
}

.fade-left.show {
  opacity: 1;
  transform: translateX(0);
}


/* 右から */

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: .8s ease;
}

.fade-right.show {
  opacity: 1;
  transform: translateX(0);
}


.concept {
  position: relative;
}

.concept::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/dairiseki_03.webp") center / cover no-repeat;
  z-index: 0;
}




/* カード */

.menu-card {
  text-align: center;
  color: #fff;
}

/* 画像 */

.menu-card-image {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



/* ======================
FAQ
====================== */

/* FAQ */

.faq {
  background: #181818;
  padding: 120px 20px;
}

.faq h2 {
  text-align: center;
  color: #c9a46a;
  letter-spacing: 4px;
  margin-bottom: 60px;
}

/* 各項目 */

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

/* 質問 */

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;

  position: relative;
  padding-left: 30px;
}

/* + アイコン */



/* + */

.faq-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  color: #c9a46a;
  font-weight: bold;
}

/* + */

.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  color: #c9a46a;
  font-size: 20px;
}

/* 開いたとき */
/* + */

.faq-q::after {
  content: "+";
  position: absolute;
  right: 6px;
  color: #c9a46a;
  font-size: 20px;
  transition: transform .3s ease;
}

/* 開いたとき */

.faq-item.active .faq-q::after {
  transform: rotate(45deg);
}


/* 回答 */

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a p {
  color: #ddd;
  line-height: 1.9;
  padding-bottom: 20px;
}

.top-faq-a-text {
  font-size: 16px;
  color: #ddd;
  line-height: 1.9;
}

section.faq .container {
  max-width: 730px;
}

.faq-more {
  margin-top: 4em;
  text-align: center;
}

.faq .container.narrow {
  text-align: left;
}


/* ============================
コンセプト
=============================*/

.concept-txt:last-of-type {
  margin-top: 40px;
}

.concept-txt {
  line-height: 2.2;
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}

@media (max-width: 768px) {

  #concept .container {
    text-align: left;
  }



  .concept-txt {
    font-size: 16px;
    line-height: 2.2;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
  }

  .concept-txt.lead {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .concept-txt:last-of-type {
    margin-top: 24px;
  }

  p.producer-txt {
    font-size: 16px;
    margin-bottom: 22px;
    line-height: 2.2;
  }

  p.shop-txt {
    font-size: 16px;
    line-height: 2;
  }

  p.access-text {
    font-size: 16px;
    line-height: 2;
  }

  button.faq-q {
    font-size: 17px;
  }

  .faq-a p {
    font-size: 14.3px;
  }

  p.recruit-text {
    font-size: 16px;
    text-align: left;
  }

.faq-more {
  margin-top: 3em;
}
}

@media (max-width: 599px) {
  .concept-txt,
  .concept-txt.lead,
  p.producer-txt,
  p.shop-txt,
  p.access-text,
  p.recruit-text{
    font-size: 15.5px;
    letter-spacing: 0;
  }
}
/* =======================
メニュー
========================*/



/* =====================
menu grid
===================== */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.menu-item {
  text-align: center;
}

.menu-img {
  margin-bottom: 15px;
}

.menu-img {
 height: 230px;
 display: flex;
 align-items: center;
 justify-content: center;
}

.menu-img img {
  width: 100%;
  max-width: 230px !important;
  height: auto;
  display: block;
  margin: 0 auto;
}

.menu-name {
  font-size: 18px;
  margin-bottom: 10px;
}

.menu-price {
  margin: 0 0 10px;
  font-weight: 700;
}

.menu-desc {
  font-size: 14px;
  line-height: 1.7;
}

/*ラベル用*/
.menu-card-image,
.menu-img {
  position: relative;
}

.menu-label-limited {
  background: #3f3552f2; 
}

.menu-label-recommend {
  background: #2b3833; 
}

.menu-label-new {
    background: #b08a4a;
    color: #ffffff;
}

.menu-label {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 10px;
  font-size: 12px;
  color: #fff;
  border-radius: 2px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
/*ラベルよう完了*/

@media (max-width:768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {


  .pc2-only {
    display: none !important;
  }

  .sp-only {
    display: inline !important;
  }

  .pc-only {
    display: none !important;
  }

  #philosophy {
    scroll-margin-top: 60px;
  }
}

/* =======================
シェフ
===========================*/

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.split>* {
  min-width: 0;
}

.split.reverse .text {
  order: 2;
}

.split.reverse .image {
  order: 1;
}

@media (max-width:768px) {

  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  p.concept-txt {
    text-align: left;
  }

  .container {
    max-width: 100%;
    /*padding: 0 10px;*/
  }
}



/* =======================
ショップ
===========================*/
.shop {
  position: relative;
}

p.shop-title {
  font-size: 18px;
}

.shop::before {
  content: "";
  position: absolute;

  right: 0;
  bottom: 0;

  width: 800px;
  height: 500px;

  background: url("../img/Gold_dust_10.png") no-repeat;
  background-size: contain;
  background-position: right bottom;
  z-index: 0;
  /* ← これ重要 */
  mask-image: linear-gradient(to left,
      rgba(0, 0, 0, 1) 20%,
      rgba(0, 0, 0, 0) 80%);
}


.shop .container {
  position: relative;
  z-index: 1;
}


.shop-btn .btn {
    height: 44px;
    padding: 0 24px;
    font-size: 13px;
}

p.shop-txt:last-of-type {
    margin-bottom: 10px;
}

@media (max-width: 768px){

}

/* スマホ */

@media(max-width:768px) {
  .shop::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 600px;
    background: url(../img/Gold_dust_10.png) no-repeat;
    background-size: contain;
    background-position: right bottom;
    z-index: 0;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 80%);
  }
	  .shop-btn{
    text-align: right;
  }
	  iframe{
    height: 300px!important;
  }
}



/* ==============================
リクルート
=================================*/

.recruit {
  position: relative;
  padding: 160px 20px;
  text-align: center;
  color: #fff;

  background: url("../img/dairiseki_03.webp") center / cover no-repeat;
}




/* 黒overlay */
.recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.25);
}

/* 文字を上に出す */
.recruit .container {
  position: relative;
  z-index: 2;
}

.recruit p {
  margin-bottom: 32px;
}
.recruit-btn .btn {
    font-size: 15px;
    letter-spacing: 0.12em;
}

/* =====================
FOOTER
===================== */


.footer {
  /* background: #07070a; */
  padding: 100px 20px 60px;
  text-align: center;
}



.footer-inner {
  max-width: 900px;
  margin: auto;
}


/* footer menu */

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  flex-wrap: wrap;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 4px;
  font-family: serif;
  transition: .3s ease;
}

.footer-menu .current-menu-item>a {
  color: #c9a46a;
  text-shadow: 0 0 6px rgba(201, 164, 106, 0.4);
}

@media (max-width: 767px) {
  .footer-menu {
    gap: 15px;
  }

  .footer-lang li:first-child::after {
    content: none !important;
  }

  .footer {
    padding: 60px 20px 20px;
  }

  .footer-lang ul {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1em;
  }

  .footer-lang a {
    text-decoration: none;
    padding-bottom: 2px;
  }

  .footer-nav-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.footer-menu li {
  font-size: 15px;
  letter-spacing: 3px;
}

.footer-lang a {
  color: #fff;
  transition: .3s ease;
}

.footer-lang .current-lang a {
  color: #c9a46a;
  text-shadow: 0 0 6px rgba(201, 164, 106, 0.4);
}

.footer-menu a:hover {
  color: #c9a46a;
}

.footer-lang li a:hover {
  opacity: .6;
  transition: .3s;
}

.footer-lang a:hover {
  opacity: .6;
  color: #c9a46a;
}

.footer {
background: linear-gradient(
 180deg,
 #000 0%,
 #101015 100%
);
}

.footer {
  background:url("../img/footer-bg.webp") center center / cover no-repeat;
}

footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at center,
            rgba(255,255,255,.03) 0%,
            rgba(0,0,0,.35) 55%,
            rgba(0,0,0,.7) 100%
        );
    pointer-events: none;
}

/* =====================
SNS
===================== */

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

.footer-sns img {
  width: 22px;
  height: 22px;
  filter: invert(1);
  opacity: .8;
  transition: .3s;
}

.footer-sns img:hover {
  opacity: 1;
}


/* copyright */

.footer-copy {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 2px;
}


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

.footer-nav li {
  list-style: none;
}

nav.footer-nav {
  margin-bottom: .5em;
}

.footer-nav-lang-wrap {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-lang li {
  position: relative;
}

.footer-lang li a {
  color: #fff;
  text-decoration: none;
}

h3.footer-title-text {
  letter-spacing: 2px;
}


.lead {
  font-size: 18px;
  margin-bottom: 40px;
}



.sp-only {
  display: none;
}


.pc-only {
  display: block;
}

.pc2-only {
  display: inline;
}

.chef {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}


.logo img {
  display: block;
}

/* =====================
レスポンシブ
=======================*/

@media (max-width:768px) {
  html {
    scroll-behavior: auto;
  }

  section {
    padding: 60px 20px;
  }
.faq {
  padding: 60px 20px;
}
.recruit {
  padding: 60px 20px;
}
.pc-only {
  display: none;
}
}



/*フッタープライバシーポリシー*/
.footer-privacy {
  margin-top: 0;
  text-align: center;
}

.footer-privacy a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-decoration: none;
}

.footer-privacy a:hover {
  color: #c8a45d;
}


/* フォーム・ボタン系もサイト全体のフォントに統一 */
button,
input,
textarea,
select {
  font-family: inherit;
}