@charset "UTF-8";

html:first-child body { font-size:14px; }
.content *, .jquery-modal * {
  font-family: 'Noto Sans JP', sans-serif !important;
}
.content, .jquery-modal {
  color: #333333;
}

.content__inner {
  width: 950px;
  margin: 0 auto;
}




.spDisp {
  display: none;
}
.pcDisp {
  display: block;
}
@media screen and (max-width: 640px) {
  html {
    overflow-y: visible;
  }
  .content img {
    width: 100%;
  }
  .content__inner {
    width: auto;
    padding: 0 calc(30 / 750 * 100vw);
  }
  .spDisp {
      display: block;
  }
  .pcDisp {
      display: none;
  }
}


/* btn */
.btn {
  position: relative;
  display: inline-block;
  border: solid 2px #b60081;
  background-color: #b60081;
  padding: 15px 40px;
  text-decoration: none !important;
  color: #ffffff !important;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 5px;
  text-align: center;
  line-height: 1rem;
}
.btn.btn-white {
  background-color: #ffffff;
  color: #b60081 !important;
}
.btn:hover {
  border: solid 2px #c4459f;
  background-color: #c4459f
}
.btn.btn-white:hover {
  color: #ffffff !important;
  border: solid 2px #c4459f;
  background-color: #c4459f;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-top: 2px;
  margin-right: 20px;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  transform: translateY(-60%) rotate(135deg);
}
.btn.btn-white::after {
  border-left: 2px solid #b60081;
  border-top: 2px solid #b60081;
}
.btn.btn-white:hover::after {
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
}
.btn.anchor::after {
  transform: translateY(-70%) rotate(225deg);
}

/* link */
.link {
  display: inline-block;
  text-decoration: none !important;
  color: #ffffff !important;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
.link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0;
  border-left: 2px solid #ffffff;
  border-top: 2px solid #ffffff;
  transform: rotate(135deg);
  margin-top: -4px;
}


/* note */
.note__kome li {
  position: relative;
  padding-left: 1rem;
}
.note__kome li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.note__disc li {
  list-style-type: disc;
  margin: 0 0 0 2.5rem;
}

/* accordion__type01 */
.accordion__type01 {
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
}
.accordion__type01__title {
  position: relative;
  display: block;
  padding: 24px 60px 24px 20px;
  border-top: none;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  -webkit-transition: background-color 1s cubic-bezier(.215,.61,.355,1);
  transition: background-color 1s cubic-bezier(.215,.61,.355,1);
}
.accordion__type01__title-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  display: block;
  height: 2px;
  width: 12px;
  background-color: #000000;
}
.accordion__type01__title-icon2 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  display: block;
  height: 12px;
  width: 2px;
  background-color: #000000;
  -webkit-transform: translateX(-5px) scaleY(1);
  transform: translateX(-5px) scaleY(1);
  -webkit-transition: -webkit-transform .4s cubic-bezier(.215,.61,.355,1);
  transition: -webkit-transform .4s cubic-bezier(.215,.61,.355,1);
  transition: transform .4s cubic-bezier(.215,.61,.355,1);
  transition: transform .4s cubic-bezier(.215,.61,.355,1),-webkit-transform .4s cubic-bezier(.215,.61,.355,1);
}
.is-open .accordion__type01__title-icon2 {
  -webkit-transform: translateX(-5px) scaleY(0);
  transform: translateX(-5px) scaleY(0);
  -webkit-transition: -webkit-transform .4s cubic-bezier(.215,.61,.355,1);
  transition: -webkit-transform .4s cubic-bezier(.215,.61,.355,1);
  transition: transform .4s cubic-bezier(.215,.61,.355,1);
  transition: transform .4s cubic-bezier(.215,.61,.355,1),-webkit-transform .4s cubic-bezier(.215,.61,.355,1);
}
.accordion__type01__contents {
/*  display: none; */
  text-align: left;
  padding: 0 60px 24px 20px;
}
.accordion__type01-white {
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
  color: #ffffff;
}
.accordion__type01-white .accordion__type01__title-icon {
  background-color: #ffffff;
}
.accordion__type01-white .accordion__type01__title-icon2 {
  background-color: #ffffff;
}

@media screen and (max-width: 640px) {
  .accordion__type01__contents {
    padding: 0 20px 24px 20px;
  }
}


/* accordion__type02 */
.accordion__type02__title {
  background-color: #ffffff;
  border-radius: 5px;
  position: relative;
  display: block;
  padding: 24px 60px 24px 20px;
  border-top: none;
  color: #b60081;
  font-size: 18px;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}
.accordion__type02__title.is-open {
  background-color: #b60081;
  color: #ffffff;
}
.accordion__type02__title-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  display: block;
  height: 2px;
  width: 12px;
  background-color: #ffffff;
  z-index: 2;
}
.is-open .accordion__type02__title-icon {
  background-color: #b60081;
}
.accordion__type02__title-icon2 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto;
  display: block;
  height: 12px;
  width: 2px;
  background-color: #ffffff;
  z-index: 2;
  -webkit-transform: translateX(-5px) scaleY(1);
  transform: translateX(-5px) scaleY(1);
  -webkit-transition: -webkit-transform .4s cubic-bezier(.215,.61,.355,1);
  transition: -webkit-transform .4s cubic-bezier(.215,.61,.355,1);
  transition: transform .4s cubic-bezier(.215,.61,.355,1);
  transition: transform .4s cubic-bezier(.215,.61,.355,1),-webkit-transform .4s cubic-bezier(.215,.61,.355,1);
}
.is-open .accordion__type02__title-icon2 {
  background-color: #b60081;
  -webkit-transform: translateX(-5px) scaleY(0);
  transform: translateX(-5px) scaleY(0);
  -webkit-transition: -webkit-transform .4s cubic-bezier(.215,.61,.355,1);
  transition: -webkit-transform .4s cubic-bezier(.215,.61,.355,1);
  transition: transform .4s cubic-bezier(.215,.61,.355,1);
  transition: transform .4s cubic-bezier(.215,.61,.355,1),-webkit-transform .4s cubic-bezier(.215,.61,.355,1);
}
.accordion__type02__title-iconbg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  display: block;
  height: 20px;
  width: 20px;
  background-color: #b60081;
  border-radius: 20px;
  z-index: 1;
}
.is-open .accordion__type02__title-iconbg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  display: block;
  height: 20px;
  width: 20px;
  background-color: #ffffff;
  z-index: 1;
  border-radius: 20px;
}
.accordion__type02__contents {
/*  display: none; */
  text-align: left;
}








/* mv */
.mv {
  position: relative;
  text-align: center;
  margin: -20px auto 0;
}
.mv__image {
  min-height: 580px;
}
.mv__content {
  position: absolute;
  top: 0;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0 80px;
  box-sizing: border-box;
}
.mv__content__ttl {
/*  opacity: 0; */
}
.mv .btn.anchor {
  width: 360px;
  font-size: 20px;
  margin: 50px 0 0;
  padding: 25px 80px;
}
.mv .btn.anchor::after {
  width: 13px;
  height: 13px;
  margin-right: 30px;
}
.mv .btn-mv {
  width: 360px;
  margin: 20px 0 0;
}
.mv .link {
  margin: 20px 0 0;
}
.mv_image-loader {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: url("../images/outline_bg.jpg");
}
@media screen and (max-width: 640px) {
  .mv {
    margin: 0 auto;
  }
  .mv__image {
    min-height: calc(660 / 750 * 100vw);
  }
  .mv__content {
    top: 50%;
    transform: translate(0, -50%);
    padding: 0;
  }
  .mv__content__ttl {
    width: 90% !important;
  }
  .mv .btn.anchor {
    width: 90%;
    font-size: 16px;
    margin: 25px 0 0;
    padding: 10px 60px;
  }
  .mv .btn.anchor::after {
    width: 10px;
    height: 10px;
  }
  .mv .btn-mv {
    width: 90%;
    font-size: 12px;
    margin: 20px 0 0;
    padding: 10px 30px;
  }
}

/* news */
.news {
  padding: 40px 0;
}
.news__link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.news__link__items {
  margin: 0 0 40px 40px;
}
.news__link__items:first-child {
  margin-left: 0;
}
.news__slider {
  margin: 40px 0 0;
}
.news__slider .swiper-slide {
  position: relative;
}
.swiper-container img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  line-height: 1;
  border-radius: 10px;
}
.news__slider .swiper-slide span {
  display: block;
  text-align: left;
  color: #ffffff;
  font-size: 1.2vw;
  height: calc(50 / 1920 * 100vw);
  line-height: calc(50 / 1920 * 100vw);
  margin-top: calc(-50 / 1920 * 100vw);
  padding: 0 20px;
}
.swiper-controller {
  position: relative;
  margin: 25px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-controller .swiper-pagination {
  position: static;
  margin: 0 16px;
}
.swiper-button-next, .swiper-button-prev {
  position: static;
  top: 50%;
  width: 10px;
  height: 16px;
  z-index: 10;
  margin: 0;
  cursor: pointer;
  background-size: 10px 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.news__slider  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #b2b2b2;
  opacity: 1;
  margin: 0 4px;
}
.news__slider  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #b60081;
}
.swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-slide {
  width: 33.3%;
}
.swiper-loaded .swiper-wrapper {
  flex-wrap: nowrap;
}
.swiper-loaded .swiper-slide {
  width: 100%;
}
.swiper-button-next,.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23b60081'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto
}
.swiper-button-prev,.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23b60081'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto
}
.swiper-button-next:focus, .swiper-button-prev:focus, .swiper-pagination-bullet:focus {
  outline: none;
}
:root {
  --swiper-theme-color: #b60081;
}
@media screen and (max-width: 950px) {
  .news__slider .swiper-slide span {
    font-size: 1.2vw;
    height: 25px;
    line-height: 25px;
    margin-top: -25px;
  }
}
@media screen and (max-width: 640px) {
  .news__link {
    display: block;
    margin: 0 0 40px;
  }
  .news__link__items {
    margin: 0 0 20px;
  }
  .news__slider {
    padding: 0 calc(30 / 750 * 100vw);
  }
  .news__slider .swiper-slide span {
    font-size: 3vw;
    height: calc(48 / 750 * 100vw);
    line-height: calc(48 / 750 * 100vw);
    margin-top: calc(-48 / 750 * 100vw);
  }
  .swiper-container {
    border-radius: 10px;
  }
  .swiper-controller {
    justify-content: space-between;
  }
}


/* outline */
.outline {
  background-image: url("../images/outline_bg.jpg");
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  font-size: 14px;
  line-height: 2;
  padding: 80px 0 90px;
}
.outline__ttl {
  width: 712px;
  margin: 0 auto;
}
.outline__lead {
  text-align: center;
  margin: 40px 0 0;
}
.outline__box {
  border-top: 1px solid #666666;
  display: flex;
  text-align: left;
  margin: 60px 0 0;
  padding: 40px 0;
}
.outline .outline__box.outline__box__border {
  border: 1px solid #b60081;
  margin: 0;
  padding: 30px;
}
.outline__box + .outline__box {
  margin: 0;
}
.outline__box__img {
  width: 300px;
  text-align: center;
  margin: 0 30px 0 0;
}
.outline__box__txt {
  flex: 1;
}
.outline__box__txt .btn {
  width: 264px;
}

/*vibit追記*/
.outline__ttl img {
width:100%;
height:auto;
}
/*vibit追記*/

/*vibit追記*/
.outline__box__img img {
width:100%;
height:auto;
}
/*vibit追記*/

/*vibit追記*/
.outline__box__txt img {
width:100%;
height:auto;
}
/*vibit追記*/

.outline__box__txt-held img {
  width:auto;
  height:auto;
}


.outline__box__txt > *:not(h3) {
  margin-top: 20px;
}

.outline__box__txt-safety {
  width: 204px;
}
.outline__box__txt-free {
  width: 140px;
}
.outline__box__txt-value {
  width: 315px;
}
.outline__box__reverse {
  flex-flow: row-reverse;
}
.outline__box__reverse .outline__box__img {
  margin: 0 0 0 30px;
}




@media screen and (max-width: 640px) {
  .outline {
    background-image: url("../images/outline_bg-sp.jpg");
    background-attachment: unset;
    font-size: 18px;
  }
  .outline__ttl {
    width: calc(672 / 750 * 100vw);
  }
  .outline__box {
    display: block;
  }
  .outline__box__img {
    width: 100%;
    margin: 0 !important;
  }

  .outline__box__txt > * {
    margin-top: 30px !important;
  }
  .outline__box__txt-safety {
    width: calc(338 / 750 * 100vw);
  }
  .outline__box__txt-free {
    width: calc(228 / 750 * 100vw);
  }
  .outline__box__txt-value {
    width: calc(513 / 750 * 100vw);
  }
  .outline__box__txt-held {
    color: #ffffff;
    font-size: 25px;
    line-height: 1.5;
  }
}


/* theater */
.theater {
  background-color: #e6e6e6;
  padding: 80px 0;
}
.theater__ttl {
  width: 201px;
  margin: 0 auto;
}
.theater__country__list {
  margin: 40px 0 0;
}
.theater__country__list__items {
  margin: 20px 0 0;
}
.theater__list {
  clear: both;
  overflow: auto;
  white-space: nowrap;
  margin-left: -19px;
}
.theater__list__items {
  float: left;
  width: 304px;
  background-color: #ffffff;
  border-radius: 5px;
  margin: 20px 0 0 19px;
  padding: 20px;
  box-sizing: border-box;
  white-space: normal;
}
.theater__list__items .ttl {
  color: #b60081;
  font-size: 16px;
  margin: 0 0 20px;
}
.theater__list__items .detail {
  min-height: 90px;
}
.theater__list__items .detail dt {
  position: relative;
  font-weight: bold;
  line-height: 1.58;
  margin: 15px 0 0;
}
.theater__list__items .detail dd {
  line-height: 1.58;
}
.theater__list__items .btn {
  margin: 20px 0 0;
}
/*vibit追記*/
@media screen and (min-width: 641px) {
  .theater__list__items .box img {
    width:100%;
    height:auto;
  }
}
/*vibit追記*/

@media screen and (max-width: 640px) {
  .theater__ttl {
    width: calc(241 / 750 * 100vw);
  }
  .theater__list {
    margin: 0;
  }
  .theater__list__items {
    float: none;
    width: 100%;
    margin: 20px 0 0;
  }
  .theater__list__items .ttl {
    font-size: 20px;
  }
  .theater__list__items .box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .theater__list__items .box > * {
    width: 50%;
    box-sizing: border-box;
  }
  .theater__list__items .box img {
    border-radius: 5px;
    height:auto;
  }
  
/*vibit追記*/
  .theater__list__items .box img {
    height:auto;
  }
/*vibit追記*/

  .theater__list__items .detail {
    min-height: auto;
    font-size: 16px;
    margin: 0 0 0 20px;
  }
  .theater__list__items .detail dt {
    margin: 10px 0 0;
  }
  .theater__list__items .detail dt::before {
    top: 0.6rem;
  }
  .theater__list__items .detail dt:nth-child(1) {
    margin: 0;
  }
}


/* attention */
.attention {
  background-image: url("../images/outline_bg.jpg");
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
.attention__ttl {
  width: 155px;
  margin: 0 auto;
}
.attention__overlay {
  background: rgba(255, 255, 255, 0.12);
  padding: 80px 0;
}
.attention__note {
  text-align: left;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.5;
  margin: 30px 0 0;
}
.attention__note > li {
  margin: 10px 0 0;
}
@media screen and (max-width: 640px) {
  .attention {
    background-image: url("../images/outline_bg-sp.jpg");
    background-attachment: unset;
  }
  .attention__ttl {
    width: calc(206 / 750 * 100vw);
  }
  .attention__note {
    font-size: 14px;
  }
}


/* hold */
.hold {
  background-image: url("../images/outline_bg.jpg");
  background-attachment: fixed;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: left;
  color: #ffffff;
  padding: 80px 0;

}
.hold__ttl {
  border-bottom: 2px solid #b60081;
  padding: 0 0 20px;
}
.hold__ttl__inner {
  width: 427px;
  margin: 0 auto;
  display: block;
}
.hold__outline {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin: 30px 0 0;
}
.hold__outline__video {
  width: 465px;
}
.hold__outline__txt {
  width: 484px;
  margin: 0 0 0 30px;
  box-sizing: border-box;
  line-height: 2;
}
.hold__outline__txt__link {
  width: 264px;
  margin: 30px 0 0;
}

/*vibit追記*/
.hold__outline img{
width:100%;
height:auto;
}
/*vibit追記*/


.hold__other {
  overflow: auto;
  font-size: 16px;
  margin: 30px 0 0;
}
.hold__other__ttl {
  font-size: 24px;
  font-weight: normal;
}
.hold__other__list {
  line-height: 2;
  margin: 5px 0 0;
}
.hold__other__list > li {
  position: relative;
  float: left;
  width: 33.3%;
  margin: 15px 0 0;
  padding: 0 0 0 36px;
  box-sizing: border-box;
}
.hold__other__list > li a {
  color: #ffffff;
  text-decoration: none;
}
.hold__other__list > li a::before {
  content: "";
  background: url(../images/movie_icon.png) no-repeat;
  width: 26px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 8px;
}
.hold__other__list > li a:hover {
  opacity: 0.7;
}

/*vibit追記*/
.hold__other img{
width:100%;
height:auto;
}
/*vibit追記*/



.hold__contact {
  clear: both;
  border: solid 1px #b60081;
  margin: 30px 0 0;
  padding: 30px;
}
.hold__contact__ttl {
  font-size: 24px;
  font-weight: normal;
}
.hold__contact__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.hold__contact__box__txt {
  flex: 1;
  margin: 5px 0 0;
}
.hold__contact__box__txt > p {
  margin: 15px 0 0;
}
.hold__contact__box__link {
  width: 264px;
}
@media screen and (max-width: 640px) {
  .hold {
    background-image: url("../images/outline_bg-sp.jpg");
    background-attachment: unset;
  }
  .hold__ttl__inner {
    width: calc(626 / 750 * 100vw);
  }
  .hold__outline {
    display: block;
  }
  .hold__outline__video {
    width: auto;
  }
  .hold__outline__video {
    position: relative;
    float: none;
    width: 100%;
    height: 0;
    padding: calc(315 / 560 * 100%) 0 0;
  }
  .hold__outline__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .hold__outline__txt {
    width: auto;
    margin: 30px 0 0 0;
  }
  .hold__outline__txt__link {
    width: 100%;
    margin: 30px 0 0;
    padding: 0 30px;
    box-sizing: border-box;
  }
  .hold__other {
    overflow: visible;
  }
  .hold__other__list > li {
    float: none;
    width: 100%;
    margin: 20px 0 0;
  }
  .hold__contact__box {
    display: block;
  }
  .hold__contact__box__txt {
    font-size: 16px;
    line-height: 1.5;
  }
  .hold__contact__box__link {
    width: 100%;
    margin-top: 20px;
  }
}




/* modal */
.blocker {
  z-index: 10;
  padding: 60px 30px;
}
.modal {
  max-width: 950px;
  width: 90%;
  padding: 30px;
  z-index: 10;
}
.modal a.close-modal {
  top: -37px;
  right: 0;
  width: 30px;
  height: 30px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAzUlEQVRIib3XDQrDIAwFYNkd9IyD9rjbed4IszCsP8kzWUBaI+aT1gpNAKQ9AeR6H9lytZJ0DnzjFYznakgckigA3sH4LyrXcg2UZsATv6HXo47Eu2gLe+NDtAd74VN0BO/iS3QGs7gKXcFWXI1qYC1uQrXwCjejFniEU6gV7uEUysAtTn/rj2QPEHPuYVxp+07pE24HzTsn3A462+0u8AylcQ+Uwr1QM+6JmuZ6o+oaEaiqVhS6rEntSA88Gh3ikjyD0R5+Xsn//rQB6QMHZ791ldc2rQAAAABJRU5ErkJggg==);
}
@media screen and (max-width: 640px) {
  .blocker {
    padding: 60px calc(30 / 750 * 100vw);
  }
  .modal {
    width: 100%;
    padding: calc(30 / 750 * 100vw);
  }
  
}

/* theatre__modal__ttl */
.theatre__modal__ttl {
  color: #b60081;
  font-size: 16px;
  font-weight: normal;
  margin: 0 0 20px;
}
.theatre__modal__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.theatre__modal__box__left {
  width: 264px;
  line-height: 1.71;
}
.theatre__modal__box__left .detail > dt {
  position: relative;
  font-weight: bold;
  margin: 15px 0 0;
  padding: 0 0 0 0.8rem;
}
.theatre__modal__box__left .detail > dt::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  background-color: #b60081;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  margin-top: -3px;
}
.theatre__modal__box__left .btn {
  margin: 15px 0 0;
}

/*vibit追記*/
.theatre__modal__box__left img{
width:100%;
height:auto;
}
/*vibit追記*/





.theatre__modal__box__right {
  width: 606px;
  font-size: 16px;
  line-height: 1.67;
  margin: 0 0 0 20px;
  box-sizing: border-box;
}
.theatre__modal__box__right a {
  color: #b60081;
  text-decoration: underline;
}
.theatre__modal__box__right a:hover {
  text-decoration: none;
}
.theatre__modal__box__right .detail > dt {
  position: relative;
  font-weight: bold;
  margin: 15px 0 0;
  padding: 0 0 0 0.8rem;
}
.theatre__modal__box__right .detail > dt:nth-child(1) {
  margin: 0;
}
.theatre__modal__box__right .detail > dt::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  background-color: #b60081;
  width: 3px;
  height: 1.2rem;
  border-radius: 2px;
  margin-top: -0.6rem;
}
.theatre__modal__box__right .detail .map {
  margin: 15px 0 0;
}
.theatre__modal__box__right .btn {
  margin: 15px 0 0;
}

/*vibit追記*/
.theatre__modal__box__right img{
width:100%;
height:auto;
}
/*vibit追記*/





.theatre__modal__note {
  font-size: 12px;
}
.theatre__modal .accordion__type02 {
  margin: 15px 0 0;
}
.theatre__modal .accordion__type02__title {
  background-color: #f8e5f2;
  font-size: 15px;
  padding: 7px 60px 8px 20px;
}
.theatre__modal .accordion__type02__title.is-open {
  background-color: #f8e5f2;
  color: #b60081;
}
.theatre__modal .accordion__type02__contents {
/*  display: none; */
  text-align: left;
  padding: 5px 0 0;
}
@media screen and (max-width: 640px) {
  .theatre__modal__ttl {
    font-size: 18px;
  }
  .theatre__modal__box {
    display: block;
  }
  .theatre__modal__box__left {
    width: 100%;
    font-size: 16px;
  }
  .theatre__modal__box__right {
    width: 100%;
    border-top: 1px solid #666666;
    font-size: 18px;
    margin: 20px 0 0;
    padding: 20px 0 0;
  }
  .theatre__modal__note {
    font-size: 15px;
  }
}