@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;
}
/* ボディ */
html,body {
  scroll-behavior: smooth;
}
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;
}
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;
  }
}
h2.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;
}
/* =============================================== */
/* 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;
  font-weight: 600;

  padding: 60px 0 0;
  height: calc(100vh - 60px);
  overflow: hidden;
}
@media(max-width:810px) {
  #main {
    padding: 0;
  }
}
@media(max-width:768px) {
  #main{
    height: auto;
  }
}
.main-visual {
  width: 100%;
  height: 100%;
  margin: 0;
  animation: fadein 3s ease forwards;
}
@media(max-width:768px) {
  .main-visual{
    height: auto;
  }
}
.main-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 全体を表示 */
  display: block;
}
@media(max-width:768px) {
  .main-visual img{
    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;
}
/* =============================================== */
/* feed - ニュースフィード */
/* ----------------------------------------------- */
#newsFeed {
  width: 100%;
  margin: 0 auto;
}
#newsFeed article {
  padding: 0 2%;
  clear: both;
}
.feedLeft{
  width: 100%;
  text-align: center;
  margin: 40px 0 0;
}
.feedLeft p{
  height: 0;
}
.feedLeft p span{
  font-family: "Goblin One", serif;
  font-weight: 200;
  font-size: 1.2em;
  background-color: #b1913e;
  color: #fff;
  position: relative;
  top:-0.8em;
  padding: 6px 1em;
  letter-spacing: 0.1em;
}
.feedRight{
  width: calc(100% - 50px);
  padding: 40px 25px;
  margin: 0 0 40px;
  background-color: #fff;
  color: #333;

}
#feed ul{
}
#feed li{
  border-top: 1px dotted #999;
  padding: 10px 0;
}
#feed li:first-child{
  border-top: none;
}
#feed li span{
  display: inline-block;
  margin-right: 15px;
  color: #b1913e;
}
@media(max-width:810px) {
  .feedLeft p span{
    font-size: 1em;
  }
}
@media(max-width:600px) {
  .feedLeft p span{
    font-size: 0.9em;
  }
  #feed li span{
    display: block;
    margin-right: 0;
  }
}
/* =============================================== */
/* 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;
  scroll-margin-top: 60px;
}
#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;
  scroll-margin-top: 60px;
}
#story h2 span{
  color: #000;
}
#story p {
  padding: 8px 0;
}
/* =============================================== */
/* cast&staff - キャストスタッフ */
/* ----------------------------------------------- */
#cast {
  width: 90%;
  max-width: none;
  margin: 0 auto;
  padding: 10% 5% 5%;
  scroll-margin-top: 60px;
}
#cast article {
  width: 96%;
  max-width: none;
  margin: 0 auto;
  padding: 25px 2%;
  clear: both;
}
.castList1 {
  width: 100%;
  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: 400px;
  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;
  text-shadow: #2c4547 0 0 5px , #2c4547 0 0 10px;
}
.castList1 li.nakaguro{
  width: 0;
  padding: 15% 2.7% 0 0;
  margin: 0;
}
.castList1 li.space{
  width: 0;
  padding: 0 4%;
  margin: 0;
}
.castList2 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 40px 0 20px;
  margin: 0 auto;
  border-top: 1px dotted #fff;
}
.castList2 li {
  display: inline-block;
  text-align: center;
  line-height: 1.5;
  font-size: 21px;
  padding: 0 1.25% 20px;
  vertical-align: top;
  font-weight: 600;
  text-shadow: #2c4547 0 0 5px , #2c4547 0 0 10px;
}
@media(max-width:600px) {
  #cast {
    padding: 20% 5% 5%;
  }
  .castList1 {
    padding: 40px 0;
    border-bottom: 1px 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: 1px dotted #fff;
  }
  .castList2 li {
    font-size: 16px;
    padding: 0 1.5% 10px;
  }
}
/* =============================================== */
/* creative - スタッフ */
/* ----------------------------------------------- */
#creative {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5%;
  scroll-margin-top: 60px;
}
.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;
  text-shadow: #2c4547 0 0 5px , #2c4547 0 0 10px;
}
.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;
}
.job{
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  color: #dcd5c7;
  border-left: 1px solid #dcd5c7;
  border-right: 1px solid #dcd5c7;
  line-height: 1;
  padding: 2px 10px;
  margin: 5px 10px;
}
.staffList2 {
  width: 100%;
  max-width: 1000px;
  text-align: center;
  padding: 0 0 40px;
  margin: 0 auto;
}
.staffList2 li {
  display: inline-block;
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  padding: 5px 1.2em;
  text-shadow: #2c4547 0 0 5px , #2c4547 0 0 10px , #2c4547 0 0 10px;
}
@media(max-width:600px) {
  #creative {
    padding: 20% 5% 5%;
  }
  .job {
    font-size: 12px;
    padding: 2px 6px;
  }
  .staffList2 li {
    display: block;
    font-size: 12px;
    padding: 0;
  }
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#info {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10% 5%;
  color: #333;
  scroll-margin-top: 60px;
}
#info article {
  margin: 10px auto;
}
h4 {
  font-size: 15px;
  font-weight: 600;
  padding: 7px 0 5px;
  margin: 25px 0 25px;
  text-align: center;
  border-top: 3px double #fff;
  border-bottom: 3px double #fff;
  background-color: #000;
  color: #fff;
  line-height: 1;
}
.dateTxt {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  padding: 15px 0 5px;
  letter-spacing: 2px;
  line-height: 1.4;
}
.dateTxt .large {
  font-size: 26px;
  font-weight: 600;
}
@media(max-width:600px) {
  .dateTxt {
    letter-spacing: 0;
    font-size: 16px;
  }
}
.sche {
  margin: 20px auto 40px;
  width: 100%;
  max-width: 920px;
}
.sche img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.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;
}

/* チケット */
.ticketBox{
  width: 96%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 3px 3px; /* 横0px、縦8px */
}
.ticketBox th {
  width: 20%;
  font-size: 90%;
  padding: 10px;
  font-weight: 400;
  background-color: #f3ecd8;
  background-color: #dcd5c7;
}
.ticketBox td {
  width: 80%;
  font-size: 90%;
  padding: 10px;
  background-color: #fff;
}
@media(max-width:600px) {
  .ticketBox{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px 0px;
  }
  .ticketBox th {
    display: block;
    width: calc(100% - 20px);
    padding: 2px 10px 0;
  }
  .ticketBox td {
    display: block;
    width: 100%;
    background-color: transparent;
    padding: 15px 0;
  }
}

.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;
}
/* =============================================== */
/* news - ニュース */
/* ----------------------------------------------- */
#other h2{
  padding: 12% 0 6%;
}
@media(max-width:810px) {
  #other h2 {
    padding: 11% 0 9%;
  }
}
@media(max-width:600px) {
  #other h2 {
    padding: 16% 0 12%;
  }
}
#news {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5%;
  color: #333;
  scroll-margin-top: 60px;
}
.newsArticle{
  padding: 8% 0;
  color: #333;
}
.newsDate{
  font-family: "Goblin One", serif;
  font-weight: 200;
  font-size: 1em;
  color: #b1913e;
}
h3.subhead {
  color: #fff;
  text-align: left;
  margin: 0 0 25px;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 1.1em;
  background-color: #333;
  line-height: 1.4;
}
.newsArticle p{
  width: calc(100% - 30px);
  padding: 10px 15px;
}
.smallTitle{
  margin-top: 20px;
}
.smallTitle span{
  border-bottom: 2px solid #000;
  font-weight: 600;
}
.cautionList01{
  padding: 10px 15px 10px 1.5em;
  list-style: disc;
  margin: 0;
}
.cautionList01 li{
  line-height: 1.4;
  padding: 5px 0;
}
/* =============================================== */
/* 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-14 .modal-content {
  background: #fff;
  padding: 0;
  max-width: 1140px;
  max-height: 80vh;
}
#modal-14 .modal-content img{
  width: 100%;
  height: auto;
}
#modal-14 .close-btn {
  color: #9B0000;
}
.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;
}
/* modalのボタン02 */
.button2box{
  width: 6em;
  margin: 0;
}
@media(max-width:600px) {
  .button2box {
    margin: 0 auto;
  }
}
.button02 {
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  padding: 7px 1.2em 9px;
  margin: 10px auto;
  background-color: #b6953c;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
}
.button02:hover {
  background-color: #e8c567;
  color: #fff;
  transition: all .3s ease;
}