@charset "UTF-8";
/* CSS Document */


/* ==================================================
   ボタン共通設定

   使用例
   ・ピンクのスライドボタン
     class="btn btn_slide"

   ・黄色の大きい申込ボタン
     class="btn btn_large"

   ・大きいピンクボタン
     class="btn btn_large btn_slide"
================================================== */

.btn,
.btn_large,
.btn_ticket {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  margin-top: 0.4rem;

  color: var(--text-main, #181818);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  cursor: pointer;
  user-select: none;

  border: 1px solid var(--line-main, #555);
  border-radius: 0.5rem;

  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}


/* リンク状態の共通設定 */

a.btn,
a.btn:link,
a.btn:visited,
a.btn_large,
a.btn_large:link,
a.btn_large:visited,
a.btn_ticket,
a.btn_ticket:link,
a.btn_ticket:visited {
  color: var(--text-main, #181818);
  text-decoration: none;
}


/* ==================================================
   通常サイズ
   主に劇場ホームページ用
================================================== */

.btn {
  min-width: 0;
  padding: 1.1rem 2.8rem;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}


/* ==================================================
   大サイズ
   主にお申し込みボタン用
================================================== */

.btn_large {
  width: auto;
  min-width: 0;
  padding: 1.4rem 4rem;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}


/* ==================================================
   チケットボタン
================================================== */

.btn_ticket {
  width: 300px;
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}


/* ==================================================
   黄色ボタン
   .btn / .btn_large の標準デザイン
================================================== */

.btn,
.btn_large,
.btn_ticket {
  background-color: rgba(254, 223, 72, 1);
}

.btn:hover,
.btn_large:hover,
.btn_ticket:hover {
  color: #fff;
  background-color: rgba(253, 170, 39, 1);
  border-color: var(--line-hover, #555);
}


/* 黄色ボタン内の矢印 */

.text_arrow {
  display: inline-block;
  margin-right: 0.4em;
  color: #48a7f5;
  transition: color 0.3s ease;
}

.btn:hover .text_arrow,
.btn_large:hover .text_arrow,
.btn_ticket:hover .text_arrow {
  color: #f0e58e;
}


/* ==================================================
   ピンク・スライドボタン
   .btn_slideを付けた場合のみ適用
================================================== */

.btn_slide {
  overflow: hidden;
  background-color: rgba(240, 157, 193, 1);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}


/* 左から入ってくる背景 */

.btn_slide::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    to right,
    rgba(172, 58, 107, 0.95),
    rgba(239, 119, 171, 1)
  );

  transform: translateX(-96%);
  transition: transform 0.3s ease-in-out;
}

.btn_slide:hover::before {
  transform: translateX(0);
}


/* ボタン内の文字を背景より前に表示 */

.btn_slide > span {
  position: relative;
  z-index: 1;
  color: #181818;
  transition:
    color 0.3s ease,
    text-shadow 0.3s ease;
}

.btn_slide:hover > span {
  color: #fff6d9;
  text-shadow:
    1px 1px 2px #462f05,
    0 0 6px rgba(252, 181, 47, 0.8);
}


/* Font Awesomeの矢印 */

.btn_slide i {
  margin-right: 0.15em;
}


/* ==================================================
   サイズ変更用オプション
================================================== */

.btn--md {
  width: 320px;
  padding: 1.2rem 3rem;
}

.btn--sm {
  width: auto;
  padding: 0.6rem 1.6rem;
  font-size: 0.65em;
}

.btn--schedule {
  width: auto;
  max-width: 100%;
  padding: 1.4rem 2.5rem;
  white-space: nowrap;
}


/* ==================================================
   SP
================================================== */

@media screen and (max-width: 960px) {

  .btn {
    padding: 0.8rem 2rem;
    font-size: 1.5rem;
  }

  .btn_large {
    width: auto;
    min-width: 0;
    max-width: 100%;
    padding: 1.4rem 3rem;
    font-size: 1.6rem;
    letter-spacing: 0;
  }

}


@media screen and (max-width: 767px) {

  .btn--md {
    width: 280px;
    max-width: 100%;
    padding: 1.0rem 2.8rem;
  }

  .btn--schedule {
    padding: 0.95rem 1.6rem;
    white-space: normal;
  }

}


@media screen and (max-width: 700px) {

  .btn_ticket {
    width: 83%;
    margin-bottom: 1rem;
    padding: 1.2rem 2rem;
    font-size: 1.6rem;
  }

}