@charset "UTF-8";

/* ////////////////////////////////////////

      main.css

/////////////////////////////////////////// */

/* :::::::::::::::::::::::::::::::::::
    common
:::::::::::::::::::::::::::::::::::::: */
/*
  common__color
:::::::::::::::::::::::::::::::::::::: */
:root {
  --cl__white: #fff;
  --cl__black: #231e1d;
  --cl__beige: #fffdf7;
  --cl__d-brown: #3d3534;
  --cl__brown: #b19a8e;
  --cl__red: #fe6844;
}
/*
   common__font
:::::::::::::::::::::::::::::::::::::: */
/*
   common__element
:::::::::::::::::::::::::::::::::::::: */
/*
  general
-------------------------------------- */
*,
::before,
::after {
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  font-family: "Shippori Mincho", serif;
  min-width: 1300px;
  height: 100%;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--cl__black);
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  vertical-align: middle;
}
p {
  font-size: 1.1rem;
  line-height: 1.8;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}
video {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--cl__black);
  text-decoration: none;
  caret-color: transparent;
  transition: all 0.4s ease;
}
a:is(:hover, :active) {
  text-decoration: none;
  opacity: 0.7;
}
ul,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
iframe {
  border: none;
  margin: 0 auto;
  display: block;
}
i {
  font-style: normal;
}
address {
  font-style: normal;
}
@media (width > 769px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/*
  common__operation
:::::::::::::::::::::::::::::::::::::: */
.pc-only {
  display: block !important;
}
.sp-only {
  display: none !important;
}
/*
  common__heading
:::::::::::::::::::::::::::::::::::::: */
.cmn__ttl-02 {
  border-bottom: solid 1px var(--cl__d-brown);
  text-align: center;
}
.cmn__ttl-02::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 30px;
  border-top: solid 1px var(--cl__d-brown);
}
.cmn__ttl-02 img {
  max-width: 80px;
  margin-left: -10px;
  margin-right: 15px;
}
/*
   common__layout
:::::::::::::::::::::::::::::::::::::: */
.cmn__inner {
  width: min(100%, 1000px);
  margin: auto;
}
.cmn__align-c {
  text-align: center;
}
.cmn__align-l {
  text-align: left;
}
[class$="__block"] {
  padding-top: 30px;
  background-color: var(--cl__beige);
}
.cmn__overflow-hidden {
  overflow: hidden;
}
/*
  flex-BOX
-------------------------------------- */
.cmn__flex-container {
  display: flex;
  justify-content: flex-start;
}
.cmn__flex-between {
  display: flex;
  justify-content: space-between;
}
.cmn__flex-around {
  display: flex;
  justify-content: space-around;
}
.cmn__flex-center {
  display: flex;
  justify-content: center;
}
.cmn__flex-end {
  display: flex;
  justify-content: flex-end;
}
/*
    __block * common
-------------------------------------- */
.cmn__photo-area {
  flex-basis: 70%;
  margin: 0;
  padding: 30px 0;
  border-right: solid 1px var(--cl__d-brown);
  font-size: 120%;
  text-align: center;
}
.cmn__photo-area img {
  max-width: 600px;
  box-shadow: 3px 3px 5px var(--cl__brown);
}
.cmn__text-area {
  flex-basis: 30%;
  display: grid;
  place-items: center;
  height: 380px;
  padding-top: 35px;
  font-size: 120%;
  font-weight: 500;
  line-height: 2.5;
}
.cmn__text-bottom {
  padding: 30px 40px;
  background-color: var(--cl__d-brown);
  color: var(--cl__white);
}
/*
   common__space
:::::::::::::::::::::::::::::::::::::: */
.mar-top10 {
  margin-top: 10px;
}
.mar-top20 {
  margin-top: 20px;
}
.mar-bt10 {
  margin-bottom: 10px;
}
.mar-bt20 {
  margin-bottom: 20px;
}
/*
   common__button & link
:::::::::::::::::::::::::::::::::::::: */
/*
   common__text
:::::::::::::::::::::::::::::::::::::: */
.cmn__text-rl {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
}
.cmn__align-c {
  text-align: center;
}
/*
   common__deco
:::::::::::::::::::::::::::::::::::::: */
.cmn__bg-content--01 {
  width: 100%;
  background:
    url("../img/bg_left.jpg") repeat-y left top,
    url("../img/bg_right.jpg") repeat-y right top;
  background-size: calc(50% - 500px) auto;
  background-attachment: fixed;
}
.cmn__bg-content--02 {
  width: 100%;
  background:
    url("../img/bg_left.jpg") repeat-y left bottom,
    url("../img/bg_right.jpg") repeat-y right bottom;
  background-size: calc(50% - 500px) auto;
  background-attachment: fixed;
}
.cmn__multiply {
  mix-blend-mode: multiply;
}
@media (width < 1300px) {
  .cmn__bg-content--01,
  .cmn__bg-content--02 {
    background-size: calc(50% - 300px) auto;
  }
}
/* :::::::::::::::::::::::::::::::::::
    header
:::::::::::::::::::::::::::::::::::::: */

/* :::::::::::::::::::::::::::::::::::
    main
:::::::::::::::::::::::::::::::::::::: */
.main__content {
  background-color: var(--cl__beige);
}
/*
    hero
:::::::::::::::::::::::::::::::::::::: */
.hero {
  position: relative;
  width: 100%;
  height: 705px;
  margin: 0 auto;
  padding-bottom: 35px;
  background:
    url(../img/bg_mv-l.png) no-repeat left top / 500px auto,
    linear-gradient(to top, #f7f1e3, #fff);
  overflow: hidden;

  .cmn__inner {
    position: relative;
    width: min(98%, 1300px);
    height: 100%;
  }
}
.icon__gasyo {
  position: absolute;
  top: 180px;
  left: 220px;
  max-width: 140px;
  z-index: 1;
}
.hero__video {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-48%);
  width: 900px;
  height: 370px;
  border-radius: 10px;
  overflow: hidden;

  video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}
.hero__ttl {
  position: absolute;
  bottom: 33px;
  width: 100%;
  margin-left: 15px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;

  span {
    display: block;
    margin: 7px 0 3px -10px;
    font-size: 60%;
    color: var(--cl__d-brown);
  }
  b {
    display: block;
    margin-left: 18px;
    font-size: 1.6rem;
    line-height: 1;
    color: #fe5930;
  }
  .item__image {
    display: inline-block;
    max-width: 140px;
  }
}
.hero__left-image {
  position: absolute;
  left: -125px;
  bottom: 0;
  max-width: 420px;
}
.hero__bottom-image {
  position: absolute;
  left: 160px;
  bottom: 0;
  max-width: 380px;
  z-index: 2;
}
.hero__left-text {
  position: absolute;
  top: 120px;
  left: 160px;
  height: 250px;
  padding: 15px 20px 0;
  border: solid 1px #3d3534;
  background-color: #fffdf7;
  color: #231e1d;
}
.hero__right-text {
  position: absolute;
  top: 55px;
  right: 60px;
  width: 150px;
  height: 100%;
  padding: 60px 37px 0 0;
  background: url("../img/img_mv-r-02.png") no-repeat left top / 150px auto;
  font-size: 1.35rem;
  color: #231e1d;
}
.hero__right-image {
  position: absolute;
  right: -80px;
  bottom: 0;
  width: 580px;
  z-index: 2;
}
.hero__bottom-deco {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: url("../img/deco_var.jpg") repeat-x left bottom / auto 50px;
}
/*
    info_section
-------------------------------------- */
.info_section {
  padding: 20px 0;
  background-color: var(--cl__d-brown);
}
/* テーマソングエリア */
.theme-song_area {
  font-size: 1.3rem;
  text-align: center;
  font-weight: 500;
  color: var(--cl__white);

  audio {
    padding-left: 20px;
    vertical-align: middle;
  }
}
/* ニュースエリア */
.news_area {
  position: relative;
  margin-top: 20px;
  padding: 10px 30px;
  border: solid 1px var(--cl__white);
  border-radius: 10px;
  color: var(--cl__white);
}
.news_area::before {
  font-family: "Noto Sans JP", sans-serif;
  content: "news";
  position: absolute;
  top: -17px;
  left: 13px;
  padding: 0 5px;
  background-color: var(--cl__d-brown);
  font-weight: 600;
}
.news_area a {
  margin-right: 8px;
  color: var(--cl__white);
}
.news_area time {
  font-family: "Noto Sans JP", sans-serif;
  margin-right: 20px;
}
/*
    __block
:::::::::::::::::::::::::::::::::::::: */
/*
    overview__block
-------------------------------------- */
.overview__block {
  .cmn__photo-area {
    flex-basis: 70%;
    margin: 0;
    padding: 30px 0;
    border-right: solid 1px var(--cl__d-brown);
    text-align: center;
  }
  .cmn__photo-area img {
    max-width: 600px;
    box-shadow: 3px 3px 5px var(--cl__brown);
  }
  .cmn__text-area {
    flex-basis: 30%;
    display: grid;
    place-items: center;
    height: 380px;
    padding-top: 35px;
    font-size: 120%;
    font-weight: 500;
    line-height: 2.5;
  }
  .cmn__text-bottom {
    padding: 40px 50px;
    background-color: var(--cl__d-brown);
    line-height: 1.6;
    color: var(--cl__white);
  }
}
/*
    synopsis__block
-------------------------------------- */
.synopsis__block {
  margin-top: -30px;
  padding-left: 15px;
  padding-bottom: 22px;
  background: linear-gradient(to right, #f1e9dd 870px, var(--cl__beige) 150px);
  border-bottom: solid 1px var(--cl__d-brown);

  .photo__area img {
    max-width: 400px;
  }
  .text__area {
    height: 558px;
    padding-right: 40px;
    font-size: 110%;
    font-weight: 500;
    line-height: 2.3;
  }
  .cmn__ttl-02 {
    position: relative;
    margin-left: 0;
    padding-right: 15px;
    border: none;

    &::after {
      position: absolute;
      top: -60px;
      left: -45px;
      width: auto;
      height: 615px;
      border-top: none;
      border-left: double 4px var(--cl__d-brown);
    }
  }
}
/*
    filming__block
-------------------------------------- */
.filming__block {
  .cmn__ttl-02 {
    margin-bottom: 20px;
  }
  .cmn__ttl-02::after {
    margin-top: 25px;
  }
}
.filming__list {
  width: calc(100vw - 26px);
  margin: 15px auto 0 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.filming__list .filming__list-item {
  margin: 0 10px;
  border: solid 3px var(--cl__beige);
  border-radius: 10px;
  overflow: hidden;
}
.filming__list .filming__list-item img {
  border-radius: 10px;
}
.actors_list {
  flex-wrap: wrap;
  padding: 30px 2% 0;
}
.actors_list img {
  max-width: 32%;
  border-radius: 10px;
}
/*
  parties__block
-------------------------------------- */
.parties__block {
  .cmn__photo-area {
    /* flex-basis: 60%;
    padding: 30px; */
    padding: 10px;
    border: none;
    font-size: 110%;
  }
  .cmn__photo-area img {
    max-width: 480px;
    box-shadow: none;
  }
  .cmn__text-area {
    flex-basis: 40%;
    height: auto;
    padding-top: 0;
    background-color: var(--cl__d-brown);
    color: var(--cl__white);
  }
  .cmn__text-area p {
    line-height: 4;
  }
  #news {
    padding-top: 15px;
  }
  .items_additional {
    gap: 0 20px;
    margin: 10px auto 20px;
    padding: 0 30px;
    line-height: 1.3;
    align-items: center;
  }
  .items_additional img {
    max-width: 200px;
    border-radius: 5px;
  }
  .items_additional small {
    line-height: 1.6;
    text-align: justify;
  }
}
.cmn__photo-area:has(.costume_list) {
  padding: 20px 0;
}
.cmn__photo-area .costume_list img {
  max-width: 333px;
}

/* :::::::::::::::::::::::::::::::::::
    footer
:::::::::::::::::::::::::::::::::::::: */
footer {
  padding: 10px 0;
  background-color: var(--cl__d-brown);
  text-align: center;
  color: var(--cl__white);
}

/* :::::::::::::::::::::::::::::::::::
    900px ～
:::::::::::::::::::::::::::::::::::::: */
@media (width < 900px) {
  /*
    common 900px ～
  :::::::::::::::::::::::::::::::::::::: */
  body {
    min-width: 100%;
  }
  p {
    font-size: 1rem;
  }
  .cmn__ttl-02 img {
    max-width: 65px;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: none !important;
  }
  /*
    contents 900px ～
  :::::::::::::::::::::::::::::::::::::: */
  .hero {
    height: 100svh;
    min-height: 1000px;
    padding-bottom: 0;
    background-size: 400px auto;
    background-position: bottom left;
  }
  .icon__gasyo {
    top: 52%;
    left: 23%;
    max-width: 20%;
  }
  .hero__ttl {
    bottom: 43%;
    transform: translateY(-10%);
    margin-left: 0;
    z-index: 4;

    span {
      margin: 3px 0 2px -10px;
      font-size: 70%;
    }
    b {
      font-size: 1.8rem;
    }
    .item__image {
      max-width: 20vw;
      margin-bottom: 8px;
    }
  }
  .hero__video {
    position: relative;
    width: auto;
    height: auto;
    top: 3px;
    aspect-ratio: 16 / 6.7;
    margin: 5px auto 0;
    border-radius: 5px;
    transform: translateX(-50%);
    overflow: hidden;
  }
  .hero__bottom-deco {
    bottom: 0;
  }
  .hero__left-image {
    left: -10px;
    bottom: 55px;
    z-index: 3;
    max-width: 56vw;
  }
  .hero__right-image {
    width: auto;
    right: -8px;
    bottom: 40px;
    max-width: 50vw;
  }
  .hero__bottom-image {
    left: 0;
    max-width: 45vw;
  }
  /* テーマソングエリア */
  .theme-song_area {
    font-size: 1.2rem;
  }
  .overview__block {
    .cmn__photo-area {
      flex-basis: 75%;
    }
    .cmn__photo-area img {
      max-width: 90%;
    }
    .cmn__text-area {
      flex-basis: 25%;
      height: 330px;
      padding-top: 20px;
      font-size: 110%;
      line-height: 2;
    }
    .cmn__text-bottom {
      padding: 25px 30px;
    }
  }
  .filming__block {
    overflow: hidden;
  }
  .filming__list {
    gap: 0 20px;
  }
  .filming__list li {
    flex: 0 0 30%;
  }
  .filming__list li .cmn__flex-between {
    display: block;
  }
  #filming__over-scroll {
    width: calc(100% - 25px);
    margin: 30px 0 0 10px;
  }
  .synopsis__block {
    .photo__area img {
      max-width: 100%;
    }
    .text__area {
      height: 500px;
      font-size: 100%;
      line-height: 2;
    }
    & .cmn__ttl-02 {
      &::after {
        position: absolute;
        top: -60px;
        left: -27px;
        width: auto;
        height: calc(100% + 53px);
        border-top: none;
        border-left: double 4px var(--cl__d-brown);
      }
    }
  }
  .parties__block {
    .cmn__photo-area img {
      max-width: 95%;
    }
    #news .cmn__flex-around {
      display: block;
    }
  }
  .cmn__photo-area .costume_list img {
    max-width: 33.333% !important;
  }
}

/* :::::::::::::::::::::::::::::::::::
    768px ～
:::::::::::::::::::::::::::::::::::::: */
@media (width < 769px) {
  .parties__content,
  .cmn__photo-area {
    display: block;
  }
  .news_area {
    max-width: 95%;
    padding: 10px;
  }
  .news_area time {
    display: block;
  }
  .parties__block {
    .cmn__photo-area img {
      margin-bottom: 10px;
    }
    #news p {
      font-size: 100%;
      text-align: justify;
    }
    #news p small {
      font-size: 90%;
    }
  }
  .costume_list.cmn__flex-between {
    display: block;
  }
  .actors_list {
    gap: 20px 0;
  }
  .actors_list img {
    max-width: 48%;
  }
}
/* :::::::::::::::::::::::::::::::::::
    580px ～
:::::::::::::::::::::::::::::::::::::: */
@media (width < 560px) {
  p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
  [class$="__block"] {
    padding-top: 20px;
  }
  .cmn__ttl-02 {
    font-size: 120%;
  }
  .cmn__ttl-02::after {
    margin-top: 18px;
  }
  .icon__gasyo {
    top: 35%;
    left: 25%;
    max-width: 20%;
  }
  /* テーマソングエリア */
  .theme-song_area {
    audio {
      display: block;
      margin: 10px auto 0;
      padding-left: 0;
    }
  }
  .overview__block {
    .cmn__flex-around {
      display: block;
    }
    .cmn__text-rl {
      writing-mode: horizontal-tb;
      -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: horizontal-tb;
    }
    .cmn__text-area {
      height: auto;
      padding: 20px;
      font-size: 1rem;
      line-height: 1.7;
    }
    .cmn__text-bottom {
      padding: 20px;
    }
    .cmn__photo-area {
      padding-bottom: 0;
      border: none;
    }
  }
  .synopsis__block {
    margin-top: -30px;
    padding-left: 0;
    padding-bottom: 22px;

    .text__area {
      font-size: 1rem;
      line-height: 1.7;
    }
    .cmn__ttl-02 {
      padding: 0;

      &::after {
        position: static;
        width: 100%;
        height: auto;
        border-left: none;
        border-bottom: double 4px var(--cl__d-brown);
      }
    }
    .cmn__text-rl {
      writing-mode: horizontal-tb;
      -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: horizontal-tb;
    }
    .cmn__flex-around {
      flex-wrap: wrap-reverse;
    }
    .cmn__flex-around * {
      flex: 1 1 100%;
    }
    .text__area {
      height: 100%;
      padding: 10px 20px;
    }
    .photo__area {
      padding: 0 10px 0 20px;
    }
  }
  .parties__block {
    .cmn__photo-area {
      border: none;
    }
    .items_additional {
      display: block;
      padding: 0;
      text-align: center !important;
    }
    .items_additional img {
      max-width: 90%;
    }
    .items_additional small {
      text-align: justify !important;
    }
  }
  .cmn__photo-area .costume_list img {
    max-width: 100% !important;
    margin-bottom: 0;
  }
  .actors_list img {
    max-width: 100%;
  }
}

/* :::::::::::::::::::::::::::::::::::
    480px ～
:::::::::::::::::::::::::::::::::::::: */
@media (width < 480px) {
  body,
  p {
    text-align: justify;
  }
  .hero {
    min-height: 600px;
    max-height: 600px;
    background-size: 330px auto;
    background-position: bottom -100px left -60px;
  }
  .hero__ttl {
    transform: translateY(-25%);

    span {
      margin: 0 0 0 -10px;
      font-size: 0.9rem;
    }
    b {
      margin-left: 15px;
      font-size: 1rem;
    }
    .item__image {
      max-width: 25vw;
      margin-bottom: 3px;
    }
  }
  .hero__left-image {
    max-width: 60vw;
  }
  .hero__right-image {
    max-width: 50vw;
  }
  .parties__block {
    .cmn__photo-area p {
      text-align: center;
    }
  }
}

/* :::::::::::::::::::::::::::::::::::
    330px ～
:::::::::::::::::::::::::::::::::::::: */
@media (width < 361px) {
  .hero {
    min-height: 535px;
    max-height: 535px;
  }
  .hero__ttl {
    .item__image {
      max-width: 20vw;
    }
  }
  .theme-song_area {
    font-size: 1rem;
  }
}
