@charset "utf-8";
/*///////////////////////////////////

reset

///////////////////////////////////*/

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #232ef8;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*///////////////////////////////////

common

///////////////////////////////////*/
.wrap {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
}

.wrap img {
  width: 100%;
  height: auto;
}

.wrap .bold {
  font-weight: bold;
}

.wrap .fontm {
  font-size: clamp(15px, 2vw, 20px);
}

.wrap .inner {
  max-width: 1200px;
  margin: 0px auto;
}
/*
.wrap .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    filter: blur(20px);
    transform: scale(1.02);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
} */

/*///////////////////////////////////

header 

///////////////////////////////////*/

.header {
  background-color: #1c2189;

  background-image: url(../img/headerBack.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.4);
  text-align: center;
  margin: 0px auto;
  padding: 50px 0;
}

.header .opacityImg {
  /* opacity: 0; */
  animation-name: fade;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}
.header .opacityImg h1 img {
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #000;
  max-width: 1200px;
  width: 90%;
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .header {
    padding: 5% 0 3%;
  }
}

.wrap .witeBlock {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 0 100px rgba(255, 255, 255, 0.9),
    inset 0 0 120px rgba(255, 255, 255, 1);
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  padding: 50px;
}
@media screen and (max-width: 1000px) {
  .wrap .witeBlock {
    padding: 5%;
  }
}
@media screen and (max-width: 700px) {
  .wrap .witeBlock {
    box-shadow:
      inset 0 0 60px rgba(255, 255, 255, 0.9),
      inset 0 0 80px rgba(255, 255, 255, 1);
    padding: 15px;
  }
}

/*///////////////////////////////////

ticketArea 

///////////////////////////////////*/
.wrap .ticket {
  background-color: #08204a;
  background-image: url(../img/ticketBack.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 160%;
  padding: 50px 0;
  color: #08204a;
}
.wrap .ticket dl .block {
  display: flex;
}
.wrap .ticket dl .block dt {
  font-family: "Noto Serif JP", serif;
  width: 30%;
  border-top: 3px solid #08204a;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: bold;
  padding: 20px;
}
.wrap .ticket dl .block:last-child dt {
  border-bottom: 3px solid #08204a;
}
.wrap .ticket dl .block dd {
  width: 69%;
  border-top: 1px solid #98a4ba;
  margin-left: 0.5%;
  padding: 30px 20px;
}
.wrap .ticket dl .block:last-child dd {
  border-bottom: 1px solid #98a4ba;
}
.wrap .ticket dl .block dd .titleBlock {
  display: block;
  background-color: #08204a;
  background-image: linear-gradient(90deg, #08204a, #152888);
  color: #fff;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: bold;
  margin-bottom: 10px;
  padding: 3px 10px 5px;
}
.wrap .ticket dl .block dd .dtBlock {
  padding-bottom: 20px;
}
.wrap .ticket dl .block dd .dtBlock:last-of-type {
  padding-bottom: 0;
}
.wrap .ticket dl .block dd .dtBlock ul.seat {
  padding: 0;
}
.wrap .ticket dl .block dd .dtBlock ul.seat li {
  border-bottom: 1px solid #98a4ba;
  padding: 6px 10px;
}
.wrap .ticket .tax {
  padding: 0 0 20px;
}

.wrap .ticket .saleBlock dl {
  display: block;
  padding: 5px 0 10px;
}
.wrap .ticket .saleBlock dl dt {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  width: auto;
  border: none;
  border-bottom: 1px solid #98a4ba;
  border-left: 1px solid #98a4ba;
  font-size: clamp(16px, 3vw, 20px);
  padding: 0 10px 5px;
}
.wrap a.openWindow {
  color: #08204a;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.wrap a.openWindow::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 5px;
  bottom: 0;
  right: -25px;
  margin: auto;
  background: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' height='20px' viewBox='0 -960 960 960' width='20px' fill='%2308204a'><path d='M222.78-124.78q-41 0-69.5-28.5t-28.5-69.5v-514.44q0-41 28.5-69.5t69.5-28.5H480v98H222.78v514.44h514.44V-480h98v257.22q0 41-28.5 69.5t-69.5 28.5H222.78ZM404.52-336 336-404.52l332.69-332.7H576v-98h259.22V-576h-98v-92.69L404.52-336Z'/></svg>")
    no-repeat center / cover;
}
.wrap a.openWindow:hover {
  color: #232ef8;
}
.wrap .ticket .saleBlock dl dd {
  display: block;
  width: auto;
  border: none;
  padding: 5px 10px;
}

.wrap .ticket .playguideList {
  padding: 0;
  line-height: 1.8;
}
.wrap .ticket .playguideList li {
  border-bottom: 1px solid #98a4ba;
  padding: 5px 0;
  font-size: clamp(13px, 2vw, 16px);
}
.wrap .ticket .playguideList li:last-child {
  border: none;
}

@media screen and (max-width: 1000px) {
  .wrap .ticket dl .block dt {
    padding: 2%;
  }
  .wrap .ticket dl .block dd {
    padding: 3% 2%;
  }
}

@media screen and (max-width: 700px) {
  .wrap .ticket {
    padding: 5% 0;
    background-image: url(../img/ticketBack.webp);
    background-repeat: repeat;
    background-position: top center;
    background-size: 300%;
  }
  .wrap .ticket dl .block {
    display: block;
  }
  .wrap .ticket dl .block dt {
    width: 100%;
    background-color: rgba(8, 32, 74, 0.1);
    border-top: 3px solid #08204a;
    border-bottom: 3px solid #08204a;
    text-align: center;
    font-weight: 800;
  }
  .wrap .ticket dl .block dd {
    width: 100%;
    margin: 0;
    padding: 15px 0 30px;
  }
  .wrap .ticket dl .block:last-child dd {
    border: none;
    padding-bottom: 0;
  }
  .wrap .ticket dl .block dd .titleBlock {
    margin-bottom: 5px;
  }

  .wrap .ticket .saleBlock dl {
    padding: 5px 0 5px;
  }
  .wrap .ticket .saleBlock dl dt {
    background: none;
    border-top: none;
    border-bottom: 1px solid #98a4ba;
    padding: 0 10px 5px;
    text-align: left;
  }
  .wrap .ticket .saleBlock dl dd {
    padding: 5px;
  }
  .wrap .ticket dl .block dd .dtBlock {
    padding-bottom: 10px;
  }
  .wrap .ticket .tax {
    padding: 0 0 10px;
  }
  .wrap .ticket .playguideList li:first-child {
    padding: 0 0 5px;
  }
  .wrap a.openWindow::after {
    width: 16px;
    height: 16px;
    top: 4px;
    bottom: 0;
    right: -20px;
  }
}

/*///////////////////////////////////

player 

///////////////////////////////////*/
.wrap .player {
  background-image: url(../img/flower01.webp), url(../img/flower02.webp), url(../img/playerBack.webp);
  background-repeat: no-repeat, no-repeat, repeat;
  background-position:
    top right,
    bottom left,
    top center;
  background-size: 50%, 50%, cover;
  padding: 50px 0;
}
.wrap .player .playerWrap {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}
.wrap .player .playerWrap h2 {
  font-family: "Zen Antique", serif;
  color: #8a7c46;
  margin: 0 0 50px;
  padding: 0;
  text-align: center;
  font-size: clamp(50px, 5vw, 70px);
}
.wrap .flexBlock {
  display: flex;
  justify-content: space-between;
}
.wrap .player .playerWrap .playerArea {
  width: 48%;
  text-align: center;
}
.wrap .player .playerWrap figure img {
  border-radius: 50px;
  box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.3);
}
.wrap .player .playerWrap figure figcaption {
  font-family: "Noto Serif JP", serif;
  color: #08204a;
  text-align: center;
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 600;
  padding: 5px 0;
}
.wrap .player .playerWrap figure figcaption span {
  font-size: clamp(12px, 3vw, 27px);
}

.wrap .player .playerWrap h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 50px;
  font-size: clamp(35px, 4vw, 50px);
  text-align: center;
  color: #8a7c46;
  margin: 50px 0 30px;
  line-height: 0.9;
  font-weight: 900;
}
.wrap .player .playerWrap h3 span {
  font-size: clamp(18px, 3vw, 30px);
}

.wrap .player .playerWrap .nikikai {
  /*  background-color: #d1d7e1;
  background-image: url(../img/corner_01.webp), url(../img/corner_02.webp), url(../img/corner_03.webp), url(../img/corner_04.webp);
  background-repeat: no-repeat;
  background-position:
    top 4% left 2%,
    top 4% right 2%,
    bottom 4% right 2%,
    bottom 4% left 2%;
  background-size: 40%;*/
  padding: 60px;
  margin-bottom: 50px;
}
.wrap .player .playerWrap .nikikai ul li {
  text-align: center;
  width: 30%;
}
.wrap .player .playerWrap .nikikai ul li figure img {
  border-radius: 50px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
}
.wrap .player .playerWrap .nikikai ul li figure figcaption {
  font-size: clamp(16px, 2vw, 25px);
  padding: 5px 0;
}
.wrap .player .playerWrap .nikikai ul li figure figcaption span {
  font-size: clamp(10px, 1vw, 16px);
}

.wrap .player .playerWrap .shikiBlock {
  margin: 80px 0;
}

/* プロフィールを見るボタン */
.wrap .profBtn {
  font-family: "Noto Serif JP", serif;
  cursor: pointer;
  background-color: #08204a;
  color: #f5c073;
  width: 250px;
  font-size: clamp(11px, 1vw, 18px);
  font-weight: 800;
  text-align: center;
  margin: 10px auto 0;
  padding: 12px 10px 15px;
  border: none;
  border-radius: 50px;
  transition: background-color 0.3s ease-in;
}
.wrap .profBtn:hover {
  background-color: #152888;
}
.wrap .playerArea .profBtn {
  font-size: clamp(16px, 1vw, 18px);
}
@media screen and (max-width: 1000px) {
  .wrap .profBtn {
    width: 75%;
  }
}
@media screen and (max-width: 700px) {
  .wrap .player {
    background-image: url(../img/flower01.webp), url(../img/flower02.webp), url(../img/playerBack.webp);
    background-repeat: no-repeat, no-repeat, repeat;
    background-position:
      top right,
      bottom left,
      top center;
    background-size: 50%, 50%, cover;
    padding: 20px 0;
  }
  .wrap .player .playerWrap {
    max-width: 350px;
    width: 90%;
    margin: 0 auto;
  }
  .wrap .player .playerWrap h2 {
    margin: 0 0 30px;
  }

  .wrap .player .playerWrap .playerArea {
    width: 100%;
    margin-bottom: 30px;
  }
  .wrap .flexBlock {
    flex-direction: column;
  }

  .wrap .player .playerWrap h3 {
    margin: 20px 0 20px;
  }

  .wrap .player .playerWrap .nikikai {
    background-color: #d1d7e1;
    background-image: url(../img/corner_01.webp), url(../img/corner_02.webp), url(../img/corner_03.webp), url(../img/corner_04.webp);
    background-repeat: no-repeat;
    background-position:
      top 0.8% left 5%,
      top 0.8% right 5%,
      bottom 0.8% right 5%,
      bottom 0.8% left 5%;
    background-size: 40%;
    padding: 20px;
    margin-bottom: 40px;
  }
  .wrap .player .playerWrap .nikikai ul li {
    text-align: center;
    width: 90%;
    margin: 20px auto;
  }
  .wrap .player .playerWrap .nikikai ul li figure figcaption {
    font-size: 20px;
    padding: 5px 0;
  }
  .wrap .player .playerWrap .nikikai ul li figure figcaption span {
    font-size: 12px;
  }
  .wrap .player .playerWrap figure img,
  .wrap .player .playerWrap .nikikai ul li figure img,
  .wrap .player .playerWrap .nikikai ul li figure img {
    border-radius: 30px;
  }

  .wrap .profBtn {
    font-size: clamp(13px, 1vw, 18px);
    padding: 10px 10px 13px;
  }

  .wrap .player .playerWrap .shikiBlock {
    margin: 20px 0;
  }
}

/*///////////////////////////////////

info 

///////////////////////////////////*/
.wrap .info {
  background-image: url(../img/infoBack.webp), linear-gradient(0deg, #0d084a, #08204a, #08124a);
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center;
  padding: 70px 0;
}
.wrap .info h2 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 5px;
  color: #8a7c46;
  margin: 0 0 70px;
  padding: 0;
  text-align: center;
  font-size: clamp(30px, 3vw, 70px);
}

.wrap .info .infoBlock .block {
  display: flex;
}
.wrap .info .infoBlock .block dt {
  font-family: "Noto Serif JP", serif;
  width: 28%;
  border-top: 3px solid #08204a;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: bold;
  padding: 20px;
}
.wrap .info .infoBlock .block:last-child dt {
  border-bottom: 3px solid #08204a;
}
.wrap .info .infoBlock .block dd {
  width: 71%;
  border-top: 1px solid #98a4ba;
  margin-left: 0.5%;
  padding: 30px 20px;
}
.wrap .info .infoBlock .block:last-child dd {
  border-bottom: 1px solid #98a4ba;
}

@media screen and (max-width: 1000px) {
  .wrap .info {
    padding: 5% 0;
  }
  .wrap .info h2 {
    margin: 0 0 5%;
  }
  .wrap .info .infoBlock .block dt {
    padding: 2% 1%;
  }
  .wrap .info .infoBlock .block dd {
    padding: 2.5% 1%;
  }
}

@media screen and (max-width: 700px) {
  .wrap .info .infoBlock .block {
    display: block;
  }
  .wrap .info .infoBlock .block dt {
    width: 100%;
    background-color: rgba(8, 32, 74, 0.1);
    border-top: 3px solid #08204a;
    border-bottom: 3px solid #08204a;
    font-weight: 800;
    padding: 5px 10px;
    text-align: center;
  }
  .wrap .info .infoBlock .block dd {
    width: 100%;
    margin: 0;
    padding: 10px 0 25px;
  }
  .wrap .info .infoBlock .block:last-child dd {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/*///////////////////////////////////

モーダル設定

///////////////////////////////////*/
dialog {
  padding: 40px;
  border: none;
  border-radius: 12px;
  background: #fff;
  max-width: 600px;
  width: 80%;

  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

dialog[open] {
  opacity: 1;
  transform: translateY(0);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

dialog .name {
  font-family: "Noto Serif JP", serif;
  display: block;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 3px solid #08204a;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 800;
}
dialog .name span {
  display: block;
  font-size: clamp(11px, 2vw, 15px);
  opacity: 0.5;
}

dialog .profText {
  overflow-y: initial;
  overflow-y: scroll;
  /* height: 350px; */
}
dialog .profText p {
  line-height: 1.7;
  font-size: clamp(12px, 2vw, 15px);
}

dialog .close {
  cursor: pointer;
  display: block;
  background-color: #fff;
  border: 1px solid #08204a;
  max-width: 150px;
  width: 150px;
  font-size: 12px;
  text-align: center;
  padding: 5px;
  margin: 20px auto 0;
  border-radius: 50px;
  transition:
    background-color 0.1s ease-in,
    color 0.1s ease-in;
}
dialog .close:hover {
  background-color: #152888;
  color: #fff;
}

@media screen and (max-width: 700px) {
  dialog {
    padding: 20px;
    margin: auto;
    max-height: 320px;
  }
  dialog .profText {
    height: 200px;
  }
}
