@charset "utf-8";

/* 基本設定 */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-color: #151515;
  --sub-color: #f8f4f2;
  --accent-color: #860000;
  --text-color: #fff;
  --text-sub-color: #151515;
}

body {
  font-family: 'prompt', 'Noto Sans JP';
  font-size: 15px;
  color: var(--text-color);
  background-color: var(--main-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

h3 {
  font-weight: 500;
  font-size: 26px;
  padding: 50px 0 25px 0;
  text-align: center;
}

/* 横幅と左右の余白 */
.w-container {
  width: min(90%, 1040px);
  margin: auto;
}

/* ヘッダー */
header {
  height: 64px;
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--main-color);
}

.header-container {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  /* font-style: italic; */
}

/* ハンバーガーメニュー */
.hamburger {
  position: relative;
  width: 38px;
  height: 26px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger span,
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger::before {
  transform: translateY(-10px);
}

.hamburger::after {
  transform: translateY(10px);
}

/* クリック後（バツに変形） */
.hamburger.active::before {
  transform: rotate(45deg) translateY(0);
}

.hamburger.active span {
  opacity: 0;
}

.hamburger.active::after {
  transform: rotate(-45deg) translateY(0);
}

/* メインビジュアル */
.main-visual-container {
  width: 100%;
  height: calc(100dvh - 64px);
}

.main-visual {
  height: calc(100dvh - 128px);
  background-image: url(../image/main-1.jpg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

/* WEB予約 */
.web-reservation {
  position: fixed;
  right: calc((100% - min(90%, 1040px)) / 2);
  bottom: 20px;
  z-index: 888;
  transform: translateY(-100%);
}

.web-reservation img {
  display: block;
  width: 70px;
}

/* 新着情報 */
.news-container {
  background-color: var(--sub-color);
}

.news-items {
  height: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-sub-color);
}

.news-items h3 {
  padding: 0;
}

/* コンセプト */
.concept {
  width: min(75%, 1040px);
  margin: auto;
  text-align: center;
}

.concept h2 {
  font-weight: 500;
  /* font-style: italic; */
  /* transform: skewX(4deg); */
  font-size: 23px;
  padding: 50px 0 25px 0;
}

.concept p {
  padding: 0 0 40px 0;
  line-height: 1.8rem;
}

.concept-container {
  width: 100%;
}

.concept-container figure img{
  width: 70%;
}

.concept-container figure img:first-child {
  float: right;
  padding-bottom: 25px;
}

/* メニュー */
.menu-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-items-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.menu-items {
  min-width: 100%;
  display: none; /* 初期状態では非表示にする */
  text-align: center;
}

.menu-items.active {
  display: block; /* "active" クラスがついたアイテムのみ表示 */
}

.arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

.left-arrow {
  left: 0;
}

.right-arrow {
  right: 0;
}

.menu-items dt {
  font-size: 19px;
  font-weight: 500;
  padding: 12px 0 5px 0;
  text-align: center;
}

.access-table table {
  border-collapse: collapse;
}

.access-table th,
.access-table td {
  padding: 10px 0;
}

.contact-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-peaple,
.contact-company,
.contact-recruit {
  width: 180px;
  background: #401717;
  padding: 10px 30px;
}

.copy {
  text-align: center;
}