@charset "UTF-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/*全体共通--------------*/
html {
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 游ゴシック, YuGothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro,
    メイリオ, Meiryo, sans-serif;
  position: relative;
  color: #323232;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f6f8fa;
}

a {
  text-decoration: none;
  color: #247dc2;
}

a:hover {
  text-decoration: underline;
}

ul {
  list-style: none;
}

.txt_left {
  text-align: left;
}

.txt_right {
  text-align: right;
}

.txt_center {
  text-align: center;
}

.txt_bold {
  font-weight: 600;
}

.txt_small {
  font-size: 80%;
}

.txt_red {
  color: #f00;
}

.txt_white {
  color: #fff;
}

.validation_msg {
  display: none;
}

.mrg_t00 {
  margin-top: 0px !important;
}

.mrg_t20 {
  margin-top: 20px !important;
}

.mrg_r00 {
  margin-right: 0px !important;
}

.mrg_r05 {
  margin-right: 5px !important;
}

.mrg_r10 {
  margin-right: 10px !important;
}

.pad_l05 {
  padding-left: 5px !important;
}

.pad_t00 {
  padding-top: 0px !important;
}

.pad_t05 {
  padding-top: 5px !important;
}

.pad_t10 {
  padding-top: 10px !important;
}

.pad_t20 {
  padding-top: 20px !important;
}

.pad_b20 {
  padding-bottom: 20px !important;
}

/*コンテンツ共通------------------*/
.contents {
  max-width: 1000px;
  margin: 0px auto;
  margin-top: 93px;
  width: 100%;
  padding-bottom: 40px;
}

.item {
  width: 90%;
  margin: 0px auto;
  padding-top: 40px;
  line-height: 1.6em;
  clear: both;
}

@media screen and (max-width: 768px) {
  .item {
    padding-top: 20px;
  }
}

.contents .item {
  background-color: #fff;
  max-width: 1200px;
  border-radius: 5px;
  box-shadow: 1px 1px 30px #ddd;
  margin: 10px auto;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .contents .item {
    padding-top: 20px;
  }
}

/*見出し------------------*/
h2 {
  width: 90%;
  max-width: 1200px;
  padding: 30px 0px;
  margin: 0px auto;
  font-size: 200%;
  text-align: center;
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 125%;
    padding: 20px 0px;
  }
}

h3 {
  padding: 10px;
  border-left: 8px solid #ff7789;
  background: #373441;
  border-radius: 5px;
  color: #fff;
}

/*ボタン------------------*/
.btn {
  text-align: center;
  font-weight: 600;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .btn {
    width: 100%;
  }
}

.btn a {
  display: block;
  padding: 15px;
}

.btn a:hover {
  text-decoration: none;
}

/*テーブル------------------*/
table {
  margin-top: 20px;
  font-size: 80%;
  width: 100%;
}

table th {
  padding: 10px;
}

table td {
  padding: 15px 10px;
}

table tr {
  border-bottom: 1px dotted #eeeeee;
}

/*必須------------------*/
.hissu {
  font-size: 80%;
  color: #f00;
  padding-left: 5px;
}

/*入力エリア------------------*/
.input_area {
  padding: 10px;
  border: 1px solid #d7d7d7;
}

input.single_txt {
  width: 100%;
}

/*入力エリア プルダウン------------------*/
.cp_ipselect {
  overflow: hidden;
  width: 90%;
  text-align: center;
}

.cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.cp_ipselect select::-ms-expand {
  display: none;
}

.cp_ipselect.cp_sl {
  position: relative;
  border: 1px solid #d7d7d7;
  border-radius: 2px;
  background: #ffffff;
}

.cp_ipselect.cp_sl::before {
  position: absolute;
  top: 1.2em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #3c3c3c;
  pointer-events: none;
}

.cp_ipselect.cp_sl select {
  padding: 10px 38px 10px 10px;
  color: #3c3c3c;
}

/*ステータスアイコン------------------*/
/*販売中*/
.icon_states_open {
  min-width: 80px;
  text-align: center;
  padding: 0px 5px;
  background: #247dc2;
  border-radius: 50px;
  font-weight: bold;
  color: #fff;
  font-size: 70%;
}

/*販売前*/
.icon_states_close {
  min-width: 80px;
  text-align: center;
  padding: 0px 5px;
  border: 1px solid #6c6c6c;
  border-radius: 50px;
  font-weight: bold;
  color: #6c6c6c;
  font-size: 70%;
}

/*中止*/
.icon_states_cancel {
  min-width: 80px;
  text-align: center;
  padding: 0px 5px;
  background-color: #ccc;
  border-radius: 50px;
  font-weight: bold;
  color: #fff;
  font-size: 70%;
}

/*終了*/
.icon_states_end {
  min-width: 80px;
  text-align: center;
  padding: 0px 5px;
  background-color: #323232;
  border-radius: 50px;
  font-weight: bold;
  color: #fff;
  font-size: 70%;
}

/*parts----*/
/*header------------------------------*/
header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 100;
}

.upper {
  background: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 3px solid #000;
  padding: 10px 20px;
  align-items: center;
}

.upper h1 {
  display: block;
  width: 130px;
  height: 20px;
}
.upper i.fa-magnifying-glass{
  display: none;
}
@media screen and (max-width: 768px) {
  .upper i.fa-magnifying-glass{
    display: block;
    padding-right: 25px;
    font-size: 20px;
    padding-top: 2px;
    color: #000;
  }

}
.search_container{
  box-sizing: border-box;
  position: relative;
  padding: 5px 10px;
  border-radius: 20px;
  width: 60%;
  overflow: hidden;
}
.search_container_sp{
  display: none;
}
@media screen and (max-width: 768px) {
  .search_container{
    display: none;
  }
  .search_container_sp{
    display: block;
  }
}

.search_container .search_box{
  display: flex;
}


.search_container .search_left{
  width: 30%;
  max-width: 230px;
  border: 1px solid #999;
  border-right: none;
  border-radius: 50px 0px 0px 50px;
  padding: 5px 0px 5px 20px;
}
.search_container .cp_ipselect {
overflow: hidden;
width: 100%;
text-align: center;
}
.search_container .cp_ipselect select {
width: 100%;
padding-right: 1em;
cursor: pointer;
text-indent: 0.01px;
text-overflow: ellipsis;
border: none;
outline: none;
background: transparent;
background-image: none;
box-shadow: none;
-webkit-appearance: none;
appearance: none;
}
.search_container .cp_ipselect select::-ms-expand {
  display: none;
}
.search_container .cp_ipselect.cp_sl01 {
position: relative;
border-right: 1px solid #999;
background: #ffffff;
}
.search_container .cp_ipselect.cp_sl01::before {
position: absolute;
top: 5px;
right: 0.8em;
width: 0;
height: 0;
padding: 0;
content: '';
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid #999;
pointer-events: none;
}
.search_container .cp_ipselect.cp_sl01 select {
padding:  0px 38px 0px 0px;
color: black;
}

.search_container input[type="text"]{
  border: none;
  width: 85%;
  font-size: 80%;
  border: 1px solid #999;
  border-left: none;
  border-radius: 0px 50px 50px 0px;
  padding-left: 5px;
  padding-right: 40px;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f002";
  border: none;
  background: none;
  color: #323232;
  position: absolute;
  right: 15px;
  top:11px;
  outline : none;
}
.search_container input::placeholder {
  color: #999999;
}
.upper nav a {
  font-size: 80%;
  color: #000;
}


.search_sp_wrapper{
  display: none;
}
@media screen and (max-width: 768px) {
  .search_container{
    display: none;
  }
  .search_sp_wrapper{
    display: block;
    width: 100%;
    border-bottom: 2px solid #eeeeee;
    background-color: #f6f8fa;
    padding: 0px 0px 10px 0px;
  }
  .search_sp_wrapper button {
    float: right;
    padding: 10px 10px 5px 0px;

  }
  .search_sp_wrapper .search_container_sp{
    clear: right;
    width: 90%;
    margin: 0px auto;
    position: relative;
  }

  .search_container_sp .search_box{
    display: flex;
    height: 40px;
  }


  .search_container_sp .search_left{
    width: 40%;
    border: 1px solid #999;
    border-right: none;
    border-radius: 20px 0px 0px 20px;
    padding: 10px 0px 10px 10px;
    background-color: #fff;
    height:40px;
  }
  .searcsearch_container_sp_container .cp_ipselect {
  overflow: hidden;
  width: 100%;
  text-align: center;
  }
  .search_container_sp .cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  }
  .search_container_sp .cp_ipselect select::-ms-expand {
    display: none;
  }
  .search_container_sp .cp_ipselect.cp_sl01 {
  position: relative;
  border-right: 1px solid #999;
  background: #ffffff;
  }
  .search_container_sp .cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 5px;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #999;
  pointer-events: none;
  }
  .search_container_sp .cp_ipselect.cp_sl01 select {
  padding:  0px 38px 0px 0px;
  color: black;
  }







  .search_sp_wrapper .search_container_sp input[type="text"]{
    width: 60%;
    font-size: 80%;
    box-sizing: border-box;
    border: 1px solid #999;
    border-left:none;
    padding: 10px 40px 10px 0px;
    border-radius: 0px 20px 20px 0px;
    overflow: hidden;
    height: 40px;
  }
  .search_sp_wrapper .search_container_sp input[type="text"]:focus {
    outline: 0;
  }
  .search_sp_wrapper .search_container_sp input[type="submit"]{
    cursor: pointer;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f002";
    border: none;
    background: none;
    color: #323232;
    position: absolute;
    right: 11px;
    top:11px;
    outline : none;
  }
  .search_container_sp input::placeholder {
    color: #999999;
  }
}


/*breadCrumb----------------*/
.bc_wrapper {
  background: #fff;
  border-bottom: 2px solid #eeeeee;
}

.breadCrumb {
  font-size: 70%;
  text-align: left;
  padding: 15px 0px !important;
  color: #000;
  max-width: 1000px;
  width: 100%;
  margin: 0px auto;
}

.breadCrumb .item {
  padding-top: 0px;
  overflow: hidden;
  text-wrap: nowrap;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.breadCrumb span {
  padding: 0px 10px;
}

@media screen and (max-width: 768px) {
  .breadCrumb {
    font-size: 60%;
  }
}

/*footer------------------------------*/
footer {
  margin-top: auto;
  clear: both;
  line-height: 1.6;
  background-color: #f2f2f2;
}

footer .footer_inner {
  font-size: 70%;
  color: #3c3c3c;
  width: 90%;
  margin: 0px auto;
  line-height: 1.6em;
  padding: 40px 0px;
}

footer li,
footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

footer .footitem {
  display: inline-block;
}

footer .footitem a {
  display: inline-block;
  padding: 0 6px;
  margin: 5px 0;
  border-right: 1px solid #ccc;
  color: #3c3c3c;
}

footer .footitem a:hover {
  color: #3c3c3c;
}

footer .footer_inner .link_list {
  text-align: center;
}

footer .footer_inner .credit {
  padding-top: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  footer .footer_inner {
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }

  footer .footitem {
    display: block;
    border-top: 1px solid #ccc;
  }

  footer .footitem:last-child {
    border-bottom: 1px solid #ccc;
  }

  footer .footitem a {
    display: block;
    padding: 15px 20px;
    margin: 0;
    border-right: 0;
  }

  footer .footer_inner .credit {
    padding-bottom: 20px;
  }
}

.pager .pagination {
  text-align: center;
  margin-top: 20px;
}

.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
  border-radius: 10px;
}

.pager .pagination li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
  color: #fff;
  background: #3c394d;
}

.pager .pagination li a:hover {
  opacity: 0.8;
}

.pager .pagination li a.active {
  background: #3c394d;
  color: #fff;
  opacity: 1;
}
.pager .pagination li a:hover span,
.pager .pagination li a.active span {
  background: #000080;
}

@media only screen and (max-width: 767px) {
  .pager .pagination li {
    display: none;
  }

  .pager .pagination li.pre,
  .pager .pagination li.next {
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a {
    width: 100%;
    text-align: center;
  }

  .pager .pagination li.pre span::after {
    content: "　前の10件へ";
  }

  .pager .pagination li.next span::before {
    content: "次の10件へ　";
  }
}

.checkbox-input {
  display: none;
}

.checkbox-parts {
  padding-left: 25px;
  position: relative;
  margin-right: 20px;
}

.checkbox-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 4px;
}

.checkbox-input:checked + .checkbox-parts {
  color: #ef8a86;
}

.checkbox-input:checked + .checkbox-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #ef8a86;
  border-right: 3px solid #ef8a86;
}

/*page----*/
.consumer_event_list {
  /*table*/
  /*画像トリミング*/
}

.consumer_event_list .scroll-table {
  overflow-x: scroll;
}

.consumer_event_list table {
  margin-top: 0px;
}

.consumer_event_list table tr:first-child {
  border: none;
}

.consumer_event_list table th {
  background: #f4f4f4;
  white-space: nowrap;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .consumer_event_list table th:last-child {
    text-align: center;
  }
}
.consumer_event_list table td {
  vertical-align: middle;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .consumer_event_list table td {
    min-width: 10em;
  }
}

.consumer_event_list table td.item_title {
  width: 400px;
  display: flex;
  align-items: center;
  position: relative;
}
.consumer_event_list table td.item_title a {
  display: block;
  position: absolute;
  width: 400px;
  height: 100%;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .consumer_event_list table td.item_title {
    width: 90px;
    display: block;
    padding: 15px 0px;

  }
  .consumer_event_list table td.item_title a {
    display: block;
    width: 100%;
  }
}
.consumer_event_list table td.item_title .icon_states_open {
  width: 100px;
}
.consumer_event_list table td.item_title .icon_states_close {
  width: 100px;
}
.consumer_event_list table td.item_title .icon_states_cancel {
  width: 100px;
}
.consumer_event_list table td.item_title .icon_states_end {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .consumer_event_list table td.item_title .icon_states_open {
    min-width: auto;
    width: max-content;
    padding: 0px 2em;
  }
  .consumer_event_list table td.item_title .icon_states_close {
    min-width: auto;
    width: max-content;
    padding: 0px 2em;
  }
  .consumer_event_list table td.item_title .icon_states_cancel {
    min-width: auto;
    width: max-content;
    padding: 0px 2em;
  }
  .consumer_event_list table td.item_title .icon_states_end {
    min-width: auto;
    width: max-content;
    padding: 0px 2em;
  }
}
.consumer_event_list table td.item_title .item_title_right {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .consumer_event_list table td.item_title .item_title_right {
    width: 100%;
    padding-top: 10px;
  }
}

.consumer_event_list table td.item_title p {
  width: 100%;
  text-align: left;
  padding-top: 10px;
  line-height: 1.6em;
  color: #247dc2;
}
@media screen and (max-width: 768px) {
  .consumer_event_list table td.item_title p {
    max-width: 10em;
    padding-top: 5px;
  }
}

.consumer_event_list table .item_thum {
  position: relative;
  width: 30%;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .consumer_event_list table .item_thum {
    width: 90px;
  }
}

.consumer_event_list table .item_thum::before {
  display: block;
  content: "";
  padding-top: 100%;
}

.consumer_event_list table .item_thum img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #999;
  object-fit: contain;
  background: #ddd;
}

.consumer_event_list table td.item_date {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .consumer_event_list table td.item_date {
    line-height: 1.8em;
  }
}
.consumer_event_list table td.item_date br {
  display: none;
}
@media screen and (max-width: 768px) {
  .consumer_event_list table td.item_date br {
    display: block;
  }
}
.consumer_event_list table td.item_watch_url {
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .consumer_event_list table td.item_ticket_title {
    max-width: 10em;
    padding: 0px;
  }
}
.consumer_purchase {
  /*イベントタイトル*/
  /*画像トリミング*/
  /*table*/
  /*画像トリミング*/
}

.contact_list td:first-child a,
.contact_list td:nth-child(4) a {
  color: #323232;
  text-decoration: none;
}
.consumer_purchase .item_title {
  width: 100%;
  display: flex;
  align-items: center;
}

.consumer_purchase .item_title p {
  width: 90%;
  text-align: left;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .consumer_purchase .item_title p {
    width: 70%;
  }
}

.consumer_purchase .item_thum {
  position: relative;
  width: 10%;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .consumer_purchase .item_thum {
    width: 30%;
  }
}

.consumer_purchase .item_thum::before {
  display: block;
  content: "";
  padding-top: 100%;
}

.consumer_purchase .item_thum img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #999;
  object-fit: contain;
  background: #ddd;
}

.consumer_purchase table tr:first-child {
  border-top: 1px dotted #d7d7d7;
}

.consumer_purchase table th {
  background: #f4f4f4;
  white-space: nowrap;
  vertical-align: middle;
  text-align: right;
}

.consumer_purchase table td {
  vertical-align: middle;
}

.consumer_purchase table td.total {
  font-weight: 600;
  text-align: right;
  font-size: 120%;
}

.consumer_purchase p.txt_caution {
  padding-top: 20px;
  font-size: 80%;
}

.consumer_purchase .kiyaku_agree {
  margin: 0px auto;
  text-align: center;
}

.consumer_purchase .purchase {
  margin: 20px auto 0px auto;
  width: 30%;
}

@media screen and (max-width: 768px) {
  .consumer_purchase .purchase {
    width: 100%;
  }
}

.consumer_purchase .purchase a.btn_purchase {
  display: block;
  padding: 15px;
  border-radius: 50px;
  width: 100%;
  font-weight: 600;
  background: #ff7790;
  color: #fff;
}

.consumer_purchase .purchase a.btn_purchase:hover {
  transition: all 0.3s;
  opacity: 0.8;
}

.consumer_purchase .purchase a.disabled {
  pointer-events: none;
  cursor: default;
}

.consumer_purchase table .item_thum {
  position: relative;
  width: 30%;
  margin-right: 10px;
}

.consumer_purchase table .item_thum::before {
  display: block;
  content: "";
  padding-top: 100%;
}

.consumer_purchase table .item_thum img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #999;
  object-fit: contain;
  background: #ddd;
}

.consumer_purchase .card-form {
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .consumer_purchase .card-form {
    padding: 20px 0px;
  }
}

.consumer_purchase .card-form .item-card {
  padding: 10px 40px;
}

@media screen and (max-width: 768px) {
  .consumer_purchase .card-form .item-card {
    padding: 10px 0px;
  }
}

.consumer_purchase .card-form .item-card.d-flex {
  display: flex;
}

.consumer_purchase .card-form .item-card .item-card-number {
  position: relative;
}

.consumer_purchase .card-form .item-card .field {
  width: 100%;
  padding: 15px 10px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #d7d7d7;
}

.consumer_purchase #old-card {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 20px;
}

.consumer_purchase .form_active {
  display: block;
}

.consumer_purchase .form_hide {
  display: none;
}

.consumer_purchase .card-form .item-card .item-card-expiry {
  width: 50%;
  margin-right: 5px;
}

.consumer_purchase .card-form .item-card .item-card-cvc {
  width: 50%;
  margin-left: 5px;
}

.consumer_purchase .card-form .item-card .item-card-number .card-icon {
  position: absolute;
  top: 40px;
  right: 0;
}

.consumer_purchase
  .card-form
  .item-card
  .item-card-number
  .card-icon
  .icon-list {
  display: flex;
}

.consumer_purchase
  .card-form
  .item-card
  .item-card-number
  .card-icon
  .icon-list
  .icon-item {
  padding-right: 2px;
}

.consumer_purchase .purchase-error {
  background: #cd49492b;
  text-align: center;
  margin-top: 20px;
}

.consumer_complete {
  /*table*/
}

.consumer_complete .item:last-child {
  box-shadow: none;
  background: transparent;
  padding: 20px 0px;
}

.consumer_complete p a {
  color: #f00;
}

.consumer_complete dl {
  background: #ffecec;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 15%;
  font-size: 80%;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .consumer_complete dl {
    display: block;
    padding: 15px;
    width: 100%;
  }
}

.consumer_complete dl dt {
  width: 25%;
  padding: 0px 20px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .consumer_complete dl dt {
    width: 100%;
    padding: 0px;
    padding-top: 10px;
  }

  .consumer_complete dl dt:first-child {
    padding-top: 0px;
  }
}

.consumer_complete dl dd {
  width: 75%;
  padding: 0px 20px;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .consumer_complete dl dd {
    width: 100%;
    padding: 0px;
  }
}

.consumer_complete .complate {
  margin: 20px auto 0px auto;
  width: 30%;
}

@media screen and (max-width: 768px) {
  .consumer_complete .complate {
    width: 100%;
  }
}

.consumer_complete .complate a.btn_complate {
  display: block;
  padding: 15px;
  border-radius: 50px;
  width: 100%;
  font-weight: 600;
  background: #666274;
  color: #fff;
}

.consumer_complete .complate a.btn_complate:hover {
  opacity: 0.8;
  transition: all 0.3s;
}

.event_detail {
  /*table*/
}

.event_detail .event_info {
  width: 100%;
  margin-top: 40px;
  display: flex;
}

@media screen and (max-width: 768px) {
  .event_detail .event_info {
    display: block;
    margin-top: 0px;
  }
}

.event_detail .event_info .info_left {
  width: 57%;
  padding-right: 3%;
  /*画像トリミング*/
}

@media screen and (max-width: 768px) {
  .event_detail .event_info .info_left {
    width: 100%;
    padding-right: 0%;
  }
}

.event_detail .event_info .info_left ul {
  margin-top: 10px;
  display: flex;
  /* justify-content: space-between; */
}

.event_detail .event_info .info_left ul li {
  width: 30%;
}

.event_detail .event_info .info_left ul li:not(:first-child) {
  margin-left: 25px;
}

.event_detail .event_info .info_left .item_thum {
  /* position: relative; */
  width: 100%;
  margin-right: 10px;
  text-align: center;
}

.event_detail .event_info .info_left .item_thum::before {
  display: block;
  /* content: ''; */
  padding-top: 75%;
}

.event_detail .event_info .info_left .full_padding::before {
  padding-top: 100%;
}

.event_detail .event_info .info_left .item_thum img {
  /* position: absolute; */
  /* top: 0;
  left: 0; */
  width: 100%;
  /* height: auto; */
  max-height: 460px;
  box-shadow: 1px 1px 10px #eee;
  object-fit: contain;
  /* max-height: 100%; */
  /* background: #ddd; */
}

.event_detail .event_info .info_right {
  width: 40%;
}

.event_detail .event_info .info_right .complate {
  width: 258px;
  max-width: 80%;
}

@media screen and (max-width: 768px) {
  .event_detail .event_info .info_right {
    width: 100%;
    margin-top: 20px;
  }

  .event_detail .event_info .info_left .item_thum::before {
    padding-top: 100%;
  }

  .event_detail .event_info .info_left .thumb_img_detail {
    width: 100% !important;
    left: 0 !important;
  }

  .event_detail .btn_map {
    margin: 15px auto 0;
  }
}

.event_detail .ticket_detail {
  margin-top: 20px;
  border: 0.5px solid #000;
  background-color: #fff;
  padding-bottom: 20px;
}

.event_detail .ticket_none_member {
  background-color: #f2f2f2;
}

.event_detail .btn_area {
  margin: 10px auto;
  display: flex;
  justify-content: center;
}

.event_detail .btn_map {
  padding: 3px;
  font-weight: 600;
  border-radius: 50px;
  background: #666274;
  color: #fff;
  transition: 0.2s all;
  width: 120px;
  margin-top: 15px;
  text-align: center;
  font-size: 90%;
}

.event_detail .event_name {
  padding: 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #000;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .event_detail .event_name {
    padding: 15px;
  }
}
.event_detail .list_ticket table tr {
  border-bottom: 1px dotted #000;
}

.event_detail .event_name .name_status {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .event_detail .event_name .name_status .icon_states_end {
    max-height: 26px;
  }
  .event_detail .event_name .name_status .icon_states_open {
    max-height: 26px;
  }
  .event_detail .event_name .name_status .icon_states_close {
    max-height: 26px;
  }
  .event_detail .event_name .name_status .icon_states_cancel {
    max-height: 26px;
  }
}

.event_detail .for_member {
  display: flex;
  align-items: center;
  border: 2px solid red;
  padding: 5px 10px;
  border-radius: 5px;
  color: red;
  font-weight: bold;
}
.event_detail .for_member_sp {
  display: none;
}
.event_detail .for_member i {
  font-size: 20px;
  margin-right: 5px;
  color: red;
}
.event_detail .for_member_sp i {
  display: none;
}
@media screen and (max-width: 768px) {
  .event_detail .for_member {
    display: none;
  }
  .event_detail .for_member i {
    display: none;
  }
  .event_detail .for_member_sp {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid red;
    padding: 0px 5px;
    border-radius: 5px;
    color: red;
    font-weight: bold;
    font-size: 70%;
    margin-bottom: 10px;
  }
  .event_detail .for_member_sp i {
    display: block;
    margin-right: 3px;
    color: red;
  }
}

.event_detail .event_name p {
  padding-left: 10px;
  font-weight: 600;
}

.event_detail table {
  margin-top: 0px;
}

.event_detail table tr:first-child {
  border-top: 1px dotted #eeeeee;
}

.event_detail table th {
  background: #3c394d;
  color: #fff;
  vertical-align: middle;
  text-align: right;
  width: 20%;
  white-space: nowrap;
}

.event_detail table td {
  vertical-align: middle;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .event_detail table th {
    text-align: center;
  }
  .event_detail table th,
  .event_detail table td {
    display: block;
    width: 100%;
  }
}

.event_detail .complate {
  margin: 20px auto 0px auto;
  width: 30%;
}

.event_detail .item p {
  word-wrap: break-word;
}

.event_detail .item .movie_outer{
  width: 70%;
  margin: 0px auto;
}
.event_detail .item .movie_area{
  margin: 20px auto;
  text-align: center;
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}
.event_detail .item .movie_area iframe{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
@media screen and (max-width: 768px) {
  .event_detail .item .movie_outer{
    width: 100%;
  }
  .event_detail .item .movie_area{
    margin: 20px auto;
  }
}
@media screen and (max-width: 768px) {
  .event_detail .item .movie_area iframe{
    width:100%;
    height:100%;
  }
}
@media screen and (max-width: 768px) {
  .event_detail .complate {
    width: 80%;
  }
}

.event_detail .complate .btn_purchased {
  display: block;
  padding: 15px;
  width: 100%;
  font-weight: 600;
  border: 4px solid #ccc;
  background: #ccc;
  color: #fff;
  border-radius: 50px;
}

.event_detail .complate a.btn_complate,
.event_detail .complate div.btn_complate {
  display: block;
  padding: 15px;
  width: 100%;
  font-weight: 600;
  background: #ff7789;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
}

.event_detail .complate a.btn_complate_disable {
  display: block;
  padding: 15px;
  width: 100%;
  font-weight: 600;
  background: #ccc;
  color: #fff;
  border-radius: 50px;
  pointer-events: none;
}

.event_detail .complate div.btn_complate_disable {
  display: block;
  padding: 15px;
  width: 100%;
  font-weight: 600;
  background: #ccc;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
}

.event_detail .complate a.btn_complate:hover,
.event_detail .complate div.btn_complate:hover {
  transition: all 0.3s;
  opacity: 0.8;
}

.event_detail .complate a.btn_complate i,
.event_detail .complate div.btn_complate i,
.event_detail .complate a.btn_complate_disable i,
.event_detail .complate div.btn_complate_disable i {
  color: #fff;
  padding-left: 5px;
}

.event_detail .item-share {
  max-width: 1200px;
  margin: 10px auto;
  padding: 20px;
  width: 90%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .event_detail .item-share {
    padding: 20px 10px 0px 10px;
  }
}

.event_detail .share-bottom {
  padding: 20px 0;
}

.event_detail .btn-share {
  float: right;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .event_detail .share-bottom .btn-share:first-child {
    margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .event_detail .btn-share {
    white-space: nowrap;
  }
  .event_detail .btn-share:first-child {
    margin-left: 0px;
  }
}

.event_detail .btn-share a {
  font-size: 13px;
  font-weight: normal;
  color: black;
}

.event_detail .btn-share .icon-share {
  color: black;
}

.event_detail .live_info {
  display: flex;
  justify-content: space-between;
}

.event_detail .live_info .live-status {
  margin: 20px auto 0px auto;
}
@media screen and (max-width: 768px) {
  .event_detail .live_info .live-status {
    width: 48.5%;
  }
}

.event_detail .live_info .live-status .btn_live_status {
  display: block;
  padding: 5px 10px;
  width: 100%;
  font-weight: 600;
  background: #ccc;
  color: #fff;
  border-radius: 50px;
  pointer-events: none;
  font-size: 80%;
  min-width: 130px;
}

.event_detail .live_info .live-status .btn_states_blue {
  background: #247dc2;
  border-radius: 50px;
  color: #fff;
}

.event_detail .external_url {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.text_note {
  display: flex;
  justify-content: center;
  padding: 25px 0px 25px 0px;
}

.text_note p:first-child {
  padding-bottom: 10px;
}

.event_contact a.btn_event_contact {
  display: block;
  padding: 15px;
  width: fit-content;
  font-weight: 600;
  border-radius: 50px;
  background: #666274;
  color: #fff;
}

.event_contact a.btn_event_contact span,
.event_contact a.btn_event_contact i {
  color: #fff;
}

.event_contact a.btn_event_contact i {
  padding-right: 10px;
}

.event_contact a.btn_event_contact:hover {
  transition: all 0.3s;
  opacity: 0.8;
}

.event_contact .contact_name {
  font-weight: bold;
  text-align: center;
}

.event_contact .description {
  padding: 20px 0px 0px 0px;
  line-height: 1.4em;
}

.event_contact .btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.event_contact .phone_number {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  font-size: 30px;
  font-weight: 700;
}

.event_contact .phone_number i {
  padding-right: 10px;
}

a[href^="tel"] {
  text-decoration: inherit;
  color: inherit;
}

/*仮置き用*/
.bg_black20 {
  z-index: 500;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0px;
}

.modal_wrapper {
  z-index: 1000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/*枠-------*/
.modal_wrapper {
  width: 50%;
  padding: 20px;
  background: #f6f8fa;
  border-radius: 6px;
}

@media screen and (max-width: 768px) {
  .modal_wrapper {
    width: 90%;
  }
}

.modal_wrapper .btn_close {
  text-align: right;
}

.modal_wrapper .item {
  padding-top: 20px;
}

.modal_wrapper a.btn_complate {
  display: block;
  padding: 15px;
  width: 100%;
  font-weight: 600;
  background: #ff7789;
  color: #fff;
  border-radius: 50px;
}

.modal_wrapper a.btn_complate:hover {
  transition: all 0.3s;
  opacity: 0.8;
}

.modal_wrapper a.btn_complate i {
  color: #fff;
  padding-left: 5px;
}

.modal_wrapper a.btn_complate.btn_ok {
  background: #373441;
}

/* dropdown */
.dropbtn {
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover {
  opacity: 0.75;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 230px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  right: 0;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:first-child {
  pointer-events: none;
}

.dropdown-content a:nth-last-child(2) {
  border-bottom: 1px dotted #aaa;
}

.user-icon {
  margin-right: 2px;
  color: #000;
}

.dropdown a:hover {
  background-color: #ddd;
}

.dropdown .fa-chevron-down {
  font-size: 10px;
}

.show {
  display: block;
}

/* For share modal */
.modal_wrapper .item_share {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 1px 1px 30px #ddd;
  width: 100%;
  padding: 20px;
  margin-top: 10px;
}

.modal_wrapper .btn_close_share {
  cursor: pointer;
  text-align: right;
}

.list_btn_share ul {
  display: grid;
  margin-top: 20px;
  flex-wrap: wrap;
  grid-template-columns: 30% 30% 30%;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .list_btn_share ul {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .list_btn_share ul {
    margin-top: 0px;
  }
}

.list_btn_share li {
  margin-top: 10px;
  display: flex;
}

@media screen and (min-width: 768px) {
  .list_btn_share li:nth-child(1) {
    margin-right: 10%;
  }

  .list_btn_share li:nth-child(2) {
    margin-left: 5%;
    margin-right: 5%;
  }

  .list_btn_share li:nth-child(3) {
    margin-left: 10%;
  }

  .list_btn_share li:nth-of-type(4n) {
    margin-right: 0%;
  }
}

@media screen and (max-width: 768px) {
  .list_btn_share li {
    margin-top: 20px;
    margin-right: 0px;
  }
}

.list_btn_share li a {
  display: block;
  border: 4px solid #eeeeee;
  padding: 20px 15px;
  border-radius: 10px;
  width: 100%;
  font-weight: 600;
  background-color: #fff;
}

.list_btn_share li a:hover {
  border: 4px solid #ff7789;
  transition: all 0.3s;
}

.list_btn_share li a:hover {
  text-decoration: none;
}

.list_btn_share li a.event_end:hover {
  border: 4px solid #eeeeee !important;
}

.list_btn_share .menu_item {
  margin: 0px auto;
  text-align: center;
}

.list_btn_share .menu_item i {
  font-size: 200%;
}

.list_btn_share .menu_item p {
  padding-top: 15px;
  font-size: 100%;
}

.list_btn_share .menu_item p br {
  display: none;
}

.list_btn_share .share-description {
  padding-top: 20px;
}

.list_btn_share .share-description p {
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.2em;
}
.list_btn_share .share-description .link_txt {
  margin: 20px auto 10px auto;
  text-align: center;
  font-weight: 600;
}

.list_btn_share .copy-description {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .list_btn_share .menu_item p {
    line-height: 1.4em;
  }

  .list_btn_share .menu_item p br {
    display: block;
  }
}

.input_area {
  padding: 10px;
  border: 1px solid #d7d7d7;
}

input.single_txt {
  width: 100%;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav a.icon-contact {
  font-size: 24px;
  margin-right: 20px;
  position: relative;
}
nav a.icon-contact span.status {
  color: red;
  font-size: 40%;
  position: absolute;
  right: 0px;
  bottom: 0px;
}
#contact_form textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
}
@media screen and (max-width: 768px) {
  #contact_form .btn_area .save {
    width: 100%;
  }
}

#contact_form .btn_area .save a.btn_save {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  font-weight: 600;
  border-radius: 50px;
  background: #666274;
  color: #fff;
  margin: 10px;
}
@media screen and (max-width: 768px) {
  #contact_form .btn_area .save a.btn_save {
    margin: auto;
    width: 48%;
  }
}
#contact_form .btn_area {
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact_form .btn {
  display: flex;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  width: 500px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  #contact_form .btn {
    width: 100%;
  }
}
.user_send_contact {
  display: flex;
}
.user_send_contact br {
  display: none;
}
@media screen and (max-width: 768px) {
  .user_send_contact br {
    display: block;
  }
}
.icon_status_contact {
  width: 40px;
  text-align: center;
  padding: 0px 5px;
  background: #247dc2;
  border-radius: 3px;
  font-weight: bold;
  color: #fff;
  font-size: 70%;
  margin-right: 10px;
}
.consumer_event_list tr {
  cursor: pointer;
}
.purchase_ticket_table tr {
  cursor: default;
}
@media screen and (max-width: 768px) {
  .purchase_ticket_table tr {
    font-size: 80%;
  }
}

.consumer_event_list .status {
  float: left;
  padding: 0 10px;
  color: red;
}
.contact_subject {
  margin-top: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact_content {
  margin-top: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  font-weight: 550;
}
.contact_form textarea {
  margin-top: 20px;
}

.item-contact.header {
  font-weight: bold;
}

.item-contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border: 1px solid #ccc;
  padding: 10px 20px;
  align-items: center;
}

.item-contact .left {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.item-contact .left .icon_contact_detail {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  align-items: center;
}
.icon_contact_detail span {
  font-size: 75%;
  font-weight: normal;
}
.item-contact .right {
  font-weight: normal;
}
.icon_contact_detail .icon {
  font-size: 24px;
}

.text-no-record {
  text-align: center;
  padding: 10px;
}

.order-detail {
  margin-top: 10px;
  text-align: center;
}



/*magazine_event_list*/
.magazine_event_list .magazine_title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.magazine_event_list .magazine_title h2 {
  width: auto;
  margin: 0px;
  padding-right: 20px;
}
.magazine_event_list .magazine_title_link a {
  color: #323232;
  text-decoration: underline;
  font-size: 80%;
  white-space: nowrap;
}
.magazine_event_list .magazine_title_link a:hover {
  opacity: .7;
}
.magazine_event_list .magazine_title_link i{
  padding-right: 5px;
}


.magazine_event_list .magazine_event_list-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .magazine_event_list .magazine_event_list-container{
    padding:0px 20px;
  }
}
.magazine_event_list .magazine_event_list-container .event-card-container{
  width: 24%;
  margin-right: 1%;
  margin-top: 20px;
}
.magazine_event_list .magazine_event_list-container .event-card-container:nth-child(-n+4) {
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  .magazine_event_list .magazine_event_list-container .event-card-container:nth-child(-n+2) {
    margin-top: 0px;
  }
  .magazine_event_list .magazine_event_list-container .event-card-container:nth-child(3),
  .magazine_event_list .magazine_event_list-container .event-card-container:nth-child(4)  {
    margin-top: 20px;}
}
@media screen and (max-width: 768px) {
  .magazine_event_list .magazine_event_list-container .event-card-container{
    width: 49%;
    margin-right: 2%;
  }
}
.magazine_event_list .magazine_event_list-container .event-card-container a{
  text-decoration: none;
}
.magazine_event_list .magazine_event_list-container .event-card-container a:hover{
  opacity: .7;
  transition: .3s;
}
.magazine_event_list .magazine_event_list-container .event-card-container:nth-of-type(4n){
  margin-right: 0%;
}
@media screen and (max-width: 768px) {
  .magazine_event_list .magazine_event_list-container .event-card-container:nth-of-type(2n){
    margin-right: 0%;
  }
}

.magazine_event_list .card-item{
  box-shadow: 0 0 3px 0 #00000022;
  color: #323232;
}
.magazine_event_list .card-item .card-img{
  position: relative;
  background-color: #FFF9E9;
  min-height: 270px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .magazine_event_list .card-item .card-img{
    min-height: auto;
  }
}
.magazine_event_list .card-item .img-container{
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.magazine_event_list .card-item .img-container img{
  max-width: 100%;
}
.magazine_event_list .card-item .badge{
  position: absolute;
  background-color: #EE7F8B;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 5px 15px;
  color: white;
  font-weight: bold;
  top: 10px;
}
.magazine_event_list .card-item .closed{
  background-color: #CCC;
}
.magazine_event_list .card-info{
  padding: 15px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .magazine_event_list .card-info{
    padding: 10px;
  }
}

.magazine_event_list .card-info li span{
  font-size: 12px;
  padding-right: 5px;
}
.magazine_event_list .card-info .title{
  font-size: 16px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  height: 32px;
}
@media screen and (max-width: 768px) {
  .magazine_event_list .card-info .title{
    font-size: 100%;
  }
}
.magazine_event_list .card-info .list-info{
  margin: 15px auto 0px auto;
}
.magazine_event_list .card-info .list-info li{
  line-height: 1.2rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .magazine_event_list .card-info .list-info li{
    font-size: 80%;
  }
}

.magazine_event_list .card-info .list-info li .live,.magazine_event_list .card-info .list-info li .live i{
  color: #FF7789;
}


.magazine_event_list .card-footer{
  padding:0px 15px 15px 15px;
  height: 45px;
  display: flex;
  align-items: center;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .magazine_event_list .card-footer{
    padding:0px 10px 10px 10px;
  }
}
.magazine_event_list .card-footer .card-meta{
  display: flex;
  align-items: center;
  gap: 7px;
}
.magazine_event_list .card-footer .card-meta .author-avatar{
  height:22px;
}
.magazine_event_list .card-footer .card-meta .author-name{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .magazine_event_list .card-footer .card-meta .author-name{
    font-size: 80%;
  }
}


/*newslist*/
.news_list .news-menu{
  text-align: left;
}
.news_list .list-item {
  padding: 20px 0px;
  border-bottom: 1px solid #eee;
}
.news_list .list-item a{
  display: block;
  margin:0px 15px ;
  transition: 0.2s all;
  font-weight: 600;
}
.news_list .list-item a:hover{
  opacity: .7;
  text-decoration: none;
}
.news_list .list-item a .date{
  color:#FF6C87 ;
  font-size: 80%;
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}
.news_list .list-item a .date span.icon_new{
  display: block;
  color: #fff;
  background: #FF6C87;
  padding: 0px 2px;
  border-radius: 3px;
  font-size: 80%;
  margin-left: 10px;
  font-weight: 300;
  height: 16px;
  display: flex;
  align-items: center;
}

/*news_detail*/
.news_detail h2{
  line-height: 1.4em;
}
.news_detail .news_date{
  text-align: right;
  font-size: 80%;
  padding: 20px 0px 10px 0px;
}
.news_detail .news_txt{
  border-top: 1px solid #eee;
  padding: 20px 0px;
}

.news_detail .news_txt p {
    word-break: break-word;
}
.news_detail .btn_back{
    padding: 15px;
    font-weight: 600;
    border-radius: 50px;
    background: #666274;
    color: #fff;
    transition: 0.2s all;
    width: 200px;
    margin: 40px auto 0px auto;
    text-align: center;
}
.news_detail .btn_back:hover{
  opacity: .7;
}
