@charset "utf-8";
.left {
  display: grid;
  grid-template-columns: 880px;
  row-gap: 20px;
}
.top_tit {
  font-size: 12px;
  font-weight: normal;
  padding: 20px 0;
}
/*------------------------------------------------------------
　topスライダー
-------------------------------------------------------------*/
.top-slider {
  height: 545px;
  background-color: #fff;
}
.top-slider .bx-controls-direction a {
  overflow: hidden;
  width: 40px;
  height: 108px;
  background-color: rgb(0 0 0 / 0.3);
}
.top-slider .bx-controls-direction a::before,
.top-slider .bx-controls-direction a::after {
  position: absolute;
  inset: 0;
  width: 24px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  content: "";
}
.top-slider .bx-prev::before,
.top-slider .bx-next::after {
  transform: rotate(-60deg);
}
.top-slider .bx-prev::after,
.top-slider .bx-next::before {
  transform: rotate(60deg);
}
.top-slider .bx-prev::before,
.top-slider .bx-prev::after {
  transform-origin: 2% center;
}
.top-slider .bx-next::before,
.top-slider .bx-next::after {
  transform-origin: 98% center;
}
.top-slider .bx-wrapper {
  height: 545px;
}
.top-slider .bx-pager {
  bottom: 20px;
}
.top-slider-items {
  height: 495px;
  overflow: hidden;
}
.top-slider-item {
  float: left;
}
.top-slider-item a img {
  cursor: pointer;
  transition: opacity 0.5s ease-out;
}
.top-slider-item a:hover img {
  opacity: 0.8;
}
/*------------------------------------------------------------
　ナビ
-------------------------------------------------------------*/
.side-nav-item {
  position: relative;
}
.side-nav-item:not(:first-child)::before {
  content: "";
  width: 280px;
  height: 1px;
  background-color: #d5d5d5;
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 1;
}
.side-nav-item a {
  display: flex;
  align-items: center;
  position: relative;
  height: 60px;
  padding-left: 55px;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.5s ease-out, color 0.5s ease-out;
}
.side-nav-item a:hover {
  background-color: #f4f4f4;
  color: #fb3790;
}
.side-nav-item a::before,
.side-nav-item a::after,
.side-nav-item a span::after {
  position: absolute;
  top: 50%;
  content: "";
}
.side-nav-item a::before,
.side-nav-item a::after {
  left: 12px;
  overflow: hidden;
  width: 31px;
  height: 26px;
  margin-top: -13px;
  background-image: url(../images/top/nav-icon.png);
}
.side-nav-item a::after {
  opacity: 0;
  background-position-x: right;
  transition: 0.5s ease-out;
}
.side-nav-item a:hover::after {
  opacity: 1;
}
.side-nav-item.--howTo a::before,
.side-nav-item.--howTo a::after {
  background-position-y: -26px;
}
.side-nav-item.--event a::before,
.side-nav-item.--event a::after {
  background-position-y: -52px;
}
.side-nav-item.--ticket a::before,
.side-nav-item.--ticket a::after {
  background-position-y: -78px;
}
.side-nav-item.--rank a::before,
.side-nav-item.--rank a::after {
  background-position-y: -104px;
}
.side-nav-item.--movie a::before,
.side-nav-item.--movie a::after {
  background-position-y: -130px;
}
.side-nav-item.--play a::before,
.side-nav-item.--play a::after {
  background-position-y: -156px;
}
.side-nav-item.--enquete a::before,
.side-nav-item.--enquete a::after {
  background-position-y: -182px;
}
.side-nav-item.--link a::before,
.side-nav-item.--link a::after {
  background-position-y: -208px;
}
.nav_top li a span::after {
  transform: rotate(45deg);
  right: 22px;
  width: 15px;
  height: 15px;
  margin-top: -8px;
  border-top: 1px solid #524a47;
  border-right: 1px solid #524a47;
  transition: border-color 0.5s ease-out;
}
.nav_top li a:hover span::after {
  border-color: #fb3790;
}

/*------------------------------------------------------------
　新着情報、おすすめ情報共通
-------------------------------------------------------------*/
.content_boxTop {
  display: flex;
  column-gap: 30px;
  padding: 30px 20px;
}
.sec_new {
  width: 490px;
}
.sec_new_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec_recommend {
  width: 320px;
}
.link_content a {
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.5s ease-out;
}
.link_content a:hover {
  color: #fb3690;
  text-decoration: none;
}
/*------------------------------------------------------------
　新着情報
-------------------------------------------------------------*/
.box_new {
  display: flex;
  column-gap: 17px;
  margin-top: 20px;
}
.item_new {
  width: 152px;
}
.item_new.link_area {
  cursor: pointer;
}
.item_new .date {
  font-size: 12px;
  padding: 10px 0;
}
.item_new_img img {
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease-out;
}
.item_new .news_cat {
  margin-bottom: 10px;
}
.item_new a {
  display: block;
  color: #333;
  text-decoration: none;
  transition: color 0.5s ease-out;
}
.item_new.link_area:hover img {
  opacity: 0.8;
}
.item_new:hover a {
  color: #fb3690;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/*------------------------------------------------------------
　おすすめ情報
-------------------------------------------------------------*/
.box_recommend {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-top: 20px;
}

/*------------------------------------------------------------
　topお知らせ
-------------------------------------------------------------*/
.content_sudden_news {
  display: grid;
  row-gap: 20px;
  padding: 20px;
}

/*------------------------------------------------------------
　本日の出勤
-------------------------------------------------------------*/
.content_scheduleTit {
  display: flex;
  align-items: center;
  column-gap: 20px;
  position: relative;
  padding: 20px;
}
.data_scheduleTit span {
  color: #ff0000;
  font-weight: bold;
}
.display_switch {
  right: 20px;
}
.schedule_off {
  display: none;
}
.box_schedule {
  position: relative;
}

.schedule1 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 900px;
}
.schedule2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.top-schedule-item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
	position: relative;
  width: 280px;
  background-color: #fff;
}
.schedule1 .top-schedule-item {
  margin-top: 20px;
}
.schedule2 .top-schedule-item {
  transition: opacity 0.5s ease-out;
}
.top-schedule-item_heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  height: 60px;
  background-image: url(../images/top/bg_scheduleItem.jpg);
  position: relative;
  padding-inline: 20px 45px;
}
.top-schedule-item_heading a {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.schedule2 .top-schedule-item_heading a:hover {
  text-decoration: none;
}
.schedule2 .top-schedule-item:hover {
  opacity: 0.8;
  cursor: pointer;
}
.top-schedule-item_heading .new {
  position: absolute;
  top: 0;
  right: 0;
}
.top-schedule-item .age {
  font-size: 16px;
}
.top-schedule-item_size {
  display: block;
  overflow: hidden;
  font-size: 14px;
  font-weight: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-schedule-item_img {
  position: relative;
}
.top-schedule-item_img.-full {
  aspect-ratio: 3/4;
}
.top-schedule-item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-schedule-item_body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 15px;
  position: relative;
  padding: 15px 15px 20px;
}
.schedule2 .top-schedule-item_body {
  flex: 1;
}
.finished .top-schedule-item_body {
  background-color: #eee;
}
.top-schedule-item_info {
  display: flex;
  column-gap: 15px;
}
.top-schedule-item_data {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
  flex: 1;
  height: 27px;
  border: 1px solid #9f9f9f;
  border-radius: 3px;
}
.top-schedule-item_data::before {
  content: "";
  aspect-ratio: 1;
  width: 15px;
  background: url(../images/common/icon/icon_clock1.png) no-repeat;
}
.top-schedule-item_photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  background: url(../images/top/bg_photo.png);
}
.top-schedule-item_photo img {
  max-width: 240px;
  max-height: 240px;
  width: auto;
  height: auto;
}
.top-schedule-item_hoverImg {
  cursor: pointer;
  opacity: 0;
  aspect-ratio: 3/4;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s ease-in;
  overflow: hidden;
  padding: 20px;
}
.top-schedule-item_hoverImg img {
  transform: scale(1.2);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in;
}
.top-schedule-item:hover .top-schedule-item_hoverImg {
  opacity: 1;
}
.top-schedule-item:hover .top-schedule-item_hoverImg img {
  transform: scale(1);
}
/*------------------------------------------------------------
　404
-------------------------------------------------------------*/
.notFound {
  text-align: center;
  background-color: #fff;
  padding: 140px 0;
}
.txt_notFound {
  margin: 30px 0;
}
.notFound a {
  position: relative;
  text-decoration: underline;
  width: 258px;
  height: 38px;
  line-height: 38px;
  border: 1px solid #b6b6b6;
  display: block;
  margin: 0 auto;
}
.notFound a::before {
  display: block;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 15px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-top: 1px solid #524a47;
  border-right: 1px solid #524a47;
  content: "";
}
.notFound a:hover {
  color: #fb3790;
  text-decoration: none;
}

/*------------------------------------------------------------
　カスタムバナー
-------------------------------------------------------------*/
.custom-bnr {
  display: grid;
  row-gap: 20px;
}

.content_recommendDiary {
  padding: 20px;
}

.recommendDiary .custom-bnr {
  margin-top: 20px;
}

/*------------------------------------------------------------
　年末年始
-------------------------------------------------------------*/
.info-newYear {
  padding: 20px;
}
.info-newYear__heading {
  margin-bottom: 10px;
}
.info-newYear__table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
  text-align: center;
}
.info-newYear__table th,
.info-newYear__table td {
  border: 1px solid #ccc;
}
.info-newYear__table th {
  height: 34px;
  font-weight: normal;
  background: #000;
  color: #fff;
  line-height: 34px;
}
.info-newYear__table td {
  height: 64px;
  line-height: 64px;
}
.info-newYear__table .closed {
  font-weight: bold;
  color: #f00;
}
/*------------------------------------------------------------
　営業時間変更
-------------------------------------------------------------*/
.content_time {
  text-align: center;
  padding: 40px 0;
  margin-top: 20px;
}
