@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Display&family=Noto+Sans+JP:wght@400;600&family=Shippori+Mincho+B1:wght@400;600&display=swap');
/*
==================================================
【PC】上ナビタイプ 目次
==================================================
basic - 共通基本設定
header - ヘッダー
nav - メインナビゲーション
home - トップページ用
news - ニュースページ用
subnav - サブナビページ用
schedule-calendar - スケジュールカレンダー
schedule-chart - スケジュール星取表
401,404,406 - エラーページ
footer - フッター
clearfix - クリアフィックス設定
rollover - 画像ロールオーバー設定
==================================================
*/
/* =============================================== */
/* basic - 共通基本設定 */
/* ----------------------------------------------- */
/* 画像のプリント禁止 */
@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;
}
.red01 {
  color: #cd001a;
}
.large {
  font-size: 150%;
}
/* Loading　*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #000;
  text-align: center;
  color: #fff;
}
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo svg {
  width: 150px;
}
@media screen and (max-width: 992px) {
  #splash_logo svg {}
} /**/
/*========= SVG ===============*/
#mask .st0 {
  fill: none;
  stroke: #fff;
  stroke-width: 100; /*線の太さを指定する*/
  stroke-miterlimit: 10;
  stroke-dasharray: 1500; /* 線の間隔を指定する */
  stroke-dashoffset: 1500; /* 線の位置を指定する */
}
/*画面遷移*/
.splashbg {
  display: none;
  position: fixed;
  transform: scale(100);
  background-color: #682888; /*伸びる背景色の設定*/
  z-index: 9999;
}
body.appear .splashbg {
  display: block;
  animation-name: PageAnime;
  animation-fill-mode: forwards;
}
@keyframes PageAnime {
  0% { /*丸のスタート位置と形状*/
    transform: scale(100);
  }
  100% { /*丸の終了位置と形状*/
    transform: scale(0);
    display: none; /*終了時は消える*/
  }
}
/* =============================================== */
/* base - 基本設定 */
/* ----------------------------------------------- */
/* ボディ */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1em;
  margin: 0;
  padding: 0;
  line-height: 1.75;
  color: #fff;
  background-color: #000;
  background-image: url('/replacement/bgOther01.jpg');
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.news-page, .free-format-page {
  -webkit-animation: fadeIn 1.2s ease 0s 1 normal;
  animation: fadeIn 1.2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@media(max-width:1920px) {
  body {
    background-size: auto;
  }
}
#home-1 {
  background-image: url('/replacement/bgIndex01.jpg');
}
#free-format-3 {
  background-image: url('/replacement/bgIntro01.jpg');
}
#free-format-4 {
  background-image: url('/replacement/bgStory01.jpg');
}
a:link {
  text-decoration: underline;
  color: #cd001a;
  transition: all .3s ease-in-out;
}
a:visited {
  text-decoration: underline;
  color: #cd001a;
}
a:active {
  text-decoration: underline;
  color: #cd001a;
}
a:hover {
  text-decoration: none;
  color: #cd001a;
}
/* 画像関連 */
figure {
  margin: 0;
  padding: 0;
}
figcaption {
  font-size: 80%;
  text-align: center;
  margin: 0;
  padding: 0 0 5px 0;
  color: #666;
}
img {
  border: none;
  vertical-align: bottom;
}
figure img {
  max-width: 100%;
  height: auto;
  width /***/ : auto; /* 親要素の100% */
}
.image-container {}
.movie-container {}
.music-container {}
/* 配置 */
.left {
  float: left;
  margin: 0 10px 10px 0;
}
.center {
  float: none;
  margin: 0 0 10px 0;
}
.right {
  float: right;
  margin: 0 0 10px 10px;
}
figure.left {
  text-align: left;
  margin: 5px 10px 10px 0;
}
figure.center {
  text-align: center;
  margin: 5px 0 10px 0;
}
figure.right {
  text-align: right;
  margin: 5px 0 10px 10px;
}
/* 罫線 */
hr {
  height: 0;
  margin: 15px 0;
  padding: 0;
  border: 0;
  width: 100%;
}
.solid {
  border-top: 1px #999 solid;
}
.dotted {
  border-top: 1px #999 dotted;
}
.dashed {
  border-top: 1px #999 dashed;
}
.double {
  border-top: 3px #999 double;
}
/* ページレイアウト */
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}
#contents {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
  clear: both;
}
#home-1 #contents {
  width: 100%;
}
#main-box {
  width: 985px;
  margin: 15px auto 0;
  padding: 0 0 15px;
}
#side-box {
  display: none;
}
/* メインコンテンツ部分(main-box内) */
#contents-title {
  width: 600px;
  padding: 160px 0 30px;
  margin: 0 auto;
}
article {
  margin: 0 auto;
  padding: 20px 0 20px 0;
  clear: both;
}
.subhead {
  font-size: 170%;
  padding: 10px 15px;
  margin: 0 0 20px;
  clear: both;
  border-top: 1px solid #cd001a;
  font-family: 'Shippori Mincho B1', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', YuMincho, '游明朝', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
  color: #fff;
  font-weight: 400;
  line-height: 1.5;
}
.packs {
  margin: 0;
  padding: 0 0 0 15px;
  width: calc(100% - 15px);
  color: #fff;
}
.column {
  margin: 0;
  padding: 0 15px 0 0;
  float: left;
  max-width: 955px;
  letter-spacing: 0.05rem;
}
/* バナー・ツイッター枠など(side-box内) */
.banner {
  width: 260px;
  margin: 0 auto 10px;
  padding: 0;
}
.twitter {
  margin: 0 auto 10px;
  background: #000;
}
/* ページトップ */
#pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  z-index: 101;
}
#pagetop a {
  text-decoration: none;
  color: #9e9ea0;
  text-align: center;
  display: block;
  opacity: 1;
  transition: all .3s ease;
  font-size: 45px;
}
#pagetop a:hover {
  text-decoration: none;
  opacity: .6;
}
/* =============================================== */
/* header - ヘッダー */
/* ----------------------------------------------- */
/* ヘッダー大枠 */
header {
  width: 100%;
  margin: 0;
  padding: 0;
  position: fixed;
  z-index: 999;
}
/* ヘッダー内部 */
#header-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
/* 左部分(サイトタイトル) */
#header-left {
  display: none;
}
/* 右部分(用途に合わせて会員メニュー・SNSボタンなど) */
#header-right {
  display: none;
}
/* =============================================== */
/* nav - メインナビゲーション */
/* ----------------------------------------------- */
/* ナビ全体枠 */
nav {
  clear: both;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  line-height: 1;
  background: rgba(0, 0, 0, 0.8);
  font-family: "Libre Caslon Display", serif;
  font-weight: 500;
  border-bottom: 1px solid #cd001a;
}
/* 第一階層 */
#main-menu {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
#main-menu::after {
  display: block;
  clear: both;
  content: '';
}
#main-menu li {
  position: relative;
  font-size: 105%;
  text-align: center;
  white-space: nowrap;
  display: inline-block;
  margin: 0 0.4em;
  transform: rotate(0.05deg);
  letter-spacing: 0.1em;
}
#main-menu li a {
  display: inline-block;
  color: #c8c7c7;
  padding: 20px 0;
}
#main-menu li a:link {
  text-decoration: none;
  color: #c8c7c7;
}
#main-menu li a:visited {
  text-decoration: none;
  color: #c8c7c7;
}
#main-menu li a:active {
  text-decoration: none;
  color: #c8c7c7;
}
#main-menu li a:hover {
  text-decoration: none;
  color: #fff;
}
#main-menu li a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  background: #cd001a;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}
#main-menu li a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
/* =============================================== */
/* home - トップページ用 */
/* ----------------------------------------------- */
/* メインビジュアル */
#main-visual {
  margin: 0;
  padding: 0;
}
.mainTop {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.mainTop img {
  width: 100%;
  height: auto;
}
.mainBottom {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.mainBottom img {
  width: 100%;
  height: auto;
}
/* ニュースフィード（main-box内） */
#news-feed-index {
  width: 850px;
  margin: 0 auto;
  padding: 60px 0;
  font-family: 'Shippori Mincho B1', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', YuMincho, '游明朝', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
}
#news-feed-index ul {}
#news-feed-index ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#news-feed-index ul li {
  position: relative;
  /*cursor: pointer;*/
}
/* 疑似要素で矢印を追加 */
#news-feed-index ul li::after {
  content: "›"; /* または "→" や "➔" など */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-80%);
  transition: transform 0.2s ease;
  font-size: 1.5em;
  color: #fff;
  font-weight: 400;
}
/* マウスホバー時に矢印が右に動く */
#news-feed-index ul li:hover::after {
  transform: translateY(-80%) translateX(4px); /* 少し右に動かす */
  color: #cc001b; /* 色も変えるなら */
}
#news-feed-index h2 {
  font-size: 90%;
  margin: 0;
  padding: 4px 0 4px 0.7em;
  clear: both;
  font-weight: 400;
  letter-spacing: 0.1em;
}
#news-feed-index h2 span {
  width: 100px;
  display: inline-block;
  color: #cc001b;
}
#news-feed-index h2 a:link {
  text-decoration: none;
  color: #fff;
}
#news-feed-index h2 a:visited {
  text-decoration: none;
  color: #fff;
}
#news-feed-index h2 a:active {
  text-decoration: none;
  color: #fff;
}
#news-feed-index h2 a:hover {
  text-decoration: none;
  color: #ff0d2c;
}
.thumbnail {
  display: none;
}
.news-txt {
  display: none;
}
.double-color-hr {
  border: none;
  height: 1px; /* 線の太さ */
  position: relative;
  background: #333; /* 基本の色（グレー） */
}
.double-color-hr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100px; /* 赤くしたい範囲 */
  background: #cc001b; /* 赤い色 */
}
/* =============================================== */
/* news - ニュースページ用 */
/* ----------------------------------------------- */
#news-2 article {
  margin-bottom: 100px;
}
/* 記事タイトル部分（subhead内） */
.date {
  font-size: 150%;
  display: block;
  color: #9e9ea0;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  padding: 0 15px;
}
.headline {
  font-size: 90%;
}
.headline a:link {
  text-decoration: none;
  color: #fff;
}
.headline a:visited {
  text-decoration: none;
  color: #fff;
}
.headline a:active {
  text-decoration: none;
  color: #fff;
}
.headline a:hover {
  text-decoration: none;
  color: #cc001b;
}
/* 記事内カテゴリー */
.article-category {
  display: none;
}
/* プレビュー・ネクスト */
#pager {
  text-align: center;
  clear: both;
  margin: 15px 0 100px;
  padding: 0;
}
#pager li {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: 40px;
}
#pager li a:link {
  text-decoration: none;
  color: #9e9ea0;
  padding: 0;
  margin: 0 1em;
}
#pager li a:visited {
  text-decoration: none;
  color: #9e9ea0;
}
#pager li a:active {
  text-decoration: none;
  color: #9e9ea0;
}
#pager li a:hover {
  text-decoration: none;
  color: #cd001a;
}
.disabled {
  display: none;
}
/* 最新記事・カテゴリー・アーカイブのリスト（side-box内） */
#new-entry {
  display: none;
}
#category {
  display: none;
}
#archive {
  display: none;
}
/* =============================================== */
/* intro - イントロページ */
/* ----------------------------------------------- */
#free-format-3 #contents-title {
  width: 600px;
  padding: 480px 0 100px;
  margin: 0;
}
.standout {
  background-image: linear-gradient(180deg, transparent 80%, #cd001a 80%);
  background-repeat: no-repeat;
  background-size: 100% 92%;
  font-weight: 500;
  padding: 0;
  margin: 0 0.2em;
  white-space: nowrap;
}
/* =============================================== */
/* story - あらすじ */
/* ----------------------------------------------- */
#paragraph-4 {
  margin-top: 60px;
  padding: 240px 170px;
  background-image: url('/replacement/story02.png');
  background-position: top right;
  background-repeat: no-repeat;
  text-shadow: 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 3px #000;
}
/* =============================================== */
/* caststaff - キャスト＆スタッフ */
/* ----------------------------------------------- */
.castList01 {
  text-align: center;
}
.castList01 li {
  display: inline-block;
  width: 30%;
  vertical-align: top;
  padding: 0 1% 80px;
}
.castList01 li img {
  width: 100%;
  max-width: 260px;
}
.role {
  font-family: 'Shippori Mincho B1', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', YuMincho, '游明朝', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
  font-size: 130%;
  line-height: 1.4;
  padding-top: 10px;
  color: #9e9ea0;
  font-weight: 500;
}
.actor {
  font-family: 'Shippori Mincho B1', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', YuMincho, '游明朝', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
  font-size: 200%;
  line-height: 1.4;
}
.actor small {
  font-size: 50%;
  display: block;
}
.castList02 {
  text-align: center;
}
.castList02 li {
  display: inline-block;
  padding: 0.5em;
  font-family: 'Shippori Mincho B1', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', YuMincho, '游明朝', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
  font-size: 130%;
  line-height: 1.4;
}
#free-format-5 #titleStaff {
  display: block;
}
#titleStaff span {
  background-image: url('/replacement/bgTitleStaff.png');
  background-position: center center;
  background-repeat: no-repeat;
}
.staffList01 {
  text-align: center;
  margin-top: 30px;
}
.staffList01 li {
  display: block;
  padding: 0.5em;
  font-family: 'Shippori Mincho B1', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', YuMincho, '游明朝', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
  font-size: 180%;
  line-height: 1.4;
}
.job {
  font-size: 65%;
  display: inline-block;
  padding-right: 7px;
}
.staffList02 {
  text-align: center;
}
.staffList02 li {
  display: inline-block;
  padding: 0.3em 0.5em;
  font-family: 'Shippori Mincho B1', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', YuMincho, '游明朝', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
  font-size: 110%;
  line-height: 1.4;
}
/* =============================================== */
/* 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;
  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;
}
.modal-content h2 {
  font-size: 170%;
  padding: 10px 0;
  margin: 2px 40px 0 33%;
  border-top: 1px solid #cd001a;
  font-family: 'Shippori Mincho B1', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', YuMincho, '游明朝', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
  color: #fff;
  font-weight: 400;
  text-align: left;
}
.modalPhoto {
  clear: both;
  float: left;
  width: 30%;
  padding-bottom: 15px;
  padding-right: 20px;
}
.modalPhoto img {
  width: 100%;
}
.message {
  font-size: 94%;
  padding: 10px 15px 15px 33.5%;
  line-height: 1.6;
}
.message p {
  padding: 0 0 10px 0;
  text-align: left;
}
.profile {
  clear: both;
  font-size: 80%;
  padding: 15px;
  line-height: 1.5;
  color: #ccc;
  border-top: 1px dotted #aaa;
  border-bottom: 1px dotted #aaa;
  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;
}
.button01 {
  border-bottom: 1px solid #cd001a;
  text-align: left;
  font-family: "Libre Caslon Display", serif;
  font-weight: 500;
  font-size: 14px;
  transform: rotate(0.05deg);
  padding: 10px 2em 10px 0;
  margin: 10px 15px;
  background-color: none;
  color: #ff2843;
}
.button01::after {
  content: "›"; /* または "→" や "➔" など */
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-60%);
  transition: transform 0.2s ease;
  font-size: 2.5em;
  color: #ff2843ff2843;
  font-weight: 100;
}
.button01:hover::after {
  transform: translateY(-60%) translateX(4px); /* 少し右に動かす */
  color: #ff2843; /* 色も変えるなら */
}
/* modalのボタン2 */
.button02 {
  font-family: "Libre Caslon Display", serif;
  font-weight: 500;
  font-size: 14px;
  transform: rotate(0.05deg);
  display: inline-block;
  margin-left: 15px;
  color: #ff2843;
  padding: 0 1.5em 0 0;
}
.button02::after {
  content: "›"; /* または "→" や "➔" など */
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-60%);
  transition: transform 0.2s ease;
  font-size: 2.5em;
  color: #ff2843;
  font-weight: 100;
}
.button02:hover::after {
  transform: translateY(-60%) translateX(4px); /* 少し右に動かす */
  color: #ff2843; /* 色も変えるなら */
}
/* =============================================== */
/* message - コメント（使わない？） */
/* ----------------------------------------------- */
/* =============================================== */
/* ticket & schedule - 公演概要 */
/* ----------------------------------------------- */
#free-format-7 .subhead {
  color: #000;
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
  padding: 4px 0 6px;
  margin-bottom: 30px;
  border-top: 6px double #000;
  border-bottom: 6px double #000;
  background-color: #c2c2c2;
}
p.standoutSenko {
  text-align: center;
  font-size: 110%;
}
p.standoutSenko span {
  border-bottom: 3px solid #cd001a;
}
p.koumoku {
  font-weight: 600;
  color: #9e9ea0;
}
p.koumoku i {
  color: #9e9ea0;
  font-size: 1.5em;
}
.minchoStandout {
  font-family: 'Shippori Mincho B1', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', YuMincho, '游明朝', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
  font-size: 120%;
  font-weight: 600;
  position: relative;
  top: -3px;
}
.linkBtn {
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: 14px;
  transform: rotate(0.05deg);
  display: inline-block;
  margin-left: 15px;
  color: #cd001a;
  padding: 0 1.5em 0 0;
  position: relative;
  top: -3px;
}
.linkBtn a:link {
  text-decoration: none;
  color: #ff2843;
  transition: all .3s ease-in-out;
}
.linkBtn a:visited {
  text-decoration: none;
  color: #ff2843;
}
.linkBtn a:active {
  text-decoration: none;
  color: #ff2843;
}
.linkBtn a:hover {
  text-decoration: none;
  color: #cd001a;
}
.linkBtn::after {
  content: "›"; /* または "→" や "➔" など */
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-58%);
  transition: transform 0.2s ease;
  font-size: 2.5em;
  color: #cc001b;
  font-weight: 100;
}
.linkBtn:hover::after {
  transform: translateY(-58%) translateX(4px); /* 少し右に動かす */
  color: #cc001b; /* 色も変えるなら */
}
.cautionList01 {
  list-style: disc;
  padding: 10px 0 10px 1em;
}
.cautionList01 li {
  font-size: 88%;
  line-height: 1.4;
  padding-bottom: 7px;
}
/* プレイガイド */
.ippanBox {
  border: 1px solid #b70012;
  margin: 0 auto;
  padding: 5%;
  background-color: #000;
  color: #000;
}
.playguideList {
  list-style: none;
  padding: 0 0 20px 0;
  font-size: 90%;
}
.playguideList li {
  padding: 5px;
  font-weight: 400;
}
.purchase {
  display: block;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-weight: 500;
}
.purchase a:link {
  display: block;
  position: relative;
  padding: 0.6em 0 0.5em;
  text-align: center;
  text-decoration: none;
  margin: 5px auto;
  transition: all 0.3s;
  font-weight: 400;
  font-size: 100%;
  color: #fff;
  background: #b70012;
  border-radius: 50px;
  width: 30em;
}
.purchase a:visited {
  text-decoration: none;
  color: #fff;
  background: #b70012;
}
.purchase a:active {
  text-decoration: none;
  color: #fff;
  background: #b70012;
}
.purchase a:hover {
  text-decoration: none;
  color: #fff;
  background: #de433a;
}
/* accordion - アコーディオンパネル */
.accordion {
  width: 94%;
  margin: 0 auto;
}
.accordion-content {
  display: none;
  padding: 10px;
}
.accordion-content ul {
  padding-top: 20px;
  margin-top: 0;
}
.accordion-title {
  display: flex;
  justify-content: center; /* 中央揃え */
  align-items: center;
  position: relative;
  padding: 12px 40px 12px 40px; /* 左右に余白（←←重要） */
  font-weight: 400;
  text-align: center;
  background-color: #cd001a;
  margin: 0 auto;
  width: 20em;
  border-radius: 50px;
  cursor: pointer;
}
.accordion-title:hover {
  background-color: #de433a;
}
.accordion-title .title-text {
  flex: 1;
  text-align: center;
}
.accordion-title .icon {
  position: absolute;
  right: 40px;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}
/* =============================================== */
/* 401,404,406 - エラーページ */
/* ----------------------------------------------- */
.error-page .column {
  margin: 0;
  padding: 0 15px 50px 0;
}
.error-page .pack p {
  padding: 30px 0 0;
  text-align: center;
}
/* =============================================== */
/* footer - フッター */
/* ----------------------------------------------- */
/* フッター大枠 */
footer {
  width: 100%;
  margin: 100px 0 0;
  padding: 340px 0 90px;
  clear: both;
  color: #fff;
  background: #000;
  background-image: url("/replacement/bgFooter2.jpg");
  background-position: top center;
  background-repeat: repeat-x;
}
/* フッター内部 */
#footer-inner {
  width: 1000px;
  margin: 0 auto;
  padding: 0;
  clear: both;
  font-size: 85%;
}
/* 左部分(用途に合わせてバナー等) */
#footer-left {
  width: 250px;
  float: left;
  margin: 0;
  padding: 0;
  min-height: 20px;
}
/* 中央部分(コピーライト等) */
#footer-center {
  width: 500px;
  float: left;
  margin: 0;
  padding: 0;
  min-height: 20px;
}
.snsBtn {
  padding: 15px 0;
  text-align: center;
}
.snsBtn li {
  font-size: 50px;
  font-weight: 400;
  display: inline-block;
}
.snsBtn a:link {
  text-decoration: none;
  display: block;
  color: #fff;
}
.snsBtn a:visited {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:active {
  text-decoration: none;
  color: #fff;
}
.snsBtn a:hover {
  text-decoration: none;
  color: #cc001b;
}
#footer-center p {
  text-align: center;
  font-size: 100%;
  font-family: 'Shippori Mincho B1', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', YuMincho, '游明朝', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
}
/* 右部分(mincへのリンク等) */
#footer-right {
  width: 250px;
  float: left;
  margin: 0;
  padding: 0;
  min-height: 20px;
}
#footer-right p {
  text-align: right;
  font-size: 80%;
  margin: 0;
  padding: 130px 0 0;
}
#footer-right p a:link {
  text-decoration: none;
  color: #9e9ea0;
}
#footer-right p a:visited {
  text-decoration: none;
  color: #9e9ea0;
}
#footer-right p a:active {
  text-decoration: none;
  color: #9e9ea0;
}
#footer-right p a:hover {
  text-decoration: none;
  color: #fff;
}
/* =============================================== */
/* 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);
}