@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=Lexend:wght@100..900&display=swap');
/* =========================
 LODING
========================= */
#loading {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}
#loading svg {
  width: 80px;
  height: 80px;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: draw 3s ease forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
#loading span {
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 0.9em;
  margin-top: 16px;
  /* 点滅アニメーションは削除 */
}
#loading.fade-out {
  animation: fadeOut 0.6s forwards;
}
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */ :root {
  --duration: 320ms;
  --ease: cubic-bezier(.4, 0, .2, 1);
}
@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: "BIZ UDPGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  background: #f7f6f3;
  color: #111;
  -webkit-text-size-adjust: 100%;
}
a:link {
  text-decoration: underline;
  color: #e584b7;
}
a:visited {
  text-decoration: underline;
  color: #e584b7;
}
a:active {
  text-decoration: underline;
  color: #e584b7;
}
a:hover {
  text-decoration: none;
  color: #e584b7;
}
/* 画像関連 */
img {
  border: none;
  vertical-align: bottom;
  -webkit-touch-callout: none; /* iOS 長押しメニュー無効 */
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
/* 罫線 */
hr {
  clear: both;
  margin: 25px 0;
  padding: 0;
  height: 0;
}
.stripe {
  height: 12px;
  background: linear-gradient(-70deg, transparent 35%, #ccd0d1 45%, #ccd0d1 55%, transparent 65%);
  background-size: 8px 12px;
  border: none;
}
.stripeHalf {
  height: 8px;
  background: linear-gradient(-70deg, transparent 35%, #ccd0d1 45%, #ccd0d1 55%, transparent 65%);
  background-size: 6px 9px;
  border: none;
  width: 90%;
  max-width: 800px;
}
.modal-inner .stripe {
  height: 8px;
  background: linear-gradient(-70deg, transparent 35%, #ccd0d1 45%, #ccd0d1 55%, transparent 65%);
  background-size: 6px 9px;
  border: none;
  margin: 15px 0;
}
/* 追従バナー */
.followBanner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.followBanner a {
  display: flex;
  align-items: center;
  gap: 6px;
  writing-mode: vertical-rl;   /* 縦書き */
  text-orientation: mixed;     /* 英数字を自然に */
  font-size: 18px;
  letter-spacing: 0.1em;
  padding: 16px 8px;
  background: #71b0f2;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
@media(max-width:810px) {
  .followBanner a {
    font-size: 14px;
    padding: 14px 8px;
  }
}
@media(max-width:600px) {
  .followBanner a {
    font-size: 11px;
    padding: 8px 4px;
  }
}
.followBanner a:hover {
  background: #93c1f2;
}
.followBanner a {
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 30%, 70%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
/* ページレイアウト */
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
section {
  width: 86%;
  max-width: 800px;
  padding: 100px 5%;
  margin: 5rem auto;
  background: #f9f9f9;
  box-shadow: -16px 12px 20px -18px rgba(235, 184, 114, 0.14), 16px 12px 20px -18px rgba(235, 184, 114, 0.14);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
section:hover {
  transform: translateY(-4px);
  box-shadow: -50px 36px 40px -35px rgba(126, 167, 169, 0.45), 50px 36px 40px -35px rgba(126, 167, 169, 0.45);
}
@media(max-width:600px) {
  section {
    width: 80%;
    padding: 50px 6%;
  }
}
article {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 25px 2%;
  clear: both;
}
/* 見出し */
h2 {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: scale(1.5);
  transition: transform 0.8s ease, opacity 0.8s ease;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px; /* 下線スペース */
}
/* is-visibleで文字縮小フェードイン */
h2.is-visible {
  opacity: 1;
  transform: scale(1);
}
/* 下線（マーカー風） */
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* 文字のすぐ下 */
  width: 0;
  height: 5px; /* 細い線 */
  background: linear-gradient(to right, #e584b7, #f0d313);
  transition: width 0.6s ease;
}
/* is-visibleで線を伸ばす */
h2.is-visible::after {
  width: 100%;
}
@media(max-width:600px) {
  h2 {
    font-size: 1.25em;
    margin-bottom: 25px; /* 下線スペース */
  }
}
h3 {
  font-size: 1.17em;
  padding: 20px 0 0;
  color: #71b0f2;
}
@media(max-width:600px) {
  h3 {
    font-size: 1em;
  }
}
h5 {
  text-align: center;
  color: #1ba3e9;
  margin: 0;
  padding: 50px 0 20px;
}
h5 span {
  padding: 5px 1.5em 3px;
  margin: 0 auto;
  font-size: 1.1em;
  font-weight: 700;
  border-top: 1px solid #1ba3e9;
  border-bottom: 1px solid #1ba3e9;
  background: #f1f9fd;
}
/* =============================================== */
/* menu - メニュー */
/* ----------------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 101;
  background-color: #e584b7;
  -webkit-transition: all 3s ease-in-out;
  transition: all .3s ease-in-out;
}
@media(max-width:600px) {
  .menu-btn {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}
.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #fff;
  -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: #fff;
  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: #fff;
}
.open .menu-btn-line {
  background-color: transparent;
}
.open .menu-btn-line::before, .open .menu-btn-line::after {
  top: 0;
  background: #fff;
}
.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(247, 246, 243, .9);
  -webkit-transition: all .5s;
  transition: all .5s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
.menu ul {
  transform: translateY(14%);
  padding: 0;
  list-style-type: none
}
.menu li {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
}
.menu li a {
  display: block;
  color: #777;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.menu li a:hover {
  color: #e584b7;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* main - メイン */
/* ----------------------------------------------- */
main {
  width: 100%;
}
/* =============================================== */
/* KV - ビジュアル */
/* ----------------------------------------------- */
h1 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}
h1 img {
  width: 100%;
  height: auto;
}
/* =============================================== */
/* castCredite - キャストクレジット */
/* ----------------------------------------------- */
.stripeWithText {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 90%;
  max-width: 900px;
  margin: 90px auto 15px;
}
.stripeWithText::before, .stripeWithText::after {
  content: "";
  height: 8px;
  flex: 1;
  background: linear-gradient(-70deg, transparent 35%, #bbb 45%, #bbb 55%, transparent 65%);
  background-size: 6px 9px;
}
.stripeWithText span {
  white-space: nowrap;
  font-size: 15px;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: #555;
}
.castCrediteWrap {
  display: flex;
  justify-content: center; /* 横方向中央 */
  padding: 20px 0 0;
}
.castCrediteList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  writing-mode: vertical-rl;
  font-size: 20px;
  text-align: center;
}
.castCrediteList li {
  margin-left: 1%;
  display: flex;
  align-items: flex-start;
  font-weight: 600;
  color: #555;
  /* アニメーション設定 */
  opacity: 0;
  transform: translateY(1em); /* 下から */
  animation: castFadeUp 0.6s ease-out forwards;
  animation-play-state: paused; /* ←最初は止める */
}
/* 表示されたら再生 */
.castCrediteList.is-visible li {
  animation-play-state: running;
}
.castCrediteList li.space {
  margin-left: 1em; /* ← ブロック間の大きな余白 */
  pointer-events: none;
}
/* 上（右）から順番に遅延させる */
.castCrediteList li:nth-child(1) {
  animation-delay: 0s;
}
.castCrediteList li:nth-child(3) {
  animation-delay: 0.1s;
}
.castCrediteList li:nth-child(4) {
  animation-delay: 0.2s;
}
.castCrediteList li:nth-child(5) {
  animation-delay: 0.3s;
}
.castCrediteList li:nth-child(6) {
  animation-delay: 0.4s;
}
.castCrediteList li:nth-child(7) {
  animation-delay: 0.5s;
}
.castCrediteList li:nth-child(8) {
  animation-delay: 0.6s;
}
.castCrediteList li:nth-child(10) {
  animation-delay: 0.7s;
}
.castCrediteList li:nth-child(11) {
  animation-delay: 0.8s;
}
.castCrediteList li:nth-child(12) {
  animation-delay: 0.9s;
}
.castCrediteList li:nth-child(14) {
  animation-delay: 1.0s;
}
.castCrediteList li:nth-child(15) {
  animation-delay: 1.1s;
}
.castCrediteList li:nth-child(16) {
  animation-delay: 1.2s;
}
.castCrediteList li:nth-child(17) {
  animation-delay: 1.3s;
}
.castCrediteList li:nth-child(19) {
  animation-delay: 1.4s;
}
.castCrediteList li:nth-child(20) {
  animation-delay: 1.5s;
}
.castCrediteList li:nth-child(22) {
  animation-delay: 1.6s;
}
/* アニメーション定義 */
@keyframes castFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media(max-width:800px) {
  .stripeWithText {
    margin: 80px auto 10px;
  }
  .castCrediteList {
    font-size: 16px;
  }
  .castCrediteList li {
    margin-left: -4px;
  }
  .castCrediteList li.space {
    margin-left: 10px;
  }
}
@media(max-width:500px) {
  .stripeWithText {
    margin: 60px auto 10px;
  }
  .castCrediteWrap {
    padding: 20px 0 0;
  }
  .castCrediteList {
    writing-mode: horizontal-tb;
    font-size: 15px;
  }
  .castCrediteList li {
    margin: 0;
    padding: 0;
	display: block;
    align-items: center;
	letter-spacing: 0.2em;
	line-height: 1.4;
  }
  /* 表示されたら再生 */
  .castCrediteList.is-visible li {
    animation-play-state: running;
  }
  .castCrediteList li.space {
    margin-bottom: 15px; /* ← ブロック間の余白 */
  }
}
/* =============================================== */
/* feed - ニュースフィード */
/* ----------------------------------------------- */
#newsfeed {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 0;
  background-color: #fefde1;
}
@media(max-width:600px) {
  #newsfeed {
    padding: 0;
  }
}
.feedList {
  width: 90%;
  max-width: 900px;
  margin: 15px auto;
  border-top: 2px dotted #999;
}
.feedList li {
  border-bottom: 2px dotted #999;
  padding: 10px 15px;
}
.feedDate {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  display: inline-block;
  padding-right: 10px;
  color: #047fe6;
}
@media(max-width:600px) {
  .feedDate {
    display: block;
  }
}
.feedList li a {
  text-decoration: underline;
  color: #333;
  -webkit-transition: all .2s;
  transition: all .2s;
}
.feedList li a:hover {
  text-decoration: none;
  color: #008bff;
  -webkit-transition: all .2s;
  transition: all .2s;
}
/* =============================================== */
/* about - はじめに */
/* ----------------------------------------------- */
#about {}
.aboutTxt {
  padding: 15px 0;
  font-size: 98%;
}
.en {
  font-family: "Lexend", sans-serif;
}
.nowrap {
  white-space: nowrap;
}
.comment {
  padding: 20px 0;
}
.commentLeft {
  text-align: center;
  width: 35%;
  float: left;
}
@media(max-width:600px) {
  .commentLeft {
    width: 50%;
    float: none;
    margin: 0 auto;
  }
}
.commentPhoto {
  padding: 0 20px 20px 0;
}
@media(max-width:600px) {
  .commentPhoto {
    padding: 0 0 10px;
  }
}
.commentPhoto img {
  width: 100%;
}
.commentRight {}
.commentRight p {
  padding: 15px 0;
  font-size: 95%;
}
@media(max-width:600px) {
  .commentRight p {
    font-size: 90%;
  }
}
.commentRight p.staff {
  font-size: 125%;
  border-bottom: 3px dotted #71b0f2;
  display: inline-block;
  padding: 5px 0;
  margin-bottom: 10px;
}
@media(max-width:600px) {
  .commentRight p.staff {
    text-align: center;
    display: block;
    line-height: 1.3;
    padding: 0 0 10px;
  }
}
/* =============================================== */
/* caststaff - キャスト／スタッフ */
/* ----------------------------------------------- */
#caststaff {}
.castList {
  text-align: center;
  width: 96%;
  margin: 0 auto;
  padding: 30px 2% 0;
}
.castList li {
  vertical-align: top;
  padding: 0 0 40px;
}
.castPhoto {
  width: 100%;
  max-width: 300px;
  height: auto;
  text-align: center;
  margin: 0 auto;
}
.castPhoto img {
  width: 100%;
  height: auto;
}
.actor {
  font-size: 25px;
  line-height: 1.5;
  padding: 10px 0;
}
.staffList {
  text-align: center;
  width: 94%;
  max-width: 900px;
  padding-top: 30px;
  margin: 0 auto;
}
.staffList li {
  display: inline-block;
  padding: 5px 0.5em;
  font-size: 100%;
}
.job {
  color: #888;
  display: inline-block;
  margin-right: 6px;
  font-size: 75%;
  font-weight: 700;
}
@media(max-width:600px) {
  .castPhoto {
    width: 75%;
  }
  .actor {
    font-size: 18px;
    line-height: 1.3;
  }
  .staffList {
    width: 100%;
  }
  .staffList li {
    display: block;
    padding: 0;
    font-size: 11px;
  }
  .job {
    font-size: 10px;
    font-weight: 500;
  }
}
.staffBox{
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.staffBox th{
  width: 49%;
  text-align: right;
  font-weight: 400;
  color: #666;
  padding: 3px 1% 3px 0;
  vertical-align: top;
}
.staffBox td{
  width: 50%;
  font-weight: 400;
  padding: 3px 0;
  line-height: 1.6;
  vertical-align: top;
}

.staffBox2{
  font-size: 12px;
  width: 100%;
  padding-bottom: 15px;
}
.row {
  display: flex;
  gap: 8px;
  padding:  0;
}
.label {
  white-space: nowrap;
  color: #555;
}
.value {
  white-space: nowrap;
}
/* =============================================== */
/* info - 公演概要 */
/* ----------------------------------------------- */
#tokyo {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0 50px;
}
#osaka {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0 50px;
}
.dateTxt {
  font-weight: 700;
  font-size: 125%;
  padding: 15px 0 5px;
  text-align: center;
}
.sche {
  margin: 20px auto;
  width: 100%;
  max-width: 796px;
}
.sche img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.scheTxt {
  text-align: center;
  padding: 20px 0;
}
.cautionList01 {
  margin: 0 auto;
  padding: 25px 10px 0 1.5em;
  list-style-type: disc;
  list-style-position: outside;
}
.cautionList01 li {
  font-size: 90%;
  line-height: 1.5;
  padding: 3px 0;
}
@media(max-width:600px) {
  #tokyo {
    padding: 10px 0 20px;
  }
  #osaka {
    padding: 10px 0 20px;
  }
  .dateTxt {
    font-size: 100%;
    line-height: 1.6;
  }
  .scheTxt {
    font-size: 86%;
  }
  .cautionList01 {
    padding: 20px 0 0 1em;
  }
  .cautionList01 li {
    font-size: 80%;
    padding: 5px 0;
  }
}
/* チケット */
.ticketBox {
  border: 1px solid #ddd;
  margin: 20px auto 20px;
  padding: 0 2%;
  width: 90%;
  max-width: 800px;
  border-radius: 10px;
  background-color: #f2f2f2;
}
@media(max-width:999px) {
  .ticketBox {
    width: 92%;
    margin: 10px auto;
  }
}
h5 {
  margin: 0 0 40px;
  padding: 0;
  height: 0;
  text-align: center;
}
h5 span {
  color: #fff;
  padding: 6px 1.5em;
  margin: 0;
  position: relative;
  top: -15px;
  height: 0;
  font-size: 15px;
  background-color: #666;
  font-weight: 400;
  border: none;
}
.ticketBox p{
  text-align: center;
}
.playguideList {
  list-style: none;
  padding: 25px 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 #000;
  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-color: #e584b7;
  color: #fff;
  transition: all 0.3s;
  font-weight: 400;
  border-radius: 100px;
  font-size: 90%;
  width: 10em;
}
.playguideList li a:visited {
  text-decoration: none;
  background-color: #e584b7;
  color: #fff;
}
.playguideList li a:active {
  text-decoration: none;
  background-color: #e584b7;
  color: #fff;
}
.playguideList li a:hover {
  text-decoration: none;
  background-color: #f3a1cc;
  color: #fff;
}
/* =============================================== */
/* news - 新着情報 */
/* ----------------------------------------------- */
#news {
  width: 100%;
  margin: 0 auto;
  padding: 75px 0 75px;
  background-color: #fefde1;
  border-bottom: 2px solid #000;
}
@media(max-width:600px) {
  #news {
    padding: 20px 0 40px;
  }
}
#news h3 {
  margin: 60px 0 10px;
  padding: 0;
  font-weight: 700;
}
#news h3 .newsDate {
  font-size: 20px;
  margin: 0;
  padding: 0 15px;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  color: #047fe6;
}
#news h3 .lead {
  margin: 0 0 30px;
  padding: 0 15px 10px;
  font-weight: 700;
  border-bottom: 2px solid #000;
  line-height: 1.5;
  font-size: 94%;
}
#news p {
  padding: 8px 15px;
  line-height: 1.8;
  font-size: 94%;
}
.newsPhoto {
  margin: 15px auto;
}
.newsPhoto img {
  width: 100%;
  height: auto;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
footer {
  padding: 60px 0;
  font-size: 0.8rem;
  margin: auto;
  color: #666;
  text-align: center;
}
.credite {
  padding: 10px 0;
}
@media(max-width:810px) {
  .credite {
    font-size: 90%;
  }
}
.copyright {
  font-family: "Lexend", sans-serif;
}
.sns {
  text-align: center;
  width: 100%;
  max-width: 50px;
  margin: 1% auto;
  opacity: .8;
}
.sns a {
  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 - その他 */
/* ----------------------------------------------- */
/* ほか */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  z-index: 99;
}
@media(max-width:810px) {
  #page-top {
    bottom: 5px;
    right: 5px;
  }
}
#page-top a {
  text-decoration: none;
  color: #e482b5;
  text-align: center;
  display: block;
  opacity: 1;
  transition: all .3s ease;
  font-size: 56px;
}
@media(max-width:810px) {
  #page-top a {
    font-size: 40px;
  }
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}
.banner01 {
  position: fixed;
  bottom: 10px;
  left: 10px;
  line-height: 1;
  z-index: 99;
  width: 180px;
}
.banner01 img {
  width: 100%;
  height: auto;
  display: block;
}
@media(max-width:601px) {
  .banner01 {
    width: 100px;
  }
}
.large {
  font-size: 130%;
}
.small {
  font-size: 75%;
}
.bold {
  font-weight: 700;
}
.left {
  float: left;
}
.right {
  float: right;
}
.txtCenter {
  text-align: center;
}
.txtRight {
  text-align: right;
}
.yellow {
  color: #ffff00
}
/* =============================================== */
/* linkBtn - ボタン */
/* ----------------------------------------------- */
.linkBtn {
  text-align: center;
  padding: 0 0 20px;
}
.linkBtn a:link {
  text-decoration: none;
  color: #fff;
  padding: 7px 2em;
  margin: 0 auto;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 14px;
  background-color: #e584b7;
  border-radius: 50px;
  display: inline-block;
}
.linkBtn a:visited {
  text-decoration: none;
  color: #fff;
  background-color: #e584b7;
}
.linkBtn a:active {
  text-decoration: none;
  color: #fff;
  background-color: #e584b7;
}
.linkBtn a:hover {
  text-decoration: none;
  background-color: #f3a1cc;
  color: #fff;
}
@media(max-width:600px) {
  .linkBtn {}
  .linkBtn a:link {
    font-size: 11px;
    padding: 5px 1.6em;
  }
}
/* =============================================== */
/* fadeIn - フェイドイン */
/* ----------------------------------------------- */
/* 共通（最初は隠す） */
.fadeInUp, .fadeInDown, .fadeInLeft, .fadeInRight {
  opacity: 0;
  transition: all 0.8s ease;
}
/* 右から */
.fadeInRight {
  transform: translateX(30px);
}
.fadeInRight.show {
  opacity: 1;
  transform: translateX(0);
}
/* 左から */
.fadeInLeft {
  transform: translateX(-30px);
}
.fadeInLeft.show {
  opacity: 1;
  transform: translateX(0);
}
/* 下から */
.fadeInUp {
  transform: translateY(30px);
}
.fadeInUp.show {
  opacity: 1;
  transform: translateY(0);
}
/* 上から */
.fadeInDown {
  transform: translateY(-30px);
}
.fadeInDown.show {
  opacity: 1;
  transform: translateY(0);
}
/* =============================================== */
/* modal - モーダルウィンドウ */
/* ----------------------------------------------- */
button {
  appearance: none;
  border: none;
  background: #e584b7;
  color: #fff;
  padding: 7px 2em;
  font-size: 14px;
  cursor: pointer;
  display: block;
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  line-height: 1;
  margin: 0 auto;
  border-radius: 50px;
}
button:hover {
  background-color: #f3a1cc;
}
/* overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) linear;
  z-index: 1000;
}
/* modal window */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 70vw;
  max-width: 800px;
  max-height: 50vh;
  background: transparent;
  transform: translate(-50%, -50%) scaleX(.85) scaleY(.7);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--duration) var(--ease);
  z-index: 1001;
}
/* 実体の箱（transformしない） */
.modal-frame {
  height: 100%;
  background: #fff;
  overflow: hidden;
}
/* スクロール専用 */
.modal-inner {
  height: 100%;
  padding: 40px;
  box-sizing: border-box;
  overflow-y: auto;
}
.modal h4 {
  margin: 0;
  font-size: 24px;
  padding: 0;
}
.modal h4 .role {
  margin: 0;
  padding: 0;
  font-size: 15px;
  color: #71b0f2;
}
.modal-inner p {
  margin: 0;
  padding: 10px 0;
}
.close-fixed {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #e584b7;
  border: none;
  font-size: 35px;
  cursor: pointer;
  border-radius: 100px;
  padding: 0 13px 7px;
}
button.close-fixed:hover {
  background-color: #f3a1cc;
}
/* active state */
.is-open .modal-overlay {
  opacity: 1;
  pointer-events: auto;
}
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scaleX(1) scaleY(1);
}
@media(max-width:600px) {
  button {
    padding: 5px 1.6em;
    font-size: 11px;
  }
  .modal {
    width: 95vw;
    height: 50vh;
  }
  .modal-inner {
    padding: 20px;
  }
  .modal h4 {
    font-size: 18px;
  }
  .modal h4 .role {
    font-size: 13px;
  }
  .modal-inner p {
    font-size: 13px;
    padding: 7px 0;
    line-height: 1.6;
  }
  .close-fixed {
    top: 8px;
    right: 8px;
    font-size: 25px;
    padding: 0 10px 5px;
  }
}