@charset "UTF-8";
.favo_section {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .favo_section {
    margin-bottom: 2rem;
  }
}
.favo_h2 {
  font-size: 0.9rem;
  padding-right: 2rem;
  border-bottom: 3px solid #cccccc;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  margin: 0 0 1rem auto;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .favo_h2 {
    font-size: 1.2rem;
    padding-right: 3rem;
  }
}
.favo_h2.ondemand {
  border-color: rgb(30, 144, 255);
}
.favo_h2.offset {
  border-color: rgb(0, 174, 149);
}
.favo_archive {
  display: block;
  text-align: right;
  margin: 0 2rem 1rem auto;
  width: 210px;
}
@media screen and (min-width: 768px) {
  .favo_archive {
    margin: 0 0 1rem auto;
  }
}
.favo_lists {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.favo_listitem {
  width: 45%;
  height: auto;
  background-color: #f2f2f2;
  border: #cccccc;
  margin: 0 0 1rem 0;
  box-sizing: border-box;
  padding: 1rem 0.8rem;
  margin-right: 0.9rem;
}
@media screen and (min-width: 768px) {
  .favo_listitem {
    width: 350px;
  }
}
.favo_listitem.active {
  background-color: #B0E0E6;
}
.favo_listitem.pause {
  opacity: 0.4;
}
.favo_listitem.row {
  flex-direction: row;
}
.favo_listitem.column {
  flex-direction: column;
}
.favo_listitem.nowrap {
  flex-wrap: nowrap;
}
.favo_listitem.flyer {
  width: 220px;
  height: auto;
}
.favo_listitem.ticket {
  width: 350px;
  height: 170px;
}
.favo_listitem_h3 {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 900;
}
.favo_listitem_child {
  box-sizing: border-box;
  position: relative;
}
.favo_listitem_child:first-child {
  background-color: #ffffff;
  width: 180px;
  height: auto;
  padding: 1rem 0.5rem;
  cursor: pointer;
}
.favo_listitem_child:first-child.flyer {
  width: 190px;
  height: auto;
  margin-bottom: 1rem;
  padding: 0.5rem;
}
.favo_listitem_child:last-child {
  width: 150px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.favo_listitem_child:last-child.flyer {
  height: auto;
  text-align: center;
  margin: 0;
}
.favo_listitem_inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .favo_listitem_inner {
    flex-direction: row;
  }
}
.favo_listitem_inner.flyer {
  flex-direction: column;
}
.favo_listitem_img {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  cursor: pointer;
}
.favo_listitem_img_zoom {
  position: absolute;
  top: unset;
  left: unset;
  bottom: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}
.favo_listitem_img:hover {
  opacity: 0.6;
}

.favo_label {
  font-weight: bold;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 768px) {
  .favo_label {
    padding-right: 8rem;
  }
}
.favo_label:after {
  color: #ffffff;
  display: inline-block;
  position: absolute;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 3px;
  top: -40px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .favo_label:after {
    font-size: 0.9rem;
    right: 10px;
    bottom: 5px;
    left: unset;
    top: unset;
  }
}
.favo_label.ondemand:after {
  content: "オンデマンド印刷";
  background-color: rgb(30, 144, 255);
}
.favo_label.offset:after {
  content: "オフセット印刷";
  background-color: rgb(0, 174, 149);
}

.favo_modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: left;
  visibility: hidden;
  transition: all 0.15s;
  opacity: 0;
}
.favo_modal.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}
.favo_modal_body {
  width: 90%;
  height: auto;
  max-height: 90%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem 2rem 4rem 2rem;
  box-sizing: border-box;
  max-width: 700px;
}
@media screen and (min-width: 768px) {
  .favo_modal_body {
    width: auto;
    min-width: 600px;
    min-height: 360px;
    height: auto;
  }
}
.favo_modal_close {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #cccccc;
  cursor: pointer;
}
.favo_modal_close:before, .favo_modal_close:after {
  content: "";
  display: inline-block;
  width: 20px;
  border-bottom: 1px solid #cccccc;
  position: absolute;
  top: 50%;
  left: 50%;
}
.favo_modal_close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.favo_modal_close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.favo_modal_name {
  font-size: 1.2rem;
  text-align: left;
  border-bottom: 1px dotted #cccccc;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .favo_modal_name {
    margin-bottom: 0.5rem;
  }
}
.favo_modal_flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
}
.favo_modal_flex.column {
  flex-direction: column;
}
.favo_modal_flexitem {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.favo_modal_btn_remove {
  padding: 0.5rem 2rem;
  border: 1px solid #cc0000;
  background-color: #cc0000;
  color: #ffffff;
  border-radius: 3px;
  margin-right: 0.5rem;
  cursor: pointer;
  transition: all 0.15s;
}
.favo_modal_btn_remove:hover {
  opacity: 0.8;
}
.favo_modal_btn_selection {
  padding: 0.5rem 2rem;
  border: 1px solid rgb(0, 174, 149);
  background-color: rgb(0, 174, 149);
  color: #ffffff;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
}
.favo_modal_btn_selection:hover {
  opacity: 0.8;
}
.favo_modal_link {
  position: absolute;
  bottom: 15px;
  right: 15px;
  text-decoration: underline !important;
  color: rgb(30, 144, 255) !important;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .favo_modal_link {
    font-size: 1rem;
  }
}
.favo_modal_img {
  height: auto;
  width: 100% !important;
  margin-bottom: 1rem;
  max-height: 400px;
}
@media screen and (min-width: 768px) {
  .favo_modal_img {
    width: auto;
  }
}

.favo_listitem.row {
  flex-direction: row;
}
.favo_listitem.column {
  flex-direction: column;
}
.favo_listitem.nowrap {
  flex-wrap: nowrap;
}
.favo_listitem.flyer {
  width: 220px;
  height: auto;
}
.favo_listitem.ticket {
  width: 350px;
  height: 170px;
}
.favo_listitem_h3 {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .favo_listitem_h3 {
    font-size: 0.9rem;
  }
}
.favo_listitem_child {
  box-sizing: border-box;
  position: relative;
}
.favo_listitem_child:first-child {
  background-color: #ffffff;
  width: 100%;
  height: auto;
  padding: 1rem 0.5rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .favo_listitem_child:first-child {
    width: 180px;
    margin: 0;
  }
}
.favo_listitem_child:first-child.flyer {
  width: 190px;
  height: auto;
  margin-bottom: 1rem;
  padding: 0.5rem;
}
.favo_listitem_child:last-child {
  width: 150px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .favo_listitem_child:last-child {
    height: 90px;
  }
}
.favo_listitem_child:last-child.flyer {
  height: auto;
  text-align: center;
  margin: 0;
}
.favo_listitem_btn_zoom {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  color: #000000;
  background-color: #ffffff;
  padding: 0.2rem 1rem;
  border-radius: 5px;
  border: 1px solid rgb(30, 144, 255);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.favo_listitem_btn_zoom:before {
  content: url(../images/favorite/icon_magnifying.svg);
  display: inline-block;
  color: rgb(30, 144, 255);
  margin-right: 0.5rem;
  width: 15px;
  height: auto;
}
.favo_listitem_btn_zoom:hover {
  background-color: rgb(30, 144, 255);
  color: #ffffff;
}
.favo_listitem_btn_zoom:hover:before {
  color: #ffffff;
}
.favo_listitem_btn_zoom.flyer {
  margin-bottom: 0.5rem;
}
.favo_listitem_btn_remove {
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  color: rgb(30, 144, 255);
  margin-bottom: 0.5rem;
  background-color: transparent;
}
.favo_listitem_btn_remove:before {
  content: url(../images/favorite/icon_garbage.svg);
  display: inline-block;
  width: 15px;
  height: auto;
  margin-right: 3px;
}
.favo_listitem_btn_remove:hover {
  color: rgb(255, 87, 51);
}
.favo_listitem_btn_select {
  border: none;
  padding: 0.2rem 0.5rem;
  background-color: rgb(0, 174, 149);
  color: #ffffff;
  margin-bottom: 0.5rem;
  border-radius: 3px;
  cursor: pointer;
}
.favo_listitem_btn_select.active {
  background-color: rgb(255, 87, 51);
}

.favo_remove_modal_body {
  min-width: 300px;
  min-height: 200px;
  background-color: #ffffff;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid rgb(30, 144, 255);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.favo_remove_modal_text {
  font-size: 1.1rem;
  text-align: center;
  line-height: 200%;
  font-weight: 900;
}
.favo_remove_modal_close {
  padding: 0.5rem 2rem;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-size: 1rem;
  background-color: rgb(30, 144, 255);
  color: #ffffff;
  border: none;
  border-radius: 5px;
}

.favo_form {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.15s;
  z-index: 900;
  transform: translateX(100%);
  cursor: pointer;
}
.favo_form.is-active {
  transform: translateX(0);
}
.favo_form_img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .favo_form_img {
    max-width: 100%;
    width: auto;
  }
}
.favo_form_body {
  background-color: #ffffff;
  width: 70%;
  height: auto;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem 2rem 4rem;
  text-align: center;
  cursor: auto;
}
@media screen and (min-width: 768px) {
  .favo_form_body {
    min-width: 600px;
    width: auto;
  }
}
.favo_form_inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  margin-bottom: 1rem;
}
.favo_form_selected_pop {
  border: none;
  background-color: rgb(0, 174, 149);
  color: #FFFFFF;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.15s;
  position: fixed;
  top: 58%;
  right: -100%;
  transform: translate(0, -50%);
  z-index: 1000;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .favo_form_selected_pop {
    top: 45%;
  }
}
.favo_form_selected_pop.is-active {
  right: 0;
}
.favo_form_btn_submit {
  font-size: 0.9rem;
  padding: 0.4rem 1rem;
  color: #ffffff;
  border: none;
  background-color: rgb(0, 174, 149);
  border-radius: 2px;
  cursor: pointer;
}
.favo_form_btn_submit.disabled {
  background-color: gray;
  cursor: not-allowed;
}
.favo_form_btn_clear {
  cursor: pointer;
  font-size: 0.9rem;
  border: none;
  background-color: transparent;
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-decoration: underline;
  transition: all 0.15s;
}
.favo_form_btn_clear:hover {
  opacity: 0.6;
}
.favo_form_btn_close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #cccccc;
  border: 1px solid #cccccc;
  background-color: transparent;
  cursor: pointer;
}
.favo_form_omote, .favo_form_ura {
  margin: 0 0.5rem 0.5rem;
  background-color: #f2f2f2;
  padding: 0.5rem;
  display: none;
  width: 100%;
}
.favo_form_omote.active {
  display: block;
}
.favo_form_ura.active {
  display: block;
}
.favo_form_text {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}
.favo_form_h3 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .favo_form_h3 {
    font-size: 1.2rem;
  }
}

.favo_description_step {
  position: absolute;
  left: 0;
  top: 0;
}
.favo_description_movie {
  width: 100%;
  height: 220px;
}
@media screen and (min-width: 768px) {
  .favo_description_movie {
    width: 100%;
    height: 400px;
  }
}
.favo_description_btn {
  display: block;
  border: none;
  text-decoration: underline;
  background-color: transparent;
  margin: 0 0 1rem auto;
  color: rgb(30, 144, 255);
  cursor: pointer;
}
.favo_description_btn_close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: 1px solid #cccccc;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.favo_description_btn_close:after {
  content: "×";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
}
.favo_description_modal {
  transition: all 0.15s;
  background-color: rgba(0, 0, 0, 0.6);
  color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}
.favo_description_modal.active {
  z-index: 1001;
  visibility: visible;
  opacity: 1;
}
.favo_description_modalbody {
  width: 90%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 2rem 0.5rem;
  box-sizing: border-box;
  cursor: auto;
}
@media screen and (min-width: 768px) {
  .favo_description_modalbody {
    width: 720px;
    height: 620px;
  }
}
.favo_description_h3 {
  padding-bottom: 0.7rem;
  margin-bottom: 1rem;
  border-bottom: 1px dotted #cccccc;
}
.favo_description_paragraph {
  font-size: 0.9rem;
  line-height: 160%;
}
.favo_description_img {
  width: 100%;
  height: auto;
  padding: 1rem 0;
}

.swiper-slide {
  padding-top: 1.5rem;
}
.swiper-button-next, .swiper-button-prev {
  width: 30px !important;
  height: 30px !important;
  color: #ffffff;
  background-color: #000000;
  border-radius: 50%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .swiper-button-next, .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }
}
.swiper-button-next:after, .swiper-button-prev:after {
  color: #ffffff;
  font-size: 0.9rem !important;
}
@media screen and (min-width: 768px) {
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.1rem !important;
  }
}