/* 基本スタイル */
body {
  margin: 0 auto;
  background-color: #f0f0f0;
  font-family: "DIN Alternate";
  font-weight: 700;
  color: #222;
}

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

h1 {
  font-size: 2.8125rem;
  background: linear-gradient(to right, #222222, #a5a5a5);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "DIN Alternate";
  font-weight: 700;
  color: transparent;
}

h2 {
  font-size: 1rem;
  font-family: "Noto Sans JP";
  font-weight: 600;
}

/* レイアウト */
.continer {
  background-color: #fff;
  position: relative;
  padding-top: 48px;
}

.margin {
  margin-top: -7px;
}

/* ヘッダー */
header {
  background: #222;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  z-index: 1200;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 23px;
}

.header-title {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
}

/* メニュー */
#menu-toggle {
  border: none;
  width: 38px;
  height: 40px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

#menu-toggle::before,
#menu-toggle::after {
  content: "";
  display: block;
  width: 38px;
  height: 1px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: transform 0.3s, opacity 0.3s;
}

#menu-toggle::before {
  top: 15px;
}

#menu-toggle::after {
  top: 23px;
}

#menu-toggle.open::before {
  transform: rotate(25deg);
  top: 19px;
}

#menu-toggle.open::after {
  transform: rotate(-25deg);
  top: 19px;
}

.drawer-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #222;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-menu ul {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  margin: 48px 0 0 0;
  padding: 10%;
  padding-left: 15%;
  list-style: none;
  font-weight: 500;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.drawer-menu li {
  padding: 1px 0;
  text-align: left;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

li a {
  color: #222;
  text-decoration: none;
}

/* フッター */
.footer {
  background-color: #222;
}

.footer-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.footer-menu ul {
  width: 100%;
  display: grid;
  color: #fff;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  padding: 10%;
  padding-left: 15%;
  list-style: none;
  font-weight: 500;
}

.footer-menu li {
  padding: 1px 0;
  text-align: left;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

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

.footer-link {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer-title {
  width: 49.87vw;
  max-width: 180px;
  padding-top: 45px;
  margin: 0 auto 35px;
}

.footer-privacy {
  text-align: center;
  padding-bottom: 27px;
}

.footer-privacy__link {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 0.75rem;
}

/* コンポーネント */
.image-button-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.cat-area {
  position: relative;
}

.cat_button {
  max-width: 92.308vw;
  position: absolute;
  bottom: 6vw;
  left: 0;
  right: 0;
  margin: auto;
}

.first-cat {
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85.6vw;
  max-width: 428px;
  z-index: 10;
  pointer-events: auto;
}

.reservation {
  position: relative;
}

.reservation_button {
  max-width: 92.308vw;
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: auto;
}

.company-info__title {
  padding-top: 46px;
  padding-bottom: 31px;
  text-align: center;
}

.company-info img {
  position: relative;
  width: 54.359vw;
  max-width: 271px;
  margin: 40px auto;
}

.company-info__content {
  width: 89.487vw;
  margin: 0 auto;
  padding-bottom: 39px;
}

.company-info__section {
  margin-bottom: 20px;
}

.company-info__section a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Noto Sans JP";
  font-weight: 500;
}

.company-info__section a:hover {
  color: #000;
}

.name__nav {
  font-size: 4.27vw;
  margin: 0;
  font-weight: 500;
  font-family: "Noto Sans JP";
}

.name__title {
  margin: 0;
  font-size: 4.27vw;
  font-family: "Noto Sans JP";
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  font-weight: 500;
}

.name__title--company {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Noto Sans JP";
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.sns {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: -11px;
  background-color: #fff;
  position: relative;
  z-index: 999;
}

/* メディアクエリ */
@media (min-width: 500px) {
  body {
    width: 500px;
  }

  .cat_button {
    max-width: 461.54px;
    left: 0;
    right: 0;
    bottom: 30px;
    margin: auto;
  }

  .company-info__content {
    width: 447.435px;
  }

  .name__nav {
    font-size: 15.385px;
  }

  .name__title {
    font-size: 17.949px;
  }
}

/* プライバシーポリシーページ */
.privacy-img-wrapper {
  margin: auto 20px;
}

.privacy-img1 {
  width: 65.07vw;
  max-width: 325px;
  margin: 53px auto 41px;
}

.privacy-img2 {
  margin-bottom: 40px;
}

.privacy-img3 {
  margin-bottom: 56px;
}
