@charset "UTF-8";
/* Scss Document */
@import url(common.css);
/* Scss Document */
/*メディアクエリ*/
/*例*/
.hoge {
  color: blue; }
  @media screen and (max-width: 849px) {
    .hoge {
      color: yellow; } }
  @media screen and (max-width: 479px) {
    .hoge {
      color: red; } }

@media screen and (max-width: 1279px) {
  body {
    /*background: skyblue;*/ } }
@media screen and (max-width: 849px) {
  body {
    /*background: pink;*/ } }
@media screen and (max-width: 479px) {
  body {
    /*background: silver;*/ } }

/**************************/
html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */ }
  @media screen and (max-width: 849px) {
    html {
      font-size: 50%;
      /* 16px x 0.625 = 10px(=1rem) */ } }

body {
  position: relative;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  line-height: 1.5em;
  font-size: 1.6rem;
  /* 16px */
  -webkit-text-size-adjust: 100%;
  color: #fbe3e3;
  font-family: "游明朝体", YuMincho, serif;
  background: #000000;
  font-feature-settings: "palt"; }

.Android {
  font-family: "source-han-serif-japanese",serif; }

.fontGothic {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif; }

/*テーマカラー*/
a,
.colorMain {
  color: #e84472; }

a:hover {
  text-decoration: none; }

.ttlDeco01 {
  max-width: 293px;
  margin: 0 auto; }
  @media screen and (max-width: 849px) {
    .ttlDeco01 {
      width: 60%; } }

.ttlDeco01_2 {
  font-weight: bold;
  background: url(../images/ttl_deco2.png) center 0/100px auto no-repeat;
  font-size: 4.0rem;
  padding: 40px 0 30px 0;
  line-height: 1.2em;
  text-align: center;
  min-height: 182px;
  text-shadow: 2px 2px 0 #332103, -2px -2px 0 #332103, -2px 2px 0 #332103, 2px -2px 0 #332103, 0px 2px 0 #332103, -2px 0 #332103, -2px 0 0 #332103, 2px 0 0 #332103; }
  @media screen and (max-width: 479px) {
    .ttlDeco01_2 {
      background: url(../images/ttl_deco2.png) center 0/70px auto no-repeat;
      margin: 0 auto;
      padding: 20px 0;
      min-height: 50px;
      font-size: 3.5rem;
      min-height: 50px; } }

.ttlDeco02 {
  font-size: 3.0rem;
  line-height: 1.6em;
  font-weight: bold;
  margin: 60px auto 0;
  text-align: center;
  align-items: center; }
  @media screen and (max-width: 849px) {
    .ttlDeco02 {
      margin: 50px auto 0; } }
  @media screen and (max-width: 479px) {
    .ttlDeco02 {
      margin: 40px auto 0;
      padding: 0 0 30px 0; } }

.colorBlue {
  color: #00a0e9; }

.colorRed {
  color: #d12d33 !important; }

.colorOrange {
  color: #fb7e53; }

.colorPurple {
  color: #ff7bf7; }

.colorGray {
  color: #484848; }

.colorWhite {
  color: #fff; }

.listBox li {
  padding-left: 1em;
  text-indent: -1em; }

.txtS {
  font-size: 0.8em; }

.txtM {
  font-size: 0.9em; }

.txtL {
  font-size: 1.2em; }

.indent {
  padding-left: 1em;
  text-indent: -1em; }

.indent2 {
  margin-left: 1.0em; }

.txtThr {
  text-decoration: line-through; }

hr {
  max-width: 500px;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid #ddd; }

.hr2 {
  max-width: 500px;
  margin: 0 auto;
  border: 0;
  border-top: double #ccc; }

.pcNone {
  display: inline-block; }
  @media screen and (max-width: 849px) {
    .pcNone {
      display: none; } }

.pcNoneL {
  display: inline-block; }
  @media screen and (max-width: 1279px) {
    .pcNoneL {
      display: none; } }

.spNone {
  display: none; }
  @media screen and (max-width: 849px) {
    .spNone {
      display: inline-block; } }

.pcNoneB {
  display: block; }
  @media screen and (max-width: 849px) {
    .pcNoneB {
      display: none; } }

.spNoneB {
  display: none; }
  @media screen and (max-width: 849px) {
    .spNoneB {
      display: block; } }

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.btn1 {
  text-align: center; }
  .btn1 a {
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0.5em 1.5em;
    transition: all .3s; }
    .btn1 a:hover {
      background: #fff;
      color: #000; }

.colorYellow {
  color: #d0a658; }

/********************

header

*********************/
header {
  position: fixed;
  width: 100%;
  z-index: 9999; }

.headerWrap {
  display: flex;
  margin-right: auto;
  align-items: flex-start;
  padding: 0 20px 0 0; }
  .headerWrap > :last-child {
    margin-left: auto; }
  .headerWrap a {
    color: #fff;
    text-decoration: none; }
  .headerWrap .ttl {
    width: 21.23%;
    margin: 15px 0 0 2%; }
    @media screen and (max-width: 849px) {
      .headerWrap .ttl {
        width: 54.26%; } }
  .headerWrap .navBox {
    background: #ed0000;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px 0 10px; }
    @media screen and (max-width: 1200px) {
      .headerWrap .navBox {
        padding-top: 0;
        display: block; } }
    @media screen and (max-width: 849px) {
      .headerWrap .navBox {
        background: #fff; } }
  .headerWrap .drawer-nav {
    height: auto;
    color: #f08484; }
    @media screen and (max-width: 1200px) {
      .headerWrap .drawer-nav {
        background: #000;
        color: #6f6f6f; } }
  .headerWrap .navBox .drawer-menu {
    display: flex;
    font-size: 1.4rem;
    align-items: flex-start; }
    @media screen and (max-width: 1200px) {
      .headerWrap .navBox .drawer-menu {
        display: block;
        padding-top: 3rem;
        padding-bottom: 2rem;
        font-size: 1.8rem; } }
    .headerWrap .navBox .drawer-menu li {
      position: relative;
      float: none; }
      .headerWrap .navBox .drawer-menu li::before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        content: '';
        display: inline-block;
        background: #FFF;
        height: 15px;
        width: 1px; }
        @media screen and (max-width: 1200px) {
          .headerWrap .navBox .drawer-menu li::before {
            display: none; } }
      .headerWrap .navBox .drawer-menu li a {
        text-decoration: none;
        padding: 8px 10px;
        display: block; }
        @media screen and (max-width: 1200px) {
          .headerWrap .navBox .drawer-menu li a {
            display: block;
            border-right: none; } }
      .headerWrap .navBox .drawer-menu li.noLink {
        padding: 8px 10px; }
        @media screen and (max-width: 1200px) {
          .headerWrap .navBox .drawer-menu li.noLink {
            display: block;
            border-right: none; } }
      .headerWrap .navBox .drawer-menu li:nth-of-type(1)::before {
        display: none; }
  .headerWrap .navBox .slideBdr {
    position: absolute;
    top: -11px;
    /*-18*/
    left: 14.5px;
    /*margin-left: -22px;*/
    width: 44px;
    height: 4px;
    background-color: #e84472;
    -webkit-transition: all .3s ease;
    transition: all .3s ease; }
  .headerWrap .snsBox {
    display: flex;
    padding: 8px 0; }
    @media screen and (max-width: 1200px) {
      .headerWrap .snsBox {
        justify-content: center;
        padding-bottom: 3.75rem; } }
    .headerWrap .snsBox li {
      margin: 0 0 0 15px; }
      @media screen and (max-width: 1200px) {
        .headerWrap .snsBox li {
          margin: 0 8px 0; } }
      .headerWrap .snsBox li img {
        width: 23px; }

.drawer-container {
  margin-right: 0;
  margin-top: 20px;
  margin-left: 3em; }

.drawer-toggle {
  width: 40px !important;
  height: 40px !important; }

.drawer-navbar .drawer-navbar-header {
  border: none; }

.drawer-hamburger {
  padding: 0;
  position: relative; }

.drawer-navbar-header {
  height: auto; }

@media (min-width: 64em) {
  .drawer-container {
    max-width: 100%; } }
.mainWrap {
  background: url("../images/mv_bg.png") no-repeat center 0;
  background-size: 110% auto; }
  @media screen and (max-width: 849px) {
    .mainWrap {
      background: url("../images/mv_bg.png") no-repeat center 0;
      background-size: 250% auto; } }
  @media screen and (max-width: 479px) {
    .mainWrap {
      background: url("../images/mv_bg.png") no-repeat center 0;
      background-size: 300% auto; } }

/********************

top wrap

*********************/
#topWrap_id {
  position: relative;
  z-index: -1; }

#topWrap_id .oneColumn {
  margin: 0 auto 0;
  /*61px*/
  /*imgBox*/ }
  #topWrap_id .oneColumn .imgBox {
    position: relative;
    width: 100%; }
    @media screen and (max-width: 849px) {
      #topWrap_id .oneColumn .imgBox {
        width: auto; } }
    #topWrap_id .oneColumn .imgBox img {
      width: 100%;
      height: auto; }
    #topWrap_id .oneColumn .imgBox .date {
      position: absolute;
      top: 80px;
      right: 30px;
      width: 450px; }
    #topWrap_id .oneColumn .imgBox .txt1 {
      position: relative;
      font-size: 1.9rem;
      color: #dcdcdc;
      line-height: 1.7em;
      padding: 1em 0 0 0;
      background: url("../images/bg_txt.png") no-repeat center 0/157px 516px;
      z-index: 2; }
      @media screen and (max-width: 849px) {
        #topWrap_id .oneColumn .imgBox .txt1 {
          margin: 5% auto 0;
          background: url("../images/bg_txt.png") no-repeat center 0/170px auto; } }
      @media screen and (max-width: 479px) {
        #topWrap_id .oneColumn .imgBox .txt1 {
          font-size: 1.5rem;
          margin: 5% auto 0; } }
    @media screen and (max-width: 849px) {
      #topWrap_id .oneColumn .imgBox .desBox .lead {
        margin: 0 1.5em; } }
    #topWrap_id .oneColumn .imgBox .desBox .catch1 {
      width: 1200px;
      margin: 0 auto;
      text-align: center;
      padding: 0 0 4em 0; }
      @media screen and (max-width: 849px) {
        #topWrap_id .oneColumn .imgBox .desBox .catch1 {
          width: 100%;
          padding-bottom: 0; } }
      #topWrap_id .oneColumn .imgBox .desBox .catch1 img {
        width: 100%; }
    #topWrap_id .oneColumn .imgBox .desBox .catch2 {
      width: 800px;
      margin: 0 auto;
      text-align: center;
      padding: 4em 0 0 0; }
      @media screen and (max-width: 849px) {
        #topWrap_id .oneColumn .imgBox .desBox .catch2 {
          width: 100%;
          padding: 2em 0 0 0; } }
      #topWrap_id .oneColumn .imgBox .desBox .catch2 img {
        width: 100%; }
    #topWrap_id .oneColumn .imgBox .decoTxt {
      margin: 0 5%; }
    #topWrap_id .oneColumn .imgBox .kvBox {
      display: flex;
      justify-content: center;
      max-width: 1300px;
      margin: 30px auto 0;
      flex-direction: row-reverse;
      align-items: center; }
      @media screen and (max-width: 1279px) {
        #topWrap_id .oneColumn .imgBox .kvBox {
          padding: 0 5% 0; } }
      @media screen and (max-width: 1000px) {
        #topWrap_id .oneColumn .imgBox .kvBox {
          display: block; } }
      @media screen and (max-width: 849px) {
        #topWrap_id .oneColumn .imgBox .kvBox {
          width: 100%;
          margin: 0 auto 0; } }
      #topWrap_id .oneColumn .imgBox .kvBox .img {
        width: 40%;
        margin: 0 0 0 2%; }
        @media screen and (max-width: 1000px) {
          #topWrap_id .oneColumn .imgBox .kvBox .img {
            width: 70%;
            margin: 0 auto 10px; } }
        @media screen and (max-width: 849px) {
          #topWrap_id .oneColumn .imgBox .kvBox .img {
            width: 100%; } }

.movieBox {
  max-width: 900px;
  text-align: center;
  margin: 50px auto 0px;
  padding: 5em 5% 0; }
  @media screen and (max-width: 849px) {
    .movieBox {
      margin: 0 auto 0px; } }

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden; }

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.movieLink {
  max-width: 900px;
  margin: 0.5em auto 0;
  padding: 0 5% 0;
  text-align: right;
  font-size: 0.8em; }

/********************

news wrap

*********************/
#newsWrap_id {
  max-width: 1020px;
  margin: -17em auto 0;
  padding: 8rem 0 0 0;
  text-align: left; }
  @media screen and (max-width: 1279px) {
    #newsWrap_id {
      max-width: 100%;
      padding: 10rem 0 0; } }
  @media screen and (max-width: 849px) {
    #newsWrap_id {
      margin: -13em auto 0; } }
  @media screen and (max-width: 479px) {
    #newsWrap_id {
      margin: -16em auto 0; } }
  #newsWrap_id .snsBox {
    display: flex;
    justify-content: flex-end; }
    #newsWrap_id .snsBox li {
      margin: 0 0 0 5px; }
      #newsWrap_id .snsBox li a {
        display: block;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        padding: 2px 15px 2px 33px;
        color: #fff;
        font-family: "source-han-sans-japanese",sans-serif;
        text-decoration: none; }
        @media screen and (max-width: 849px) {
          #newsWrap_id .snsBox li a {
            padding: 2px 15px 2px 30px; } }
      #newsWrap_id .snsBox li:nth-child(1) a {
        background: url(../images/btnlink_facebook.png) no-repeat #3B5998 5px center/18px 18px; }
      #newsWrap_id .snsBox li:nth-child(2) a {
        background: url(../images/btnlink_twitter.png) no-repeat #1DA1F2 5px center/18px 18px; }

@media screen and (max-width: 1279px) {
  #newsWrap_id .decoP {
    padding: 0 5% 0; } }

#newsWrap_id > .flexBox {
  max-width: 1020px;
  display: flex;
  justify-content: space-between;
  margin: 70px auto 0; }
  @media screen and (max-width: 1279px) {
    #newsWrap_id > .flexBox {
      padding: 0 5% 0; } }
  @media screen and (max-width: 849px) {
    #newsWrap_id > .flexBox {
      flex-direction: column;
      margin: 40px auto 0; } }
  #newsWrap_id > .flexBox .newsBox {
    width: 490px;
    margin-right: 4%;
    padding: 10px 0 0 0;
    height: 360px;
    overflow: scroll;
    overflow-x: hidden; }
    @media screen and (max-width: 849px) {
      #newsWrap_id > .flexBox .newsBox {
        width: auto;
        margin-right: 0;
        margin-bottom: 5%;
        height: 300px;
        /*300px*/ } }
    #newsWrap_id > .flexBox .newsBox dl {
      padding-right: 2rem; }
      @media screen and (max-width: 849px) {
        #newsWrap_id > .flexBox .newsBox dl {
          padding-right: 1rem; } }
      #newsWrap_id > .flexBox .newsBox dl dt {
        font-size: 1.4rem;
        margin: 0 0 10px 0; }
      #newsWrap_id > .flexBox .newsBox dl dd {
        font-family: "source-han-sans-japanese",sans-serif;
        margin: 0 0 23px 0;
        padding: 0 0 23px 0;
        border-bottom: 1px solid #332103; }
  #newsWrap_id > .flexBox .twitterBox {
    width: 490px;
    height: 360px;
    overflow: scroll;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /*-- これが重要っぽい --*/
    /*overflow-scrolling: touch;*/
    /*-- これも重要そう --*/ }
    @media screen and (max-width: 849px) {
      #newsWrap_id > .flexBox .twitterBox {
        width: auto; } }

/********

はじめに

******/
#firstWrap_id {
  max-width: 1020px;
  margin: 70px auto 0;
  padding: 8rem 0 0 0;
  text-align: left; }
  @media screen and (max-width: 1279px) {
    #firstWrap_id {
      max-width: 100%;
      margin: 5%  auto 0;
      padding: 8rem 5% 0; } }
  #firstWrap_id .ttlDeco01 {
    max-width: 1020px;
    margin: 0 auto 5%; }
  #firstWrap_id .txt {
    margin: 0 auto;
    max-width: 600px; }
  #firstWrap_id .name {
    text-align: right;
    max-width: 600px;
    margin: 3em auto 0; }

/********************

about wrap

*********************/
#aboutWrap_id {
  width: 100%;
  margin: 90px auto 0;
  padding: 8rem 5% 0;
  background: url("../images/bg1.png") center 0/600px auto repeat-x;
  /*aboutWrap*/
  /*acheduleWrap*/ }
  @media screen and (max-width: 1279px) {
    #aboutWrap_id {
      padding: 10rem 5% 0; } }
  #aboutWrap_id .aboutWrap {
    max-width: 1020px;
    margin: 0 auto;
    text-align: left; }
    #aboutWrap_id .aboutWrap .firstWrap {
      line-height: 1.9em; }
    #aboutWrap_id .aboutWrap .storyWrap {
      line-height: 1.9em; }
  @media screen and (max-width: 849px) {
    #aboutWrap_id .scheduleWrap {
      margin: 70px 0 0; } }
  #aboutWrap_id .scheduleWrap .box {
    display: flex;
    line-height: 1.9em;
    margin: 70px auto 0;
    align-items: flex-start;
    justify-content: space-between; }
    @media screen and (max-width: 1279px) {
      #aboutWrap_id .scheduleWrap .box {
        display: block; } }
  #aboutWrap_id .scheduleWrap .ttlDeco02 {
    border: 1px solid #d0a658;
    /* 内側の線になる一本線の枠線をひく*/
    margin: 2px;
    /* 外側の線の場所をつくる */
    position: relative;
    /* 外側の線の場所を調整する時の基準点になるようにする*/
    font-size: 2.3rem;
    width: 280px;
    line-height: 1em;
    padding: 0.3em 0; }
    @media screen and (max-width: 1279px) {
      #aboutWrap_id .scheduleWrap .ttlDeco02 {
        text-align: center;
        margin: 0 auto; } }
    #aboutWrap_id .scheduleWrap .ttlDeco02::before {
      content: '';
      /* 擬似要素に実体を持たせる */
      width: calc(100% + 14px);
      /* 外側の線になる要素の幅を指定する*/
      height: calc(100% + 14px);
      /* 外側の線になる要素の高さを指定する */
      border: 3px solid #d0a658;
      /* 外側の線になる一本線の枠線をひく*/
      position: absolute;
      /* 外側の線の位置を自由に動かせるようにする */
      top: -7px;
      /* 外側の線の位置を、内側の線から上に3pxずらす */
      left: -7px;
      /* 外側の線の位置を、内側の線から左に3pxずらす*/ }
  #aboutWrap_id .scheduleWrap .desBox {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    margin: 5px 0 0 0;
    width: 690px; }
    @media screen and (max-width: 1279px) {
      #aboutWrap_id .scheduleWrap .desBox {
        margin: 50px auto 0; } }
    @media screen and (max-width: 849px) {
      #aboutWrap_id .scheduleWrap .desBox {
        width: auto; } }
    #aboutWrap_id .scheduleWrap .desBox .ttl {
      font-size: 2.6rem;
      position: relative;
      margin: 0 0 0.5em 15px; }
      #aboutWrap_id .scheduleWrap .desBox .ttl::before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: -15px;
        content: '';
        display: inline-block;
        background: #fbe3e3;
        /*#fbe3e3*/
        height: 1.8rem;
        width: 7px;
        margin: auto 0; }
    #aboutWrap_id .scheduleWrap .desBox .txt {
      font-size: 2.6rem; }
    #aboutWrap_id .scheduleWrap .desBox .address {
      font-size: 1.8rem; }
    #aboutWrap_id .scheduleWrap .desBox .listBox {
      font-size: 1.4rem;
      line-height: 1.8em;
      margin: 2em 0 0 0; }
    #aboutWrap_id .scheduleWrap .desBox .timetable {
      margin: 50px auto 0; }
    #aboutWrap_id .scheduleWrap .desBox .map {
      position: relative;
      width: 100%;
      height: 0;
      margin: 0.5em 0 0 0;
      padding-top: 60%; }
    #aboutWrap_id .scheduleWrap .desBox .map iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }

/*.heightSet{
	height: 500px;
	@include mq-down() {
		height: auto;
	}

}*/
/********************

storyWrap

*********************/
#storyWrap_id {
  width: 100%;
  margin: 90px auto 0;
  padding: 8rem 0 0 0;
  text-align: left;
  background: url("../images/bg3.png") center 0/600px auto repeat-x; }
  @media screen and (max-width: 479px) {
    #storyWrap_id {
      padding: 10rem 5% 0; } }
  #storyWrap_id .ttlDeco02 {
    margin: 3em auto 0.5em;
    font-size: 2.3rem; }
    @media screen and (max-width: 479px) {
      #storyWrap_id .ttlDeco02 {
        padding: 0; } }
  #storyWrap_id .ttlDeco02:nth-of-type(2) {
    margin: 1.7em auto 0.5em; }
    @media screen and (max-width: 479px) {
      #storyWrap_id .ttlDeco02:nth-of-type(2) {
        padding: 0; } }
  #storyWrap_id .ttlDeco02:nth-of-type(3) {
    margin: 5em auto 0.5em; }
    @media screen and (max-width: 479px) {
      #storyWrap_id .ttlDeco02:nth-of-type(3) {
        margin: 4em auto 0.5em;
        padding: 0; } }
  #storyWrap_id .storyWrap {
    display: flex;
    justify-content: space-between;
    max-width: 1020px;
    margin: 23px auto 0;
    text-align: left;
    align-items: center; }
    @media screen and (max-width: 1279px) {
      #storyWrap_id .storyWrap {
        display: block; } }
    #storyWrap_id .storyWrap .img {
      position: relative;
      width: 333px; }
      @media screen and (max-width: 1279px) {
        #storyWrap_id .storyWrap .img {
          margin: 40px auto 0; } }
      #storyWrap_id .storyWrap .img::before {
        content: "";
        display: block;
        padding-top: 136.63%; }
      #storyWrap_id .storyWrap .img a {
        display: block;
        transition: all .3s ease-in-out; }
        #storyWrap_id .storyWrap .img a:hover {
          opacity: 0.7; }
          @media screen and (max-width: 849px) {
            #storyWrap_id .storyWrap .img a:hover {
              transition: none; } }
          #storyWrap_id .storyWrap .img a:hover .v2 {
            opacity: 0; }
            @media screen and (max-width: 849px) {
              #storyWrap_id .storyWrap .img a:hover .v2 {
                opacity: 1; } }
      #storyWrap_id .storyWrap .img .in {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../images/story_img_bg.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center; }
      #storyWrap_id .storyWrap .img img {
        width: 320px;
        padding: 13px 0 0 13px; }
    #storyWrap_id .storyWrap .txt {
      max-width: 666px; }
      @media screen and (max-width: 1279px) {
        #storyWrap_id .storyWrap .txt {
          margin: 40px auto 0; } }

/*storyWrap_id*/
/********************

castWrap

*********************/
#castWrap_id {
  width: 100%;
  margin: 90px auto 0;
  padding: 8rem 0 0 0;
  text-align: left;
  background: url("../images/bg1.png") center 0/600px auto repeat-x;
  /*castWrap*/
  /*txtCast*/ }
  #castWrap_id .ttlDeco02 {
    margin: 3em auto 0.5em;
    font-size: 2.3rem; }
    @media screen and (max-width: 479px) {
      #castWrap_id .ttlDeco02 {
        padding: 0; } }
  #castWrap_id .ttlDeco02:nth-of-type(2) {
    margin: 1.7em auto 0.5em; }
    @media screen and (max-width: 479px) {
      #castWrap_id .ttlDeco02:nth-of-type(2) {
        padding: 0; } }
  #castWrap_id .ttlDeco02:nth-of-type(3) {
    margin: 5em auto 0.5em; }
    @media screen and (max-width: 479px) {
      #castWrap_id .ttlDeco02:nth-of-type(3) {
        margin: 4em auto 0.5em;
        padding: 0; } }
  #castWrap_id .castWrap {
    margin: 50px auto 0;
    padding: 0 50px; }
    @media screen and (max-width: 849px) {
      #castWrap_id .castWrap {
        padding: 0;
        margin: 50px 5% 0; } }
    #castWrap_id .castWrap .cast1 {
      font-size: 1.4rem;
      line-height: 3em;
      text-align: center; }
      #castWrap_id .castWrap .cast1 span {
        font-size: 2.0rem; }
    #castWrap_id .castWrap .cast2 {
      font-size: 1.4rem;
      line-height: 2em; }
    #castWrap_id .castWrap .staff {
      font-size: 1.4rem;
      text-align: center;
      line-height: 2.8em; }
    #castWrap_id .castWrap .imgBox {
      display: flex; }
    #castWrap_id .castWrap .nowrap {
      white-space: nowrap; }
    #castWrap_id .castWrap .decoBr {
      display: none; }
      @media screen and (max-width: 1200px) {
        #castWrap_id .castWrap .decoBr {
          display: block; } }
      @media screen and (max-width: 849px) {
        #castWrap_id .castWrap .decoBr {
          display: none; } }
    #castWrap_id .castWrap .txt {
      font-size: 2.3rem;
      line-height: 1.3em;
      font-weight: bold; }
    #castWrap_id .castWrap .txt2 {
      margin-top: 5px;
      font-size: 1.4rem;
      line-height: 1.3em; }
    #castWrap_id .castWrap .txt3 {
      margin-bottom: 5px;
      line-height: 1em !important;
      background: #f90000;
      padding: 5px 0;
      font-size: 3rem;
      font-weight: bold; }
    #castWrap_id .castWrap .flexBox {
      display: flex;
      margin: 2em auto 0;
      justify-content: center;
      flex-wrap: nowrap; }
      @media screen and (max-width: 849px) {
        #castWrap_id .castWrap .flexBox {
          display: block; } }
      #castWrap_id .castWrap .flexBox .box {
        max-width: 260px;
        /*400*/
        width: 29%;
        text-align: center; }
        #castWrap_id .castWrap .flexBox .box::after {
          content: '';
          display: inline-block;
          width: 100%;
          height: 11%;
          background-image: url("../images/deco_cast.png");
          background-repeat: no-repeat;
          background-size: contain;
          vertical-align: middle;
          margin: 10px 0 0 0; }
        @media screen and (max-width: 849px) {
          #castWrap_id .castWrap .flexBox .box {
            width: auto;
            margin: 0 auto; } }
      #castWrap_id .castWrap .flexBox .box .img {
        position: relative;
        margin-bottom: 5px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        background: url("../images/img_cast_bg.png") no-repeat 0 0/cover;
        padding: 0 0 2%; }
        @media screen and (max-width: 849px) {
          #castWrap_id .castWrap .flexBox .box .img {
            cursor: pointer; } }
        @media screen and (max-width: 479px) {
          #castWrap_id .castWrap .flexBox .box .img {
            margin-bottom: 10px; } }
        #castWrap_id .castWrap .flexBox .box .img img {
          width: 85.5%;
          padding: 24.3% 0 0 0; }
        #castWrap_id .castWrap .flexBox .box .img:hover {
          transition: all .3s ease-in-out; }
          @media screen and (max-width: 849px) {
            #castWrap_id .castWrap .flexBox .box .img:hover {
              transition: none; } }
          #castWrap_id .castWrap .flexBox .box .img:hover .v2 {
            opacity: 0; }
            @media screen and (max-width: 849px) {
              #castWrap_id .castWrap .flexBox .box .img:hover .v2 {
                opacity: 1; } }
      #castWrap_id .castWrap .flexBox .box p {
        line-height: 1.2em; }
        @media screen and (max-width: 479px) {
          #castWrap_id .castWrap .flexBox .box p .font-20 {
            font-size: 2.2rem; } }
    #castWrap_id .castWrap .flexBox01 .box {
      margin: 0 20px 1.5em; }
      @media screen and (max-width: 849px) {
        #castWrap_id .castWrap .flexBox01 .box {
          margin: 0 auto 1.5em; } }
    #castWrap_id .castWrap .space1 {
      padding-top: 4em; }
    #castWrap_id .castWrap .flexBox02 {
      max-width: 1024px; }
    #castWrap_id .castWrap .deco01 {
      color: #bfbfbf;
      text-align: center; }
  #castWrap_id .otherCast .txt {
    text-align: center; }
  #castWrap_id .txtCast {
    text-align: center;
    margin-top: 2em; }
    @media screen and (max-width: 849px) {
      #castWrap_id .txtCast {
        margin-top: 0; } }
    #castWrap_id .txtCast h4 {
      font-weight: bold;
      font-size: 1.5em;
      margin-top: 2em;
      margin-bottom: 0.5em; }
    #castWrap_id .txtCast .box {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; }
    #castWrap_id .txtCast .box div {
      font-size: 2.1rem;
      font-weight: bold;
      color: #fee0e4;
      margin: 0.5em 0.5em;
      line-height: 1.8em; }
  #castWrap_id .staffWrap {
    text-align: center; }
    @media screen and (max-width: 849px) {
      #castWrap_id .staffWrap {
        margin-top: 50px; } }
    #castWrap_id .staffWrap .txt {
      line-height: 1.6em;
      color: #563c12; }

/*castWrap_id*/
.modaal-gallery-item img {
  max-height: calc(100vh - 10vh); }

.modaal-inner-wrapper {
  padding-top: 0;
  padding-bottom: 0; }

.modaal-close:before, .modaal-close:after {
  background: #d0a658; }

.modaal-close:focus, .modaal-close:hover {
  background: #d0a658; }

.modaal-gallery-control:before, .modaal-gallery-control:after {
  background: #d0a658; }

.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  background: #d0a658; }

.modaal-container {
  background: none; }

/********************

goodsWrap

*********************/
#goodsWrap_id {
  width: 100%;
  margin: 90px auto 0;
  padding: 8rem 0 0 0;
  text-align: left;
  background: url("../images/bg1.png") center 0/600px auto repeat-x;
  /*castWrap*/
  /*txtCast*/ }
  #goodsWrap_id .ttlDeco02 {
    margin: 3em auto 0.5em;
    font-size: 2.3rem; }
    @media screen and (max-width: 479px) {
      #goodsWrap_id .ttlDeco02 {
        padding: 0; } }
  #goodsWrap_id .ttlDeco02:nth-of-type(2) {
    margin: 1.7em auto 0.5em; }
    @media screen and (max-width: 479px) {
      #goodsWrap_id .ttlDeco02:nth-of-type(2) {
        padding: 0; } }
  #goodsWrap_id .ttlDeco02:nth-of-type(3) {
    margin: 5em auto 0.5em; }
    @media screen and (max-width: 479px) {
      #goodsWrap_id .ttlDeco02:nth-of-type(3) {
        margin: 4em auto 0.5em;
        padding: 0; } }
  #goodsWrap_id .goodsWrap {
    margin: 50px auto 0;
    padding: 0 50px;
    font-feature-settings: initial; }
    @media screen and (max-width: 849px) {
      #goodsWrap_id .goodsWrap {
        padding: 0;
        margin: 50px 5% 0; } }
    #goodsWrap_id .goodsWrap .cast1 {
      font-size: 1.4rem;
      line-height: 3em;
      text-align: center; }
      #goodsWrap_id .goodsWrap .cast1 span {
        font-size: 2.0rem; }
    #goodsWrap_id .goodsWrap .cast2 {
      font-size: 1.4rem;
      line-height: 2em; }
    #goodsWrap_id .goodsWrap .staff {
      font-size: 1.4rem;
      text-align: center;
      line-height: 2.8em; }
    #goodsWrap_id .goodsWrap .imgBox {
      display: flex; }
    #goodsWrap_id .goodsWrap .nowrap {
      white-space: nowrap; }
    #goodsWrap_id .goodsWrap .decoBr {
      display: none; }
      @media screen and (max-width: 1200px) {
        #goodsWrap_id .goodsWrap .decoBr {
          display: block; } }
      @media screen and (max-width: 849px) {
        #goodsWrap_id .goodsWrap .decoBr {
          display: none; } }
    #goodsWrap_id .goodsWrap .txt {
      font-size: 2.3rem;
      line-height: 1.3em;
      font-weight: bold; }
    #goodsWrap_id .goodsWrap .txt2 {
      margin-top: 5px;
      font-size: 1.4rem;
      line-height: 1.3em; }
      @media screen and (max-width: 849px) {
        #goodsWrap_id .goodsWrap .txt2 {
          font-size: 1.6rem; } }
    #goodsWrap_id .goodsWrap .txt3 {
      margin-bottom: 5px;
      line-height: 1em !important;
      background: #f90000;
      padding: 5px 0;
      font-size: 3rem;
      font-weight: bold; }
    #goodsWrap_id .goodsWrap .flexBox {
      display: flex;
      max-width: 1020px;
      margin: 2em auto 0;
      justify-content: space-between;
      flex-wrap: nowrap; }
      @media screen and (max-width: 849px) {
        #goodsWrap_id .goodsWrap .flexBox {
          display: block; } }
      #goodsWrap_id .goodsWrap .flexBox .box {
        max-width: 480px;
        width: 48%;
        text-align: center; }
        @media screen and (max-width: 849px) {
          #goodsWrap_id .goodsWrap .flexBox .box {
            width: auto;
            margin: 3em auto 0; } }
      #goodsWrap_id .goodsWrap .flexBox .box .img {
        position: relative;
        margin-bottom: 15px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        background: url("../images/goods_bg.png") no-repeat 0 0/cover;
        padding: 0 0 2.8%; }
        @media screen and (max-width: 849px) {
          #goodsWrap_id .goodsWrap .flexBox .box .img {
            cursor: pointer; } }
        @media screen and (max-width: 479px) {
          #goodsWrap_id .goodsWrap .flexBox .box .img {
            margin-bottom: 10px; } }
        #goodsWrap_id .goodsWrap .flexBox .box .img img {
          width: 95%;
          padding: 2.5% 0 0 0; }
        #goodsWrap_id .goodsWrap .flexBox .box .img:hover {
          transition: all .3s ease-in-out; }
          @media screen and (max-width: 849px) {
            #goodsWrap_id .goodsWrap .flexBox .box .img:hover {
              transition: none; } }
          #goodsWrap_id .goodsWrap .flexBox .box .img:hover .v2 {
            opacity: 0; }
            @media screen and (max-width: 849px) {
              #goodsWrap_id .goodsWrap .flexBox .box .img:hover .v2 {
                opacity: 1; } }
      #goodsWrap_id .goodsWrap .flexBox .box p {
        line-height: 1.2em; }
        @media screen and (max-width: 479px) {
          #goodsWrap_id .goodsWrap .flexBox .box p .font-20 {
            font-size: 2.2rem; } }
      #goodsWrap_id .goodsWrap .flexBox .box .price {
        text-align: right;
        margin: 5px 0 0 0;
        font-size: 1.4rem; }
        #goodsWrap_id .goodsWrap .flexBox .box .price span {
          font-size: 1.8rem; }
      #goodsWrap_id .goodsWrap .flexBox .box .txt2 {
        text-align: left;
        margin: 5px 0 0 0; }
    #goodsWrap_id .goodsWrap .space1 {
      padding-top: 4em; }
    #goodsWrap_id .goodsWrap .flexBox02 {
      max-width: 1024px; }
    #goodsWrap_id .goodsWrap .deco01 {
      color: #bfbfbf;
      text-align: center; }
  #goodsWrap_id .otherCast .txt {
    text-align: center; }
  #goodsWrap_id .txtCast {
    text-align: center;
    margin-top: 2em; }
    @media screen and (max-width: 849px) {
      #goodsWrap_id .txtCast {
        margin-top: 0; } }
    #goodsWrap_id .txtCast h4 {
      font-weight: bold;
      font-size: 1.5em;
      margin-top: 2em;
      margin-bottom: 0.5em; }
    #goodsWrap_id .txtCast .box {
      display: flex;
      flex-wrap: wrap;
      justify-content: center; }
    #goodsWrap_id .txtCast .box div {
      font-size: 2.1rem;
      font-weight: bold;
      color: #fee0e4;
      margin: 0.5em 0.5em;
      line-height: 1.8em; }
  #goodsWrap_id .staffWrap {
    text-align: center; }
    @media screen and (max-width: 849px) {
      #goodsWrap_id .staffWrap {
        margin-top: 50px; } }
    #goodsWrap_id .staffWrap .txt {
      line-height: 1.6em;
      color: #563c12; }

/*castWrap_id*/
.modaal-gallery-item img {
  max-height: calc(100vh - 10vh); }

.modaal-inner-wrapper {
  padding-top: 0;
  padding-bottom: 0; }

.modaal-close:before, .modaal-close:after {
  background: #d0a658; }

.modaal-close:focus, .modaal-close:hover {
  background: #d0a658; }

.modaal-gallery-control:before, .modaal-gallery-control:after {
  background: #d0a658; }

.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  background: #d0a658; }

.modaal-container {
  background: none; }

/********************

attentionWrap

*********************/
#linkRepeat {
  position: absolute;
  top: -100px;
  left: 0; }

#attentionWrap_id {
  width: 100%;
  margin: 90px auto 0;
  padding: 8rem 0 0 0;
  text-align: left;
  background: url("../images/bg1.png") center 0/600px auto repeat-x;
  font-feature-settings: initial; }

.attentionWrap {
  max-width: 1020px;
  margin: 0 auto;
  text-align: left; }
  @media screen and (max-width: 849px) {
    .attentionWrap {
      padding: 0;
      margin: 50px 5% 0; } }

#attentionWrap_id .firstWrap {
  line-height: 1.9em; }

#attentionWrap_id .storyWrap {
  line-height: 1.9em; }

#attentionWrap_id dl.box {
  margin-top: 9rem; }
  @media screen and (max-width: 1279px) {
    #attentionWrap_id dl.box {
      margin-top: 5rem; } }
  #attentionWrap_id dl.box dt {
    font-weight: bold;
    font-size: 2rem;
    margin: 4.0rem 0 0 0;
    position: relative;
    padding-left: 1em;
    text-indent: -1em; }
  #attentionWrap_id dl.box dd {
    font-family: "source-han-sans-japanese",sans-serif;
    margin: 1.0rem 0 0 1.2em; }
    #attentionWrap_id dl.box dd .ttl {
      font-size: 1.8rem;
      font-weight: bold;
      font-family: "游明朝体", YuMincho, serif; }

.attentionWrap #popup {
  display: none; }

.popupIn {
  background: #000;
  padding: 3em 2em;
  color: #fbe3e3;
  font-family: "source-han-sans-japanese",sans-serif;
  font-feature-settings: initial; }
  .popupIn .listBox li {
    margin-bottom: 0.5em; }
  .popupIn .ttl {
    font-weight: bold;
    font-size: 2.5rem;
    margin: 1rem 0 4rem 0;
    text-align: center;
    font-family: "游明朝体", YuMincho, serif;
    color: #d0a658;
    line-height: 1.3em; }
  .popupIn .subttl {
    color: #d0a658;
    margin: 3rem 0 0 0; }

.modaal-content-container {
  padding: 30px 0; }

.attentionWrap .listBox li {
  margin-bottom: 0.5em; }

.attentionWrap .smallCon {
  margin: 0 2em; }
  @media screen and (max-width: 479px) {
    .attentionWrap .smallCon {
      margin: 0; } }

/********************

ticketWrap

*********************/
#ticketWrap_id {
  color: #fff;
  width: 100%;
  padding: 9rem 5% 6em;
  margin: 90px auto 0;
  text-align: left;
  background: url("../images/bg2.png") center 0/600px auto repeat-x #fff;
  /*box*/ }
  @media screen and (max-width: 1279px) {
    #ticketWrap_id {
      padding: 8rem 5% 5em; } }
  @media screen and (max-width: 849px) {
    #ticketWrap_id {
      margin: 90px auto 0;
      padding: 10rem 5% 5em; } }
  #ticketWrap_id .ticketWrap {
    max-width: 1020px;
    margin: 0 auto;
    text-align: left; }
  #ticketWrap_id .box {
    color: #0d0d0d;
    display: flex;
    line-height: 1.9em;
    align-items: flex-start;
    justify-content: space-between;
    margin: 70px auto 0; }
    @media screen and (max-width: 1279px) {
      #ticketWrap_id .box {
        display: block; } }
    #ticketWrap_id .box .ttlDeco02 {
      border: 1px solid #d0a658;
      /* 内側の線になる一本線の枠線をひく*/
      margin: 2px;
      /* 外側の線の場所をつくる */
      position: relative;
      /* 外側の線の場所を調整する時の基準点になるようにする*/
      font-size: 2.3rem;
      width: 280px;
      line-height: 1em;
      padding: 0.3em 0; }
      @media screen and (max-width: 1279px) {
        #ticketWrap_id .box .ttlDeco02 {
          text-align: center;
          margin: 0 auto; } }
      #ticketWrap_id .box .ttlDeco02::before {
        content: '';
        /* 擬似要素に実体を持たせる */
        width: calc(100% + 14px);
        /* 外側の線になる要素の幅を指定する*/
        height: calc(100% + 14px);
        /* 外側の線になる要素の高さを指定する */
        border: 3px solid #d0a658;
        /* 外側の線になる一本線の枠線をひく*/
        position: absolute;
        /* 外側の線の位置を自由に動かせるようにする */
        top: -7px;
        /* 外側の線の位置を、内側の線から上に3pxずらす */
        left: -7px;
        /* 外側の線の位置を、内側の線から左に3pxずらす*/ }
    #ticketWrap_id .box .desBox {
      width: 690px;
      text-align: left;
      margin: 0.3em 0 0; }
      @media screen and (max-width: 1279px) {
        #ticketWrap_id .box .desBox {
          margin: 50px auto 0; } }
      @media screen and (max-width: 849px) {
        #ticketWrap_id .box .desBox {
          width: auto; } }
      #ticketWrap_id .box .desBox .ttl {
        font-size: 2.3rem;
        font-weight: bold;
        position: relative;
        margin: 1.8em 0 0.2em 15px; }
        #ticketWrap_id .box .desBox .ttl::before {
          position: absolute;
          top: 0;
          bottom: 0;
          left: -15px;
          content: '';
          display: inline-block;
          background: #0d0d0d;
          height: 70%;
          width: 7px;
          margin: auto 0; }
        #ticketWrap_id .box .desBox .ttl:nth-of-type(1) {
          margin: 0 0 0.2em 15px; }
      #ticketWrap_id .box .desBox .txt {
        font-size: 1.8rem; }
      #ticketWrap_id .box .desBox .listBox {
        font-size: 1.8rem;
        font-feature-settings: normal; }
    @media screen and (max-width: 1279px) {
      #ticketWrap_id .box:nth-of-type(1) .desBox {
        text-align: center; } }
    #ticketWrap_id .box:nth-of-type(1) .desBox .txt {
      font-size: 2.3rem;
      line-height: 1em;
      margin: -1.5em 0 0 0; }
      #ticketWrap_id .box:nth-of-type(1) .desBox .txt .deco {
        font-size: 4.6rem; }
  #ticketWrap_id hr {
    margin: 3em auto; }
  #ticketWrap_id .list li {
    margin: 0 0 0.8em;
    line-height: 1.3em; }
  #ticketWrap_id .attention {
    text-align: left;
    font-size: 90%;
    max-width: 1020px;
    margin: 20px auto 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif; }
    #ticketWrap_id .attention ul {
      margin: 20px 0 0 1em; }
      #ticketWrap_id .attention ul li {
        padding-left: 1em;
        text-indent: -1em;
        margin: 0.5em 0 0 0; }
  @media screen and (max-width: 479px) {
    #ticketWrap_id .ttlDeco02 {
      margin-top: 3.5rem; } }
  #ticketWrap_id .ticketWrap .box {
    text-align: center; }
    #ticketWrap_id .ticketWrap .box .deco {
      line-height: 2.5em; }
  @media screen and (max-width: 849px) {
    #ticketWrap_id .ticketWrap .box .decoH {
      line-height: 2.3em; } }
  @media screen and (max-width: 1279px) {
    #ticketWrap_id .theaterWrap {
      margin-top: 20% !important; } }
  #ticketWrap_id .theaterWrap .tbl {
    width: 820px;
    margin: 50px auto 0;
    /* 地域別BGカラー
    --------------------------------*/ }
    #ticketWrap_id .theaterWrap .tbl tr {
      background: #fff; }
    #ticketWrap_id .theaterWrap .tbl tr.space td {
      height: 50px; }
    #ticketWrap_id .theaterWrap .tbl th {
      padding: 5px 8px;
      text-align: center;
      background: #f2eef0;
      vertical-align: central;
      border: 1px solid #d2d2d2;
      white-space: nowrap;
      vertical-align: middle; }
    #ticketWrap_id .theaterWrap .tbl td {
      padding: 5px 8px;
      text-align: left;
      vertical-align: central;
      border: 1px solid #d2d2d2;
      vertical-align: middle; }
    #ticketWrap_id .theaterWrap .tbl .tohoku {
      background: #facab0; }
    #ticketWrap_id .theaterWrap .tbl .kanto {
      background: #c3f0cc; }
    #ticketWrap_id .theaterWrap .tbl .chubu {
      background: #d1eff5; }
    #ticketWrap_id .theaterWrap .tbl .kansai {
      background: #ecd9e5; }
    #ticketWrap_id .theaterWrap .tbl .chugoku {
      background: #fee6a6; }
    #ticketWrap_id .theaterWrap .tbl .kyushu {
      background: #c8deef; }
    #ticketWrap_id .theaterWrap .tbl .ticketMae {
      width: 67px;
      height: 15px;
      background: url(../images/ticket_maeuri.gif) no-repeat;
      float: left;
      margin: 2px; }
    #ticketWrap_id .theaterWrap .tbl .ticketMae span {
      visibility: hidden;
      font-size: 1px;
      line-height: 1px; }
    #ticketWrap_id .theaterWrap .tbl .ticketMae a {
      display: block; }

/*#ticketWrap_id*/
/********************

footer wrap

*********************/
footer {
  color: #FFFFFF; }

footer a {
  text-decoration: none;
  color: #FFFFFF; }

footer a.link {
  text-decoration: underline; }

footer .flexBox {
  padding: 5em 0 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; }
  @media screen and (max-width: 849px) {
    footer .flexBox {
      display: block;
      margin: 0 5%;
      padding: 2em 0 20px; } }
  footer .flexBox p {
    line-height: 1.4em;
    text-align: left;
    padding: 0 20px 0 0; }
    @media screen and (max-width: 849px) {
      footer .flexBox p {
        padding: 0 0 0 0;
        text-align: center; } }
  footer .flexBox .contact {
    font-size: 1.6rem; }
    @media screen and (max-width: 849px) {
      footer .flexBox .contact {
        margin: 0 0 2em; } }
  footer .flexBox .banner {
    max-width: 180px; }
    @media screen and (max-width: 849px) {
      footer .flexBox .banner {
        text-align: center;
        margin: 0 auto; } }

.pagetop {
  margin-top: 8em;
  margin: 5em auto 0;
  width: 40px;
  text-align: center; }
  .pagetop a {
    display: block; }

/********************

policy wrap

*********************/
header.policy {
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  margin: 10px 0 0 10px;
  text-align: left;
  letter-spacing: -0.0px;
  line-height: 1.1em;
  font-weight: 700; }
  header.policy .font-10 {
    display: inline-block;
    margin: 0 0 0 0.7rem; }
  header.policy a {
    text-decoration: none; }

section.policy {
  max-width: 1020px;
  margin: 12rem auto 0;
  text-align: left; }
  @media screen and (max-width: 1279px) {
    section.policy {
      padding: 0 5%; } }

.policyWrap {
  margin-top: 9rem;
  font-family: "source-han-sans-japanese",sans-serif; }
  .policyWrap .box {
    margin-top: 5rem;
    margin-bottom: 5rem;
    text-align: right;
    line-height: 1.8em; }

.back {
  margin-top: 7rem;
  margin-bottom: 3rem;
  text-align: center;
  font-family: "source-han-sans-japanese",sans-serif; }

.notice {
  max-width: 1020px;
  margin: 10rem auto 0;
  text-align: left;
  border: solid 1px #fff;
  width: 60%;
  padding: 5rem; }
  @media screen and (max-width: 849px) {
    .notice {
      width: 70%;
      padding: 3rem; } }
  @media screen and (max-width: 479px) {
    .notice {
      width: 80%;
      padding: 2rem;
      font-size: 0.85em; } }

.notice2 {
  max-width: 1020px;
  margin: 10rem auto 0;
  text-align: left;
  border: solid 1px #fff;
  width: 60%;
  padding: 5rem; }

@media screen and (max-width: 849px) {
  .notice2 {
    width: 70%;
    padding: 3rem; } }
@media screen and (max-width: 479px) {
  .notice2 {
    width: 80%;
    padding: 2rem;
    font-size: 0.85em; } }
.txtWait {
  width: 427px;
  margin: 150px auto 0; }
  @media screen and (max-width: 849px) {
    .txtWait {
      width: 70%;
      margin: 20% auto 0; } }
