@charset "UTF-8";
/* reset.css */
/* style reset */
html, body,
div, span,
h1, h2, h3, h4, h5, h6, p,
dl, dt, dd, ul, ol, li,
img, strong, em, small, sub, sup, b, i, iframe,
table, thead, tbody, tfoot, caption, tr, th, td,
form, fieldset, label, legend, input, textarea, select,
pre, blockquote, abbr, cite, code, del, dfn, ins, kbd, q, samp, var,
article, section, aside, header, footer, nav, menu, main, hgroup, summary, address,
figure, figcaption,
object, canvas, details, time, mark, audio, video {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  font: inherit;
}

input, button, textarea, select {
  font: inherit;
  font-family: inherit;
}

fieldset {
  border: 0;
}

img {
  border: 0;
  outline: 0;
  vertical-align: middle;
}

ul,
ol {
  list-style: none;
}

ul li,
ol li {
  list-style: none;
}

/* html5tag reset */
article, section, aside, header, footer, nav, menu, main, hgroup, summary, address,
figure, figcaption,
object, canvas, details, time, mark, audio, video {
  display: block;
}

html, body,
div, span, a,
h1, h2, h3, h4, h5, h6, p,
dl, dt, dd, ul, ol, li,
img, strong, em, small, sub, sup, b, i, iframe,
table, thead, tbody, tfoot, caption, tr, th, td,
form, fieldset, label, legend, input, textarea, select,
pre, blockquote, abbr, cite, code, del, dfn, ins, kbd, q, samp, var,
article, section, aside, header, footer, nav, menu, main, hgroup, summary, address,
figure, figcaption,
object, canvas, details, time, mark, audio, video {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

:after, :before {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-theme: rgb(71, 149, 251);
  --font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-mincho: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.8;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  body img {
    max-width: 100%;
  }
}

a {
  color: #0033cc;
}

::-moz-selection {
  background: #DBEFFF;
  /* Safari */
}

::selection {
  background: #DBEFFF;
  /* Safari */
}

::-moz-selection {
  background: #DBEFFF;
  /* Firefox */
}

.mv {
  text-align: center;
  display: -ms-grid;
  display: grid;
  place-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 60px;
  }
}
.mv::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: var(--color-theme);
  width: 100svw;
  height: 100svb;
}
body.is-loaded .mv::before {
  -webkit-animation: open 0.75s cubic-bezier(0.85, -0.01, 1, 0.79) 1 forwards;
          animation: open 0.75s cubic-bezier(0.85, -0.01, 1, 0.79) 1 forwards;
}
@-webkit-keyframes open {
  0% {
    clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 100% 100%, 100% 0%);
  }
  80% {
    opacity: 1;
  }
  100% {
    clip-path: polygon(0% 0%, 0% 100%, 0% 100%, 0% 0, 100% 0, 100% 100%, 100% 100%, 100% 0%);
    opacity: 0;
  }
}
@keyframes open {
  0% {
    clip-path: polygon(0% 0%, 0% 100%, 50% 100%, 50% 0, 50% 0, 50% 100%, 100% 100%, 100% 0%);
  }
  80% {
    opacity: 1;
  }
  100% {
    clip-path: polygon(0% 0%, 0% 100%, 0% 100%, 0% 0, 100% 0, 100% 100%, 100% 100%, 100% 0%);
    opacity: 0;
  }
}
.mv__inner {
  /*    padding-inline-end: 16px;
  padding-inline-start: 16px;*/
}
.mv__inner h1 img {
  width: 100%;
  max-width: 1264px;
}
.mv__list {
  width: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.mv__list li {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.mv__list li:first-of-type {
  position: relative;
  left: auto;
  top: auto;
}
.mv__list li.is--current {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  z-index: 10;
}
.mv__list li img {
  width: 100%;
  max-width: 1264px;
}
.mv__text {
  color: var(--color-theme);
  font-family: var(--font-mincho);
  letter-spacing: 0.07em;
  margin: 30px;
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 8.5333333333vw;
  }
}
.mv .release {
  font-size: 30px;
  color: var(--color-theme);
  font-family: var(--font-mincho);
}
@media screen and (max-width: 767px) {
  .mv .release {
    font-size: 5.3333333333vw;
  }
}

.detail {
  -webkit-padding-before: 80px;
          padding-block-start: 80px;
  -webkit-padding-after: 80px;
          padding-block-end: 80px;
  background: url(../images/common/bg.png) no-repeat;
  background-position: center center;
  background-size: cover;
}
.detail__inner {
  -webkit-padding-end: 16px;
          padding-inline-end: 16px;
  -webkit-padding-start: 16px;
          padding-inline-start: 16px;
}
.detail__text {
  text-align: center;
  color: #143a71;
  font-size: 20px;
  translate: 0 30px;
  -webkit-transition: translate 0.3s;
  transition: translate 0.3s;
}
.detail.is-view .detail__text {
  translate: 0 0;
}

.bg {
  background-color: var(--color-theme);
  background-image: url(/stand-myheroes_stage/season1/assets/images/teaser/bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  height: 150px;
}

.footer__link {
  -webkit-padding-before: 80px;
          padding-block-start: 80px;
  -webkit-padding-after: 80px;
          padding-block-end: 80px;
}
.footer__link__inner {
  -webkit-padding-start: 16px;
          padding-inline-start: 16px;
  -webkit-padding-end: 16px;
          padding-inline-end: 16px;
}
.footer__link__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* 横中央 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* 縦中央 */
  gap: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .footer__link__list {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 20px;
  }
}
.footer__link__list .footer__item:nth-child(2) a {
  padding: 24px 0px 24px;
}
.footer__link__banner {
  display: block;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid var(--color-theme);
  translate: 0 30px;
  -webkit-transition: translate 0.3s;
  transition: translate 0.3s;
  position: relative;
}
.footer__link__banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0 0 0 0px var(--color-theme);
          box-shadow: inset 0 0 0 0px var(--color-theme);
}
@media (any-hover: hover) {
  .footer__link__banner {
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s;
  }
  .footer__link__banner:hover {
    opacity: 0.7;
  }
  .footer__link__banner::before {
    -webkit-transition: -webkit-box-shadow 0.25s;
    transition: -webkit-box-shadow 0.25s;
    transition: box-shadow 0.25s;
    transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
  }
  .footer__link__banner:hover::before {
    -webkit-box-shadow: inset 0 0 0 5px var(--color-theme);
            box-shadow: inset 0 0 0 5px var(--color-theme);
  }
}
.footer__link__banner.is-view {
  translate: 0px 0;
}
.footer__copyright {
  font-size: 13px;
  -webkit-border-before: 1px solid var(--color-theme);
          border-block-start: 1px solid var(--color-theme);
  text-align: center;
  -webkit-padding-before: 16px;
          padding-block-start: 16px;
  -webkit-padding-after: 16px;
          padding-block-end: 16px;
  color: var(--color-theme);
  background: #FFFFFF;
}
.footer__copyright__inner {
  -webkit-padding-end: 16px;
          padding-inline-end: 16px;
  -webkit-padding-start: 16px;
          padding-inline-start: 16px;
}

.txt_container .txt_detail .txt_area p .bg_blue {
  background-color: #dbf0ff;
  padding-top: 4px;
  padding-bottom: 4px;
}

.txt_container .txt_detail .txt_area p .bg_blue02 {
  background-color: #4895FB;
  padding-top: 4px;
  padding-bottom: 4px;
  color: #fff;
}

@media screen and (min-width: 768px) {
  @import url("https://fonts.googleapis.com/css?family=Radley&display=swap");
  body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif, "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 400;
    color: #000000;
  }
  /* style.css */
  .txt-eng {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }
  .for_sp {
    display: none;
  }
  .mgb40 {
    margin-bottom: 40px;
  }
  .for_sp {
    display: none;
  }
  img {
    /* PCの右クリック禁止 */
    pointer-events: none;
  }
  /* clearfix */
  .clearfix {
    display: block;
    *overflow: hidden;
    *zoom: 1;
  }
  .clearfix:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    font-size: 0;
    line-height: 0;
  }
  .clear {
    clear: both;
  }
  a:hover {
    opacity: 0.5;
  }
  a:visited {
    color: var(--color-theme);
  }
  h2 {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 36px;
  }
  h3 {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 24px;
  }
  h4 {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 20px;
  }
  /* intro */
  /* =========== menu-burger =========== */
  /* =========== menu-burger =========== */
  /* cast & staff */
  /* // cast & staff */
  /* special */
  /* // special */
  /* qa */
  /* // qa */
  /* schedule */
  /* // schedule */
  /*goods */
  /* // gooos */
  /* ===== print ===== */
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .main {
    padding-top: 170px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  header {
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 999;
  }
}
@media screen and (min-width: 768px) {
  header .header_container {
    padding: 0 20px;
  }
  header .header_container .header_detail .siteid_logo {
    float: left;
    margin: 10px 0;
  }
  header .header_container .header_detail .siteid_logo img {
    height: auto;
  }
  header .header_container .header_detail .nav_global {
    float: right;
    margin: 20px 0;
  }
  header .header_container .header_detail .sns_txt {
    float: left;
    padding-top: 14px;
  }
  header .header_container .header_detail .sns_txt img {
    width: 60px;
    height: auto;
  }
  header .header_container .header_detail .nav_global_sns {
    float: right;
  }
  header .header_container .header_detail .nav_global_sns li {
    display: inline-block;
    margin-left: 13px;
  }
  header .header_container .header_detail .nav_global_sns li img {
    width: 50px;
    height: auto;
  }
  .br-sp {
    display: none;
  }
  .index_mainvisual {
    /*    background-color: #e73d83;*/
  }
  .index_mainvisual .index_mainvisual_detail {
    text-align: center;
  }
  .index_mainvisual .index_mainvisual_detail img {
    width: 100%;
    max-width: 1264px;
  }
  .index_txt_container {
    padding: 60px 0 80px;
    border-bottom: var(--color-theme) 4px solid;
    position: relative;
    background: #a8dbfe;
  }
  .index_txt_container h1 img {
    width: 100%;
    max-width: 1264px;
  }
  .google-map {
    width: 100%;
    max-width: 1024px;
    height: 361px;
    margin: 40px 0;
    position: relative;
    z-index: 2;
    padding: 0 20px;
  }
  .index_txt_container .index_txt_detail {
    text-align: center;
  }
  .index_txt_container .index_txt_detail .txt_area {
    /*    padding-bottom: 60px;*/
  }
  .index_txt_container .index_txt_detail .txt_area h2 {
    margin-bottom: 30px;
  }
  .index_txt_container .index_txt_detail .txt_area p {
    font-size: 20px;
  }
  .index_txt_container .index_txt_detail .txt_staff {
    padding-top: 60px;
    background-image: url(../images/index/bg_line_pc.jpg);
    background-position: center top;
    background-repeat: no-repeat;
  }
  .index_txt_container .spec_flower_r {
    position: absolute;
    right: 0;
    bottom: -30px;
  }
  .index_tv_container .index_tv_detail {
    text-align: center;
    padding: 60px 0 40px;
  }
  .txt_container {
    padding: 80px 0 80px;
    position: relative;
    background: url(../images/common/bg_grid_o.png);
    background-color: #fff;
  }
  .txt_container h1 img {
    width: 100%;
    max-width: 1264px;
  }
  .txt_container .txt_detail {
    text-align: center;
  }
  .txt_container .txt_detail .txt_area {
    padding-bottom: 0px;
  }
  .txt_container .txt_detail .txt_area h2 {
    margin-bottom: 30px;
    color: #143a71;
  }
  .txt_container .txt_detail .txt_area h2 small {
    font-size: 70%;
  }
  .getMn8 .txt_container .txt_detail .txt_area h2 {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif, "Font Awesome 5 Free";
  }
  .txt_container .txt_detail .txt_area p {
    font-size: 16px;
    z-index: 2;
    position: relative;
  }
  .getMn8 .txt_container .txt_detail .txt_area p {
    padding: 0 20px;
  }
  .txt_container .txt_detail .txt_area img {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    padding: 0 20px;
  }
  .txt_container .txt_detail .txt_area .cast-content ul li {
    padding: 0 20px;
  }
  .txt_container .txt_detail .txt_area .cast-content img {
    padding: 0px;
    width: 300px;
  }
  .txt_container .txt_detail .txt_area .cast-content ul.child li img {
    width: auto;
  }
  .txt_container .txt_detail .txt_staff {
    padding-top: 60px;
    background-image: url(../images/index/bg_line_pc.jpg);
    background-position: center top;
    background-repeat: no-repeat;
  }
  .txt_container .spec_star_l {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 0;
  }
  .txt_container .spec_star_r {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 0;
  }
  .txt_container .spec_flower_l-intro-pc {
    position: absolute;
    left: 0;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    margin-top: -100px;
  }
  .txt_container .spec_flower_l-intro-sp {
    display: none;
  }
  .intro-title {
    position: relative;
  }
  .intro-title p {
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .story_container {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
  }
  .story_container h2 {
    margin: 0 auto;
    color: #143a71;
    margin-bottom: 20px;
  }
  .story_container h3 {
    margin-top: -20px;
  }
  .story_container p,
  .story_container img {
    margin-bottom: 40px;
    width: 100%;
  }
  .story_container p span {
    font-weight: bold;
    color: var(--color-theme);
  }
  .story_container .pink-story {
    color: #e73d83;
    font-style: italic;
    font-weight: bold;
  }
  .story_container .txt600 {
    font-weight: bold;
    font-size: 20px;
  }
  .icon-story {
    max-width: 158px;
  }
  .text-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    margin: -40px 0 !important;
  }
  .menu-burger,
  .menu-responsive {
    display: none;
  }
  .menu-top_container {
    margin: 0 auto;
    text-align: center;
    background-color: var(--color-theme);
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .menu-top_container {
    position: fixed;
    top: 102px;
    left: 0;
    right: 0;
    z-index: 999;
  }
}
@media screen and (min-width: 768px) {
  .mainmenu {
    margin: 0 auto;
    width: 100%;
  }
  .mainmenu ul {
    list-style-type: none;
    padding: 0;
    overflow: hidden;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
  }
  .mainmenu li.off {
    opacity: 0.2;
  }
  .mainmenu ul li {
    position: relative;
    display: inline-block;
  }
  .mainmenu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 20px 12px;
    text-decoration: none;
    position: relative;
  }
  .color-gray {
    color: #404040 !important;
  }
  .getMn1 .mn1,
  .getMn2 .mn2,
  .getMn3 .mn3,
  .getMn4 .mn4,
  .getMn5 .mn5,
  .getMn6 .mn6,
  .getMn7 .mn7,
  .getMn8 .mn8,
  .getMn9 .mn9,
  .getMn10 .mn10 {
    color: #f4df7d !important;
  }
  .menu-responsive-content {
    display: none;
  }
  .mv_bg_container {
    border-bottom: 3px var(--color-theme) solid;
    background: url("../images/common/bg.png") no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .mv_bg_container .mv-text {
    padding: 220px 0px 50px;
    text-align: center;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1088px) {
  .mv_bg_container .mv-text {
    padding-top: 280px;
  }
}
@media screen and (min-width: 768px) {
  .mv_bg_container .mv-text h1 {
    font-size: 60px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #143a71;
  }
  .mv_bg_container .mv-text h1 span {
    color: #e73d83;
  }
  .mv_bg_container .mv-text h1 em {
    font-size: 35px;
    font-style: normal;
    padding: 0 5px;
  }
  .contact_container {
    background-color: #FFF;
    border: 1px solid var(--color-theme);
    border-radius: 3px;
    width: 100%;
    max-width: 400px;
    padding: 20px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }
  .contact_container h2 {
    font-size: 18px;
    margin-bottom: 0px !important;
  }
  .contact_container a {
    color: var(--color-theme) !important;
    text-decoration: none;
  }
  h3.staff_other {
    font-weight: normal;
  }
  .cast-content {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
  }
  .cast-content h3 {
    margin-bottom: 30px;
  }
  .cast-content .cast_group {
    margin-top: 80px;
    outline-offset: 3px;
    margin: 6px;
    margin-bottom: 100px;
    padding-top: 50px;
  }
  .cast-content .cast01 {
    color: #01a8df;
    border: solid 1px #01a8df;
    outline: solid 3px #01a8df;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 253, 255)), to(rgb(205, 235, 246)));
    background-image: linear-gradient(180deg, rgb(252, 253, 255), rgb(205, 235, 246));
  }
  .cast-content .cast02 {
    color: #12b25c;
    border: solid 1px #12b25c;
    outline: solid 3px #12b25c;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(245, 255, 249)), to(rgb(214, 255, 212)));
    background-image: linear-gradient(180deg, rgb(245, 255, 249), rgb(214, 255, 212));
  }
  .cast-content .cast02 ul {
    width: 75%;
    margin: 0 auto;
  }
  .cast-content .cast03 {
    color: #e99936;
    border: solid 1px #e99936;
    outline: solid 3px #e99936;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 254, 241)), to(rgb(255, 237, 200)));
    background-image: linear-gradient(180deg, rgb(255, 254, 241), rgb(255, 237, 200));
  }
  .cast-content .cast03 ul {
    width: 75%;
    margin: 0 auto;
  }
  .cast-content .cast04 {
    color: #767bb5;
    border: solid 1px #767bb5;
    outline: solid 3px #767bb5;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 248, 255)), to(rgb(241, 224, 255)));
    background-image: linear-gradient(180deg, rgb(252, 248, 255), rgb(241, 224, 255));
  }
  .cast-content .cast05 {
    color: #e995a4;
    border: solid 1px #e995a4;
    outline: solid 3px #e995a4;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 246, 253)), to(rgb(255, 223, 249)));
    background-image: linear-gradient(180deg, rgb(255, 246, 253), rgb(255, 223, 249));
  }
  .cast-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cast-content ul li.w100 {
    width: 100%;
  }
  .cast-content-siaff-sp {
    display: none;
  }
  .cast-content-siaff {
    max-width: 1000px;
    margin: 100px auto 100px;
  }
  .cast-content-siaff img {
    margin: 0 !important;
    padding: 0 !important;
  }
  ul#staff {
    /*    display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      margin-left: 120px;*/
  }
  ul#staff li {
    margin-top: 50px;
    /*    width: 50%;*/
  }
  ul#staff li img {
    left: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  ul#staff li p {
    text-align: left;
    margin-top: 10px;
    font-size: 16px;
    margin-left: -20px;
  }
  .line_staff {
    padding: 60px 0;
    background-image: url(../images/index/bg_line_pc.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 40px;
    margin-bottom: -40px;
  }
  dl.staff_list {
    text-align: left;
    margin: 60px auto 2rem;
    position: relative;
    z-index: 3;
    line-height: 2;
  }
  dl.staff_list dt {
    text-align: right;
    float: left;
    width: 17em;
    margin-right: 0.5rem;
    font-weight: normal;
  }
  dl.staff_list dt span {
    background-color: var(--color-theme);
    color: #fff;
    font-size: 86%;
    padding: 0.2rem 0.4rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }
  p.staff_list {
    text-align: left;
    margin: 0 auto 2rem;
    width: 910px;
    position: relative;
    z-index: 3;
  }
  p.staff_list span {
    background-color: var(--color-theme);
    color: #fff;
    font-size: 86%;
    padding: 0.2rem 0.4rem;
    margin-right: 0.5rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }
  p.staff_list span + br {
    display: none;
  }
  .txt_container .txt_detail .txt_area .special-content {
    width: 100%;
    max-width: 1060px;
    margin: auto auto 60px auto;
  }
  .txt_container .txt_detail .txt_area .special-content img {
    width: 50%;
    margin-bottom: auto;
  }
  .line_illustration {
    padding: 60px 0;
    background-image: url(../images/index/bg_line_pc.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 40px;
    margin-bottom: -40px;
  }
  .txt_container .txt_detail .txt_area .special-img + p {
    margin-bottom: 60px;
  }
  .txt_container .txt_detail .txt_area .qa-content {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  .txt_container .txt_detail .txt_area .qa-content .inner {
    border: 2px solid #00adef;
    padding: 40px 60px 30px;
    margin-bottom: 40px;
  }
  .txt_container .txt_detail .txt_area .qa-content h3 {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 130%;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif, "Font Awesome 5 Free";
    color: var(--color-theme);
  }
  .txt_container .txt_detail .txt_area .qa-content > p {
    margin-bottom: 40px;
  }
  .txt_container .txt_detail .txt_area .qa-content ul li {
    text-align: left;
    list-style-type: disc;
    margin-bottom: 0.7rem;
  }
  .txt_container .txt_detail .txt_area .qa-content .inner + .inner p {
    margin-top: 40px;
  }
  .line_qa {
    padding: 60px 0;
    background-image: url(../images/index/bg_line_pc.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 40px;
    margin-bottom: -40px;
  }
  .qa_inner {
    background-color: #edfbff;
    margin-bottom: 20px;
    padding: 20px;
    text-align: left;
  }
  .qa_inner h3 span.icon {
    background-color: var(--color-theme);
    color: #FFFFFF;
    padding: 10px;
    margin-right: 6px;
  }
  .qa_inner strong {
    font-weight: bold;
    color: #e20000;
  }
  .qa_inner p + p,
  .qa_inner p + ul {
    margin-top: 20px;
  }
  .qa_inner + h3 {
    margin-top: 40px;
  }
  .qa_inner li {
    margin-left: 40px;
  }
  .line_price {
    padding: 60px 0;
    background-image: url(../images/index/bg_line_pc.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 40px;
    margin-bottom: -40px;
  }
  .schedule-content .inner {
    text-align: left;
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  .schedule-content .inner + h2 {
    margin-top: 60px;
  }
  .schedule-content .inner h3,
  .schedule-content .inner h4 {
    margin: 40px 0 20px;
    color: #143a71;
  }
  .schedule-content .inner h3.price {
    font-size: 130%;
  }
  .schedule-content .inner p + p,
  .schedule-content .inner p + ul {
    margin-top: 20px;
  }
  .schedule-content h2,
  .schedule-content h3 {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }
  .img_schedule {
    width: 100%;
  }
  .line_schedule {
    padding: 60px 0;
    background-image: url(../images/index/bg_line_pc.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 80px;
    margin-bottom: -40px;
  }
  .schedule-content ul li {
    font-size: 16px;
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
  }
  .schedule-content .inner .bg_ttl {
    display: inline-block;
    background-color: var(--color-theme);
    color: #FFFFFF;
    padding: 0.2rem 0.4rem;
  }
  .schedule-content .inner h4.bg_ttl {
    background-color: #61D5FF;
  }
  .schedule-content .inner .bg_ttl_top {
    margin-top: auto;
  }
  .txt_container .txt_detail .txt_area .goods_caption {
    margin: -16px 0 10px 0;
  }
  .schedule-content .inner .goods_block {
    margin-bottom: 70px;
  }
  .txt_container .txt_detail .txt_area .goods_img img {
    width: 80%;
    padding: 0px;
  }
  footer {
    /*    margin-top: 20px;*/
    background-color: var(--color-theme);
  }
  footer .footer_link_container {
    padding: 2em 1em;
  }
  footer .footer_link_container .footer_link_detail {
    margin: 80px auto;
    width: 1024px;
  }
  footer .footer_link_container .footer_link_detail .footer_link {
    margin-bottom: 48px;
  }
  footer .footer_link_container .footer_link_detail .footer_link li {
    width: 488px;
    float: left;
  }
  footer .footer_link_container .footer_link_detail .footer_link li.link_bnr_srotastage {
    margin-right: 48px;
  }
  footer .footer_link_container .footer_link_detail .footer_link li img {
    width: 100%;
  }
  footer .footer_link_container .footer_link_detail .bnr_twitter {
    text-align: center;
  }
  footer .footer_sns_container .footer_sns_detail {
    text-align: center;
    border-top: var(--color-theme) 4px solid;
    padding: 40px 0px 40px;
  }
  footer .footer_sns_container .footer_sns_detail .sns_txt {
    margin-bottom: 20px;
  }
  footer .footer_sns_container .footer_sns_detail .footer_sns li {
    display: inline-block;
    padding: 0 5px;
  }
  footer .footer_sns_container .footer_sns_detail .footer_sns li img {
    width: 50px;
    height: auto;
  }
  footer .footer_copyright {
    font-size: 13px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    text-align: center;
    border-top: #ccc 1px solid;
    padding: 20px 0;
    background: #FFFFFF;
  }
}
@media screen and (min-width: 768px) and (max-width: 1244px) {
  .index_txt_container .spec_flower_r {
    bottom: -80px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1088px) {
  .mainmenu {
    max-width: 736px;
  }
  .mainmenu li a {
    padding: 15px 7px;
    font-size: 1rem;
  }
  .index_mainvisual .index_mainvisual_detail h1 img {
    width: 100%;
    padding: 0 10px;
  }
  .index_txt_container .index_txt_detail .txt_staff img {
    width: 100%;
    padding: 0 30px;
  }
  .index_txt_container .spec_flower_r {
    width: 120px;
    height: auto;
    bottom: -60px;
  }
  footer .footer_link_container .footer_link_detail {
    width: 100%;
    padding: 0 30px;
  }
  footer .footer_link_container .footer_link_detail .footer_link li {
    width: 48%;
  }
  footer .footer_link_container .footer_link_detail .footer_link li.link_bnr_srotastage {
    margin-right: 4%;
  }
}
@media screen and (min-width: 768px) {
  .print {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif, "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    /*Chrome,Safari*/
    -ms-text-size-adjust: 100%;
    /*EgdeMobile*/
    -moz-text-size-adjust: 100%;
    /*firefox*/
  }
  h2,
  h3,
  h4 {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }
  a:visited {
    color: var(--color-theme);
  }
  /* style.css */
  .for_pc,
  .sp-none {
    display: none;
  }
  img {
    /* SPの長押し禁止 */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
  }
  .txt_left-sp {
    text-align: left;
  }
  header {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    border-bottom: 3px var(--color-theme) solid;
  }
  article {
    margin-top: 60px;
  }
  header .header_container {
    padding: 0 12px;
  }
  header .header_container .header_detail .siteid_logo {
    float: left;
    margin-top: 5px;
  }
  header .header_container .header_detail .siteid_logo img {
    width: 139px;
    height: auto;
  }
  header .header_container .header_detail .nav_global {
    float: right;
    margin: 0.8em 0;
  }
  header .header_container .header_detail .sns_txt {
    float: left;
    padding-top: 6px;
  }
  header .header_container .header_detail .sns_txt img {
    width: 37px;
    height: auto;
  }
  header .header_container .header_detail .nav_global_sns {
    float: right;
    margin-right: 52px;
  }
  header .header_container .header_detail .nav_global_sns li {
    display: inline-block;
    margin-left: 8px;
  }
  header .header_container .header_detail .nav_global_sns li img {
    width: 36px;
    height: auto;
  }
  .br-sp {
    display: block;
  }
  .index_mainvisual {
    background-color: var(--color-theme);
  }
  .index_mainvisual .index_mainvisual_detail img {
    width: 100%;
  }
  .index_txt_container {
    padding: 1.5em 0 0em;
    border-bottom: var(--color-theme) 5px solid;
    position: relative;
    background: #a8dbfe;
  }
  .index_txt_container .index_txt_detail .txt_area {
    padding: 0 1em 2.5em;
  }
  .index_txt_container .index_txt_detail .txt_area h2 {
    margin-bottom: 0.5em;
    text-align: center;
  }
  .index_txt_container .index_txt_detail .txt_area h2 img {
    width: 100%;
  }
  .index_txt_container .index_txt_detail .txt_area p {
    font-size: 12px;
  }
  .index_txt_container .index_txt_detail .txt_staff {
    padding-top: 2.5em;
    background-image: url(../images/index/bg_line_sp.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .index_txt_container .index_txt_detail .txt_staff img {
    width: 100%;
    padding: 0 4.8em 0 2.4em;
  }
  .index_txt_container .spec_flower_r {
    position: absolute;
    width: 90px;
    height: auto;
    right: 0;
    bottom: -20px;
  }
  .google-map {
    width: 100%;
    max-width: 1024px;
    height: 361px;
    margin: 20px 0;
    position: relative;
    z-index: 2;
    padding: 0 20px;
  }
  .index_tv_container .index_tv_detail {
    text-align: center;
    padding: 2em 0 1em;
  }
  .index_tv_container .index_tv_detail img {
    width: 94%;
  }
  .txt_container {
    padding: 40px 0 40px;
    border-bottom: 5px var(--color-theme) solid;
    position: relative;
    background: url(../images/common/bg_grid_o.png);
    background-color: #fff;
  }
  .txt_container h1 img {
    width: 100%;
    max-width: 1264px;
  }
  .txt_container .txt_detail {
    text-align: center;
  }
  .txt_container .txt_detail .txt_area {
    padding-bottom: 0px;
  }
  .txt_container .txt_detail .txt_area h2 {
    margin-bottom: 30px;
    color: #143a71;
  }
  .txt_container .txt_detail .txt_area h2 small {
    font-size: 70%;
  }
  .getMn8 .txt_container .txt_detail .txt_area h2 {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif, "Font Awesome 5 Free";
  }
  .txt_container .txt_detail .txt_area p {
    font-size: 14px;
    z-index: 2;
    position: relative;
    padding: 0 20px;
  }
  .access-content {
    /*    text-align: left;*/
  }
  .txt_container .txt_detail .txt_area img {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding: 0 20px;
    width: 100%;
  }
  .txt_container .txt_detail .txt_area .cast-content ul.child li img {
    width: 62%;
  }
  .txt_container .txt_detail .txt_staff {
    padding-top: 60px;
    background-image: url(../images/index/bg_line_pc.jpg);
    background-position: center top;
    background-repeat: no-repeat;
  }
  .txt_container .spec_flower_r {
    position: absolute;
    right: 0;
    top: 30px;
    z-index: 0;
    width: 30%;
  }
  .txt_container .spec_flower_l {
    position: absolute;
    left: 0;
    bottom: 27px;
    z-index: 0;
    width: 30%;
  }
  img.spec_flower_l-intro-sp {
    margin-top: -50px;
    width: 100%;
  }
  .txt_container .spec_flower_l-intro-pc {
    display: none;
  }
  .spec_star_l {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 0;
    width: 15%;
  }
  .spec_star_r {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 0;
    width: 15%;
  }
  /* intro */
  .intro-title {
    position: relative;
    border-bottom: none;
    padding-bottom: 0px;
  }
  .intro-title p {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .story_container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
  }
  .story_container h2 {
    padding-top: 20px;
    margin: 0 auto;
    margin-bottom: 20px;
    color: #143a71;
  }
  .story_container h3 {
    margin-top: 0px;
  }
  .story_container p,
  .story_container img {
    margin-bottom: 20px;
    width: 100%;
  }
  .story_container p span {
    font-weight: bold;
    color: var(--color-theme);
  }
  .story_container .pink-story {
    color: var(--color-theme);
    font-style: italic;
    font-weight: bold;
  }
  .story_container .txt600 {
    font-weight: bold;
    font-size: 20px;
  }
  .icon-story {
    max-width: 130px;
    margin-bottom: -10px !important;
  }
  .text-footer {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 5px;
    margin: 0;
    margin-bottom: -50px !important;
  }
  /* cast & staff */
  .cast_group {
    margin-top: 80px;
    outline-offset: 3px;
    margin: 20px;
    margin-bottom: 50px;
    padding-top: 10px;
  }
  .cast01 {
    color: #01a8df;
    border: solid 1px #01a8df;
    outline: solid 3px #01a8df;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 253, 255)), to(rgb(205, 235, 246)));
    background-image: linear-gradient(180deg, rgb(252, 253, 255), rgb(205, 235, 246));
  }
  .cast02 {
    color: #12b25c;
    border: solid 1px #12b25c;
    outline: solid 3px #12b25c;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(245, 255, 249)), to(rgb(214, 255, 212)));
    background-image: linear-gradient(180deg, rgb(245, 255, 249), rgb(214, 255, 212));
  }
  .cast03 {
    color: #e99936;
    border: solid 1px #e99936;
    outline: solid 3px #e99936;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 254, 241)), to(rgb(255, 237, 200)));
    background-image: linear-gradient(180deg, rgb(255, 254, 241), rgb(255, 237, 200));
  }
  .cast04 {
    color: #767bb5;
    border: solid 1px #767bb5;
    outline: solid 3px #767bb5;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(252, 248, 255)), to(rgb(241, 224, 255)));
    background-image: linear-gradient(180deg, rgb(252, 248, 255), rgb(241, 224, 255));
  }
  .cast05 {
    color: #e995a4;
    border: solid 1px #e995a4;
    outline: solid 3px #e995a4;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 246, 253)), to(rgb(255, 223, 249)));
    background-image: linear-gradient(180deg, rgb(255, 246, 253), rgb(255, 223, 249));
  }
  .cast-img {
    max-width: 105px !important;
  }
  .cast-img-staff {
    width: 87px !important;
  }
  .cast-content ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cast-content ul li {
    width: 50% !important;
  }
  .cast-content ul li img {
    padding: 7px !important;
    width: 100%;
  }
  .cast-content ul li.w100 {
    width: 100%;
  }
  .cast-content-siaff {
    max-width: 954px;
    margin: 0 auto;
    margin-bottom: 40px;
    margin-top: 60px;
  }
  .cast-content-siaff img {
    margin: 0 !important;
    padding: 0 !important;
  }
  ul#staff {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin: 0 20px;
  }
  ul#staff li {
    width: 100%;
  }
  ul#staff li img {
    /*    display: inherit;
      left: 0 !important;
      width: auto;*/
  }
  ul#staff li p {
    text-align: left;
    margin-top: 10px;
    font-size: 16px;
    padding: 0;
  }
  .line_staff {
    margin-top: 30px;
    padding-top: 80px;
    background-image: url(../images/index/bg_line_sp.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-position: initial;
  }
  dl.staff_list {
    text-align: left;
    margin: 40px 20px 2rem;
    position: relative;
    z-index: 3;
  }
  dl.staff_list dt {
    font-weight: normal;
    max-height: 100%;
  }
  dl.staff_list dt span {
    background-color: var(--color-theme);
    color: #fff;
    font-size: 86%;
    padding: 0.2rem 0.4rem;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }
  dl.staff_list dd {
    margin-bottom: 1rem;
  }
  dl.staff_list dd.classe {
    width: 30%;
  }
  .txt_container .txt_detail .txt_area p.staff_list {
    text-align: left;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 3;
    font-size: 16px;
  }
  .txt_container .txt_detail .txt_area p.staff_list span {
    background-color: var(--color-theme);
    color: #fff;
    font-size: 86%;
    padding: 0.2rem 0.4rem;
    margin-bottom: 5px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }
  .txt_container .txt_detail .txt_area p.staff_list .forpc {
    display: none;
  }
  .staff_list .txt {
    margin-top: 5px;
  }
  h3.staff_other {
    font-weight: normal;
    font-size: 90%;
  }
  /* // cast & staff */
  /* special */
  .txt_container .txt_detail .txt_area .special-content {
    width: 100%;
    margin: auto auto 50px auto;
    padding: 0 10px;
  }
  .txt_container .txt_detail .txt_area .special-content img {
    margin-bottom: auto;
  }
  .txt_container .txt_detail .txt_area .special-content iframe {
    width: 100%;
  }
  .line_illustration {
    margin-top: 30px;
    padding-top: 80px;
    background-image: url(../images/index/bg_line_sp.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-position: initial;
  }
  .txt_container .txt_detail .txt_area .special-img + p {
    margin-bottom: 40px;
  }
  .txt_container .txt_detail .txt_area .qa-content {
    width: 100%;
    padding: 0 10px;
    position: relative;
    z-index: 3;
  }
  .txt_container .txt_detail .txt_area .qa-content .inner {
    border: 2px solid #00adef;
    padding: 1rem;
    margin-bottom: 30px;
  }
  .txt_container .txt_detail .txt_area .qa-content h3 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 120%;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif, "Font Awesome 5 Free";
    color: var(--color-theme);
    text-indent: -2.2em;
    padding-left: 2.2em;
  }
  .txt_container .txt_detail .txt_area .qa-content > p {
    margin-bottom: 40px;
    text-align: left;
  }
  .txt_container .txt_detail .txt_area .qa-content .inner ul {
    margin-left: 1rem;
  }
  .txt_container .txt_detail .txt_area .qa-content ul li {
    text-align: left;
    list-style-type: disc;
    margin-bottom: 0.7rem;
    font-size: 14px;
  }
  .txt_container .txt_detail .txt_area .qa-content .inner + .inner p {
    margin-top: 20px;
    text-align: left;
  }
  /* special */
  /* qa */
  .line_qa {
    margin-top: 30px;
    padding-top: 80px;
    background-image: url(../images/index/bg_line_sp.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-position: initial;
  }
  .qa_inner {
    background-color: #edfbff;
    margin-bottom: 20px;
    padding: 16px;
    text-align: left;
  }
  .qa_inner h3 span.icon {
    background-color: var(--color-theme);
    color: #FFFFFF;
    padding: 6px;
    margin-right: 6px;
  }
  .qa_inner strong {
    font-weight: bold;
    color: #e20000;
  }
  .qa_inner p + p,
  .qa_inner p + ul {
    margin-top: 20px;
  }
  .qa_inner ul li {
    margin-left: 40px;
  }
  /* // qa */
  /* schedule */
  .txt_container .txt_detail .txt_area .schedule-content {
    width: 100%;
    padding: 0 10px;
    position: relative;
    z-index: 3;
  }
  .schedule-content .inner {
    text-align: left;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  .schedule-content h2 {
    font-size: 120%;
  }
  .schedule-content .inner + h2 {
    margin-top: 60px;
  }
  .schedule-content .inner h3 {
    margin: 40px 0 20px;
    font-size: 110%;
    padding: 0 15px;
    color: #143a71;
  }
  .schedule-content .inner h3.price {
    font-size: 110%;
  }
  .schedule-content .inner p + p,
  .schedule-content .inner p + ul {
    margin-top: 20px;
  }
  .schedule-content h2,
  .schedule-content h3 {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  }
  .txt_container .txt_detail .txt_area .img_schedule {
    width: 100%;
  }
  .line_schedule {
    padding: 60px 0;
    background-image: url(../images/index/bg_line_pc.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    margin-top: 80px;
    margin-bottom: -40px;
  }
  .schedule-content ul li {
    font-size: 14px;
    list-style-type: disc;
    margin-left: 1rem;
  }
  .schedule-content .inner .bg_ttl {
    display: inline-block;
    background-color: var(--color-theme);
    color: #FFFFFF;
    padding: 0.2rem 0.4rem;
    margin: 40px 20px 20px;
  }
  .schedule-content .inner h4.bg_ttl {
    background-color: #61D5FF;
    font-size: 95%;
  }
  .schedule-content .inner .bg_ttl_top {
    margin-top: auto;
  }
  /* // schedule */
  /*goods */
  .txt_container .txt_detail .txt_area .goods_caption {
    margin: -16px 0 10px 0;
  }
  .txt_container .txt_detail .txt_area p .bg_blue {
    background-color: #dbf0ff;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .txt_container .txt_detail .txt_area p .bg_blue02 {
    background-color: #4895FB;
    padding-top: 4px;
    padding-bottom: 4px;
    color: #fff;
  }
  /* // gooos */
  /* =========== menu-burger =========== */
  .getMn1 .mn1,
  .getMn2 .mn2,
  .getMn3 .mn3,
  .getMn4 .mn4,
  .getMn5 .mn5,
  .getMn6 .mn6,
  .getMn7 .mn7,
  .getMn8 .mn8,
  .getMn9 .mn9,
  .getMn10 .mn10 {
    color: #f4df7d !important;
  }
  .menu-burger a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 67px;
    height: 62px;
    font-size: 30px;
    color: #fff;
    background: var(--color-theme);
    position: absolute;
    top: 0;
    right: 0;
  }
  .menu-burger a i {
    color: #fff;
  }
  .menu-close {
    width: 67px;
    height: 67px;
    font-size: 30px;
  }
  .menu-close img {
    width: 50%;
    margin-top: 10px;
  }
  .menu-top_container {
    display: none;
  }
  .menu-responsive {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    background: var(--color-theme);
    margin-top: 67px;
    padding-bottom: 20px;
  }
  .menu-responsive-bg {
    width: 100%;
    height: 100vh;
    z-index: 8;
    background-color: var(--color-theme);
  }
  .menu-responsive-content {
    position: relative;
  }
  .menu-close {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    right: 0;
    top: -75px;
    z-index: 10;
    background-color: var(--color-theme);
    text-decoration: none;
  }
  .menu-close i {
    color: #fff;
    border-bottom: none;
  }
  .menu-responsive-content ul {
    padding: 30px 20px;
  }
  .menu-responsive-content ul li {
    width: 100%;
    float: left;
    margin: 5px 5px;
    text-align: center;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 1.2rem;
    border: 1px solid #fff;
    line-height: 2;
  }
  .menu-responsive-content ul li.off {
    opacity: 0.2;
  }
  .menu-responsive-content ul li a {
    position: relative;
    color: #fff;
    text-decoration: none;
  }
  .menu-responsive-content ul li a.mn4, .menu-responsive-content ul li a.mn5 {
    font-size: 90%;
  }
  .color-gray {
    color: #404040 !important;
  }
  .border-gray {
    border: 1px solid #404040 !important;
  }
  /* =========== menu-burger =========== */
  .mv_bg_container {
    border-bottom: 3px var(--color-theme) solid;
    background: url(../images/common/bg.png) no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .mv_bg_container .mv-text {
    padding: 30px 0px 30px;
    text-align: center;
    font-family: "Radley", serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
  }
  .mv_bg_container .mv-text h1 {
    font-size: 2.4rem;
    color: #143a71;
  }
  .mv_bg_container .mv-text h1.schedule {
    line-height: 0.5;
    font-size: 2.1rem;
  }
  .mv_bg_container .mv-text h1.schedule em {
    display: block;
    margin-top: 1rem;
  }
  .mv_bg_container .mv-text h1 span {
    color: #143a71;
  }
  .mv_bg_container .mv-text h1 em {
    font-size: 25px;
    font-style: normal;
    padding: 0 3px;
  }
  .contact_container {
    background-color: #FFF;
    border: 1px solid var(--color-theme);
    border-radius: 3px;
    width: 90%;
    max-width: 400px;
    padding: 20px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }
  .contact_container h2 {
    font-size: 18px;
    margin-bottom: 0px !important;
  }
  .contact_container a {
    color: var(--color-theme) !important;
    text-decoration: none;
  }
  footer {
    /*	margin-top: 1em;*/
    background-color: var(--color-theme);
  }
  footer .footer_link_container {
    padding: 2em 1em;
  }
  footer .footer_link_container .footer_link_detail {
    margin: 2em 1em;
  }
  footer .footer_link_container .footer_link_detail .footer_link li {
    margin-bottom: 1em;
  }
  footer .footer_link_container .footer_link_detail .footer_link li img {
    width: 100%;
  }
  footer .footer_link_container .footer_link_detail .bnr_twitter img {
    width: 100%;
  }
  footer .footer_sns_container .footer_sns_detail {
    text-align: center;
    margin: 1em;
  }
  footer .footer_sns_container .footer_sns_detail .sns_txt {
    margin-bottom: 0.5em;
  }
  footer .footer_sns_container .footer_sns_detail .sns_txt img {
    width: 43px;
    height: auto;
  }
  footer .footer_sns_container .footer_sns_detail .footer_sns li {
    display: inline-block;
    padding: 0 5px;
  }
  footer .footer_sns_container .footer_sns_detail .footer_sns li img {
    width: 36px;
    height: auto;
  }
  footer .footer_copyright {
    font-size: 10px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    text-align: center;
    border-top: #ccc 1px solid;
    padding: 1em 0;
    background: #FFFFFF;
  }
  /* clearfix */
  .clearfix {
    display: block;
    *overflow: hidden;
    *zoom: 1;
  }
  .clearfix:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    font-size: 0;
    line-height: 0;
  }
  .clear {
    clear: both;
  }
}
span.red {
  color: #FF0004;
}
/*# sourceMappingURL=style.css.map */