@charset "UTF-8";
/* clearfix */

/* ==========================
  common
  =========================== */
  
.btn-style {
  display: inline-block;
  width: 260px;
  height: 68px;
  padding: 25px 0;
  -webkit-border-radius: 8px !important;
  -moz-border-radius: 8px !important;
  border-radius: 8px !important;
  -webkit-box-shadow: 2px 2px 1px rgb(172, 172, 172);
  -moz-box-shadow: 2px 2px 1px rgb(172, 172, 172);
  box-shadow: 0px 2px 0px 0px rgb(172, 172, 172) ;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  text-decoration: none !important;
  box-sizing: border-box;
}
.btn-style:hover {
  opacity: 0.8;
}
.btn_pink {
  color: #ffffff;
  background: #b60081;
  border: solid #b60081 2px !important;
}
.btn_pink:link {
  color: #ffffff;
  text-decoration: none;
}
.btn_pink:visited {
  color: #ffffff;
  text-decoration: none;
}
.btn_white {
  color: #b60081;
  background: #ffffff;
  border: solid #b60081 2px !important;
}
.btn_white:visited {
  color: #b60081;
  text-decoration: none;
}
.btn_white:link {
  color: #b60081;
  text-decoration: none;
}
.text-link a span:after {
  content: url(/mypage/common/images/contents_common_blt_02_l.png);
  width: 14px;
  height: 14px;
  margin-left: 5px;
  vertical-align: middle;
}
.txt-center {
  text-align: center !important;
}
.txt-left {
  text-align: left !important;
}
.txt-right {
  text-align: right !important;
}
@media screen and (max-width: 640px) {
  .btn-style {
    width: 100%;
    height: 50px;
    padding: 15px 0;
    font-size: 16px;
  }
}

.flex_block {
  display: flex;
}
#memberscard .flex_block {
  display: block;
}
#memberscard .flex_block p:last-child {
  margin-top: 30px;
}

.flex_block .flex_block_par50 {
  flex-basis: 50%;
}
.form_container .form_item-right .flex_block p {
  margin-top: 0;
}
@media screen and (max-width: 640px) {
  .flex_block {
    display: block;
  }
  #memberscard .flex_block label {
    line-height: 1.4;
  }
  #memberscard .flex_block p:last-child {
    margin-top: 15px;
  }
  .form_container .form_item-right .flex_block p {
    margin-top: 15px;
  }
  .form_container .form_item-right .flex_block p:first-child {
    margin-top: 0;
  }
}

.btn_front {
  font-size: 14px;
  line-height: 1;
}
.btn_front a:after {
  content: url(/regist/images/contents_common_blt_01_r.png);
  width: 14px;
  height: 14px;
  vertical-align: middle;
  margin-left: 5px;
}
@media screen and (max-width: 640px) {
  .btn_front {
    margin-top: 10px;
  }
}

.fs-13 {
  font-size: 13px !important;
}
.fs-16 {
  font-size: 16px !important;
}
.fs-normal {
  font-style: normal !important;
}
.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 640px) {
  .mt15_s {
    margin-top: 15px !important;
  }
}


/* ==========================
  gnav
  =========================== */
#footer_contents .footer_section01,
#footer_contents .gnav_wrap,
#footer_contents .footer_section05,
#footer_contents .footer_section04 ul,
#footer_contents ul.eseki,
#footer_contents ul.header_links01 {
  display: none;
}

/* ==========================
  regist
  =========================== */
#STEP-NAV ul {
  width: 100%;
  line-height: 1.2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
#STEP-NAV ul li {
  position: relative;
  padding: 15px 0 15px 25px;
  background: #727272;
  width: 175px;
  color: #fff;
  text-align: left;
  font-weight: bold;
  margin-right: 20px;
}
#STEP-NAV ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: -17px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 17px;
  border-color: #727272 transparent #727272 transparent;
}
#STEP-NAV ul li:after {
  content: "";
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 17px;
  border-color: transparent transparent transparent #727272;
}
#STEP-NAV ul li:first-child:before {
  border: none;
}
#STEP-NAV ul li:last-child {
  margin-right: 0;
}
#STEP-NAV ul li:last-child:after {
  border: none;
}
#STEP-NAV ul li p {
  display: inline-block;
  font-size: 13px;
  text-align: center;
  line-height: 2;
  width: 30px;
  height: 30px;
  border: #fff 2px solid;
  margin-right: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
#STEP-NAV ul li span {
  font-size: 14px;
  line-height: 1;
}
#STEP-NAV ul li.current {
  background: #b60081;
}
#STEP-NAV ul li.current:before {
  border-color: #b60081 transparent #b60081 transparent;
}
#STEP-NAV ul li.current:after {
  border-color: transparent transparent transparent #b60081;
}
#STEP-NAV .step_nav_sp {
    display: none;
}
@media screen and (max-width: 640px) {
  #STEP-NAV ul {
    display: none;
  }
  #STEP-NAV .step_nav_sp {
    display: block;
    margin: 0 auto;
  }
}

/* ==========================
  input
  =========================== */
#INPUT .input_lead {
  font-size: 16px;
  line-height: 1.8;
  font-weight: normal;
  margin-bottom: 20px;
  text-align: center;
}

#INPUT .input_readonly {
  background-color: #cdcece;
}

#INPUT .input_address_text {
  margin-top: 20px;
  font-size: 13px;
}

#INPUT .input_address_title {
  font-size: 100%;
  font-weight: bold;
}

#INPUT .input_address {
  margin-top: 10px;
}

.password_list {
  margin-left: 15px;
  font-size: 13px;
}
.password_list li {
  list-style: disc;
  line-height: 1.8;
}

@media screen and (max-width: 640px) {
  #INPUT .input_lead {
    text-align: left;
    margin-bottom: 10px;
  }

  #INPUT .input_address_text {
    margin-top: 15px;
  }

  #INPUT .input_address {
    margin-top: 5px;
  }

  .password_list {
    margin-left: 20px;
  }
}

/* password accordion */
.password_container dt  a.accordion {
  display: block;
  height: 22px;
  padding-left: 30px;
  font-size: 13px;
  text-decoration: none;
  line-height: 1.8;
  font-weight: bold;
  background: url("/mypage/common/images/icon_accordion.png") left top no-repeat;
}
.password_container dt  a.accordion.open {
  background-position: 0 -22px;
}
.password_container dd {
  width: 100%;
  padding:  10px 0 0 5px;
  display: none;
}

@media screen and (max-width: 640px) {
  .password_container dt  a.accordion {
    margin-top: 0;
  }
  .password_container dd {
    padding: 10px 0 0;
  }
}

/* ==========================
  confirm
  =========================== */
#CONFIRM .confirm_text {
  text-align: center;
}
@media screen and (max-width: 640px) {
  #CONFIRM .confirm_text {
    text-align: left;
    font-size: 14px;
  }
}

/* ==========================
  complete
  =========================== */
#COMPLETE h2 {
  font-size: 24px;
  font-weight: bold;
}
#COMPLETE .complete_inner {
  margin: 40px auto;
}
#COMPLETE .complete_inner p {
  margin-top: 20px;
}
#COMPLETE .complete_inner .complete_ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
#COMPLETE .reserve_ara {
  background-color: #f6f5ec;
  padding: 30px 0;
}
#COMPLETE .reserve_ara .mypage_inner {
  margin: 0 auto;
}
#COMPLETE .reserve_ara p {
  font-size: 16px;
}
#COMPLETE .reserve_ara .theatre_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#COMPLETE .digitalcard_ara .mypage_inner {
  border: 1px solid #b60081;
  margin: 60px auto;
  padding: 30px 30px 40px;
}
#COMPLETE .digitalcard_ara h2 {
  color: #b60081;
  margin: 10px 0 30px;
}
#COMPLETE .digitalcard_ara h3 {
  font-size: 18px;
  font-weight: bold;
}
#COMPLETE .digitalcard_ara .digitalcard_box {
  display: flex;
  align-items: center;
}
#COMPLETE .digitalcard_ara .digitalcard_box dl {
  font-size: 16px;
}
#COMPLETE .digitalcard_ara .digitalcard_box dt {
  color: #b60081;
  font-weight: bold;
}
#COMPLETE .digitalcard_ara .digitalcard_box dd + dt {
  margin: 10px 0 0;
}
@media screen and (max-width: 640px) {
  #COMPLETE h2 {
    font-size: 20px;
  }
  #COMPLETE .complete_inner {
    margin: 0 auto 40px;
  }
  #COMPLETE .complete_inner p {
    margin-top: 10px;
  }
  #COMPLETE .complete_inner .complete_ttl {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
  }
  #COMPLETE .reserve_ara .theatre_list {
    display: block;
  }
  #COMPLETE .reserve_ara .theatre_list li {
    margin-top: 15px;
  }
  #COMPLETE .digitalcard_ara {
    margin: 0 10px;
  }
  #COMPLETE .digitalcard_ara .mypage_inner {
    margin: 30px auto;
    padding: 20px 20px 30px;
  }
  #COMPLETE .digitalcard_ara .digitalcard_box {
    display: block;
    align-items: center;
  }
}

/* ==========================
  temporary
  =========================== */
#TEMPORARY .temporary_inner {
  margin: 40px auto;
}

#TEMPORARY .temporary_inner p {
  text-align: center;
}

#TEMPORARY .temporary_inner p:first-child {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

#TEMPORARY .temporary_inner .note {
  overflow: hidden;
}

#TEMPORARY .temporary_inner ul.kome {
  margin-left: 20px;
  float: left;
  position: relative;
  left: 50%;
}

#TEMPORARY .temporary_inner ul.kome > li {
  display: block;
  position: relative;
  left: -50%;
  line-height: 2;
}

#TEMPORARY .temporary_inner ul.kome > li:before {
  content: '※';
  position: absolute;
  left: -20px;
}

@media screen and (max-width: 640px) {
  #TEMPORARY .temporary_inner p {
    text-align: left;
  }
  
  #TEMPORARY .temporary_inner {
    margin: 0 auto 40px;
    padding: 0 15px;
  }

  #TEMPORARY .temporary_inner p:first-child {
    font-size: 18px;
    margin-bottom: 10px;
  }

  #TEMPORARY .temporary_inner ul.kome {
    float: none;
    left: 0;
  }

  #TEMPORARY .temporary_inner ul.kome > li {
    left: 0;
  }
}
/* ==========================
  password
  =========================== */
.form_item-left_txtmiddle {
  line-height: 3 !important;
}

@media screen and (max-width: 640px) {
  .form_item-left_txtmiddle {
    line-height: 1.5 !important;
  }
}

.error-txt {
    margin-bottom: 20px;
    color: #b60081;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}
@media screen and (max-width: 640px) {
  .error-txt {
    text-align: left;
  }
}
@media screen and (max-width: 640px) {
  .sp-mt0 {
      margin-top: 0 !important;
  }
}


#COMPLETE .reserve_ara .theatre_list.tl_btn2,
#COMPLETE .reserve_ara .theatre_list.tl_btn3 {
  justify-content: center;

}#COMPLETE .reserve_ara .theatre_list.tl_btn2 li:nth-child(1) {
  margin-right: 70px;
}
@media screen and (max-width: 640px) {
  #COMPLETE .reserve_ara .theatre_list.tl_btn2 li:nth-child(1) {
    margin-right: 0;
    
  }
}

