@charset "Shift_JIS";
:root {
  --color-common: #000;
  --color-txt: #2b2b2b; /* text */
  --color-headline: #fff; /* h2 */
  --bg-headline: url("../../temp5/img/h2_bg.webp");
  --color-sub-title: #01abf5;
  --color-bg: #f8f8f8;
  --color-primary: #00a6d3;
  --color-secondary: #e884ac;
  --color-tertiary: #608cdd;
  --color-inactive: #a0a0a0;
  --color-white: #fff;
  --color-gray: #a0a0a0;
  --color-red: #f00;
  --color-blue: #0054ff;
  --color-beige: #c8a063;
  --color-header: #87daf0;
  --color-footer: #f6658f;
  --color-menu-txt: #fff;
  --color-border: #ccc;
  --color-form: #e884ac;
  --color-border-rgb: 225, 225, 225;
  --color-active: #ffa5a7;
  --color-overlay: rgba( 0, 0, 0, .5);
  --color-btn-a: #3ec4e7;
  --color-btn-b: #f6658f;
  --color-btn-c: #a1ed9b;
  /* GoogleMap{^p */
  --color-btn-g: #79a8f8;
  --color-btn-w: #fff;
  --color-system-h3: #3ec4e7;
  --color-system-a: #42AFCB;
  --color-system-b: #2f5191;
  --color-system-c: #B3DFEE;
  --color-system-d: #81CCD4;
  --color-system-txt-row: #fff;
  --color-system-txt-column: #000;
  --color-index-primary: #3ec4e7;
  --color-index-secondary: #f6658f;
  --color-saturday: #0054ff;
  --color-holiday: #f00;
  --color-select: #29aee0;
  --txt-fonts-sans: "Noto Sans JP", "qMmpS Pro W3", "Hiragino Kaku Gothic Pro", "CI", Meiryo, Osaka, "lr oSVbN", "MS PGothic", sans-serif;
  --txt-fonts-serif: "Noto Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --profile-bg-img: url("../../temp5/img/profile/profile_line.svg");
  --castlist-bg: linear-gradient(180deg, #cfe2ff, #d9d9d9);
}

html {
  scroll-behavior: smooth;
  font-size: 10px;
}

/* common */
body {
  width: 100%;
  background: var(--color-bg);
  font-family: var(--txt-fonts-sans);
}
body > div {
  background: url("/com/temp5/img/bg_main.webp");
}

.serif {
  font-family: var(--txt-fonts-serif);
  font-optical-sizing: auto;
}

.spbr {
  display: block;
}

.desable-pc {
  display: none;
}

.desable-sp {
  display: block;
}
main section:last-of-type {
  margin-bottom: 60px;
}

.shadow {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
}

/* font */
body {
  font-size: 1.4em;
  line-height: 1.3;
  color: var(--color-txt);
}

a {
  color: var(--color-txt);
}

.section-header {
  position: relative;
  height: 120px;
  font-family: var(--txt-fonts-sans);
}
.section-header .section-title,
.section-header .sub-title {
  z-index: 1;
}

.section-header-inner {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 74px;
  background: var(--color-headline) var(--bg-headline);
  z-index: 1;
  transform: translateY(-50%);
}

.section-title {
  margin-bottom: 2px;
  color: var(--color-white);
  font-size: 2.5rem;
}

.sub-title {
  display: block;
  color: var(--color-white);
  font-size: 1.75rem;
}

aside section:not(:first-of-type) .section-header {
  height: 120px;
}

/* more */
/*
.section-title .more {
  position: absolute;top: 50%;right: .8em;
  transform: translateY(-50%);
}
.section-title .more a {color: var(--color-tertiary);text-indent: .4em;}
*/
/* accordion */
/*
@media screen and (max-width: 999px){
  h2.toggle-btn{cursor: pointer;pointer-events: all;}
  h2.toggle-btn span {position: absolute;right: 1em;}
  h2.toggle-btn.active span i {transform: scaleY(-1);}
  .toggle{display: none;}
}
@media screen and (min-width: 1000px){
  h2.toggle-btn {pointer-events: none;}
  .toggle{display: block;}
}
*/
.light-bold {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.small {
  font-size: 85.75%;
}

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

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.indent {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.radius {
  border-radius: 4px;
}

/* link
.link-btn a {
  width: 11em;max-width: 200px;
  margin: 20px auto;padding: 1em;
  text-align: center;color: var(--color-txt);
  background: #c3b173;
  display: block;
  -webkit-transition: all .3s ease;transition: all .3s ease;
}
@media screen and (min-width: 1000px){
  .link-btn a {font-size: 16px;}
}
.link-btn a:hover{
  color: #c3b173;
  background: var(--color-txt);
}*/
/* flex */
.flex {
  display: flex !important;
}

.flex.wrap {
  flex-wrap: wrap;
}

.flex.center {
  justify-content: center;
}

.flex.between {
  justify-content: space-between;
}

.flex.around {
  justify-content: space-around;
}

.flex.start {
  justify-content: flex-start;
}
/* hidden */
/* main-visual */
.main-visual {
  position: relative;
  width: 100%;
  max-width: 60vh;
  margin: 0 auto;
}
.main-visual .slick-dots li:only-child {
  display: none;
}
.main-visual .slick-dots li button {
  color: transparent;
}
.main-visual .slick-dots li button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 9px;
  width: 9px;
  background: #000;
  border-radius: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

.main-visual::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}

.main-visual a {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}

.slick-list {
  position: absolute !important;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.slick-track {
  height: 100%;
}
/* header */
header.top-header {
  margin: 20px auto 30px;
}

.top-pr {
  max-width: 640px;
  margin: 0 auto;
}

/* section */
/* event */
.top-event li {
  margin-bottom: 10px;
  border: solid 3px var(--color-secondary);
}

/* aside */
.diary iframe {
  border: solid 1px #f0f0f0;
  border-right: none;
}
.aside-list li {
  padding: 3px;
}

.aside-list li:not(:last-of-type) {
  border-bottom: dotted 2px var(--color-common);
}

.aside-list a {
  color: var(--color-primary);
}

.aside-list a:hover {
  color: var(--color-secondary);
}

.aside-content.top-concept dl {
  text-align: left;
}
.aside-content.top-concept dl p {
  line-height: 1.25;
  margin-bottom: 0.5em;
}
.aside-content.top-concept dl p:last-child {
  margin-bottom: 0;
}

/*
.aside-content.event .thumb {
  width: 80px;height: auto;max-height: 120px;
  overflow: hidden;
}
.aside-content.event li > div {
  width: calc( 100% - 80px);
  padding-left: 3px;
}
*/
/* top-concept */
.top-concept dl {
  padding-top: 20px;
}

.top-concept dt {
  color: var(--color-sub-title);
}

.top-concept dd {
  margin-top: 10px;
}

/* shop */
.shop-news {
  margin-bottom: 10px;
}

.shop-news p:not(:first-of-type),
.shop-data p:not(:first-of-type) {
  margin-top: 5px;
}

.shop-news-title {
  padding-bottom: 0.1em;
  font-size: 120%;
  border-bottom: dashed 1px var(--color-border);
}

.shop-data-name {
  font-size: 120%;
}
.shop-data i {
  margin-right: 0.2em;
  font-weight: normal;
  font-size: 140%;
  vertical-align: middle;
}

/* copy btn */
.address-display {
  padding-bottom: 6px;
}

input#address {
  width: 100%;
  line-height: 2em;
}

aside input#address {
  position: absolute;
  visibility: hidden;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.shop-data-address {
  overflow: hidden;
}

.shop-data-address button {
  margin-right: 2px;
  background-color: var(--color-btn-c);
  float: right;
}

/* group-bnr */
.group-bnr {
  width: 96%;
  margin: 10px auto 0;
  gap: 6px;
}
.group-bnr li {
  width: calc((100% - 6px) / 2);
}
/* topics */
main .topics {
  margin-top: 20px;
}

main .topics li {
  padding: 0.4em;
  border-bottom: solid 1px var(--color-border);
}
main .topics .thumb {
  width: 5em;
  height: auto;
}
main .topics .thumb img {
  width: 100%;
  object-fit: cover;
}

main .topics .title {
  font-size: 120%;
  color: var(--color-primary);
}

main .topics .more {
  margin-top: 1em;
  color: var(--color-primary);
}

/* bottom menu */
.bottom-menu {
  width: 100%;
  height: 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.bottom-menu > ul {
  height: 50px;
  background: var(--color-footer);
  position: relative;
  z-index: 9999;
}

.bottom-menu > ul li {
  width: 20%;
  max-width: 130px;
}

.bottom-menu > ul li a {
  width: 60px;
  margin: 0 auto;
  padding-top: 34px;
  padding-bottom: 6px;
  font-size: 10px;
  line-height: 1;
  color: var(--color-menu-txt);
  display: block;
}

.bottom-menu > ul li.cast a {
  background: url("../../temp5/img/nav/cast-icon.svg") no-repeat;
  background-position: 50% 8px;
  background-size: auto 22px;
}

.bottom-menu > ul li.schedule a {
  background: url("../../temp5/img/nav/schedule-icon.svg") no-repeat;
  background-position: 50% 8px;
  background-size: auto 22px;
}

.bottom-menu > ul li.net a {
  background: url("../../temp5/img/nav/net-icon.svg") no-repeat;
  background-position: 50% 8px;
  background-size: auto 22px;
}

.bottom-menu > ul li.tel a {
  background: url("../../temp5/img/nav/tel-icon.svg") no-repeat;
  background-position: 50% 8px;
  background-size: auto 22px;
}

/*
.bottom-menu > ul a {
  height: 50px;
  line-height: 50px;color: var(--color-white);
  display: block;
}*/
.hamburger {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 10px;
  left: 0;
  z-index: 9999;
  cursor: pointer;
}

.hamburger span {
  width: 45%;
  height: 3px;
  position: absolute;
  left: 14px;
  display: inline-block;
  transition: all 0.3s;
  border-radius: 2px;
  background: var(--color-menu-txt);
}

.hamburger span:nth-of-type(1) {
  top: 15px;
}

.hamburger span:nth-of-type(2) {
  top: 23px;
}

.hamburger span:nth-of-type(3) {
  top: 31px;
}

.hamburger.active span:nth-of-type(1) {
  width: 30%;
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:nth-of-type(3) {
  width: 30%;
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
}

.hamburger {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.nav-close {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 10px;
  right: 0;
  z-index: 9999;
  cursor: pointer;
  background: transparent;
}

.nav-close span {
  width: 45%;
  height: 3px;
  position: absolute;
  left: 14px;
  display: inline-block;
  border-radius: 2px;
  background: var(--color-menu-txt);
}

.nav-close span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
}

.nav-close span:nth-of-type(2) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
}

#gnav {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: rgba(221, 240, 246, 0.95);
  transform: translateY(1000%);
  transition: all 0.3s;
}

#gnav .gnav-inner {
  position: fixed;
  left: 50%;
  width: 100%;
  max-width: 650px;
  height: calc(100vh - 50px);
  padding: 0 1.5%;
  overflow: auto;
  transform: translate(-50%, 0);
  backdrop-filter: blur(1px);
  z-index: 9999;
}

#gnav .gnav-inner ul {
  width: 100%;
  margin-top: 24px;
  gap: 10px 8px;
}

#gnav .gnav-inner ul:first-of-type {
  margin-top: 68px;
}

#gnav .gnav-inner li {
  width: calc((100% - 8px) / 2);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

#gnav .gnav-inner ul li {
  box-shadow: 0 0 3px 0px rgba(0, 0, 0, 0.5);
}
#gnav .gnav-inner ul li a {
  display: flex !important;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  width: 100%;
}

#gnav .gnav-inner ul:nth-of-type(2) li,
#gnav .gnav-inner ul:nth-of-type(3) li {
  height: 40px;
  position: relative;
  overflow: hidden;
}

#gnav .gnav-inner ul:nth-of-type(2) li a,
#gnav .gnav-inner ul:nth-of-type(3) li a {
  width: 100%;
  height: 40px;
  padding: 6px;
  display: block;
  border-radius: 3px;
  line-height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

#gnav .gnav-inner ul:nth-of-type(2) li a {
  background: rgba(255, 255, 255, 0.8);
}

#gnav .gnav-inner ul:nth-of-type(3) li {
  height: 52px;
}

#gnav .gnav-inner ul:nth-of-type(3) li a {
  height: 52px;
  background: var(--color-btn-a);
  color: var(--color-white);
  filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.5));
}

#gnav .gnav-inner ul li a::after {
  content: attr(title);
  display: block;
  font-size: 80%;
}

#gnav .gnav-inner ul:nth-of-type(3) li:last-child a::after {
  content: none;
  display: none;
}
#gnav .gnav-inner ul:nth-of-type(3) li:last-child a img {
  height: 36px;
  width: auto;
}

#gnav.active {
  opacity: 100;
  display: block;
  transform: translateY(0%);
}

/* footer */
footer {
  width: 100%;
  margin-top: 40px;
}

.sns ul {
  padding: 8px 1em;
  align-items: center;
  background: rgba(255, 165, 167, 0.3098039216);
}

.sns li {
  width: 40px;
  margin: 8px;
}

footer .copy {
  padding: 20px 10px 60px;
  align-items: center;
}

footer .copy p {
  width: 100%;
}

.profile .slick-list {
  position: relative !important;
  overflow: hidden;
}

.profile .slick-slider .slick-track {
  position: absolute;
  top: 0;
  bottom: 0;
}

/*  */
.proviso {
  display: block;
  margin-left: 1em;
  text-indent: -1em;
}

/* photo-list */
.photo-list .slick-list::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 150%;
}

.photo-list .slick-track {
  position: absolute;
}

.tel-icon {
  width: 13px;
  margin-right: 4px;
}

.txt-link {
  margin: 0 0.4em;
  text-decoration: underline;
  color: var(--color-primary);
}

@media screen and (max-width: 999px){
  .desable-pc {
    display: block;
  }
  .desable-sp {
    display: none;
  }
  body > div {
    overflow-x: hidden;
  }
  main section:last-of-type {
    margin-bottom: 20px;
  }
  .section-header-inner {
    height: 60px;
  }
  .section-title {
    font-size: 2.4rem;
  }
  .sub-title {
    font-size: 1.5rem;
  }
  .hidden_lt-1000 {
    display: none !important;
  }
  .top-concept dl {
    padding-left: 12px;
    padding-right: 12px;
  }
  .shop-data dt {
    padding: 6px;
    background: #f1f1f1;
  }
  .shop-data dd {
    padding: 6px;
  }
  .shop-data-map a,
  .shop-data-tel a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 480px;
    height: 3em;
    margin: 0 auto;
    color: var(--color-white);
    line-height: 3em;
    font-weight: 700;
    background: var(--color-tertiary);
    border: solid 1px var(--color-tertiary);
    border-radius: 3px;
  }
  main .topics li:first-of-type {
    border-top: solid 1px var(--color-border);
  }
  main .topics .thumb {
    width: 4em;
    height: auto;
    max-height: 90px;
  }
  main .topics li div {
    width: calc(100% - 4em);
    padding-left: 0.4em;
  }
  main .topics .text {
    height: 2.6em;
    overflow: hidden;
  }
  #gnav .gnav-inner ul:nth-of-type(3) li {
    height: 60px;
  }
  #gnav .gnav-inner ul:nth-of-type(3) li a {
    height: 60px;
    padding: 10px;
  }
}

@media screen and (min-width: 1000px){
  .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
  main {
    width: 790px;
    margin-right: 10px;
  }
  aside {
    width: 300px;
  }
  .spbr {
    display: inline;
  }
  .flex_ge-1000 {
    display: flex !important;
  }
  .flex_ge-1000.wrap {
    flex-wrap: wrap;
  }
  .flex_ge-1000.center {
    justify-content: center;
  }
  .flex_ge-1000.between {
    justify-content: space-between;
  }
  .flex_ge-1000.around {
    justify-content: space-around;
  }
  .flex_ge-1000.start {
    justify-content: flex-start;
  }
  .hidden_ge-1000 {
    display: none !important;
  }
  .main-visual {
    width: 100%;
    max-width: 1100px;
  }
  .main-visual::before {
    padding-top: 56.25%;
  }
  .main-visual a {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
  }
  .diary iframe {
    height: 550px !important;
  }
  .shop-data dl {
    padding: 2px 0;
  }
  .shop-data dd {
    padding: 4px 0;
  }
  .shop-data-map a {
    color: var(--color-blue);
  }
  .shop-data-map a::before {
    content: "[";
    padding-right: 2px;
  }
  .shop-data-map a::after {
    content: "]";
    padding-left: 2px;
  }
  .group-bnr {
    width: 100%;
  }
  .group-bnr li {
    width: 100%;
  }
  main .topics li {
    width: 50%;
  }
  main .topics li:first-of-type,
  main .topics li:nth-of-type(2) {
    border-top: solid 1px var(--color-border);
  }
  main .topics li:nth-of-type(odd) {
    border-left: solid 1px var(--color-border);
    border-right: solid 1px var(--color-border);
  }
  main .topics li:nth-of-type(even) {
    border-right: solid 1px var(--color-border);
  }
  main .topics .thumb {
    width: 5em;
    height: auto;
  }
  main .topics li div {
    width: calc(100% - 5em);
    padding-left: 0.4em;
  }
}