@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/* ------------------------------------------
  Utility Class
------------------------------------------ */

/* clearfix */

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

/* ------------------------------------------
  Common
------------------------------------------ */

* {
  box-sizing: border-box;
  word-break: break-all;
}

html {
  font-size: 10px;
  height: 100%;
}

main {
}

body {
  /* font-family: "Noto Sans JP", sans-serif; */
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.7;
  position: relative;
  min-width: 1080px;
  color: #000;
  -webkit-text-size-adjust: none;
  background: var(--black);
}

body.layer {
  overflow: hidden;
  height: 100%;
}

a,
a img {
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  opacity: 0.75;
}

a:hover * {
  opacity: 0.75;
}

a:focus {
  outline: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: inherit;
  margin: 0;
  letter-spacing: 0.03em;
}

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

p {
  margin: 0;
  letter-spacing: 0.03em;
}

.clear {
  clear: both;
}

.only_pc {
  display: block !important;
}

.only_sp {
  display: none !important;
}

input,
button,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  z-index: -1;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  .container {
    width: auto;
  }
  .only_pc {
    display: none !important;
  }
  .only_sp {
    display: block !important;
  }

  main {
  }
}

:root {
  --gold: #b59349;
  --black: #0f0b0a;
  --white: #fff;
}

/* ------------------------------------------
  header
------------------------------------------ */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: var(--gold);
  position: relative;
}

/* .header-inner::before{
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  background: var(--black);
  position: absolute;
  bottom: 10px;
  left: 0;
} */

.header-logo {
  width: 100px;
}

.header-menu {
  width: 70%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
  font-size: 1.6rem;
  color: var(--black);
}

.header-menu-item {
  transition: 0.3s;
}

.header-menu-item:hover {
  opacity: 0.7;
}

.header-menu-item:not(:last-child) {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  border-right: 1px solid var(--black);
}


.tel{
  background: #981e00;
  letter-spacing: 0.15em;
  padding: 20px 40px;
  color: var(--white);
}

@media screen and (max-width: 767px) {
  html{
    margin-top: 0;
  }
  .body {
    position: relative;
  }

  .header-sp {
    position: relative;
  }

  .header-logo{
    width: 70px;
  }

  .header-inner{
    padding: 20px;
  }

  /* ハンバーガーアイコン */
  .hamburger {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 24px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 9999;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .hamburger span + span {
    margin-top: 5px;
  }

  /* ×印アニメーション */
  .hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* SPメニュー（オフキャンバス） */
  .header-menu-inner {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--black);
    left: 0;
    top: 0;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .header-menu-inner.is-open {
    transform: translateX(0);
  }

  .header-menu-inner .header-menu {
    text-align: center;
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--white);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    margin: 0 auto;
  }

  .header-menu-inner .header-menu-item a {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
  }

  .header-menu-inner .header-menu-item:not(:last-child) {
    margin-bottom: 20px;
    padding: 0;
  }
}

/* ------------------------------------------
  footer
------------------------------------------ */
.footer {
  padding: 30px 0;
}

.copyright {
  text-align: center;
  color: var(--white);
  font-size: 1.4rem;
}

/* ------------------------------------------
  more
------------------------------------------ */
.more {
  display: block;
  width: 30%;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
  padding: 20px 10px;
  font-size: 1.6rem;
}

.menu-more {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
}

@media screen and (max-width: 767px) {
  .more {
    width: 70%;
  }
}


/* ------------------------------------------
  フェードイン
------------------------------------------ */
/* 初期状態：少し下＋透明 */
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}

/* 表示状態：ふわっと現れる */
.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.mv-fade {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}

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


/* ------------------------------------------
  画面ロード
------------------------------------------ */
/* ロード中はスクロールさせない */
body.is-loading {
  overflow: hidden;
}

/* 全画面ローダー */
#loader {
  position: fixed;
  inset: 0;
  background: #000;             /* 背景色はお好みで（黒×金だと雰囲気◎） */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.7s ease;
}

/* 消えるとき用 */
body.is-loaded #loader {
  opacity: 0;
  pointer-events: none;
}

/* 中身 */
.loader-inner {
  display: grid;
  place-content: center;
}

/* .loader-inner img{
  display: block;
  width: 100px;
  margin-bottom: 20px;
} */

/* 高級感あるリングアニメーション */
.loader-circle {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #c2a145;    /* 金色 */
  animation: loader-rotate 1.1s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

@keyframes loader-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* MV画像側のふわっと表示 */
.mv-fade {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}

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