@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=IBM+Plex+Sans+JP:wght@400;500;600&family=Shippori+Mincho+B1:wght@400;600;800&display=swap');
/* =========================================================
   ROOT / BASE
========================================================= */
@media(max-width:600px) {
  .pc {
    display: none;
  }
}
@media(min-width:601px) {
  .sp {
    display: none;
  }
}
/* リセット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;
}

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding:0;
  color: #1b150e;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  background-color: #1b150e;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a:link {
  text-decoration: underline;
  color: #b82d26;
}
a:visited {
  text-decoration: underline;
  color: #b82d26;
}
a:active {
  text-decoration: underline;
  color: #b82d26;
}
a:hover {
  text-decoration: none;
  color: #b82d26;
}
h1, h2, h3, p {
  margin: 0;
}
/* 下からふわっと */
.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);
}
/* リストタグひとつずつ表示 */
.fade-list li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-list li.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: #1b150e;
  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%); /* 右に抜ける */
  }
}

/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
header{}
/*パソコン用メニュー*/
.pcMenu{
  background-color: rgba(27, 21, 14, 0.85);
  width:100%;
  height:60px;
  position:fixed;
  top: 0;
  z-index:9999;
  border-bottom: 1px solid #e0bd63;
}
@media(max-width:810px) {
  .pcMenu {
    display: none;
  }
}
.pcMenu {
  text-align: center;
}

.pcMenu li {
  display: inline-block;
  padding: 15px 10px;
  font-family: "Calistoga", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
}
.pcMenu li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #efe6c9;
}
.pcMenu li a:hover {
  color: #e0bd63;
}
/* 下線（初期状態） */
.pcMenu li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px; /* 文字からの距離は調整 */
  width: 0;
  height: 1px; /* 下線の太さ */
  background-color: #e0bd63;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
/* ホバー時 */
.pcMenu li a:hover::after {
  width: 100%;
}

/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  display:none;
}
@media(max-width:810px) {
  .menu-btn {
    display:block;
    position: fixed;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 101;
    background-color: #1b150e;
    -webkit-transition: all 3s ease-in-out;
    transition: all .3s ease-in-out;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #efe6c9;
  -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: #efe6c9;
  position: absolute;
  left: 0;
  -webkit-transition: inherit;
  transition: inherit;
}
.menu-btn-line::before {
  top: -8px;
}
.menu-btn-line::after {
  top: 8px;
}
/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: visible;
  opacity: 1;
}
.open .menu-btn {
  border-color: #efe6c9;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #efe6c9;
}
.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: 70px;
  line-height: 70px;
  text-align: center;
  font-family: "Calistoga", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
}
@media(max-width:410px) {
  .menu ul {
    transform: translateY(16%);
  }
  .menu li {
    height: 50px;
    line-height: 50px;
    font-size: 1.3rem;
  }
}
.menu li a {
  display: block;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  color: #efe6c9;
}
.menu li a:hover {
  -webkit-transition: all .2s;
  transition: all .2s;
  color: #e0bd63;
}
/* =========================================================
   HERO / KV
========================================================= */
.hero {
  background-color: #fff;
  padding: 0;
  margin-top:60px;
  background-image: url("../img/bg02.jpg");
  position: relative;
  z-index: 10;
}
@media(max-width:810px) {
  .hero {
    margin-top:0;
  }
}
.mainList{
  margin:0;
  padding:0;
  list-style: none;
}
/*.mainList li{
  width: 50%;
  float: left;
  padding: 0;
}
@media(max-width:810px) {
  .mainList li {
    width: 100%;
  }
}*/
.mainList li{
  width: 100%;
  max-width: 900px;
  padding: 0 0 50px;
  margin: 0 auto;
}
.mainList img {
  width: 100%;
  height: auto;
  filter: blur(50px);
  animation: blur-anim1 1s linear forwards;
}
@keyframes blur-anim1 {
  100% {
    filter: blur(0);
  }
}
.youtube {
  width: 90%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
    padding: 150px 0;
}
@media(max-width:1800px) {
  .youtube {
    padding: 100px 0;
  }
}
@media(max-width:1500px) {
  .youtube {
    padding: 50px 0;
  }
}
@media(max-width:1000px) {
  .youtube {
    padding: 20px 0;
  }
}
@media(max-width:810px) {
  .youtube {
    padding: 50px 0;
  }
}
@media(max-width:600px) {
  .youtube {
    padding: 20px 0;
  }
}
.youtube iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.crediteWrap {
  container-type: inline-size;
}
.crediteList01{
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
  padding: 0;
  width: 100%;
  clear: both;
  font-size: clamp(14px, 3cqw, 20px);
}
.crediteList01 li{
  float: none;
  display: inline-block;
  font-size: 1.5em;
  line-height: 1;
  width: 5.5em;
  padding: 0 5px 25px;
}
@media(max-width:600px) {
  .crediteList01 li {
    font-size: 1.3em;
  }
}
.crediteList01 .title{
  font-size: 0.7em;
  width: 100%;
  padding: 15px 0;
  margin-bottom: 5px;
}
.crediteList01 .title span{
  background-color: #1b150e;
  color: #efe6c9;
  line-height: 1;
  padding: 2px 1em;
}
.crediteList01 .crediteSmall{
  font-size: 1.3em;
}
@media(max-width:600px) {
  .crediteList01 .crediteSmall {
    font-size: 1.1em;
  }
}
.bannerTicket01{
  font-size: clamp(14px, 2.5cqw, 20px);
  margin-top: 15px;
  padding-bottom: 30px;
}
.bannerTicket01 a:link {
  display: block;
  position: relative;
  padding: 0.5em 1em 0.4em;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
  background: #e0bd63;
  color: #1b150e;
  border: 1px solid #1b150e;
  transition: all 0.3s;
  font-weight: 400;
  width: 14em;
  border-radius: 100px;
}
.bannerTicket01 a:visited {
  text-decoration: none;
  background: #e0bd63;
  color: #1b150e;
  border: 1px solid #1b150e;
}
.bannerTicket01 a:active {
  text-decoration: none;
  background: #e0bd63;
  color: #1b150e;
  border: 1px solid #1b150e;
}
.bannerTicket01 a:hover {
  text-decoration: none;
  background: #1b150e;
  color: #e0bd63;
  border: 1px solid #1b150e;
}
/* =========================================================
   MAIN / PAPER BACKGROUND
========================================================= */
main {
  background:
    radial-gradient(
      circle at 52% 0%,
      rgba(255, 250, 235, .90) 0%,
      rgba(233, 220, 190, .60) 30%,
      transparent 60%
    ),
    radial-gradient(
      circle at 8% 8%,
      rgba(120, 90, 50, .08) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(170, 140, 90, .08) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(160, 130, 90, .06) 0%,
      transparent 45%
    ),
    linear-gradient(
      105deg,
      #e8ddc8 0%,
      #f4ede0 35%,
      #faf7f0 55%,
      #ece1ca 75%,
      #d9c5a0 100%
    );
}

main::before {
  background:
    linear-gradient(
      180deg,
      rgba(78, 48, 18, .025),
      transparent 18%,
      transparent 82%,
      rgba(78, 48, 18, .025)
    ),
    radial-gradient(
      circle at 12% 18%,
      rgba(255, 250, 240, .10),
      transparent 42%
    ),
    radial-gradient(
      circle at 78% 42%,
      rgba(80, 60, 40, .03),
      transparent 48%
    );

  opacity: .4;
  filter: blur(18px);
}
/* =========================================================
   SECTION LAYOUT
========================================================= */
.textSection {
  width: 94%;
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 98px) 0;
  text-align: center;
}
/* =========================================================
   ABOUT / INTRO
========================================================= */
h2 {
  margin-bottom: 34px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: .95;
  text-rendering: geometricPrecision;
  font-family: "Calistoga", serif;
  font-style: normal;
  font-weight: 400;
}
.prose {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 2;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
@media(max-width:600px) {
  .prose {
    text-align: left;
  }
}
.prose p{
  margin-top: 1em;
}
.signature {
  margin-top: 2.4em !important;
  font-size: 1.2em;
  text-align: center;
}
/* =========================================================
   CAST
========================================================= */
#cast{
  width: 100%;
  background-image: url("../img/bg02.jpg");
  margin: 0 auto;
  padding: clamp(54px, 8vw, 98px) 0;
  text-align: center;
}
.castList01{
  text-align: center;
  list-style: none;
}
.castList01 li{
  display: inline-block;
  width: 30%;
  padding: 20px 1%;
  max-width: 200px;
  vertical-align: top;
}
@media(max-width:600px) {
  .castList01 li {
    display: block;
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
  }
}
.photo{
  width: 100%;
  max-width: 200px;
  margin: 5px auto;
}
.photo img{
  width: 100
}
.castList01 li.castSmall{
  width: 150px;
}
@media(max-width:600px) {
  .castList01 li.castSmall {
    display: inline-block;
	width: 35%;
	max-width: 150px;
	margin: 0 10px;
  }
}
.castSmall .photo{
  width: 100%;
  max-width: 150px;
}
.actor{
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  line-height: 1.2;
  font-size: 1.5em;
  padding: 5px 0;
  text-shadow:0 0 5px #fff, 0 0 10px #fff;
}

.staffList01{
  text-align: center;
}
.staffList01 li{
  display: inline-block;
  padding: 5px 10px;
  font-weight: 500;
  text-shadow:0 0 5px #fff, 0 0 10px #fff;
}
@media(max-width:600px) {
  .staffList01 li {
    display: block;
    padding: 0;
  }
}
.staffList01 li span{
  font-size: 80%;
  font-weight: 400;
}
/* =========================================================
   SCHEDULE
========================================================= */
.stageBlock{
  padding: 30px 0;
}
.stageBlock h3 {
  background-color: #1b150e;
  font-size: clamp(20px, 3vw, 24px);
  border-top: 3px double #efe6c9;
  border-bottom: 3px double #efe6c9;
  color: #efe6c9;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
}
.venue {
  margin: 30px 0;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.6;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
}
.venue span {
  display: inline-block;
  margin-left: 1.1em;
}
/* =========================================================
   PC SCHEDULE TABLE
========================================================= */
.scrollTable {
  margin: 30px auto 26px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.scrollTable table {
  width: 100%;
  min-width: 820px;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: clamp(14px, 1.6vw, 20px);
  line-height: 1.35;
}
.scrollTable th, .scrollTable td {
  width: 5.3%;
  padding: 9px 10px;
  text-align: center;
  border-bottom: 1px solid rgba(19, 15, 9, .32);
  white-space: nowrap;
}
.scrollTable th:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 10%;
}
.scrollTable thead {
  font-size: .9rem;
}
.scrollTable tbody td {
  font-size: 1.2em;
}
td.off {
  line-height: 1;
  opacity: .85;
}
.scrollTable {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.scrollTable .off {
  font-size: 14px;
}
/* =========================================================
   SP SCHEDULE TABLE
========================================================= */
.scheduleSp {
  display: none;
}
.scheduleSp table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 28px 0 24px;
  background: rgba(255, 247, 215, .12);
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.scheduleSp th, .scheduleSp td {
  width: 25%;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid rgba(19, 15, 9, .2);
  line-height: 1.35;
}
.scheduleSp th {
  font-size: 12px;
  font-weight: 400;
  color: rgba(19, 15, 9, .65);
}
.scheduleSp td {
  font-size: 13px;
}
.scheduleSp td:nth-child(2), .scheduleSp td:nth-child(3) {
  color: #15120d;
  font-size: 13px;
}
.scheduleSp .is-closed .off {
  font-size: 13px;
}
/* =========================================================
   TICKET / INFO
========================================================= */
.ticket {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 20px 0;
  line-height: 1.5;
  font-size: 1.1em;
}
.ticket span {
  display: inline-block;
  background-color: #1b150e;
  color: #e0bd63;
  line-height: 1;
  padding: 5px 1em;
  margin-bottom: 15px;
  font-family: "Calistoga", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 2px
}
.ticketList {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 96%;
  max-width: 600px;
  list-style: disc;
  text-align: left;
  padding-left: 1em;
  margin: 0 auto;
  font-size: 85%;
}
.ticketList li {}
/* チケット */
.purchaseBox {
  background-color: #efe6c9;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  width: 100%;
  max-width: 560px;
  margin: 25px auto 0;
  padding: 25px;
  border: 1px solid #1b150e;
}
@media (max-width: 410px) {
  .purchaseBox {
    width: 94%;
    padding: 20px 3%;
  }
}
h5 {
  font-size: 1.1em;
  border-bottom: 1px solid #1b150e;
  margin: 0 0 15px;
  padding: 0;
}
.purchaseBox p {
  font-size: 90%;
}
.purchaseList {
  list-style: none;
  padding: 0 0 20px;
}
.purchaseList li {
  display: block;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.purchaseList li a:link {
  display: block;
  position: relative;
  padding: 0.5em 1em 0.4em;
  text-align: center;
  text-decoration: none;
  margin: 10px auto 0;
  background: #e0bd63;
  color: #1b150e;
  border: 1px solid #1b150e;
  transition: all 0.3s;
  font-weight: 400;
  font-size: 100%;
  width: 14em;
}
.purchaseList li a:visited {
  text-decoration: underline;
  background: #e0bd63;
  color: #1b150e;
  border: 1px solid #1b150e;
}
.purchaseList li a:active {
  text-decoration: underline;
  background: #e0bd63;
  color: #1b150e;
  border: 1px solid #1b150e;
}
.purchaseList li a:hover {
  text-decoration: none;
  background: #1b150e;
  color: #e0bd63;
  border: 1px solid #1b150e;
}
.infoBox{
  width: 600px;
  margin: 30px auto;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9em;
  border-collapse: collapse;
  border-top: 1px dotted #1b150e;
}
.infoBox th{
  border-bottom: 1px dotted #1b150e;
  text-align: right;
  width: 8em;
  padding: 10px;
}
.infoBox td{
  border-bottom: 1px dotted #1b150e;
  text-align: left;
  padding: 10px;
  line-height: 1.4;
}
.infoBox td span{
  font-size: 80%;
}
@media (max-width: 600px) {
  .infoBox {
    width: 100%;
    padding: 0;
  }
  .infoBox th{
	display: block;
    width: 96%;
    border: none;
    text-align: left;
    padding: 10px 2% 0;
  }
  .infoBox td{
	display: block;
    width: 96%;
    border-bottom: 1px dotted #1b150e;
    padding: 0 2% 10px;
  }
}
/* =========================================================
   FOOTER
========================================================= */
.footer {
  display: grid;
  gap: 10px;
  place-items: center;
  padding: 34px 20px 50px;
  color: #b8a989;
  background: #1b150e;
}
.footer small {
  font-size: 12px;
}
.x {
  font-size: 2.5em;
}
.x a:link {
  text-decoration: none;
  color: #b8a989;
}
.x a:visited {
  text-decoration: none;
  color: #b8a989;
}
.x a:active {
  text-decoration: none;
  color: #b8a989;
}
.x a:hover {
  text-decoration: none;
  color: #fff;
}
/* =========================================================
   PAGE TOP
========================================================= */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  z-index: 9999;
}
@media(max-width:600px) {
  #page-top {
    bottom: 5px;
    right: 5px;
  }
}
#page-top a {
  text-decoration: none;
  color: #e0bd63;
  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;
}
/* =========================================================
   SP / MOBILE
========================================================= */
@media(max-width:810px) {
  .scrollTable {
    display: none;
  }
  .scheduleSp {
    display: block;
  }
}
/* =============================================== */
/* 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:810px) {
  a:hover img {
    -moz-opacity: 1;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
/* =============================================== */
/* other - その他 */
/* ----------------------------------------------- */
/* ほか */
.ex-large {
  font-size: 200%;
}
@media(max-width:810px) {
  .ex-large {
    font-size: 140%;
  }
}
.large {
  font-size: 130%;
}
@media(max-width:810px) {
  .large {
    font-size: 120%;
  }
}
small {
  font-size: .6em;
}
.small {
  font-size: 13px;
}
.bold {
  font-weight: 600;
}
.left {
  float: left;
}
.right {
  float: right;
}
.txtCenter {
  text-align: center;
}
.txtRight {
  text-align: right;
}
/* =============================================== */
/* 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: #1b150e;
  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 15px;
  font-weight: 600;
  color: #efe6c9;
  text-align: left;
  border-bottom: 1px solid #e0bd63;
  border-top: none;
}
.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;
  color: #efe6c9;
}
/* アニメーション*/
.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 {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
	display: block;
}
.button01 {
  border: 1px solid #e0bd63;
  text-align: center;
  font-family: "Calistoga", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  padding: 7px 1.2em 9px;
  margin: 10px auto;
  background-color: #1b150e;
  color: #e0bd63;
  border-radius: 50px;
}
.button01:hover {
  border: 1px solid #1b150e;
  background-color: #e0bd63;
  color: #1b150e;
  transition: all .3s ease;
}