@charset "UTF-8";
/* Eric Meyer's Reset CSS v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*theme--------------------------*/
/*-------------------------------*/
/*breakpointes-------------------*/
/*-------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-size: 16px;
  background-image: url(img/bg.jpg);
  background-size: 300px;
  color: #000;
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
  font-family: sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.7;
  }
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img, picture {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

.main_side {
  margin-left: 300px;
}
@media screen and (max-width: 768px) {
  .main_side {
    margin-left: 0;
  }
}

.old-school-button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(to bottom, #0099ff 0%, #0066cc 100%);
  border: 10px double #ffff00;
  border-radius: 12px; /* ← ここが角丸 */
  color: #ffff00;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  text-shadow: 1px 1px 0 #000;
  transition: transform 0.1s ease;
  margin-bottom: 20px;
}

.old-school-button:hover {
  background: linear-gradient(to bottom, #00ccff 0%, #0077ee 100%);
  transform: scale(1.05);
}

/* Webkit系ブラウザ用（Chrome, Edge, Safari） */
body::-webkit-scrollbar {
  width: 16px;
  background-color: #e0e0e0; /* トラックの背景 */
}

body::-webkit-scrollbar-thumb {
  background-color: #c0c0c0; /* 親指の色 */
  border: 2px solid #f0f0f0; /* 親指に縁をつけて立体感 */
  border-radius: 2px;
}

body::-webkit-scrollbar-track {
  background-color: #f0f0f0; /* トラックの色 */
  border-left: 1px solid #ccc;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a0;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.br-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

.section_default .section_inner {
  background-color: rgba(255, 255, 255, 0.6);
}
.section_default .section_inner .section_main {
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .section_default .section_inner .section_main {
    padding: 10px;
  }
}
.section_default .section_inner .section_main h2 {
  font-size: 2em;
  color: #0000FF;
  font-weight: 700;
  font-style: italic;
}
.section_default .section_inner .section_main h3 {
  font-size: 1.5em;
  font-weight: 700;
}
.section_default .section_inner .section_main .strong {
  font-weight: 700;
  color: #0000FF;
  text-decoration: underline;
}
.section_default .section_inner .section_main .strong-b {
  font-weight: 700;
  text-decoration: underline;
}
.section_default .section_inner .section_main .font-s {
  font-size: 0.8em;
  color: #0000FF;
}
.section_default .section_inner .section_main ul {
  margin-bottom: 2em;
}
.section_default .section_inner .section_main ul li {
  margin-bottom: 0.5em;
}

#column .section_inner .section_main p {
  text-align: left;
  margin-bottom: 0.5em;
}
#column .section_inner .section_main p.ryaku {
  text-align: center;
  color: #0000FF;
}
#column .section_inner .section_main p.hoso {
  text-align: center;
  color: #0000FF;
  font-weight: 700;
  text-decoration: underline;
}

/*fixed_bg------------------------*/
/*-------------------------------*/
/*loading------------------------*/
.loading {
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100lvh;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loadeing_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading .loadeing_inner .loader {
  animation: loadingFlash 1s infinite;
}
.loading .loader {
  width: 50px;
  --b: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(rgba(0, 0, 0, 0) 10%, #0000FF) content-box;
  -webkit-mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0deg, #000 1deg 20deg, rgba(0, 0, 0, 0) 21deg 36deg), radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - var(--b) - 1px), #000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: l4 1s infinite steps(10);
}
@keyframes l4 {
  to {
    transform: rotate(1turn);
  }
}

/*-------------------------------*/
/*trailer------------------------*/
#trailer {
  padding: 80px 50px;
  background-color: #000;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  #trailer {
    padding: 60px 0 80px;
  }
}
#trailer h2 {
  text-align: center;
  color: #fff;
}
#trailer .section_inner {
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #trailer .section_inner {
    max-width: 500px;
  }
}
#trailer .section_inner .section_main {
  margin: 0 auto;
  width: 100%;
}
#trailer .section_inner .section_main .youtube_embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 5px;
}
#trailer .section_inner .section_main .youtube_embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-------------------------------*/
/*sharebtn-----------------------*/
.shares {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .shares {
    flex-direction: column;
  }
}

.share_btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1;
  box-sizing: border-box;
}
.share_btns li {
  height: 22px;
  overflow: hidden;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 2px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share_btns li img {
  height: 20px;
  width: auto;
}

.share_btns-square {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .share_btns-square {
    margin-bottom: 10px;
  }
}
.share_btns-square::before {
  content: "Share:";
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  padding-right: 6.5px;
}
.share_btns-square li {
  cursor: pointer;
  margin: 0 10px 0px;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .share_btns-square li {
    margin: 0 10px 10px;
  }
}

/*-------------------------------*/
/*noiseOverlay-------------------*/
/*-------------------------------*/
/*-------------------------------*/
/*-------------------------------*/
.blink {
  animation: blink-animation 2s steps(1, start) infinite;
  color: red;
  font-weight: bold;
}

@keyframes blink-animation {
  0%, 50%, 100% {
    visibility: visible;
  }
  25%, 75% {
    visibility: hidden;
  }
}
/*-inview------------------------*/
.fadeIn {
  opacity: 0;
  transition: 1s;
}
.fadeIn.is-inview {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transition: 1s;
  transform: translateY(10px);
}
.fadeInUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.fadeInDown {
  opacity: 0;
  transition: 1s;
  transform: translateY(-10px);
}
.fadeInDown.is-inview {
  transform: translateY(0);
  opacity: 1;
}

.fadeInLeft {
  opacity: 0;
  transition: 1s;
  transform: translateX(-10px);
}
.fadeInLeft.is-inview {
  transform: translateX(0);
  opacity: 1;
}

.fadeInRight {
  opacity: 0;
  transition: 1s;
  transform: translateX(10px);
}
.fadeInRight.is-inview {
  transform: translateX(0);
  opacity: 1;
}

.blurUp {
  opacity: 0;
  transition: 1s;
  filter: blur(10px);
}
.blurUp.is-inview {
  filter: blur(0px);
  opacity: 1;
}

.clipInUp {
  clip-path: inset(100% 0 0 0);
  transition: 1s;
}
.clipInUp.is-inview {
  clip-path: inset(0);
}

.clipInDown {
  clip-path: inset(0 0 100% 0);
  transition: 1s;
}
.clipInDown.is-inview {
  clip-path: inset(0);
}

.clipInLeft {
  clip-path: inset(0 100% 0 0);
  transition: 1s;
}
.clipInLeft.is-inview {
  clip-path: inset(0);
}

.clipInRight {
  clip-path: inset(0 0 0 100%);
  transition: 1s;
}
.clipInRight.is-inview {
  clip-path: inset(0);
}

.scaleDown {
  transform: scale(1.1);
  transition: 1s;
  opacity: 0;
}
.scaleDown.is-inview {
  opacity: 1;
  transform: scale(1);
}

.scaleDownImg {
  overflow: hidden;
}
.scaleDownImg img {
  transform: scale(1.1);
  transition: 2s;
  opacity: 0;
}
.scaleDownImg.is-inview img {
  opacity: 1;
  transform: scale(1);
}

/*-------------------------------*/
.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.delay6 {
  transition-delay: 0.6s;
}

.delay7 {
  transition-delay: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

/*-------------------------------*/
/*nav----------------------------*/
.nav_btn {
  z-index: 104;
  display: none;
}
@media screen and (max-width: 768px) {
  .nav_btn {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background-color: #0000FF;
  }
  .nav_btn span {
    position: absolute;
    height: 2px;
    width: 25px;
    background-color: #fff;
    display: block;
    top: 18px;
    left: 18px;
  }
  .nav_btn span:nth-of-type(2) {
    top: 28px;
  }
  .nav_btn span:last-of-type {
    top: 38px;
  }
}
.nav_btn.show span:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
  transform-origin: center;
}
.nav_btn.show span:nth-of-type(2) {
  transform: translateY(-2px) rotate(-45deg);
  transform-origin: center;
}
.nav_btn.show span:last-of-type {
  opacity: 0;
  transform: scale(0);
}

.nav_list {
  z-index: 102;
  position: fixed;
  width: 300px;
  left: 0;
  top: 0;
  height: 100%;
  overflow: scroll;
  text-align: center;
  padding: 80px 20px;
  background-color: #F1F1F1;
  border-right: 4px ridge #CCC;
}
@media screen and (max-width: 768px) {
  .nav_list {
    overflow: auto;
    padding: 60px 20px 120px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
  }
  .nav_list.show {
    pointer-events: unset;
    opacity: 1;
  }
}
.nav_list a, .nav_list .menu-title {
  height: 50px;
  line-height: 50px;
  padding: 0 0.5em;
  color: #FFF;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .nav_list a, .nav_list .menu-title {
    height: 60px;
    line-height: 60px;
  }
}
.nav_list a span, .nav_list .menu-title span {
  letter-spacing: 0.1em;
  transition: 0.3s;
}
.nav_list a.nav_theater, .nav_list .menu-title.nav_theater {
  padding: 0 2em;
  background-color: #FFF;
  margin-left: 0.5em;
  color: #3a3a3a;
}
@media screen and (max-width: 768px) {
  .nav_list a.nav_theater, .nav_list .menu-title.nav_theater {
    margin-top: 0.5em;
    margin-left: 0;
  }
}
.nav_list a:hover span, .nav_list .menu-title:hover span {
  opacity: 0.6;
}

.nav_top {
  z-index: 101;
  position: fixed;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 10px;
  right: 10px;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.nav_top span {
  font-size: 14px;
  color: #000;
  transform: scale(1, 0.5);
  display: block;
}
.nav_top.active {
  transform: translateY(0px);
  opacity: 1;
}

/*-------------------------------*/
#top {
  padding: 120px 0px 100px;
}
@media screen and (max-width: 768px) {
  #top {
    padding: 80px 0 0px;
  }
}
#top .senkou {
  margin-bottom: 20px;
}
#top .btn_theater {
  display: block;
  max-width: 320px;
  width: 80%;
  margin: 0 auto 20px;
}
#top .text_feel {
  width: 100%;
  max-width: 700px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #top .text_feel {
    width: 529px;
  }
}
#top .counter {
  color: #000;
  text-shadow: 1px 1px 0 #aaa;
  margin-bottom: 40px;
  width: 100%;
}
#top .counter img {
  width: 25px;
}
#top .text_offi {
  max-width: 544px;
  width: 90%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  #top .text_offi {
    margin-bottom: 20px;
  }
}
#top h1 {
  margin: 0 auto 30px;
  max-width: 900px;
  width: 100%;
  box-shadow: 8px 8px 0 #999;
}
@media screen and (max-width: 768px) {
  #top h1 {
    width: 98%;
  }
}
#top .text_direc {
  max-width: 450px;
  width: 80%;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  #top .text_direc {
    margin-bottom: 30px;
  }
}
#top .release {
  width: 90%;
  margin: 0 auto 20px;
  max-width: 670px;
}
@media screen and (max-width: 768px) {
  #top .release {
    margin-bottom: 10px;
  }
}
#top .release-text {
  color: #0000FF;
  text-shadow: 2px 2px 0 #aaa;
  text-decoration: underline;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 20px;
}
#top .main-kv {
  max-width: 600px;
  margin: 0 auto 20px;
  width: 90%;
  border: 2px solid #000;
  background-color: #ccc;
  padding: 8px;
  box-shadow: 6px 6px 0 #333;
}
#top .major {
  display: block;
  border: 2px solid #000;
  width: 90%;
  margin: 0 auto 20px;
  border: 3px ridge #00f;
  max-width: 700px;
}
#top .major:hover {
  filter: hue-rotate(20deg);
}
#top .video {
  border: 6px double #00f;
  margin-bottom: 10px;
  display: block;
}

#info {
  padding: 40px 20px 80px;
  width: calc(100% - 100px);
  margin: 0 auto;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  #info {
    width: calc(100% - 40px);
    padding: 40px 20px;
  }
}
#info .additional_title {
  text-align: center;
  margin-top: 30px;
  letter-spacing: 0.25em;
  font-size: 1.1em;
}
#info .additional {
  display: flex;
  max-width: 900px;
  justify-content: center;
  margin: 20px auto 0px;
  gap: 20px;
  flex-wrap: wrap;
}
#info .additional li {
  width: calc(50% - 10px);
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  #info .additional li {
    width: 100%;
  }
}
#info .additional li:hover {
  filter: grayscale(100%) brightness(140%);
}
#info .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
#info .btns div {
  margin: 0 20px 10px;
  position: relative;
  max-width: 60px;
  width: 100%;
}
#info .btns div a {
  overflow: hidden;
  position: relative;
  margin: 0 auto 0px;
  display: block;
  max-width: 240px;
  width: 100%;
}
#info .btns div a:hover {
  filter: brightness(130%);
}

#comment .section_main {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  width: 100%;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #comment .section_main {
    padding: 0 10px;
    flex-direction: column;
  }
}
#comment .section_main .img_com {
  width: 40%;
  padding-right: 40px;
  background-color: #eef;
  padding: 1px;
  box-shadow: 3px 3px 0 #333;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #comment .section_main .img_com {
    width: 90%;
    padding-right: 0;
    margin: 0 auto 20px;
  }
}
#comment .section_main .text_com {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #comment .section_main .text_com {
    width: 100%;
  }
}
#comment .section_main .text_com h3 {
  margin-bottom: 10px;
}
#comment .section_main .text_com .text_body {
  margin-bottom: 1em;
}
#comment .section_main .text_com .text_body span.kuro {
  width: 2.5em;
  height: 1em;
  display: inline-block;
  background-color: #000;
}
#comment .section_main .text_com .text_body:last-of-type {
  margin-bottom: 0;
}
#comment .section_main .text_com .text_body .by {
  color: #0000FF;
  text-decoration: underline;
  margin-top: 0.5em;
  font-style: italic;
}

#etc {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  #etc {
    padding: 60px 30px;
  }
}
#etc .section_main {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #etc .section_main {
    flex-direction: column;
  }
}
#etc .section_main .img_bnr {
  width: 387px;
}
@media screen and (max-width: 768px) {
  #etc .section_main .img_bnr {
    max-width: 387px;
    width: 100%;
    margin-bottom: 20px;
  }
}
#etc .section_main .text_body {
  width: calc(100% - 387px);
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  #etc .section_main .text_body {
    width: 100%;
    padding-left: 0;
  }
}
#etc .section_main .text_body h4 {
  width: 148px;
  margin-bottom: 10px;
}
#etc .section_main .text_body p {
  text-align: left;
}/*# sourceMappingURL=style.css.map */