/* 採用情報専用CSS
   作成日：2025年9月29日
   担当：大渚亭 別館
*/







/* 全体フォントと背景 */
body, html {
  margin: 0;
  padding: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  background-color: #000;
  color: white;
}

/* 固定ヘッダー */
.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  padding: 10px 0;
}


main {
  padding-top: 100px; /* ヘッダーの高さに合わせて調整 */
}


/* ナビゲーション（PC） */
.desktop-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.desktop-nav ul li {
  margin: 5px 10px;
}
.desktop-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* ハンバーガーアイコン */
.hamburger {
  position: fixed;
  top: 110px;
  right: 20px;
  width: 30px;
  height: 19px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10001;
}
.hamburger span {
  display: block;
  height: 2px;
  background-color: white;
  border-radius: 2px;
}
.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* モバイルナビ */
#mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 240px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  padding-top: 60px;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
}
#mobile-nav.open {
  transform: translateX(0);
}
#mobile-nav ul {
  list-style-type: none;
  padding-left: 24px;
  padding-right: 24px;
  text-align: left;
}
#mobile-nav li {
  margin: 20px 0;
  text-align: left;
}
#mobile-nav a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: opacity 0.3s ease;
}
#mobile-nav a:hover {
  opacity: 0.7;
}

/* フッター */
footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  #mobile-nav {
    display: block;
  }
}



body {
  font-family: "AR P明朝体L", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.05rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #ffffff;
  background-color: #000000;
}


body {
  font-family: "AR P明朝体L", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.1rem;
  line-height: 2.0;
  letter-spacing: 0.06em;
  color: #f8f8f8;
  background-color: #000;
}

/* すべてのテキスト要素に統一 */
p, td, li, font {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* リンクの下線を完全に除去 */
a {
  color: #f0f0f0;
  text-decoration: none;
}

a:hover {
  color: #cccccc;
}


html, body {
  overflow-x: hidden;
}



@media screen and (max-width: 768px) {
  .hamburger {
    top: 70px;     /* スマホ時の上からの距離 */
    right: 16px;   /* スマホ時の右端からの距離 */
  }
}


main {
  display: flex;
  justify-content: center;
  align-items: center; /* 縦方向の中央揃え（必要に応じて） */
  flex-direction: column;
  padding-top: 50px; /* ヘッダーの高さに合わせて調整 */
  min-height: 100vh;
  box-sizing: border-box;
}



/* 電話リンク（スマホのみ表示） */
.mobile-call-only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .mobile-call-only {
    display: block !important;
  }
}