@charset "UTF-8";
/*ハンバーガーメニュー↓*/
.menu-wrapper {
  position: relative;
}

.menu-icon {
  width: 40px;
  height: 30px;
  position: fixed; /* ← fixedにして常に左上固定 */
  top: 20px;
  left: 20px;
  cursor: pointer;
  z-index: 3;
  display: inline-block;
}

.menu-icon span {
  display: block;
  height: 4px;
  margin: 6px 0;
  background: #c5a059;
  border-radius: 2px;
  transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(121, 109, 54, 0.623);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
  z-index: 1;
}

#menu-toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー本体（左から出す） */
.menu {
  position: fixed;
  top: 0;
  left: -250px; /* ← 初期位置を左へ */
  width: 250px;
  height: 100%;
  background: #0f0c2b;
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: left 0.4s ease;
  z-index: 2;
}

#menu-toggle:checked ~ .menu {
  left: 0; /* ← 開いたときは左0へ */
}

.menu ul {
  list-style: none;
  padding: 60px 20px;
}

.menu li {
  margin: 20px 0;
}

.menu a {
  text-decoration: none;
  color: #ac8227;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.menu a:hover {
  color: #e6d49b;
}

/* 基本設定 */
body {
margin: 0;
padding: 0;
background-color: #0f0c2b; /* 深い紺色 */
color: #f0f0f0;
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
line-height: 1.6;
}

h2 {
color: #BE9500; /* 金色 */
text-align: center;
border-bottom: 1px solid #BE9500;
padding-bottom: 10px;
margin-bottom: 30px;
font-weight: lighter;
letter-spacing: 0.1em;
}

.TOP{
  text-align: center;
}

img.top{
  width: 874px;
  height: 492px;
}

.JYOUEI{
  text-align: center;
  margin: 100px;
}

img.jyouei{
  width: 160px;
  height: 160px;
  margin: 0 30px 0 30px;
}

/* メインコンテンツ幅制限 */
main {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}

/* レイアウト用グリッド */
.info-grid, .bottom-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-bottom: 60px;
}

/* おすすめ情報カード */
.card-container {
display: flex;
gap: 10px;
}

.card {
flex: 1;
height: 150px;
background: rgba(255,255,255,0.1);
border: 1px solid #c5a059;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
}

.card img{
width: 100%;
height: 100%;
}

/* NEWS */
.news ul {
list-style: none;
padding: 0;
}

.news li {
padding: 10px 0;
border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.date {
color: #c5a059;
margin-right: 15px;
}

.facility-image{
text-align: center;
}

.facility-image img{
  width: 700px;
  height: 521px;
}

/* 料金表 */
.price-table {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}

.price-table th, .price-table td {
border: 1px solid #c5a059;
padding: 10px;
text-align: center;
}

/* ボタン装飾 */
.btn-buy, .btn-gold {
display: block;
background-color: #c5a059;
color: #001a33;
text-align: center;
padding: 12px;
text-decoration: none;
font-weight: bold;
margin-bottom: 10px;
}

.sub-link {
color: #c5a059;
font-size: 14px;
text-decoration: none;
}

.map-placeholder {
width: 100%;
height: 200px;
background: #111;
margin-bottom: 15px;
border: 1px solid #c5a059;
display: flex;
align-items: center;
justify-content: center;
}

.map-placeholder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* フッター */
footer {
background-color: #000d1a;
padding: 60px 20px;
text-align: center;
border-top: 1px solid #c5a059;
}

.footer-message {
font-style: italic;
margin-bottom: 30px;
font-family: serif;
}

.copyright {
font-size: 12px;
opacity: 0.7;
}

/* レスポンシブ */
@media (max-width: 768px) {
.info-grid, .bottom-grid {
grid-template-columns: 1fr;
}
}

/* 上映作品ページ専用スタイル */

.program-main {
padding-top: 20px;
padding-bottom: 80px;
}

.page-title {
text-align: center;
margin-bottom: 60px;
}

.page-title h1 {
font-size: 2.5rem;
color: #c5a059;
letter-spacing: 0.2em;
margin-bottom: 5px;
}

.page-title p {
font-size: 0.9rem;
letter-spacing: 0.1em;
opacity: 0.8;
}

/* パンくずリスト */
.breadcrumb {
text-align: left;
max-width: 1000px;
margin: 0 auto;
font-size: 0.8rem;
padding: 10px 20px;
color: #c5a059;
}
.breadcrumb a {
color: #c5a059;
text-decoration: none;
}

/* 作品カード */
.program-card {
display: flex;
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(197, 160, 89, 0.3);
margin-bottom: 40px;
overflow: hidden;
transition: border 0.3s;
}

.program-card:hover {
border: 1px solid #c5a059;
}

.program-visual {
flex: 1;
min-width: 350px;
}

.image-placeholder {
width: 100%;
height: 100%;
min-height: 250px;
background: #000;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
color: #666;
}

.image-placeholder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.program-info {
flex: 1.5;
padding: 30px;
}

.category {
display: inline-block;
border: 1px solid #c5a059;
color: #c5a059;
font-size: 0.7rem;
padding: 2px 10px;
margin-bottom: 15px;
}

.program-name {
font-size: 1.6rem;
color: #f0f0f0;
margin-bottom: 15px;
border: none; /* デフォルトのH2装飾を打ち消し */
text-align: left;
padding: 0;
}

.description {
font-size: 0.95rem;
margin-bottom: 20px;
color: #ccc;
line-height: 1.8;
}

.spec-list {
list-style: none;
padding: 0;
margin-bottom: 25px;
font-size: 0.85rem;
}

.spec-list li {
margin-bottom: 5px;
}

.spec-list span {
color: #c5a059;
margin-right: 10px;
}

.btn-detail {
display: inline-block;
border: 1px solid #c5a059;
color: #c5a059;
text-decoration: none;
padding: 10px 30px;
font-size: 0.9rem;
transition: all 0.3s;
}

.btn-detail:hover {
background: #c5a059;
color: #001a33;
}

.main-logo-small {
max-width: 200px;
}

/* レスポンシブ */
@media (max-width: 600px) {
.schedule-table {
font-size: 0.85rem;
}
.btn-reserve {
padding: 5px 10px;
}
}

/* 上映スケジュールページ専用スタイル */

.schedule-main {
padding-bottom: 80px;
}

/* 日付選択エリア */
.date-selector {
margin-top: 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}

.current-date {
font-size: 1.5rem;
color: #f0f0f0;
border-bottom: 2px solid #c5a059;
padding: 0 20px;
}

.calendar-link {
color: #c5a059;
text-decoration: none;
font-size: 0.9rem;
}

/* タイムテーブル */
.timetable-section {
margin-top: 50px;
overflow-x: auto; /* スマホ対策 */
}

.schedule-table {
width: 100%;
border-collapse: collapse;
font-size: 1rem;
}

.schedule-table th {
background: rgba(197, 160, 89, 0.1);
color: #c5a059;
font-weight: normal;
padding: 15px;
border-top: 1px solid #c5a059;
border-bottom: 1px solid #c5a059;
}

.schedule-table td {
padding: 25px 15px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
vertical-align: middle;
}

/* 時間列 */
.time {
font-family: 'Courier New', Courier, monospace;
font-weight: bold;
color: #c5a059;
white-space: nowrap;
}

/* 作品名列 */
.program-title {
text-align: left;
font-weight: 500;
}

.cat-tag {
font-size: 0.7rem;
padding: 2px 6px;
border: 1px solid #c5a059;
margin-right: 10px;
vertical-align: middle;
}

.cat-tag.special {
background: #c5a059;
color: #001a33;
}

/* 予約ボタン */
.btn-reserve {
display: inline-block;
padding: 8px 20px;
background: transparent;
border: 1px solid #c5a059;
color: #c5a059;
text-decoration: none;
font-size: 0.85rem;
transition: all 0.3s;
}

.btn-reserve:hover {
background: #c5a059;
color: #001a33;
}

/* 夜間投影の強調 */
.night-show {
background: rgba(197, 160, 89, 0.05);
}

/* 注意事項 */
.schedule-notice {
margin-top: 60px;
background: rgba(0, 0, 0, 0.2);
padding: 30px;
border-radius: 5px;
}

.schedule-notice h3 {
color: #c5a059;
font-size: 1.1rem;
margin-bottom: 15px;
}

.schedule-notice ul {
font-size: 0.9rem;
color: #ccc;
padding-left: 20px;
}

.schedule-notice li {
margin-bottom: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
.program-card {
flex-direction: column;
}
.program-visual {
min-width: 100%;
}
}

/* 施設案内ページ専用スタイル */

.facility-main {
padding-bottom: 80px;
}

/* コンセプトセクション */
.concept {
display: flex;
align-items: center;
gap: 40px;
margin-bottom: 100px;
}

.concept-text {
flex: 1;
}

.concept-text h2 {
text-align: left;
border-bottom: 2px solid #c5a059;
display: inline-block;
}

.concept-text p {
font-size: 1.1rem;
line-height: 2;
margin-top: 20px;
}

.concept-image {
flex: 1;
height: 400px;
}

/* 特徴リスト（交互レイアウト） */
.feature-item {
display: flex;
gap: 50px;
margin-bottom: 80px;
align-items: center;
}

.feature-item.reverse {
flex-direction: row-reverse;
}

.feature-img {
flex: 1;
height: 300px;
}

.feature-desc {
flex: 1.2;
}

.feature-desc h3 {
color: #c5a059;
font-size: 1.4rem;
margin-bottom: 15px;
}

.feature-desc p {
color: #ccc;
font-size: 0.95rem;
}

/* サービスグリッド */
.service-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 40px;
}

.service-box {
padding: 20px;
background: rgba(255, 255, 255, 0.05);
border-top: 2px solid #c5a059;
text-align: center;
}

.service-box h4 {
color: #c5a059;
margin-bottom: 10px;
}

.service-box p {
font-size: 0.85rem;
color: #bbb;
}

/* プレースホルダーの装飾 */
.image-placeholder {
width: 100%;
height: 100%;
background: #000;
border: 1px solid rgba(197, 160, 89, 0.3);
display: flex;
align-items: center;
justify-content: center;
color: #666;
font-size: 0.9rem;
}

.image-placeholder img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* レスポンシブ */
@media (max-width: 768px) {
.concept, .feature-item, .feature-item.reverse {
flex-direction: column;
}
.service-grid {
grid-template-columns: 1fr;
}
.concept-image, .feature-img {
width: 100%;
height: 250px;
}
}

