@charset "Shift_JIS";
:root {
  --color-figcaption: #1d95d4;
  --color-sche: #9058ed;
}

/* search-bar */
.search-bar form {
  align-items: center;
}
.search-bar input[type=text] {
  width: calc(100% - 4em);
  max-width: 300px;
  padding: 0.6em;
  border: solid 1px var(--color-form);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(3px);
  transition: 0.45s ease-in-out;
}
.search-bar input::placeholder {
  color: var(--color-border);
}
.search-bar input[type=text]:focus {
  outline: 0;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(1px);
}
.search-bar input[type=submit] {
  width: 4em;
  padding: 0.6em;
  color: var(--color-white);
  background: var(--color-form);
  border: solid 1px var(--color-form);
  cursor: pointer;
  outline: none;
}
/* category-list */
.category-list {
  margin-top: 10px;
  align-items: center;
}
.category-list li {
  padding: 0 0.6em;
  border-right: dotted 1px var(--color-txt);
}
.category-list li:last-of-type {
  border-right: unset;
}
.category-list li a {
  color: var(--color-primary);
}
/* pager */
.simple_pager {
  margin: 10px;
  font-size: 1.4rem;
}
.simple_pager a {
  color: var(--color-gray);
}
.simple_pager a:hover {
  color: var(--color-txt);
}

/* section > .inner */
@media screen and (max-width: 999px) {
  .cast > .inner {padding: 0 1.5%;}
  .schedule > .inner {padding: 0 1%;}
  .top-schedule > .inner {padding: 0 1%;}
  .newface > .inner {padding: 0 1.5%;}
}
@media screen and (min-width: 1000px) {
  .cast > .inner {padding: 0 2%;}
  .schedule > .inner {padding: 0 2%;}
  .top-schedule > .inner {padding: 0 2%;}
  .newface > .inner {padding: 0 2%;}
}

/* castlist */
.castlist {
  position: relative;
  gap: 10px;
  padding: 0;
}
.castlist li {
  padding: 0 6px 6px;
  background: var(--color-bg);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 999px){
  .castlist li {
    width: calc((100% - 15px) / 2);
    height: auto;
  }
}
@media screen and (min-width: 1000px){
  .castlist li {
    width: calc((100% - 30px) / 3);
    height: auto;
  }
}
.castlist li > div {
  height: 16px;
  padding-top: 2px;
  position: relative;
}
.newface-icon {
  position: absolute;top: 0;left: 0;
  font-size: 1rem;line-height: 1.6;color: var(--color-red);
}
.hygiene_date,
.join_date {
  position: absolute;top: 0;right: 0;
  font-size: 1rem;line-height: 1.6;color: var(--color-red);letter-spacing: -.4px;
}


.castlist .name {
  margin-top: 5px;
}
.castlist .size {
  font-size: 10px !important;
}

.castlist .time p {
  padding: 4px 2px;
  font-size: 1.1rem;
  letter-spacing: -0.4px;
}
.castlist .time.next_sche {
  border: solid 1px var(--color-sche);
}
.castlist .time.next_sche p {
  display: flex;
  justify-content: center;
  align-items: center;
}
.castlist .time.next_sche p:first-of-type {
  width: calc(4em + 8px);
  color: var(--color-white);
  background: var(--color-sche);
}
.castlist .time.next_sche p:nth-child(2) {
  margin: 0 auto;
}
.castlist .time.today_sche p:first-of-type {
  color: var(--color-white);
  background: var(--color-secondary);
}
.castlist .time.tbd {
  color: var(--color-white);
  background: var(--color-gray);
}

.castlist a img {
  transition: filter 0.28s;
}
.castlist a img:hover {
  filter: brightness(1.07);
}

/* newface */
.newface .castlist .time {
  background: var(--color-white);
  border: solid 1px #e54242;
}

.newface .castlist .time.next_sche p {
  color: var(--color-primary);
}

.newface .castlist .time.today_sche p {
  color: var(--color-secondary);
}

.castlist .time.tbd {
  color: var(--color-txt);
}

/*
.castlist .type-icon {gap: 1px;}
.type-icon p {
  padding: .3em;
  background: var(--color-primary);
  font-size: 12px;color: var(--color-tertiary);
}
*/
/* /////////////// overlay caption */ /*
figure.overlay {position: relative;}
figure.overlay figcaption{
  width: 100%;
  padding: .2em;
  position: absolute;bottom: 0;left: 0;
  background: var(--color-overlay);
  color: var(--color-white);
}
.castlist figure.overlay .time {
  padding-bottom: unset;
  background: unset;
}
*/
/* schedule */
.calendar {
  margin-top: 1em;
  gap: 4px;
}
.calendar li {
  width: calc((84% - 26px) / 6);
  height: 44px;
  background: #efefef;
  cursor: pointer;
  position: relative;
}
.calendar .sche_btn.active {
  position: relative;
  width: 16%;
  height: 49px;
  background: var(--color-bg);
  box-shadow: 3px -2px 3px -2px rgba(0, 0, 0, 0.2), -3px -2px 3px -2px rgba(0, 0, 0, 0.2);
  border-bottom: none;
  font-size: 100%;
  font-weight: bold;
  color: var(--color-select);
}
.calendar .sche_btn.active p {
  font-size: 100%;
  word-break: auto-phrase;
}
.calendar .sche_btn.active span {
  color: var(--color-select) !important;
}
.calendar .sche_btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0px;
  height: 3px;
  background: var(--color-bg);
  z-index: 1;
}
.calendar li p {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 85%;
  line-height: 1em;
  word-break: auto-phrase;
  transform: translateY(-50%) translateX(-50%);
}
.calendar .saturday span {
  color: var(--color-saturday);
}
.calendar .holiday span {
  color: var(--color-holiday);
}
.tab-spacer {
  height: 8px;
  background: var(--color-bg);
  box-shadow: 0 -3px 3px -1px rgba(0, 0, 0, 0.085);
  position: relative;
  z-index: -1;
}

/*
.calendar .sche_btn.active p,
.calendar .sche_btn.active p span {color: var(--color-tertiary);}
.calendar li:hover p,
.calendar li:hover p span {color: var(--color-tertiary);}
*/
.top-schedule h3,
.schedule h3 {
  line-height: 2;
}

/* view-daily */
#view-daily .tablist-early, #view-daily .tablist-late {
  margin: 10px auto 30px;
}
#view-daily .tablist-early li, #view-daily .tablist-late li {
  width: 50%;
}
#view-daily .early_btn {
  order: -1;
}
#view-daily .late_btn {
  order: 0;
}
#view-daily .tablist-early .early_btn a,
#view-daily .tablist-late .late_btn a {
  cursor: pointer;
  display: inline-block;
  color: var(--color-inactive);
  transition: 0.18s;
}
#view-daily .tablist-early .early_btn a:hover,
#view-daily .tablist-late .late_btn a:hover {
  filter: drop-shadow(0 1px 2px var(--color-overlay));
  transform: translateY(-1px);
}
#view-daily .tablist-early .late_btn, #view-daily .tablist-late .early_btn {
  text-decoration: underline;
}

/* view-weekly */
/*
.simple_pager {
  margin: 10px;
  font-size: 1.4rem;
}
#view-weekly li {margin-bottom: 10px;}
#view-weekly li .overlay a {display: block;}
@media screen and (max-width: 999px){
  #view-weekly li .overlay {
    //width: calc( 100% - 90px );
    border-top: dotted 2px var(--color-border);
  }
  #view-weekly li .overlay > a img {width: 90px;}
  #view-weekly li .overlay figcaption {
    top: 0;left: 90px;
    background: transparent;
  }
  #view-weekly li .overlay figcaption {color: var(--color-common);}
  #view-weekly li .overlay figcaption .name{
    font-size: 125%;font-weight: 700;
  }
}
#view-weekly li .overlay figcaption .name{color: var(--color-primary);}
@media screen and (min-width: 1000px){
  #view-weekly li .overlay {
    width: 14%;height: 14%;
    margin-right: 1%;
    border: solid 1px var(--color-border);
    overflow: hidden;
  }
  #view-weekly li .overlay > a img {padding: 10px 10px 30px;}
  #view-weekly li .overlay .size {
    letter-spacing: -.6px;
  }
  #view-weekly li .overlay .catch_copy {
    height: 1.3em;
    letter-spacing: -.6px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;
  }
}
@media screen and (max-width: 999px){
  #view-weekly li table {
    width: 100%;
    font-size: 80%;
  }
}
@media screen and (min-width: 1000px){
  #view-weekly li table {
    width: calc( 100% - 15% );
  }
}
#view-weekly li table .saturday span {color: var(--color-blue);}
#view-weekly li table .holiday span {color: var(--color-primary);}
#view-weekly li th {
  width: calc( 100% / 7 );
  padding: 3px;
  vertical-align: middle;
  background: rgba(var(--color-border-rgb), .7);
  border: solid 1px var(--color-border);
}
@media screen and (min-width: 1000px){
  #view-weekly li th {
    height: 40px;
  }
}
#view-weekly li td {
  padding: 3px;
  border: solid 1px var(--color-border);
  vertical-align: middle;
}
@media screen and (max-width: 999px){
  #view-weekly li td .sche_off {
    min-height: calc( 1.3em * 3 );
  }
}  */
#view-daily [id^=schedule_day_] {
  position: relative;
  margin-top: -1px;
}
/*
figcaption .live-icon {
  display: none;
}

figcaption.live {
  position: relative;
}
figcaption.live .live-icon {
  display: block;
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 24px;
  height: 24px;
  background: url(/com/temp5/img/icons/live.png) center/contain no-repeat;
  transition: 0.1s;
}
figcaption.live .size {
  padding-right: 2px;
}
*/
/*
@media screen and (max-width: 375px){
  figcaption.live .size {
    padding-right: 16px;
  }
}
@media screen and (min-width: 374px){
  figcaption.live .live-icon {
    right: 2px;
    width: 30px;
    height: 30px;
  }
}
*/
/* chain-store-btn */
.chain-store-btn {
  max-width: 520px;
  margin: 0 auto;padding: 8px;
  background: #34bbd8;
  font-size: clamp(14px, .2rem + 2.5vw, 18px);color: var(--color-white);
  display: block;
}
/* two-column */
@media screen and (max-width: 999px){
  .three-column.castlist li {
    width: calc(calc(100% - 20px) / 3);
    padding: 0 4px 12px;
  }
}
/* one-column */
@media screen and (max-width: 999px){
  .one-column.castlist li {
    padding: 0 1.5% 1.5%;
  }
}
@media screen and (max-width: 767px){
  .one-column.castlist li {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .one-column.castlist li {
    width: calc(calc(100% - 10px) / 2);
  }
}

@media screen and (max-width: 999px){
  .one-column.castlist .newface-icon {
    top: 2%; left: unset; right: 2%;
    font-size: 12px;
  }
  .one-column.castlist figure {
    display: flex;justify-content: space-between;
  }
  .one-column.castlist figure > a {
    width: 34% !important;
  }
  .one-column.castlist figure > a > img {
    height: 100% !important;
    width: 100% !important;
  }
  .one-column.castlist figcaption {
    width: calc(100% - 36%);
    padding-left: 1.5%;
    position: relative;
  }
  .one-column.castlist .catch_copy {
    margin-top: 0;
    text-align: left;
  }
  .one-column.castlist .name {
    margin-top: 0;
    font-size: 16px;text-align: left;color: var(--color-figcaption);
  }
  .one-column.castlist .size {
    font-size: 14px !important;text-align: left;color: var(--color-figcaption);
  }
  .one-column.castlist figcaption .time {
    width: 98%;
    position: absolute;
    left: unset; right: unset; bottom: 0;
  }
  .one-column.castlist .time p:nth-child(2) {
    font-size: 12px;
  }
}

@media screen and (min-width: 1000px){
  .newface-icon { position: relative; }
  .one-column.castlist .catch_copy {
    height: 2.2em;
    font-size: 12px;line-height: 2;
    white-space: nowrap;overflow: hidden;text-overflow: ellipsis;
    border-bottom: solid 1px #000;
  }
}

/* button */
.review, .diary-btn {
  width: 90%;
  margin: 3% auto;
  padding: 2px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  font-size: 14px;
}
.review i,
.diary-btn i {
  margin-right: 0.4em;
  font-size: 14px;
}

.review p {
  display: flex;
  justify-content: center;
  align-items: center;
}
.review span {
  font-weight: bold;
  color: var(--color-primary);
}

.message-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.message-icon::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: url(/com/temp5/img/icons/icon_comment.png) center / contain no-repeat;
}

@media screen and (min-width: 1000px) {
  .sp {
    display: none !important;
  }
}

/* ƒfƒoƒbƒO */
/* .one-column.castlist li {
  display: none !important;
}
.one-column.castlist li.castitem {
  display: unset !important;
}
.pc {
  display: none !important;
} */
