@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Goblin+One&family=IBM+Plex+Sans+JP:wght@400;600&display=swap');
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
@media(max-width:600px) {
  .pc {
    display: none;
  }
}
@media(min-width:601px) {
  .sp {
    display: none;
  }
}
img {
  pointer-events: none;
}
/*画像のプリント禁止 */
@media print {
  img {
    display: none !important;
  }
}
/* リセットcss */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
  margin: 0;
  padding: 0;
}
html, h1, h2, h3, h4, dl, dt, dd, ul, li, p, img {
  margin: 0;
  padding: 0;
}
ul {
  list-style-type: none;
}
/* ボディ */
body {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #fff;
  -webkit-text-size-adjust: 100%;
  background-color: #222;
}
a:link {
  text-decoration: underline;
  color: #cf0916;
}
a:visited {
  text-decoration: underline;
  color: #cf0916;
}
a:active {
  text-decoration: underline;
  color: #cf0916;
}
a:hover {
  text-decoration: none;
  color: #cf0916;
}
/* 画像関連 */
img {
  border: none;
  vertical-align: bottom;
}
/* 罫線 */
hr {
  height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  width: 100%;
  border-bottom: 2px dotted #715b4a;
}
.solid {
  border-top: 3px #999 solid;
}
.dotted {
  border-top: 3px #999 dotted;
}
.dashed {
  border-top: 1px 999 dashed;
}
.double {
  border-top: 3px #999 double;
}
.gold{
  color: #b6953c;
}
/* 下からふわっと */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
/* 画像のマスクアニメ */
.reveal {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.reveal img {
  display: block;
  width: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.15s ease 0.5s, transform 0.5s ease 0.5s;
}
/* マスク */
.reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateX(-100%);
  z-index: 2;
}
/* 発火 */
.reveal.is-show::before {
  animation: wipe 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
/* 表示時 */
.reveal.is-show img {
  opacity: 1;
  transform: scale(1);
}
/* 2段階ワイプ */
@keyframes wipe {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%); /* ここで全面を覆う */
  }
  100% {
    transform: translateX(100%); /* 右に抜ける */
  }
}

/* ページレイアウト */
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  scroll-behavior: smooth;
}
section {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
}
article {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 2%;
  clear: both;
}
/* 見出し */
h2 {
  text-align: center;
  position: relative;
}
h2.fire span {
  display: inline-block;
  line-height: 1;
  font-size: 1.3em;
  font-family: "Goblin One", serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  color: #fff6e6;
  position: relative;
  text-shadow:
    0 0 5px #fff, 0 -5px 10px #ffd27f, 0 -10px 18px #ffae34, 0 -18px 25px #ff7b00, 0 -28px 35px #ec4a00, 0 -40px 45px rgba(255, 120, 0, 0.6);
  animation: foxfire 2s ease-in-out infinite;
}
/* 炎の揺らぎ */
@keyframes foxfire {
  0% {
    transform: translateY(0);
    opacity: 0.9;
  }
  40% {
    transform: translateY(-2px);
    opacity: 1;
  }
  70% {
    transform: translateY(-3px);
    opacity: 0.85;
  }
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
}
/* 火の粉 */
h2.fire span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #ffd27f 0%, #ff7b00 70%, transparent 100%);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: spark 2.5s linear infinite;
}
@keyframes spark {
  0% {
    transform: translate(-50%, 0) scale(0.6);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  60% {
    transform: translate(-50%, -40px) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -80px) scale(0.4);
    opacity: 0;
  }
}
.heading{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b6953c;
  font-family: "Goblin One", serif;
  font-weight: 400;
  margin: 20px;
  font-size:1.8em;
}
.heading::before,
.heading::after {
  content: '';
  height: 1px;
  background-color: #b6953c;
  flex-grow: 1;
}
.heading::before {
  margin-right: 25px;
}
.heading::after {
  margin-left: 25px;
}
@media(max-width:600px) {
  .heading {
    margin: 20px 0;
    font-size:1.3em;
  }
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 101;
  background-color: #b6953c;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
@media(max-width:810px) {
  .menu-btn {
    width: 50px;
    height: 50px;
  }
}
@media(max-width:600px) {
  .menu-btn {
    width: 40px;
    height: 40px;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #000;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
.menu-btn-line::before, .menu-btn-line::after {
  content: "";
  height: 1px;
  width: 100%;
  background: #000;
  position: absolute;
  left: 0;
  -webkit-transition: inherit;
  transition: inherit;
}
.menu-btn-line::before {
  top: -5px;
}
.menu-btn-line::after {
  top: 5px;
}
/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
}
.open .menu-btn {
  border-color: #000;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #000;
}
.open .menu-btn-line::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.open .menu-btn-line::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*開いたメニュー*/
.menu {
  position: fixed;
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
.menu ul {
  transform: translateY(20%);
  padding: 0;
  list-style-type: none
}
.menu li {
  width: 100%;
  height: 65px;
  line-height: 65px;
  text-align: center;
  font-family: "Goblin One", serif;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
@media(max-width:600px) {
  .menu li {
    height: 50px;
    line-height: 50px;
    font-size: 1.2rem;
  }
}
.menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #b6953c;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
#container {
  width: 100%;
}
#container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('../img/bgPc01.jpg') top center / cover no-repeat;
  z-index: -1;
}
@media(max-width:810px) {
  #container::before {
    background: url('../img/bgSp01.jpg') top center / cover no-repeat;
  }
}
#main {
  width: 100%;
  margin: 0;
  padding: 10% 0;
  font-weight: 600;
}
.headCopy{
  width: 100%;
  text-align: center;
  font-size: clamp(15px, 3vw, 24px);
  line-height: 1.2;
  padding: 3em 0;
  margin: 0;
}
.headCopy span{
  font-size:1.25em;
}
.headCopy span.oni{
  font-size:1.8em;
  color: #b6953c;
}
.main-visual {
  width: 75%;
  max-width: 600px;
  margin: 0 auto 1em;
  animation: fadein 3s ease forwards;
}
.main-visual img {
  width: 100%;
  height: auto;
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
.crediteList01{
  text-align: center;
  font-size:18px;
  line-height: 1.5;
}
@media(min-width:1000px) {
  .crediteList01{
    font-size:24px;
  }
}
.crediteList01 li{
  display: inline-block;
  padding: 0.5em 1em;
}
.crediteList02{
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}
@media(min-width:1000px) {
  .crediteList02{
    font-size:24px;
  }
}
.crediteList02 li{
  display: inline-block;
  padding: 0.25em;
}
.job{
  display: inline-block;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  line-height: 1;
  padding: 2px 1em;
  margin-bottom: 5px;
}
@media(max-width:600px) {
  .job {
    font-size: 10px;
  }
}
/* =============================================== */
/* intro - イントロ */
/* ----------------------------------------------- */
.bg02{
  background-image: url("../img/bg02.jpg");
  background-position: top center;
  background-repeat: repeat;
}
#intro {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5%;
  color: #333;
}
#intro article {
  padding: 10px 2%;
  clear: both;
}
#intro h3 {
  font-weight: 600;
  padding: 0;
  font-size: 22px;
  line-height: 2;
  margin: 20px 0 30px;
}
#intro h3 span{
  border-bottom: 3px solid #333
}
@media(max-width:1020px) {
  #intro h3 {
    font-size: 20px;
  }
}
@media(max-width:960px) {
  #intro h3 {
    font-size: 19px;
  }
}
@media(max-width:900px) {
  #intro h3 {
    font-size: 18px;
  }
}
@media(max-width:810px) {
  #intro h3 {
    font-size: 17px;
  }
}
@media(max-width:600px) {
  #intro h3 {
    font-size: 19px;
  }
}
#intro p {
  padding: 0;
}
.nowrap {
  white-space: nowrap;
  font-weight: 600;
  color: #b6953c;
}
/* =============================================== */
/* story - ストーリー */
/* ----------------------------------------------- */
#story {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5%;
  color: #333;
}
#story h2 span{
  color: #000;
}
#story p {
  padding: 8px 0;
}
/* =============================================== */
/* cast&staff - キャストスタッフ */
/* ----------------------------------------------- */
#cast {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10% 5% 5%;
}
.castList1 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 20px 0 50px;
  margin: 0 auto;
}
.castList1 li {
  display: inline-block;
  text-align: center;
  width: 25%;
  line-height: 1.5;
  font-size: 24px;
  padding: 0 1% 30px;
  vertical-align: top;
}
.castList1 img {
  width: 100%;
  max-width: 300px;
  margin-bottom: 0;
}
.role {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #b6953c;
  background: #000;
  line-height: 1;
  padding: 5px 20px 3px;
  margin: 0;
}
.role::before,
.role::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.role::before {
  left: -12px;
  border-right: 12px solid #000;
}
.role::after {
  right: -12px;
  border-left: 12px solid #000;
}
.actor {
  line-height: 1;
  font-weight: 600;
  padding: 10px 0 0;
  font-size: 25px;
}
.castList1 li.nakaguro{
  width: 0;
  padding: 15% 2.7% 0 0;
  margin: 0;
}
.castList1 li.space{
  width: 0;
  padding: 0 4%;
  margin: 0;
}
@media(max-width:600px) {
  #cast {
    padding: 20% 5% 5%;
  }
  .castList1 {
    padding: 40px 0;
    border-bottom: 2px dotted #fff;
  }
  .castList1 li {
    display: block;
    width: 80%;
	text-align: center;
	margin: 0 auto;
    padding: 30px 0 20px;
  }
  .castList1 img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 0;
  }
  .castList1 li.nakaguro{
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
  .castList1 li.nakaguro p{
    text-align: center;
  }
  .castList1 li.space{
    padding: 0;
    width: 100%;
    margin: 30px 0 0;
	border-top: 2px dotted #fff;
  }
}
/* =============================================== */
/* creative - スタッフ */
/* ----------------------------------------------- */
#creative {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5%;
}
.staffList1 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 0 0 50px;
  margin: 0 auto;
}
.staffList1 li {
  display: inline-block;
  text-align: center;
  width: 100%;
  line-height: 1.5;
  font-weight: 400;
  font-size: 20px;
  padding: 10px 0 40px;
}
.staff {
  line-height: 1;
  font-weight: 600;
  padding: 10px 0;
  font-size: 25px;
}
.profile {
  clear: both;
  font-size: 14px;
  padding: 15px 5px;
  margin: 10px 0;
  line-height: 1.5;
  color: #fff;
  border-top: 1px dotted #fff;
  border-bottom: 1px dotted #fff;
  text-align: left;
}
@media(max-width:600px) {
  #creative {
    padding: 20% 5% 5%;
  }
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#info {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5%;
  color: #333;
}
#info article {
  margin: 30px auto;
}
h4 {
  color: #fff;
  text-align: center;
  margin: 0 0 25px;
  padding: 15px 0;
  font-weight: 400;
  border-top: 3px solid #b6953c;
  font-size: 25px;
}
.dateTxt {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  padding: 15px 0 5px;
  letter-spacing: 2px;
  line-height: 1.4;
}
.dateTxt .large {
  font-size: 36px;
  font-weight: 600;
}
.venueImg{
  width: 80%;
  max-width: 300px;
  margin: 10px auto;
}
.venueImg img{
  width: 100%;
  height: auto;
}
.venueTxt {
  font-weight: 400;
  font-size: 21px;
  text-align: center;
  padding: 0;
  line-height: 1.4;
}
h5 {
  font-size: 14px;
  font-weight: 600;
  padding: 30px 0 0;
  margin: 5px 0;
  text-align: center;
}
h5 span {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 2px 5px;
}
#info p {
  text-align: center;
  padding: 5px 0;
}
.sche {
  margin: 20px auto;
  width: 100%;
  max-width: 655px;
}
.sche img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/* チケット */
.ticketBox {
  border: 1px solid #666;
  margin: 80px auto 20px;
  padding: 0 3% 20px;
  width: 90%;
  max-width: 800px;
  background-color: #333;
  color: #fff;
}
@media(max-width:999px) {
  .ticketBox {
    width: 92%;
    padding: 0 2% 20px;
    margin: 30px auto 10px;
  }
}
.playguideList {
  list-style: none;
  padding: 40px 0;
  font-size: 90%;
}
@media(max-width:600px) {
  .playguideList {
    font-size: 85%;
  }
}
.playguideList li {
  border-top: 1px dotted #999;
  display: block;
  margin: 0 auto;
  padding: 25px 0;
  text-align: center;
}
.playguideList li span {
  font-weight: 600;
  font-size: 110%;
  border-bottom: 2px solid #b6953c;
  display: inline-block;
  margin-bottom: 10px;
}
.playguideList li a:link {
  display: block;
  position: relative;
  padding: 0.5em 1em 0.4em;
  text-align: center;
  text-decoration: none;
  margin: 10px auto 0;
  background: #000;
  color: #e11010;
  border: 1px solid #e11010;
  transition: all 0.3s;
  font-weight: 400;
  border-radius: 100px;
  font-size: 90%;
  width: 10em;
}
.playguideList li a:visited {
  text-decoration: underline;
  background: #000;
  color: #e11010;
  border: 1px solid #e11010;
}
.playguideList li a:active {
  text-decoration: underline;
  background: #000;
  color: #e11010;
  border: 1px solid #e11010;
}
.playguideList li a:hover {
  text-decoration: none;
  background: #b6953c;
  color: #fff;
  border: 1px solid #e11010;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  width: 100%;
  margin: 0;
  padding: 0;
  clear: both;
  background-color: #222;
  text-align: center;
  border-top: 1px solid #333;
}
#footer-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}
#footer-inner P {
  padding: 0 0 15px;
  font-size: 14px;
  color: #ccc;
}
@media(max-width:600px) {
  #footer-inner P {
    font-size: 12px;
  }
}
.snsBtn {
  padding: 0 0 20px;
  text-align: center;
}
.snsBtn li {
  font-size: 36px;
  font-weight: 400;
  padding: 0 15px;
  display: inline-block;
}
.snsBtn a:link {
  text-decoration: none;
  display: block;
  color: #fff;
  transition: all .3s ease;
}
.snsBtn a:visited {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:active {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:hover {
  text-decoration: none;
  color: #b6953c;
}

.menu .snsBtn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin: 0;
  padding: 20px 0;
}
.menu .snsBtn li {
  width: auto;
  height: auto;
  line-height: 1;
  flex: 0 0 auto;
  padding: 0;
  font-size: 30px;
}
/* =============================================== */
/* clearfix - クリアフィックス設定 */
/* ----------------------------------------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
/* =============================================== */
/* rollover - 画像ロールオーバー設定 */
/* ----------------------------------------------- */
a:hover img {
  -moz-opacity: 0.80;
  opacity: 0.80;
  filter: alpha(opacity=80);
}
nav a:hover img {
  -moz-opacity: 1;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media(max-width:600px) {
  a:hover img {
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
/* =============================================== */
/* other - その他 */
/* ----------------------------------------------- */
/* ほか */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  z-index: 99;
}
@media(max-width:600px) {
  #page-top {
    bottom: 5px;
    right: 5px;
  }
}
#page-top a {
  text-decoration: none;
  color: #b6953c;
  text-align: center;
  display: block;
  opacity: 1;
  transition: all .3s ease;
  font-size: 56px;
}
@media(max-width:600px) {
  #page-top a {
    font-size: 40px;
  }
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}
/* =============================================== */
/* linkBtn - ボタン */
/* ----------------------------------------------- */
.linkBtn {
  text-align: center;
  padding: 10px 0;
}
.linkBtn a:link {
  text-decoration: none;
  color: #fff;
  padding: 5px 1.2em 3px;
  margin: 0 auto;
  line-height: 1;
  font-size: 12px;
  position: relative;
  background-color: #b6953c;
  border: 3px double #fff;
}
.linkBtn a:visited {
  text-decoration: none;
  color: #fff;
  background-color: #b6953c;
  border: 3px double #fff;
}
.linkBtn a:active {
  text-decoration: none;
  color: #fff;
  background-color: #b6953c;
  border: 3px double #fff;
}
.linkBtn a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #dabb67;
  border: 3px double #fff;
  transition: all .3s ease;
}
/* =============================================== */
/* modal - モーダルウィンドウ */
/* ----------------------------------------------- */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: #fff;
}
/* モーダル背景 */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
/* モーダル表示状態 */
.modal.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
/* モーダルの中身*/
.modal-content {
  background: #000;
  padding: 1rem;
  width: 80vw;
  max-width: 720px;
  max-height: 60vh;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  overflow: auto;
}
.modal-content h3 {
  font-size: 150%;
  padding: 10px 0;
  margin: 10px 40px 10px 15px;
  border-top: 1px solid #b6953c;
  font-weight: 600;
  color: #fff;
  text-align: left;
}
.modal-content h3 span{
  font-size: 60%;
  padding: 0 10px;
  display: inline-block;
  font-weight: 400;
}
.message {
  font-size: 94%;
  padding: 10px 15px;
}
.message p {
  padding: 0 0 15px;
  text-align: left;
}
/* アニメーション*/
.modal.active .modal-content {
  animation: fadeInScale 0.4s ease forwards;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* modalのボタン01 */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
	display: block;
}
.button01 {
  border: 1px solid #b6953c;
  text-align: center;
  font-family: "Goblin One", serif;
  font-weight: 400;
  font-size: 13px;
  padding: 7px 1.2em 9px;
  margin: 10px auto;
  background-color: none;
  color: #b6953c;
  border-radius: 50px;
  background:rgba(0,0,0,0.4);
}
.button01:hover {
  background-color: #b6953c;
  color: #000;
  transition: all .3s ease;
}