@charset "UTF-8";
:root {
  --main_color_blue: #171c60;
  --main_color: #FEEEED;
  --main_text_color:#66605F;
  --main_accent_color:#FE766E;
  --main-font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  --midashi-font-family:"Lato",Helvetica,Arial,sans-serif;
}

body {
  font-family: "M PLUS Rounded 1c", var(--main-font-family), sans-serif;
  font-size: 16px;
}

h1, h2 {
  font-weight: bold;
}

h3, h4, h5, h6 {
  font-weight: bolder;
}

textarea.fs-16 {
  font-size: 16px;
}

.ff-jost {
  font-family: "Jost", sans-serif;
}

.ff-klee {
  font-family: "Klee One", cursive;
  color: #3E3E3E;
  background: initial;
  -webkit-background-clip: text;
  -webkit-text-fill-color: initial;
}

a {
  color: #3E3E3E;
}

.pc-only {
  display: inline-block;
}

.sp-only {
  display: none;
}

/* スマホ限定 */
@media screen and (max-width: 780px) {
  input, select, textarea {
    font-size: 16px !important;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: inline-block;
  }
}
.table-x-scroll {
  display: block;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

#header {
  position: fixed;
  top: 0;
  height: 80px;
  width: 100vw;
  max-width: 100vw;
  background-color: white;
  z-index: 900;
}
@media screen and (max-width: 750px) {
  #header {
    height: 65px;
  }
}
#header .headerInner {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 84%;
}
@media screen and (max-width: 750px) {
  #header .headerInner {
    width: 92%;
  }
}
#header.size {
  height: 60px;
  background-color: white;
}
#header h1 {
  height: 90%;
  width: auto;
}
#header h1 a {
  height: 100%;
  width: auto;
}
#header h1 a #logo {
  height: 100%;
  width: 175px;
  object-fit: contain;
  transition: 0.5s;
  margin-right: 16px;
}
@media screen and (max-width: 750px) {
  #header h1 a #logo {
    width: 150px;
  }
}
#header + div.container-fluid,
#header #sidebarMenu {
  margin-top: 80px;
}
@media screen and (max-width: 750px) {
  #header .openbtn {
    position: relative;
    background: #83179E;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    /*ボタン内側*/
    /*activeクラスが付与されると
    線と周りのエリアが回転して×になる*/
  }
  #header .openbtn .openbtn-area {
    transition: all 0.4s;
  }
  #header .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 45%;
  }
  #header .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  #header .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  #header .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  #header .openbtn.active .openbtn-area {
    transform: rotateY(-360deg);
  }
  #header .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }
  #header .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  #header .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }
}

#footer {
  text-align: center;
}
#footer.footer_with_side {
  padding-left: 250px;
}
@media screen and (max-width: 750px) {
  #footer.footer_with_side {
    padding-left: initial;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 80px 0 0;
  box-shadow: inset -1px 0 0 rgba(0, 0, 0, 0.1);
  width: 250px;
}
@media (max-width: 767.98px) {
  .sidebar {
    width: initial;
  }
}
.sidebar .nav {
  align-content: center;
}
.sidebar .nav-link {
  font-weight: 500;
  color: #333;
}
.sidebar .nav-link i {
  margin-right: 6px;
}
.sidebar .nav-link .feather {
  margin-right: 4px;
  color: #727272;
}
.sidebar .nav-link .active {
  color: #2470dc;
}
.sidebar .nav-link:hover .feather, .sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: 0.5rem;
  overflow-x: hidden;
  overflow-y: auto;
}

.sidebar-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
}

body h4 {
  font-size: 1rem;
}

main #main_content {
  display: flex;
  flex-direction: column;
  margin-left: 250px;
  margin-top: 1rem;
}
@media (max-width: 767.98px) {
  main #main_content {
    margin-left: initial;
  }
}
main #main_content h1:not(.midashi_waku), main #main_content h2:not(.midashi_waku), main #main_content h3:not(.midashi_waku), main #main_content h4:not(.midashi_waku) {
  font-size: 24px;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  border-left: 0.25rem solid #f1d9ef;
  padding-left: 0.5rem;
}
main #main_content h1.midashi_waku, main #main_content h2.midashi_waku, main #main_content h3.midashi_waku, main #main_content h4.midashi_waku {
  font-size: 24px;
  boder-left: initial;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 0.5em 0.75em;
  background-color: #f6f6f6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  color: #3E3E3E;
}
main #main_content h3 {
  font-size: 20px;
}
main #main_content h4 {
  font-size: 18px;
}
main #main_content .d-flex.flex-table {
  flex-direction: column;
}
main #main_content .d-flex.flex-table .f-tr {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
@media (max-width: 767.98px) {
  main #main_content .d-flex.flex-table .f-tr {
    align-items: center;
  }
}
main #main_content .d-flex.flex-table .f-th {
  font-size: 110%;
  font-weight: bold;
  width: 30%;
  border-bottom: 1px solid #f1d9ef;
  margin-bottom: 3px;
}
@media (max-width: 767.98px) {
  main #main_content .d-flex.flex-table .f-th {
    width: 100%;
  }
}
main #main_content .d-flex.flex-table .f-td {
  padding-left: 1rem;
  margin-bottom: 6px;
}

#mv {
  background-image: url("/img/hp/serina.jpg");
  background-size: cover;
  height: 50vh;
}
#mv #mv_div {
  position: relative;
  top: 45%;
}
#mv #mv_t1, #mv #mv_t3 {
  font-size: 24px;
}
@media screen and (max-width: 750px) {
  #mv {
    height: 50vh;
  }
  #mv #mv_div {
    top: 30%;
  }
  #mv #mv_t1, #mv #mv_t3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 750px) {
  #mission {
    font-size: 30px;
  }
}
table > caption {
  caption-side: top;
  font-size: 24px;
}

#movieListTable {
  table-layout: fixed;
}
#movieListTable tr {
  font-size: 16px;
}
#movieListTable td {
  font-size: 14px;
}
#movieListTable td.movieDescription {
  max-width: 400px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#top_logo {
  max-width: 100%;
  max-height: 70vh;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

#global_header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  margin-top: 0 !important;
  padding: 10px 10vw;
  display: inline-block;
  background: white;
}

#yumeterasu {
  background-color: rgba(255, 249, 172, 0.2);
}
#yumeterasu div.container {
  background-color: white;
}

/*# sourceMappingURL=style.css.map */
