/*
Theme Name: VAMOS5 Original Style
Author: VAMOS5 Team 
Version: 2.1.9
Text Domain: vamos5
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: restaurant, bar, poker, shisha, business, entertainment, responsive, custom-colors, custom-logo, custom-menu, customizer-ready, featured-images, theme-options
*/

/* ...reset, font, body... */

html {
  overflow-x: hidden;
}

body {
  font-family: 'Noto Serif JP', serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  padding-top: 0;
  width: 100%;
  max-width: 100vw;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ヘッダー */
.site-header {
  background: #8fd3d6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  padding: 0.5em 3vw;
  height: 65px;
}
.header-logo-link {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.7em;
  font-weight: bold;
  color: #222;
}
.header-coin {
  width: 40px;
  height: 50px;
  margin-right: 0.2em;
}

/* 元ファイルに合わせてヘッダーサイト名のスタイルを追加 */
.header-site-name {
  font-size: 1em;
  font-weight: bold;
  color: #222;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2em;
}
.nav-list {
  display: flex;
  gap: 1.2em;
  list-style: none;
}
.nav-list li a {
  color: #222;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.2s;
}
.nav-list li a:hover {
  color: #ff69b4;
}
.sns-list {
  display: flex;
  gap: 0.7em;
  list-style: none;
  margin: 0 0 0 1.2em;
}
.sns-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-left: 0.1em;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: 1em;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #222;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
  position: absolute;
}

.menu-toggle span:nth-child(1) {
  top: 8px;
}

.menu-toggle span:nth-child(2) {
  top: 18px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

/* ハンバーガーメニューが開いた時の変形アニメーション */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 18px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
}

/* ページ用メインビジュアル（下層ページ用 - 元ファイルに合わせて高さ調整） */
.page_main-visual {
  position: relative;
  background: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  margin-top: 64px;
}

.page_main-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.logo-bg {
  text-align: center;
  z-index: 2;
  position: relative;
}

.logo-bg .main-logo {
  max-width: 300px;
  max-height: 200px;
  filter: drop-shadow(0 0 20px rgba(143, 211, 214, 0.5));
  transition: transform 0.3s ease;
}

.logo-bg .main-logo:hover {
  transform: scale(1.05);
}

.page_main-visual-text {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 95vw;
  margin: 0 auto;
  word-break: break-word;
}

.page_main-visual-text h1 {
  font-size: 2.3em;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.page_main-visual-text p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  margin-top: 1em;
}

/* メインビジュアル（オリジナルに合わせて復元） */
.main-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 背景スライドショー（復活） */
.background-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.bg-slide.active {
  opacity: 1;
}

/* video-overlayの色調を元ファイルに合わせる */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 56, 8, 0.2);
  z-index: 1;
  pointer-events: none;
}

.main-visual-text {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 95vw;
  margin: 0 auto;
  word-break: break-word;
}

.main-visual-text h1 {
  font-size: 2.3em;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  margin-bottom: 2rem;
}

.mobile-break {
  display: inline;
}

.mobile-break-alt {
  display: none;
}

.main-hours {
  font-size: 1.25em;
  font-weight: bold;
  margin: 0 auto;
  max-width: 420px;
  color: #fff;
}

.main-hours-title,
.main-hours-open {
  margin-bottom: 0.2em;
  color: #fff;
}

.main-hours-table {
  display: table;
  width: 100%;
  margin: 0.5em 0 0 0;
}

.main-hours-row {
  display: table-row;
}

.main-hours-label {
  display: table-cell;
  padding: 0.2em 0.5em;
  font-size: 1.1em;
  text-align: right;
  font-family: inherit;
  width: 50%;
  letter-spacing: 0.1em;
  color: #fff;
}

.main-hours-time {
  display: table-cell;
  width: 50%;
  padding: 0.2em 0.5em;
  font-size: 1.1em;
  text-align: left;
  letter-spacing: 0.1em;
  color: #fff;
}

/* アクセスセクション */
.access-section {
  background: #8fd3d6;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3em 10vw;
  gap: 3em;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: auto;
}

.access-info {
  font-size: 1.1em;
  font-weight: 500;
  line-height: 2;
  min-width: 400px;
}

.access-info h1 {
  margin: 0 0 0.5em 0;
  font-size: 1.5em;
  font-family: 'Noto Serif JP', serif;
  color: #222;
}

.access-list {
  list-style: none;
  padding: 0;
  font-size: 1.1em;
}

.access-list li {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  line-height: 1.7;
}

.access-label {
  font-weight: bold;
  color: #00796b;
  margin-right: 0.5em;
  min-width: 6em;
  text-align: right;
  flex-shrink: 0;
  transform: translateX(-1em);
}

.access-value {
  color: #222;
  text-decoration: none;
  text-align: left;
  display: block;
  word-break: break-word;
  line-height: 1.6;
}

.access-value a {
  color: #222;
  text-decoration: underline;
}

.access-hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.access-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(143, 211, 214, 0.1);
  padding: 0.5rem;
  border-radius: 5px;
}

.access-hours-label {
  font-weight: bold;
  color: #222;
}

.access-hours-time {
  color: #222;
}

.access-map {
  flex: 1;
  min-width: 300px;
}

.access-map iframe {
  border-radius: 8px;
  border: 1px solid #aaa;
  width: 400px;
  height: 280px;
  max-width: 95vw;
}

/* フッター */
footer {
  background: #222;
  padding: 2rem;
  text-align: center;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #8fd3d6;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-sns {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-sns div {
  color: #8fd3d6;
  font-weight: bold;
}

.footer-sns a {
  display: inline-flex;
  align-items: center;
}

.footer-sns .sns-icon {
  width: 20px;
  height: 20px;
}

.footer-copyright {
  color: #999;
  font-size: 0.9rem;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .main-visual-text h1 {
    font-size: 2rem;
  }
  
  .mobile-break {
    display: none;
  }
  
  .mobile-break-alt {
    display: inline;
  }
  
  .main-slider {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    margin: 2em 0 2em 0;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .slider-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    max-width: 95vw;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .slider-img {
    width: 160px;
    height: 100px;
    max-width: 30vw;
  }
  
  /* モバイル版中央画像 */
  .slider-img.center {
    width: 200px;
    height: 130px;
    max-width: 50vw;
    border: 3px solid #8fd3d6;
    box-shadow: 0 2px 10px rgba(143, 211, 214, 0.4);
    z-index: 2;
  }
  
  /* モバイル版サイド画像 */
  .slider-img.side {
    width: 120px;
    height: 80px;
    max-width: 25vw;
    opacity: 0.7;
    border: 2px solid #8fd3d6;
    z-index: 1;
  }
  
  .access-section {
    flex-direction: column;
    align-items: center;
    gap: 2em;
    padding: 2em 2vw;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: auto;
  }
  
  .access-info, .access-map {
    max-width: 95vw;
    box-sizing: border-box;
    font-size: 0.95em;
    margin: 0 auto;
  }
  
  .footer-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* モバイルメニュー */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #8fd3d6;
  padding: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.mobile-nav.show {
  display: block;
}

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

.mobile-nav li {
  margin-bottom: 1rem;
}

.mobile-nav a {
  color: #222;
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  padding: 0.5rem;
  border-radius: 5px;
  transition: background-color 0.2s;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ライトボックス */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
  position: relative;
  margin: auto;
  padding: 20px;
  width: 90%;
  max-width: 900px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 5px;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  color: #fff;
  margin-top: 20px;
  font-size: 18px;
}

/* スライダー */
.main-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
  margin: 3em 0 3em 0; 
}

.slider-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  max-width: 95vw;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.slider-img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #8fd3d6;
  background: #222;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* 中央の画像（メイン表示） */
.slider-img.center {
  width: 400px;
  height: 250px;
  border: 3px solid #8fd3d6;
  box-shadow: 0 4px 15px rgba(143, 211, 214, 0.4);
  z-index: 2;
}

/* サイドの画像（前後の画像） */
.slider-img.side {
  width: 240px;
  height: 150px;
  opacity: 0.7;
  border: 2px solid #8fd3d6;
  z-index: 1;
}

.slider-arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5em;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.slider-arrow:hover {
  color: #8fd3d6;
}

#sliderPrev {
  left: 1rem;
}

#sliderNext {
  right: 1rem;
}

/* 投稿グリッド */
.content-section {
  padding: 4rem 2rem;
  background: #111;
}

.content-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 2.5rem;
  color: #8fd3d6;
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 2px solid #8fd3d6;
  padding-bottom: 1rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-card {
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(143, 211, 214, 0.3);
}

.post-thumbnail {
  position: relative;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.05);
}

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  margin: 0 0 1rem 0;
  font-size: 1.3rem;
}

.post-content h3 a {
  color: #8fd3d6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-content h3 a:hover {
  color: #fff;
}

.post-meta {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #ccc;
}

.post-excerpt {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #ddd;
}

.read-more {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #8fd3d6;
  color: #222;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background: #fff;
}

/* ページネーション */
.pagination {
  text-align: center;
  margin-top: 2rem;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination .current {
  display: inline-block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.pagination a {
  background: #333;
  color: #8fd3d6;
  transition: background-color 0.3s ease;
}

.pagination a:hover {
  background: #8fd3d6;
  color: #222;
}

.pagination .current {
  background: #8fd3d6;
  color: #222;
}

/* 料金案内イントロセクション */
.pricing-intro {
  background: #000;
  color: #fff;
  padding: 3em 2em;
  text-align: center;
}

.pricing-intro-container {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-intro-container p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #ccc;
}

/* 料金表セクション */
.pricing-section {
  background: #000;
  color: #fff;
  padding: 4em 2em;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
}

/* 求人カード本文の省略表示 */
.job-card .text-more {
  color: #8fd3d6;
  font-weight: 600;
  margin-left: 0.3em;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 3em;
}

.pricing-item {
  background: #111;
  border: 2px solid #8fd3d6;
  border-radius: 12px;
  padding: 2em;
  text-align: center;
  transition: transform 0.3s ease;
}

.pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(143, 211, 214, 0.3);
}

.pricing-image {
  margin-bottom: 1.5em;
  border-radius: 8px;
  overflow: hidden;
}

.pricing-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.pricing-img:hover {
  transform: scale(1.05);
}

.pricing-item h2 {
  color: #8fd3d6;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 1.5em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #8fd3d6;
}

.price-table {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1.5em;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8em 0;
  border-bottom: 1px solid #333;
}

.price-row:last-child {
  border-bottom: none;
}

.price-label {
  font-size: 1.1em;
  color: #ccc;
  text-align: left;
}

.price-value {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  text-align: right;
}

.more-btn {
  background: linear-gradient(45deg, #8fd3d6, #66b3b7);
  color: #000;
  border: none;
  padding: 0.8em 2em;
  border-radius: 25px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1em;
}

.more-btn:hover {
  background: linear-gradient(45deg, #66b3b7, #4a9da0);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(143, 211, 214, 0.4);
}

.more-btn.active {
  background: linear-gradient(45deg, #ff69b4, #e91e63);
  color: #fff;
}

.pricing-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.3s ease;
  opacity: 0;
  background: #1a1a1a;
  border-radius: 8px;
  margin-top: 1em;
}

.pricing-details.show {
  max-height: none;
  opacity: 1;
  padding: 1.5em;
  overflow: visible;
}

.details-content h3 {
  color: #8fd3d6;
  font-size: 1.3em;
  margin-bottom: 1em;
  text-align: center;
}

.details-content h4 {
  color: #8fd3d6;
  font-size: 1.1em;
  margin: 1em 0 0.5em 0;
}

.details-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1em 0;
}

.details-content li {
  color: #ccc;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 0.5em;
}

.details-content .note {
  color: #999;
  font-size: 0.9em;
  font-style: italic;
  margin-top: 1em;
  text-align: center;
}

/* ポーカーテーブルスタイル */
.poker-table {
  width: 100%;
  margin: 1.5em 0;
  overflow-x: auto;
}

.poker-table table {
  width: 100%;
  border-collapse: collapse;
  background: #222;
  border-radius: 8px;
  overflow: hidden;
}

.poker-table thead {
  background: #8fd3d6;
}

.poker-table th {
  color: #000;
  padding: 1em;
  text-align: center;
  font-weight: bold;
  font-size: 0.95em;
}

.poker-table td {
  color: #fff;
  padding: 0.8em;
  text-align: center;
  border-bottom: 1px solid #333;
  font-size: 0.9em;
}

.poker-table tbody tr:last-child td {
  border-bottom: none;
}

.poker-table tbody tr:nth-child(even) {
  background: #2a2a2a;
}

/* オプションテーブルスタイル */
.option-table {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin: 1.5em 0;
  background: #222;
  border-radius: 8px;
  padding: 1em;
  width: 100%;
  box-sizing: border-box;
}

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 0;
  border-bottom: 1px solid #333;
}

.option-row:last-child {
  border-bottom: none;
}

.option-label {
  font-size: 0.95em;
  color: #ccc;
  text-align: left;
  flex: 1;
}

.option-price {
  font-size: 1em;
  font-weight: bold;
  color: #8fd3d6;
  text-align: right;
  flex-shrink: 0;
  margin-left: 0.5em;
}

/* イベントページのスタイル */
.event-container {
  max-width: 100%;
  padding: 2em 0;
  background: #000;
  color: #fff;
}

.calendar-wrapper {
  margin-bottom: 4em;
  padding: 3em 2em;
  background: #111;
  border: 2px solid #8fd3d6;
  border-radius: 12px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  text-align: center;
  font-size: 2em;
  color: #8fd3d6;
  margin-bottom: 1.5em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #8fd3d6;
  display: inline-block;
  width: 100%;
}

.calendar-fullwidth {
  width: 100%;
  max-width: 100%;
}

.calendar-item-full {
  width: 100%;
  margin-bottom: 2em;
}

.calendar-item-full iframe,
.calendar-item-full .waitinglist-embed {
  width: 100%;
  min-height: 900px;
  border: solid 1px #777;
  border-radius: 8px;
}

.calendar-item-full .waitinglist-embed {
  height: 900px !important;
}

.regular-events {
  max-width: 1200px;
  margin: 0 auto 4em;
  padding: 3em 2em;
  background: #0a0a0a;
  border-top: 3px solid #333;
  border-bottom: 3px solid #333;
}

.regular-event-content {
  background: #111;
  padding: 2em;
  border-radius: 8px;
  line-height: 1.8;
  border: 1px solid #333;
}

.special-events {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3em 2em;
  background: #050505;
  border-radius: 12px;
}

.special-event-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.event-item-center {
  background: #111;
  padding: 1.5em 2em;
  border-radius: 8px;
  border-left: 4px solid #8fd3d6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* 定期イベントカードレイアウト */
.regular-event-cards {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin: 2em 0;
  flex-wrap: wrap;
}

.regular-event-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(143, 211, 214, 0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
}

.regular-event-card:hover {
  transform: translateY(-5px);
  border-color: #8fd3d6;
  box-shadow: 0 6px 20px rgba(143, 211, 214, 0.3);
}

.regular-event-card .card-content {
  padding: 2em;
  text-align: center;
}

.regular-event-card .card-title {
  font-size: 1.5em;
  color: #8fd3d6;
  margin: 0 0 1em 0;
  font-weight: 600;
  text-align: center;
}

.regular-event-card .card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin: 1.5em 0;
  padding: 1.5em;
  background: rgba(143, 211, 214, 0.05);
  border-radius: 8px;
  border-left: 3px solid #8fd3d6;
}

.regular-event-card .meta-item {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 0.95em;
}

.regular-event-card .meta-label {
  color: #8fd3d6;
  font-weight: 600;
  min-width: 80px;
}

.regular-event-card .meta-value {
  color: #fff;
}

.regular-event-card .card-text {
  color: #ccc;
  line-height: 1.8;
  margin: 1.5em 0;
  font-size: 0.95em;
}

.regular-event-card .card-text {
  color: #fff;
  line-height: 1.7;
  font-size: 0.95em;
}

/* レスポンシブ：スマホでは1カラム */
@media (max-width: 768px) {
  .regular-event-cards {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
  .regular-event-card .card-thumbnail {
    height: 180px;
  }
}

/* スペシャルイベントカードレイアウト */
.special-event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2em;
  margin: 2em 0;
}

.event-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(143, 211, 214, 0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: #8fd3d6;
  box-shadow: 0 6px 20px rgba(143, 211, 214, 0.3);
}

.event-card .card-content {
  padding: 2em;
}

.event-card .card-title {
  font-size: 1.5em;
  color: #8fd3d6;
  margin: 0 0 1em 0;
  font-weight: 600;
  text-align: center;
}

.event-card .card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin: 1.5em 0;
  padding: 1.5em;
  background: rgba(143, 211, 214, 0.05);
  border-radius: 8px;
  border-left: 3px solid #8fd3d6;
}

.event-card .meta-item {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 0.95em;
}

.event-card .meta-label {
  color: #8fd3d6;
  font-weight: 600;
  min-width: 80px;
}

.event-card .meta-value {
  color: #fff;
}

/* スペシャルイベントのコンパクトメタ表示 */
.event-card .card-meta-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin: 1em 0;
  padding: 0.8em;
  background: rgba(143, 211, 214, 0.05);
  border-radius: 8px;
  flex-wrap: wrap;
}

.event-card .meta-compact-item {
  color: #8fd3d6;
  font-size: 0.95em;
  font-weight: 600;
}

.event-card .card-text {
  color: #ccc;
  line-height: 1.8;
  margin: 1.5em 0;
  font-size: 0.95em;
}

.event-card .card-link {
  display: inline-block;
  padding: 0.8em 2em;
  background: linear-gradient(135deg, #8fd3d6 0%, #6fb8bb 100%);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1em;
}

.event-card .card-link:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(143, 211, 214, 0.4);
}

/* 求人カードレイアウト */
.job-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  margin: 2em auto;
  max-width: 1200px;
}

.job-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(143, 211, 214, 0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  flex: 0 1 calc(50% - 1em);
  max-width: 500px;
  min-width: 320px;
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: #8fd3d6;
  box-shadow: 0 6px 20px rgba(143, 211, 214, 0.3);
}

.job-card .card-content {
  padding: 2em;
}

.job-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5em;
  flex-wrap: wrap;
  gap: 1em;
}

.job-card .card-title {
  font-size: 1.5em;
  color: #8fd3d6;
  margin: 0;
  font-weight: 600;
}

.job-type-badge {
  padding: 0.4em 1em;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
}

.parttime-badge {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #000;
}

.fulltime-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8787 100%);
  color: #fff;
}

.job-card .card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  margin: 1.5em 0;
  padding: 1.5em;
  background: rgba(143, 211, 214, 0.05);
  border-radius: 8px;
  border-left: 3px solid #8fd3d6;
}

.job-card .meta-item {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-size: 0.95em;
}

.job-card .meta-label {
  color: #8fd3d6;
  font-weight: 600;
  min-width: 90px;
}

.job-card .meta-value {
  color: #fff;
}

.job-card .card-text {
  color: #ccc;
  line-height: 1.8;
  margin-top: 1.5em;
  font-size: 0.95em;
}

.job-card .card-text p {
  margin-bottom: 1em;
}

.job-card .card-link {
  display: inline-block;
  padding: 0.8em 2em;
  background: linear-gradient(135deg, #8fd3d6 0%, #6fb8bb 100%);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1em;
}

.job-card .card-link:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(143, 211, 214, 0.4);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .special-event-cards,
  .job-cards {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
  .job-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.event-header-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  margin-bottom: 1em;
  flex-wrap: wrap;
}

.event-date-format {
  font-size: 1.1em;
  color: #8fd3d6;
  font-weight: bold;
}

.event-title-hash {
  font-size: 1.2em;
  color: #fff;
  font-weight: bold;
}

.event-time-format {
  font-size: 1em;
  color: #ccc;
}

.event-detail-btn {
  padding: 0.5em 1.5em;
  background: #8fd3d6;
  color: #000;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.event-detail-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.event-details-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  text-align: center;
}

.event-content-short {
  color: #ccc;
  line-height: 1.6;
  max-width: 800px;
}

.event-price-yen {
  font-size: 1.2em;
  color: #8fd3d6;
  font-weight: bold;
}

/* 求人ページのスタイル */
.recruit-section {
  padding: 4em 2em;
  background: #000;
  color: #fff;
  min-height: calc(100vh - 130px);
}

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

.job-list {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  margin-bottom: 4em;
}

.job-item {
  background: #111;
  padding: 2em;
  border-radius: 12px;
  border-left: 4px solid #8fd3d6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(143, 211, 214, 0.2);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  border-bottom: 2px solid #333;
  flex-wrap: wrap;
  gap: 1em;
}

.job-title {
  font-size: 1.8em;
  color: #8fd3d6;
  margin: 0;
}

.job-type-badge {
  padding: 0.5em 1.2em;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: bold;
}

.parttime-badge {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: #fff;
}

.fulltime-badge {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: #fff;
}

.job-details {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1.5em;
}

.job-detail-item {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0.8em;
  background: #0a0a0a;
  border-radius: 8px;
}

.detail-label {
  font-weight: bold;
  color: #8fd3d6;
  min-width: 100px;
}

.detail-value {
  color: #ccc;
}

.job-content {
  color: #ddd;
  line-height: 1.8;
}

.job-content p {
  margin-bottom: 1em;
}

.job-content ul {
  margin: 1em 0;
  padding-left: 1.5em;
}

.job-content li {
  margin-bottom: 0.5em;
}

.job-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(143, 211, 214, 0.2);
}

.job-card:hover::before {
  opacity: 1;
}

.townwork-card {
  border-color: #fcc800;
}

.townwork-card:hover {
  border-color: #fcc800;
  box-shadow: 0 15px 35px rgba(252, 200, 0, 0.3);
}

.torabayu-card {
  border-color: #ff8090;
}

.torabayu-card:hover {
  border-color: #ff8090;
  box-shadow: 0 15px 35px rgba(255, 128, 144, 0.3);
}

.hatalike-card {
  border-color: #6fc02c;
}

.hatalike-card:hover {
  border-color: #6fc02c;
  box-shadow: 0 15px 35px rgba(111, 192, 44, 0.3);
}

.indeed-card {
  border-color: #004fcb;
}

.indeed-card:hover {
  border-color: #004fcb;
  box-shadow: 0 15px 35px rgba(0, 79, 203, 0.3);
}

.job-card-header {
  padding: 1.5em;
  background: linear-gradient(135deg, rgba(143, 211, 214, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  align-items: center;
  gap: 1em;
  position: relative;
}

.job-card-header h3 {
  flex: 1;
  font-size: 1.4em;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.job-type-badge {
  padding: 0.4em 0.8em;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.parttime-badge {
  background: linear-gradient(135deg, #8fd3d6, #7bc3c6);
  color: #000;
}

.fulltime-badge {
  background: linear-gradient(135deg, #ff69b4, #e55a9f);
  color: #fff;
}

.job-card-footer {
  padding: 1.5em;
  border-top: 1px solid rgba(143, 211, 214, 0.2);
}

.job-link {
  display: block;
  padding: 1em 1.5em;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  text-align: center;
  font-size: 1em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.job-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
}

.job-link:hover::before {
  width: 300px;
  height: 300px;
}

.townwork-link {
  background: linear-gradient(135deg, #fcc800, #e6b400);
  color: #000;
}

.townwork-link:hover {
  background: linear-gradient(135deg, #e6b400, #cc9f00);
  transform: translateY(-2px);
}

.torabayu-link {
  background: linear-gradient(135deg, #ff8090, #ff6680);
  color: white;
}

.torabayu-link:hover {
  background: linear-gradient(135deg, #ff6680, #ff4d70);
  transform: translateY(-2px);
}

.hatalike-link {
  background: linear-gradient(135deg, #6fc02c, #5fa925);
  color: white;
}

.hatalike-link:hover {
  background: linear-gradient(135deg, #5fa925, #4f921f);
  transform: translateY(-2px);
}

.indeed-link {
  background: linear-gradient(135deg, #004fcb, #0040a8);
  color: white;
}

.indeed-link:hover {
  background: linear-gradient(135deg, #0040a8, #003285);
  transform: translateY(-2px);
}

.no-recruitment {
  text-align: center;
  padding: 4em 2em;
  background: #111;
  border-radius: 12px;
  border: 2px solid #333;
  margin-bottom: 3em;
}

.no-recruitment h2 {
  font-size: 2em;
  color: #8fd3d6;
  margin-bottom: 1em;
}

.no-recruitment p {
  font-size: 1.2em;
  color: #ccc;
  margin: 0;
  line-height: 1.8;
}

/* 連絡先セクション */
.contact-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 4em 2em;
  border-radius: 20px;
  border: 2px solid #8fd3d6;
  margin-top: 4em;
  box-shadow: 0 10px 40px rgba(143, 211, 214, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(143, 211, 214, 0.05) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.contact-section h3 {
  text-align: center;
  font-size: 2.5em;
  color: #fff;
  margin-bottom: 0.5em;
  text-shadow: 0 0 20px rgba(143, 211, 214, 0.5);
  position: relative;
  z-index: 1;
}

.contact-section h3::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #8fd3d6, transparent);
  margin: 1em auto;
  border-radius: 2px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5em;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5em 2em;
  background: rgba(17, 17, 17, 0.8);
  border-radius: 16px;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}

.contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #8fd3d6, #4a9fa2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-item:hover::before {
  opacity: 1;
}

.contact-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(143, 211, 214, 0.2);
}

.contact-icon {
  font-size: 3.5em;
  margin-bottom: 0.5em;
  background: linear-gradient(135deg, #8fd3d6, #4a9fa2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 8px rgba(143, 211, 214, 0.3));
}

.phone-contact {
  grid-column: 1 / -1;
}

.phone-contact .contact-link {
  font-size: 2em;
  color: #8fd3d6;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.phone-contact .contact-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #8fd3d6, #4a9fa2);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.phone-contact .contact-link:hover::after {
  width: 100%;
}

.phone-contact .contact-link:hover {
  color: #fff;
  text-shadow: 0 0 20px rgba(143, 211, 214, 0.6);
  transform: scale(1.05);
}

.sns-contact {
  grid-column: 1 / -1;
}

.sns-contact .contact-icon {
  display: none;
}

.contact-label {
  font-size: 1.6em;
  color: #8fd3d6;
  font-weight: bold;
  margin-bottom: 1.5em;
  letter-spacing: 0.15em;
  text-shadow: 0 0 20px rgba(143, 211, 214, 0.8),
               0 0 40px rgba(143, 211, 214, 0.5),
               0 0 60px rgba(143, 211, 214, 0.3);
}

.sns-links-recruit {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
}

.sns-link {
  padding: 1em 2em;
  background: rgba(34, 34, 34, 0.8);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid #8fd3d6;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 1.1em;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.sns-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.sns-link:hover::before {
  width: 300px;
  height: 300px;
}

.sns-link:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(143, 211, 214, 0.3);
}

.twitter-link {
  border-color: #1DA1F2;
}

.twitter-link:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.4);
}

.instagram-link {
  border-color: #E4405F;
}

.instagram-link:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #E4405F;
  box-shadow: 0 10px 30px rgba(228, 64, 95, 0.4);
}

.line-link {
  border-color: #00B900;
}

.line-link:hover {
  background: #00B900;
  border-color: #00B900;
  box-shadow: 0 10px 30px rgba(0, 185, 0, 0.4);
}

@media (max-width: 1000px) {
  .pricing-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-width: 600px;
    gap: 2.5em;
  }
  
  .pricing-item {
    padding: 1.8em;
  }
  
  .event-header-line {
    flex-direction: column;
    gap: 0.8em;
  }
  
  .calendar-item-full iframe,
  .calendar-item-full .waitinglist-embed {
    min-height: 500px;
  }

  .calendar-item-full .waitinglist-embed {
    height: 500px !important;
  }
  
  .calendar-wrapper {
    padding: 2em 1em;
  }
  
  .regular-events,
  .special-events {
    padding: 2em 1em;
  }
}

@media (max-width: 900px) {
  .pricing-section {
    padding: 2em 1em;
  }
  
  .recruit-section {
    padding: 2em 1em;
  }
  
  .calendar-item-full iframe,
  .calendar-item-full .waitinglist-embed {
    min-height: 400px;
  }

  .calendar-item-full .waitinglist-embed {
    height: 400px !important;
  }
  
  .event-item-center {
    padding: 1em 1.5em;
  }
  
  .event-header-line {
    font-size: 0.9em;
  }
  
  .calendar-wrapper {
    padding: 1.5em 1em;
    margin-bottom: 3em;
  }
  
  .section-title {
    font-size: 1.5em;
  }
  
  .job-item {
    padding: 1.5em;
  }
  
  .job-title {
    font-size: 1.5em;
  }
  
  .job-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-item {
    padding: 2em 1.5em;
  }
  
  .phone-contact .contact-link {
    font-size: 1.5em;
  }
  
  .contact-section {
    padding: 3em 1em;
  }
  
  .contact-section h3 {
    font-size: 2em;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  
  .sns-links-recruit {
    flex-direction: column;
    gap: 1em;
  }
  
  .sns-link {
    width: 100%;
    text-align: center;
  }
  
  .contact-icon {
    font-size: 3em;
  }
  
  .contact-label {
    font-size: 1.2em;
  }
  
  .recruit-container h1 {
    font-size: 2em;
  }
  
  .recruit-intro {
    font-size: 1em;
  }
  
  .recruit-toggle,
  .employment-toggle {
    flex-direction: column;
    align-items: center;
  }
  
  .job-sites {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
  .category-header {
    padding: 1.5em;
  }
  
  .category-header h2 {
    font-size: 1.8em;
  }
  
  .job-card {
    margin: 0 0.5em;
  }
}