@charset "utf-8";

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  background: #ffffff;
  font-size: 62.5%;
}
body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  margin: 0;
  color: #666;
  font-size: 1.6rem;
  font-family: "M PLUS Rounded 1c", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
a,
a:visited {
  color: #ee7800;
  text-decoration: none;
}
a:hover,
a:active {
  color: #ff3c00;
}
@media (hover: hover) {
a:focus-visible {
  border: 2px solid #ee7800;
}
}
a[href^="tel:"] {
  color: inherit;
}
ol, ul {
  margin: 0 0 20px 20px;
}
img {
  width: 100%;
  height: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
p {
  margin: 0 0 1.5em 0;
}
.bold {
  font-weight: bold;
}
strong {
  color: #ee7800;
  font-weight: bolder;
}
.note {
  font-size: 1.4rem;
}
.clearfix::after {
  content: "";
  display: block;
  overflow: hidden;
}
.flex {
  display: flex;
  gap: 10px;
}
.flex.between {
  justify-content: space-between;
}
.flex.center {
  justify-content: center;
}
sup {
  margin: 0 2px 0 2px;
  font-size: 1.0rem;
}
table,
input,
textarea,
select,
button {
  color: inherit;
  font-weight: inherit;
}
.sp {
  display: none;
}
.pc {
  display: revert;
}
br.sp-only {
  display: none;
}
br.pc-only {
  display: inline;
}


@media (max-width: 1023px) {
a[href^="tel:"] {
  color: #ee7800;
}
}


@media (max-width: 768px) {
a[href^="tel:"] {
  color: #ee7800;
}
.sp {
  display: revert;
}
.pc {
  display: none;
}
br.sp-only {
  display: inline;
}
br.pc-only {
  display: none;
}
}




/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
#page,
.site {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.wrapper {
  display: block;
  width: calc(100% - 300px);
  margin: 0 0 0 300px;
}
.wrapper .wrapper-inner {
  display: block;
  width: 100%;
}
.site-main,
.site-inner {
  display: block;
  width: 100%;
}


@media (max-width: 768px) {
#page,
.site {
  display: flex;
}
.wrapper {
  width: 100%;
  margin: 0;
}
}




/*------------------------------------------------------------
	アクセシビリティ
------------------------------------------------------------*/
.skip-link,
.screen-reader-text {
  position: absolute;
  display: block;
  width: 1px;
  height: 1px;
  margin: -1px -1px -1px -1px;
  overflow: hidden;
  border: 0;
}




/*------------------------------------------------------------
	ヘッダー（左固定ナビ）
------------------------------------------------------------*/
.site-header {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 260px;
  height: 100vh;
  padding: 40px 30px 40px 30px;
  background: rgba(255, 255, 255, 0.8);
  border-right: 1px solid #e0e0e0;
  z-index: 1000;
}
.site-header .site-header-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.site-header-inner .site-branding {
  flex-shrink: 0;
  width: 100%;
  margin: 0 0 40px 0;
}
.site-header-inner .site-branding .headerLogo img {
  width: 100%;
  height: auto;
}
.site-header-inner .main-navigation {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.menu-unit {
  display: block;
  width: 100%;
}
.site-header-inner .main-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header-inner .main-navigation ul li {
  position: relative;
  display: block;
  width: 100%;
}
.site-header-inner .main-navigation ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 4px 0;
  color: #666;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-header-inner .main-navigation ul li a:hover {
  color: #ee7800;
  border-bottom: 1px solid #999;
}

/* 子メニュー（ul）を持っている親要素の矢印表示 */
.site-header-inner .main-navigation ul li:has(ul) > a::after {
  content: "▲";
  display: inline-block;
  margin: 0 0 0 8px;
  font-size: 1.2rem;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.site-header-inner .main-navigation ul li:has(ul).is-active > a::after {
  transform: rotate(180deg);
}

/* 左からスライドして表示される一覧サブメニュー */
.site-header-inner .main-navigation ul li ul {
  position: fixed;
  top: 0;
  left: 260px;
  display: block;
  width: 300px;
  height: 100vh;
  margin: 0;
  padding: 40px 30px 40px 30px;
  background: rgba(245, 245, 245, 0.9);
  border-right: 1px solid #e0e0e0;
  list-style: none;
  opacity: 0;
  transform: translateX(-100%);
  overflow-y: auto;
  z-index: 99;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.site-header-inner .main-navigation ul li.is-active > ul {
  opacity: 1;
  transform: translateX(0);
}
.site-header-inner .main-navigation ul li ul li {
  margin: 0 0 15px 0;
}
.site-header-inner .main-navigation ul li ul li a {
  font-size: 1.5rem;
  font-weight: normal;
}
.sitemap-toggle {
  display: none;
}


@media (max-width: 768px) {
.site-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 10px 20px 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
}
.site-header .site-header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-header-inner .site-branding {
  width: 180px;
  margin: 0;
}
.site-header-inner .main-navigation {
  position: fixed;
  top: 0;
  left: -100vw;
  display: flex;
  width: 100vw;
  height: 100vh;
  padding: 80px 30px 40px 30px;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  transition: left 0.3s ease;
}
body.is-navigation-open .site-header .main-navigation {
  left: 0;
}
.sitemap-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.sitemap-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body.is-navigation-open .sitemap-toggle span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
body.is-navigation-open .sitemap-toggle span:nth-child(2) {
  opacity: 0;
}
body.is-navigation-open .sitemap-toggle span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
}




/*------------------------------------------------------------
	シネマなび（パネル＆矢印設定）
------------------------------------------------------------*/
#cinemanavi-panel {
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 360px;
  height: 100vh;
  margin: 0;
  padding: 20px 0 20px 25px;
  background-color: rgba(245, 245, 245, 0.95);
  border-right: 1px solid #e0e0e0;
  overflow: hidden;
  z-index: 900;
  transform: translateX(-500px);
  transition: transform 0.4s ease-out;
}
body.is-cinemanavi-open #cinemanavi-panel {
  transform: translateX(260px);
}
.cinemanavi-panel-header {
  position: relative;
  flex-shrink: 0;
  padding: 0 0 10px 0;
}
.close-panel-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  color: #333333;
  font-size: 30px;
  background: none;
  border: none;
  line-height: 1;
}
#cinemanavi-panel-content {
  overflow-y: auto;
}
.cinemanavi-note {
  margin: 0 0 15px 0;
  color: #666666;
  font-size: 1.4rem;
  line-height: 1.5;
}
.cinemanavi-titles {
  margin: 0 0 20px 0 !important;
}
ul.cinemanavi-titles li {
  margin: 0 0 0 -20px !important;
  font-size: 1.5rem;
}
.main-navigation ul li.page-item-16 > a::before,
.main-navigation ul li.js-cinemanavi-trigger > a::before {
  content: none;
}
.main-navigation ul li.page-item-16 > a::after,
.main-navigation ul li.js-cinemanavi-trigger > a::after {
  content: "▶";
  display: inline-block;
  margin: 0 0 0 50px;
  color: #555555;
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.main-navigation ul li.page-item-16.is-active > a::after,
.main-navigation ul li.js-cinemanavi-trigger.is-active > a::after {
  content: "◀";
}

@media (max-width: 768px) {
.main-navigation ul li.page-item-16 > a::after,
.main-navigation ul li.js-cinemanavi-trigger > a::after {
  content: none;
}
.main-navigation ul li.page-item-16 > a::before,
.main-navigation ul li.js-cinemanavi-trigger > a::before {
  content: "▶";
  margin: 0 8px 0 0;
  color: #555555;
  font-size: 1.2rem;
}
#cinemanavi-panel {
  position: fixed;
  width: 100vw;
  height: 100vh;
  padding: 40px 30px 40px 30px;
  background: rgba(245, 245, 245, 0.98);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.3s ease;
}
body.is-cinemanavi-open #cinemanavi-panel {
  transform: translateX(0);
}
}