@charset "UTF-8";
/* =================================
   SubPage
==================================== */
.main-contents section {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
.main-contents section h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
  font-size: 30px;
}
.main-contents section h2 img {
  max-width: 37px;
}
.main-contents section h2 p {
  margin: 0 23px 0 30px;
}

@media only screen and (max-width: 768px) {
  .main-contents section {
    width: 90%;
  }
  .main-contents section h2 {
    margin: 40px 0;
    font-size: 20px;
  }
}
.news .main-contents section .section-content .news-list .news-item {
  position: relative;
  width: 100%;
  border-top: solid 1px #e8e1df;
  box-sizing: border-box;
}
.news .main-contents section .section-content .news-list .news-item a {
  display: flex;
  padding: 30px 0;
  box-sizing: border-box;
}
.news .main-contents section .section-content .news-list .news-item a .news-title-text {
  padding: 0 0 0 30px;
  width: 100%;
  box-sizing: border-box;
}
.news .main-contents section .section-content .news-list .news-item a .news-title-text .news-date {
  margin-bottom: 20px;
  font-size: 12px;
  color: #ec7aac;
}
.news .main-contents section .section-content .news-list .news-item a .news-title-text .news-title {
  line-height: 1.5em;
}
.news .main-contents section .section-content .news-list .news-item a .news-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 85px;
  width: 100%;
}
.news .main-contents section .section-content .news-list .news-item a .news-arrow img {
  max-width: 25px;
  transition: margin-left 0.3s ease;
}
.news .main-contents section .section-content .news-list .news-item:last-child {
  border-bottom: solid 1px #e8e1df;
}
.news .main-contents section .section-content .news-list .news-item::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: width 0.3s ease;
  z-index: -1;
}
.news .main-contents section .section-content .news-list .news-item:hover a .news-arrow img {
  margin-left: 10px;
}
.news .main-contents section .section-content .news-list .news-item:hover::before {
  width: 100%;
}
.news .main-contents section .section-content .pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.news .main-contents section .section-content .pagination .button {
  width: 40px;
  background: #fff;
}
.news .main-contents section .section-content .pagination .button.active {
  background: url(../img/common/btn-bg.png) right center no-repeat, #fff;
  background-size: auto 100%;
  pointer-events: off;
}
.news .main-contents section .section-content .pagination .button.off {
  color: rgba(0, 0, 0, 0.3);
  pointer-events: off;
}
.news .main-contents section .section-content .pagination ul {
  display: flex;
  justify-content: center;
  margin: 0 20px;
}
.news .main-contents section .section-content .pagination ul li {
  margin: 0 10px;
}
.news .main-contents section .section-content .pagination ul li:first-child {
  margin-left: 0;
}
.news .main-contents section .section-content .pagination ul li:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 768px) {
  .news .main-contents section .section-content .news-list .news-item a {
    padding: 20px 0;
  }
  .news .main-contents section .section-content .news-list .news-item a .news-title-text {
    padding: 0 0 0 10px;
  }
  .news .main-contents section .section-content .news-list .news-item a .news-title-text .news-date {
    margin-bottom: 10px;
  }
  .news .main-contents section .section-content .news-list .news-item a .news-arrow {
    max-width: 60px;
  }
  .news .main-contents section .section-content .pagination ul {
    display: none;
  }
  .news .main-contents section .section-content .pagination .sp {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
    width: 120px;
    height: 40px;
    border: solid 1px #e8e1df;
    background: url(../img/common/btn-bg.png) right center no-repeat, #fff;
    background-size: auto 100%;
    filter: drop-shadow(0 0 5px rgba(7, 0, 2, 0.2));
    box-sizing: border-box;
  }
}
.news .main-contents.article section .section-content .news-date {
  padding-left: 30px;
  font-size: 12px;
  color: #ec7aac;
}
.news .main-contents.article section .section-content .news-title {
  padding: 0 30px 10px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5em;
  border-bottom: solid 1px #e8e1df;
  box-sizing: border-box;
}
.news .main-contents.article section .section-content .article-text {
  padding: 0 30px;
  line-height: 1.5em;
}
.news .main-contents.article section .section-content .article-text p,
.news .main-contents.article section .section-content .article-text h1,
.news .main-contents.article section .section-content .article-text h3,
.news .main-contents.article section .section-content .article-text blockquote {
  margin-bottom: 20px;
}
.news .main-contents.article section .section-content .article-text h1 {
  position: relative;
  margin-left: 10px;
  font-size: 25px;
}
.news .main-contents.article section .section-content .article-text h1::before {
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translate3d(0, -50%, 0);
  display: block;
  content: "";
  width: 7px;
  height: calc(100% + 4px);
  background: url(../img/page/news-header-deco.png) repeat-y;
  background-size: 100%;
}
.news .main-contents.article section .section-content .article-text h2 {
  display: block;
  margin: 0 0 20px;
  font-size: 20px;
}
.news .main-contents.article section .section-content .article-text h3 {
  font-size: 15px;
}
.news .main-contents.article section .section-content .article-text img {
  margin: 0 auto 20px;
  max-width: 100%;
  width: auto;
}
.news .main-contents.article section .section-content .article-text .yt {
  position: relative;
  width: 100%;
}
.news .main-contents.article section .section-content .article-text .yt::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.news .main-contents.article section .section-content .article-text .yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.news .main-contents.article section .section-content .article-text blockquote {
  padding: 20px 20px 0 20px;
  border: solid 1px #e8e1df;
  box-sizing: border-box;
}
.news .main-contents.article section .section-content .article-text a {
  font-weight: 900;
  color: #ec7aac;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.news .main-contents.article section .section-content .article-text a:hover {
  opacity: 0.7;
}
.news .main-contents.article section .section-content .back-button {
  margin: 60px auto 0;
  max-width: 270px;
  background: url(../img/common/btn-bg-re.png) left center no-repeat, #fff;
  background-size: auto 100%;
}
.news .main-contents.article section .section-content .back-button::before {
  left: auto;
  right: 0;
}

@media only screen and (max-width: 768px) {
  .news .main-contents.article section .section-content .news-date {
    padding: 0;
  }
  .news .main-contents.article section .section-content .news-title {
    padding: 0 0 10px;
    font-size: 20px;
  }
  .news .main-contents.article section .section-content .article-text {
    padding: 0;
  }
  .news .main-contents.article section .section-content .article-text h1 {
    font-size: 20px;
  }
  .news .main-contents.article section .section-content .article-text h2 {
    font-size: 18px;
  }
}
.story .main-contents section {
  max-width: 100%;
  width: 100%;
}
.story .main-contents section .section-content .select-container {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.story .main-contents section .section-content .select-container .select-button {
  max-width: 270px;
  width: 100%;
}
.story .main-contents section .section-content .select-container .select-button::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  transition: opacity 0.3s;
}
.story .main-contents section .section-content .select-container .select-button.active {
  pointer-events: none;
}
.story .main-contents section .section-content .select-container .select-button.active::after {
  opacity: 0;
}
.story .main-contents section .section-content .select-container .select-button:first-child {
  margin-right: 20px;
}
.story .main-contents section .section-content .text-container {
  display: none;
}
.story .main-contents section .section-content .text-container.active {
  display: block;
}
.story .main-contents section .section-content .text-container.introduction-text {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  line-height: 1.75em;
  text-align: center;
  background: url(../img/page/story-text-bg-left.png) left bottom no-repeat, url(../img/page/story-text-bg-right.png) right top no-repeat;
}
.story .main-contents section .section-content .text-container.introduction-text p + p {
  margin-top: 40px;
}
.story .main-contents section .section-content .text-container.story-text {
  background: url(../img/page/story-bg.jpg) center no-repeat;
  background-size: cover;
}
.story .main-contents section .section-content .text-container.story-text .story-wrapper {
  padding: 80px 0;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
  background: url(../img/page/story-text-bg-left.png) left bottom no-repeat, url(../img/page/story-text-bg-right.png) right top no-repeat;
}
.story .main-contents section .section-content .text-container.story-text .story-wrapper p {
  line-height: 1.75em;
  text-align: center;
}
.story .main-contents section .section-content .text-container.story-text .story-wrapper p + p {
  margin-top: 40px;
}
.story .main-contents section .section-content .text-container.story-text .story-wrapper p span {
  position: relative;
}
.story .main-contents section .section-content .text-container.story-text .story-wrapper p .large {
  font-size: 20px;
}
.story .main-contents section .section-content .text-container.story-text .story-wrapper p .line-blue::before,
.story .main-contents section .section-content .text-container.story-text .story-wrapper p .line-yellow::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #00b9ee;
}
.story .main-contents section .section-content .text-container.story-text .story-wrapper p .line-yellow::before {
  background: #ffe100;
}
.story .main-contents section .section-content .text-container.story-text .story-wrapper p .line-double::before, .story .main-contents section .section-content .text-container.story-text .story-wrapper p .line-double::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #00b9ee;
}
.story .main-contents section .section-content .text-container.story-text .story-wrapper p .line-double::after {
  bottom: -3px;
  background: #ffe100;
}
.story .main-contents section .section-content .text-container.story-text .story-wrapper p .italic {
  font-style: italic;
}

@media only screen and (max-width: 768px) {
  .story .main-contents section {
    max-width: 100%;
  }
  .story .main-contents section .section-content .select-container {
    margin: 0 auto 60px;
    width: 90%;
  }
  .story .main-contents section .section-content .text-container.introduction-text {
    width: 90%;
    text-align: left;
  }
  .story .main-contents section .section-content .text-container.introduction-text br {
    display: none;
  }
  .story .main-contents section .section-content .text-container.story-text .story-wrapper .sp {
    display: block;
  }
  .story .main-contents section .section-content .text-container.story-text .story-wrapper .large {
    font-size: 18px;
  }
}
.staffcast .main-contents section .section-content .sc-container h3 {
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 20px;
  color: #ec7aac;
  border-bottom: solid 1px #e8e1df;
  box-sizing: border-box;
}
.staffcast .main-contents section .section-content .sc-container h4 {
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
  font-size: 20px;
}
.staffcast .main-contents section .section-content .sc-container h4::before, .staffcast .main-contents section .section-content .sc-container h4::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #00b9ee;
}
.staffcast .main-contents section .section-content .sc-container h4::after {
  bottom: -3px;
  background: #ffe100;
}
.staffcast .main-contents section .section-content .sc-container ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.staffcast .main-contents section .section-content .sc-container ul li {
  margin-bottom: 15px;
  width: 25%;
}
.staffcast .main-contents section .section-content .sc-container ul li .sc-position {
  margin-bottom: 3px;
  font-size: 13px;
}
.staffcast .main-contents section .section-content .sc-container ul li .sc-name {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.5em;
}
.staffcast .main-contents section .section-content .sc-container ul li .sc-name img {
  display: inline;
  margin: 0 0 2px 5px;
  width: 14px;
  transition: opacity 0.3s;
}
.staffcast .main-contents section .section-content .sc-container ul li .sc-name img:hover {
  opacity: 0.7;
}
.staffcast .main-contents section .section-content .sc-container ul li .sc-sup {
  font-size: 13px;
  line-height: 1.5em;
}
.staffcast .main-contents section .section-content .sc-container.theme-container ul li {
  width: 100%;
}
.staffcast .main-contents section .section-content .sc-container.theme-container ul li .sc-name span {
  display: block;
  font-size: 15px;
}

.comment-modal-wrapper {
  padding: 40px;
}
.comment-modal-wrapper .comment-container {
  display: none;
}
.comment-modal-wrapper .comment-container.active {
  display: block;
}
.comment-modal-wrapper .comment-position {
  margin-bottom: 10px;
  font-size: 15px;
}
.comment-modal-wrapper .comment-name {
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  border-bottom: solid 1px #e8e1df;
  box-sizing: border-box;
}
.comment-modal-wrapper .comment-text {
  line-height: 1.5em;
}
.comment-modal-wrapper .comment-text .question {
  margin-bottom: 5px;
  font-weight: 700;
}
.comment-modal-wrapper .comment-text .answer {
  margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
  .staffcast .main-contents section .section-content .sc-container h3 {
    font-size: 15px;
  }
  .staffcast .main-contents section .section-content .sc-container h4 {
    font-size: 15px;
  }
  .staffcast .main-contents section .section-content .sc-container ul li {
    width: 50%;
  }
  .staffcast .main-contents section .section-content .sc-container ul li .sc-name {
    font-size: 20px;
  }
}
.character .main-contents section .section-content .icon-container .list-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.character .main-contents section .section-content .icon-container ul {
  display: flex;
  justify-content: center;
}
.character .main-contents section .section-content .icon-container ul li {
  position: relative;
  margin: 0 10px;
  border: solid 1px #e8e1df;
  cursor: pointer;
  box-sizing: border-box;
}
.character .main-contents section .section-content .icon-container ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: width 0.3s ease;
}
.character .main-contents section .section-content .icon-container ul li.active {
  position: relative;
  pointer-events: none;
}
.character .main-contents section .section-content .icon-container ul li.active::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 21px;
  background: url(../img/page/chara-icon-active.png) right bottom no-repeat;
  background-size: 100% 100%;
}
.character .main-contents section .section-content .icon-container .icon-team-name {
  display: inline-block;
  position: relative;
  margin-bottom: 13px;
  font-size: 20px;
}
.character .main-contents section .section-content .icon-container .icon-team-name::before, .character .main-contents section .section-content .icon-container .icon-team-name::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #00b9ee;
}
.character .main-contents section .section-content .icon-container .icon-team-name::after {
  bottom: -3px;
  background: #ffe100;
}
.character .main-contents section .section-content .icon-container .icon-lip {
  margin-bottom: 20px;
  text-align: center;
}
.character .main-contents section .section-content .icon-container .icon-lip ul li {
  width: 100px;
  height: auto;
}
.character .main-contents section .section-content .icon-container .icon-ft4 {
  margin-bottom: 10px;
  text-align: center;
}
.character .main-contents section .section-content .icon-container .icon-ft4 ul {
  margin-bottom: 20px;
}
.character .main-contents section .section-content .icon-container .icon-ft4 ul li {
  width: 60px;
  height: auto;
}
.character .main-contents section .section-content .icon-container .icon-other ul {
  margin-bottom: 20px;
}
.character .main-contents section .section-content .icon-container .icon-other ul li {
  width: 50px;
  height: auto;
}
.character .main-contents section .section-content .chara-profile-container {
  position: relative;
  margin-top: 20px;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner {
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "pic name" "pic profile";
  opacity: 0;
  transition: opacity .3s;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner.active {
  position: relative;
  opacity: 1;
  z-index: 10;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-pic {
  grid-area: pic;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-pic img {
  filter: drop-shadow(0 0 6px rgba(7, 0, 2, 0.6));
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-name {
  grid-area: name;
  padding: 0 20px 20px;
  margin-bottom: 20px;
  margin-top: 30px;
  border-bottom: solid 1px #e8e1df;
  box-sizing: border-box;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-name .chara-name-text {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 900;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-name .chara-name-text span {
  margin-left: 20px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.6em;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-name .chara-cv {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-name .chara-cv .chara-cv-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 15px;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: #ec7aac;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-name .chara-cv .chara-cv-text {
  margin-left: 10px;
  font-size: 20px;
  font-weight: 900;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-name .chara-cv .chara-cv-text span {
  font-size: 14px;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-profile-text {
  grid-area: profile;
  padding: 0 20px;
  font-size: 13px;
  line-height: 1.5em;
  box-sizing: border-box;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-profile-text p {
  margin-bottom: 15px;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-profile-text p.comment-title {
  padding-bottom: 15px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 900;
  color: #ec7aac;
  border-bottom: solid 1px #e8e1df;
  box-sizing: border-box;
}
.character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-profile-text p.question {
  font-weight: 900;
}

@media only screen and (min-width: 769px) {
  .character .main-contents section .section-content .icon-container ul li:hover::before {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .character .main-contents section .section-content .icon-container .icon-team-name {
    font-size: 15px;
  }
  .character .main-contents section .section-content .chara-profile-container .chara-profile-inner {
    grid-template-rows: 1fr;
    grid-template-columns: auto;
    grid-template-areas: "name" "pic" "profile";
  }
  .character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-pic {
    position: relative;
  }
  .character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-pic .chara-arrow {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate3d(0, -50%, 0);
    width: 100%;
  }
  .character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-pic .chara-arrow .prev,
  .character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-pic .chara-arrow .next {
    width: 30px;
  }
  .character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-pic .chara-arrow .prev img,
  .character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-pic .chara-arrow .next img {
    filter: none;
  }
  .character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-pic .chara-arrow .prev {
    transform: scale(-1, 1);
  }
  .character .main-contents section .section-content .chara-profile-container .chara-profile-inner .chara-profile-text {
    position: relative;
    margin-top: 20px;
  }
}
.ticket .main-contents section .section-content {
  padding: 0 20px;
}
.ticket .main-contents section .section-content .select-container {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.ticket .main-contents section .section-content .select-container .select-button {
  max-width: 270px;
  width: 100%;
}
.ticket .main-contents section .section-content .select-container .select-button:first-child {
  margin-right: 20px;
}
.ticket .main-contents section .section-content .ticket-container.ticket1-container {
  margin-bottom: 60px;
}
.ticket .main-contents section .section-content .ticket-container h3 {
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ec7aac;
  border-bottom: solid 1px #e8e1df;
  box-sizing: border-box;
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "ticket text" "clearfile clearfile";
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper.ticket2 {
  grid-template-rows: 1fr;
  grid-template-areas: "ticket text";
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper.ticket2 .ticket-design img:last-child {
  margin-top: 20px;
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper .ticket-design {
  grid-area: ticket;
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper .clearfile-design {
  grid-area: clearfile;
  margin-top: 20px;
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper .ticket-text {
  grid-area: text;
  padding-left: 20px;
  box-sizing: border-box;
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper .ticket-text h4 {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 900;
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper .ticket-text h4::before {
  content: "■";
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper .ticket-text p {
  line-height: 1.5em;
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper .ticket-text p span {
  font-size: 12px;
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper .ticket-text p + h4 {
  margin-top: 20px;
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper .ticket-text a {
  color: #ec7aac;
  font-weight: 900;
  transition: opacity .3s;
}
.ticket .main-contents section .section-content .ticket-container .ticket-wrapper .ticket-text a:hover {
  opacity: .5;
}

@media only screen and (max-width: 768px) {
  .ticket .main-contents section .section-content {
    padding: 0;
  }
  .ticket .main-contents section .section-content .select-container {
    margin-bottom: 40px;
  }
  .ticket .main-contents section .section-content .select-container .select-button {
    font-size: 11px;
  }
  .ticket .main-contents section .section-content .ticket-container h3 {
    font-size: 15px;
  }
  .ticket .main-contents section .section-content .ticket-container .ticket-wrapper {
    display: grid;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-template-areas: "ticket" "clearfile" "text";
  }
  .ticket .main-contents section .section-content .ticket-container .ticket-wrapper.ticket2 {
    grid-template-areas: "ticket" "text";
  }
  .ticket .main-contents section .section-content .ticket-container .ticket-wrapper .clearfile-design .sp {
    display: block;
  }
  .ticket .main-contents section .section-content .ticket-container .ticket-wrapper .ticket-text {
    padding: 0;
    margin-top: 20px;
  }
}
.music .main-contents section .section-content .pre-text {
  display: none;
  text-align: center;
}
.music .main-contents section .section-content .pre-text p {
  margin-bottom: 20px;
  line-height: 2em;
}
.music .main-contents section .section-content .pre-text p span {
  font-weight: 700;
}
.music .main-contents section .section-content .pre-text .title {
  display: inline-block;
  position: relative;
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.5em;
}
.music .main-contents section .section-content .pre-text .title::before, .music .main-contents section .section-content .pre-text .title::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #00b9ee;
}
.music .main-contents section .section-content .pre-text .title::after {
  bottom: -3px;
  background: #ffe100;
}
.music .main-contents section .section-content .pre-text .sub {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
}
.music .main-contents section .section-content .music-container h3 {
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 30px;
  color: #ec7aac;
  border-bottom: solid 1px #e8e1df;
  box-sizing: border-box;
}
.music .main-contents section .section-content .music-container .music-title {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
}
.music .main-contents section .section-content .music-container .music-title span {
  font-size: 20px;
}
.music .main-contents section .section-content .music-container .music-title-sub {
  margin-bottom: 20px;
}
.music .main-contents section .section-content .music-container .position {
  margin-bottom: 10px;
  font-weight: 700;
}
.music .main-contents section .section-content .music-container .position::before {
  content: "■";
}
.music .main-contents section .section-content .music-container .music-list {
  margin-bottom: 30px;
  line-height: 1.5em;
}
.music .main-contents section .section-content .music-container .music-wrapper {
  margin-bottom: 30px;
  display: flex;
}
.music .main-contents section .section-content .music-container .music-wrapper .music-pic {
  margin-right: 60px;
  width: 100%;
}
.music .main-contents section .section-content .music-container .music-wrapper .music-text {
  width: 100%;
}
.music .main-contents section .section-content .music-container .music-wrapper .music-text h4 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-bottom: solid 1px #e8e1df;
  box-sizing: border-box;
}
.music .main-contents section .section-content .music-container .music-wrapper .music-text .position {
  margin: 0;
  font-weight: 700;
}
.music .main-contents section .section-content .music-container .music-wrapper .music-text .position::before {
  content: "■";
}
.music .main-contents section .section-content .music-container .music-wrapper .music-text p {
  margin-bottom: 20px;
  line-height: 1.75em;
}

@media only screen and (max-width: 768px) {
  .music .main-contents section .section-content .pre-text p .sp {
    display: block;
  }
  .music .main-contents section .section-content .pre-text .title {
    font-size: 20px;
  }
  .music .main-contents section .section-content .pre-text .sub {
    font-size: 15px;
  }
  .music .main-contents section .section-content .music-container h3 {
    font-size: 15px;
  }
  .music .main-contents section .section-content .music-container .music-title {
    font-size: 20px;
  }
  .music .main-contents section .section-content .music-container .music-title span {
    font-size: 17px;
  }
  .music .main-contents section .section-content .music-container .music-wrapper {
    flex-direction: column;
  }
  .music .main-contents section .section-content .music-container .music-wrapper .music-pic {
    margin: 0 0 20px 0;
  }
}
.movie .main-contents section .section-content .select-container {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}
.movie .main-contents section .section-content .select-container .select-button {
  max-width: 270px;
  width: 100%;
  background: #fff;
}
.movie .main-contents section .section-content .select-container .select-button:first-child {
  margin-right: 20px;
}
.movie .main-contents section .section-content .select-container .select-button.active {
  background: url(../img/common/btn-bg.png) right center no-repeat, #fff;
  background-size: auto 100%;
  pointer-events: none;
}
.movie .main-contents section .section-content .movie-container {
  display: none;
}
.movie .main-contents section .section-content .movie-container.active {
  display: block;
}
.movie .main-contents section .section-content .movie-container ul {
  display: flex;
  flex-wrap: wrap;
}
.movie .main-contents section .section-content .movie-container ul li {
  margin: 0 10px 40px;
  width: calc(50% - 20px);
}
.movie .main-contents section .section-content .movie-container ul li a img {
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(7, 0, 2, 0.2));
  transition: opacity .3s,filter .3s ease;
}
.movie .main-contents section .section-content .movie-container ul li a img:hover {
  opacity: 0.7;
  filter: drop-shadow(0 0 1px rgba(7, 0, 2, 0.2));
}
.movie .main-contents section .section-content .movie-container ul li p {
  text-align: center;
}

.movie-modal-wrapper {
  display: none;
  position: relative;
  width: 100%;
}
.movie-modal-wrapper.active {
  display: block;
}
.movie-modal-wrapper::before {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.movie-modal-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .movie .main-contents section .section-content .movie-container ul {
    flex-direction: column;
  }
  .movie .main-contents section .section-content .movie-container ul li {
    margin: 0 0 40px;
    width: 100%;
  }
}
.voicedrama .main-contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.voicedrama .main-contents .vc-logo {
  margin: 100px 0 60px;
  max-width: 470px;
  width: 90%;
}
.voicedrama .main-contents .vc-play {
  position: relative;
  margin-bottom: 60px;
  max-width: 431px;
  width: 90%;
  cursor: pointer;
  transition: opacity .3s;
}
.voicedrama .main-contents .vc-play .vc-text {
  position: absolute;
  top: 24%;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  width: 100%;
  line-height: 1.75em;
  text-align: center;
}
.voicedrama .main-contents .vc-play:hover {
  opacity: .5;
}
.voicedrama .main-contents .more-button {
  width: 300px;
}

@media only screen and (max-width: 768px) {
  .voicedrama {
    padding-top: 0;
  }
  .voicedrama .main-contents .vc-logo {
    margin: 100px 0 60px;
  }
}
