@charset "UTF-8";
*:focus {
  outline: none; }

html, body {
  height: 100%; }

html {
  min-height: 100%; }

body > .wrap {
  height: auto; }

html {
  height: 100%;
  font-size: 62.5%;
  /* font-sizeは16pxの62.5%の10px */ }

body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: #fff;
  font-size: 1.5rem;
  /* 15px */
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  color: #000;
  margin: 0;
  padding: 0;
  min-width: inherit;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  /*-ms-overflow-style: none;*/
  /*Firefoxへの対応*/
  /*scrollbar-width: none;*/ }

/*Google Chrome、Safariへの対応*/
/*body::-webkit-scrollbar{
  display: none;
}*/
img {
  max-width: 100%;
  height: auto; }

a img {
  border: none; }

/*---PCは非表示、SPは表示---*/
.is-pc {
  display: none; }

.is-sp {
  display: block; }

/*---loading---*/
.loadingOverlay {
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 100;
  color: #000;
  background: #fff; }

.loader,
.loader:after {
  border-radius: 50%;
  width: 8em;
  height: 8em; }

.loader {
  margin: 60px auto;
  font-size: 8px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.8em solid rgba(186, 0, 10, 0.2);
  border-right: 0.8em solid rgba(186, 0, 10, 0.2);
  border-bottom: 0.8em solid rgba(186, 0, 10, 0.2);
  border-left: 0.8em solid #ba000a;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.4s infinite linear;
  animation: load8 1.4s infinite linear; }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
.loader.is-show,
.loadingLogo.is-show {
  display: none; }

.loadingOverlay.is-show {
  display: none; }

/*--- wrap ---*/
.wrap {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  position: relative;
  font-family: YakuHanJPs, "Noto Sans JP", sans-serif; }

/*----------------------------
ナビゲーション用ボタン
-----------------------------*/
.nav_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  position: fixed;
  width: 60px;
  height: 60px;
  right: 3px;
  top: 3px;
  box-sizing: border-box;
  border-radius: 50%;
  padding: 5px 15px;
  background: rgba(119, 0, 7, 0.6);
  background-size: 100%;
  z-index: 99;
  transition: ease .5s;
  cursor: pointer; }

.nav_btn.is-open {
  background: #8b0008; }

.navbar_toggle {
  z-index: 999; }

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #fff;
  -webkit-transition: ease .5s;
  transition: ease .5s; }

.navbar_toggle_icon:nth-child(1) {
  top: 0; }

.navbar_toggle_icon:nth-child(2) {
  margin: 8px 0; }

.navbar_toggle_icon:nth-child(3) {
  top: 0; }

/*ハンバーガーメニューの開閉*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg); }

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0; }

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg); }

.navbar_toggle {
  margin: 0 0 0 auto; }

.condensed {
  width: 100%; }

@media screen and (max-width: 560px) {
  .condensed {
    transform: scale(0.8, 1);
    transform-origin: 0 0;
    width: 125%; } }
/*----- header -----*/
.header {
  display: flex;
  width: 100%;
  height: auto;
  margin: 0 0 6vw 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  background: #222222;
  position: relative; }
  .header .logo {
    width: 30%;
    max-width: 200px; }

.pageTit {
  display: block;
  width: 26%;
  max-width: 160px;
  margin: 0 auto 30px auto;
  position: relative; }

/*----- 本文用 -----*/
.newsInner {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding: 15px 0 18px 0;
  position: relative; }
  .newsInner .date {
    display: block;
    width: 44%;
    max-width: 430px;
    background: #de9100;
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    line-height: 1.0;
    color: #fff;
    padding: 14px 0 14px 30px; }
  .newsInner h2 {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 16px 30px;
    font-size: 2.0rem;
    line-height: 1.68;
    font-family: YakuHanMPs, "Noto Serif JP", serif;
    font-weight: 600; }
  @media screen and (max-width: 560px) {
    .newsInner h2 {
      transform: scale(0.85, 1);
      transform-origin: 0 0;
      width: 118%; } }
  .newsInner .newsTxt {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px 20px 30px; }
    .newsInner .newsTxt a {
      color: #d10000;
      text-decoration: underline; }
    .newsInner .newsTxt a:hover {
      color: #de9100;
      text-decoration: underline; }
  .newsInner .caption {
    font-size: 1.3rem;
    line-height: 1.5; }

.copyright {
  display: block;
  width: 50%;
  max-width: 300px;
  margin: 20px auto 40px auto; }
  .copyright img {
    width: 100%;
    padding-bottom: 40px; }

/*----- 本文内画像指定 -----*/
img.w_100 {
  width: 100%; }

img.w_90 {
  width: 100%;
  max-width: 580px; }

img.w_80 {
  width: 100%;
  max-width: 560px; }

img.w_70 {
  width: 95%;
  max-width: 540px; }

img.w_60 {
  width: 80%;
  max-width: 500px; }

img.w_50 {
  width: 75%;
  max-width: 500px; }

img.w_45 {
  width: 70%;
  max-width: 480px; }

img.w_40 {
  width: 65%;
  max-width: 440px; }

img.w_30 {
  width: 60%;
  max-width: 400px; }

.sp_taC {
  text-align: center; }

.photo_flex {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 20px 0;
  padding: 0; }
  .photo_flex img {
    width: 100%;
    height: auto;
    margin: 0 0 16px 0; }
  .photo_flex .flex_photo {
    width: 100%;
    max-width: 640px;
    height: auto;
    margin: 0 auto 16px auto;
    text-align: center; }
    .photo_flex .flex_photo img {
      width: 100%; }

/*----------
   TABLET
----------*/
@media screen and (min-width: 600px) and (max-width: 799px) {
  .is-sp {
    display: none; }

  .is-pc {
    display: block; } }
@media screen and (min-width: 800px) and (max-width: 1023px) {
  .is-sp {
    display: none; }

  .is-pc {
    display: block; } }
/*----------
   PC
----------*/
@media screen and (min-width: 1024px) {
  body {
    font-size: 1.6;
    line-height: 1.8; }

  /*---PCは表示、SPは非表示---*/
  .is-pc {
    display: block; }

  /*PCのみ表示の時*/
  .is-sp {
    display: none; }

  /*スマホのみ表示の時*/
  .nav_btn {
    right: 10px;
    top: 10px; }

  .navLogo {
    margin: 50px auto 20px auto;
    padding: 0 0; }

  /*----
  		.nav ul.navList {
  				display: flex;
  				flex-wrap: wrap;
  				justify-content: center;
  				align-content: flex-start;
  				width: 900px;
  				height: auto;
  				padding: 0 0 0 0;
  				margin: 0 auto;
  				line-height: 1.0;
  		}
  
  		.nav ul.navList > li {
  				display: flex;
  				width: auto;
  				margin: 10px 8px;
  				padding: 0;
  				text-align: center;
  				line-height: 1.0;
  				border-bottom: 0;
  		}
  		
  		li.slash{
  			display: flex;
  			width:18px!important;
  			height: 32px!important;
  			margin:0;
  			padding: 0;
  			background:url("../img/common/slash2.svg") center center no-repeat;
  			background-size: 100%;
  			opacity: 0.5;
  		}
  
  
  		.nav ul.navList > li.goHome{
  				width: 100%;
  				padding: 0 100px;}
  
  		.nav ul.navList > li a {
  				display: block;
  				width: 100%;
  				height: auto;
  				padding: 10px 6px;
  				margin: 0;
  				text-align: center;
  				text-decoration: none;
  				transition: 0.5s ease;
  				font-size: 1.8rem;
  		}
  		
  		.nav ul.navList > li.goHome a {
  				width: 140px;
  				height: auto;
  				padding: 26px 6px 0 6px;
  				margin: 0 auto;
  				text-align: center;
  				text-decoration: none;
  				transition: 0.5s ease;
  		}
  
  		.nav ul.navList > li a img{
  			width: auto;
  			height: 40px;
  			transition: 0.3s ease;
  		}
  		
  		.nav ul.navList > li a:hover,
  		.nav ul.navList > li a:hover img{
  			opacity: 0.6;
  		}
  		
  		--*/
  /* PCナビゲーション ここまで */
  /*----- header -----*/
  .header {
    background-size: auto 100%;
    margin-bottom: 70px; }

  /*----- 本文用 -----*/
  .newsInner {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 30px auto;
    padding: 15px 0 18px 0;
    position: relative; }
    .newsInner .date {
      display: block;
      width: 44%;
      max-width: 430px;
      background: #de9100;
      font-family: 'Crimson Text', serif;
      font-size: 2.0rem;
      line-height: 1.0;
      color: #fff;
      padding: 14px 0 14px 40px;
      margin-left: -20px; }
    .newsInner h2 {
      display: block;
      width: 100%;
      margin: 0 auto;
      padding: 20px 56px;
      font-size: 2.0rem;
      line-height: 1.8;
      font-family: YakuHanMPs, "Noto Serif JP", serif; }
    .newsInner .newsTxt {
      padding: 0 56px 20px 56px; }
    .newsInner .caption {
      font-size: 1.36rem;
      line-height: 1.5; }

  /*----- 本文内画像指定 -----*/
  img.w_100 {
    width: 100%; }

  img.w_90 {
    width: 90%; }

  img.w_80 {
    width: 80%; }

  img.w_70 {
    width: 70%; }

  img.w_60 {
    width: 60%; }

  img.w_50 {
    width: 50%; }

  img.w_45 {
    width: 45%; }

  img.w_40 {
    width: 40%; }

  img.w_30 {
    width: 30%; }

  .sp_taC {
    text-align: left; }

  .photo_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
    text-align: center;
    padding: 0; }
    .photo_flex img {
      width: 49%;
      height: auto;
      margin: 0 0.5% 16px 0.5%;
      text-align: center; }
    .photo_flex .flex_photo {
      width: 49%;
      height: auto;
      margin: 0 auto 16px auto;
      text-align: center; }
      .photo_flex .flex_photo img {
        width: 100%; } }
/*---etc.---*/
.photo_flex2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 760px !important;
  height: auto;
  margin: 0 auto 20px auto;
  padding: 0; }
  .photo_flex2 img {
    width: 49.4%;
    height: auto;
    margin: 0 0 8px 0; }
  .photo_flex2 .flex_photo {
    width: 49.4%;
    height: auto;
    margin: 0 auto 16px auto;
    text-align: center; }
    .photo_flex2 .flex_photo img {
      width: 100%; }
  .photo_flex2 img.lge {
    width: 100%;
    height: auto;
    margin: 0 0 12px 0; }

hr.newsborder {
  width: 88%;
  height: 1px;
  margin: -8px auto 12px auto;
  background-color: #999999; }

.movieBox {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: center; }

.trailer {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 10px 0 10px 0;
  background: transparent;
  text-align: center;
  position: relative; }

.player {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 20px;
  height: 0;
  overflow: hidden; }

.player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.pagetop {
  width: 60px;
  height: 60px;
  bottom: 10px;
  right: 10px;
  position: fixed; }
  .pagetop img {
    width: 60px; }

.btList {
  display: block;
  margin: 20px auto 10px auto;
  width: auto;
  /*text-align: center;*/
  position: relative; }

.btList a {
  line-height: 1;
  display: inline-block;
  width: auto;
  position: relative;
  border-radius: 30px;
  padding: 15px 40px 15px 20px;
  background-color: #000;
  text-decoration: none !important;
  text-align: left;
  color: #fff !important;
  font-weight: 500;
  margin: 0 auto; }

.btList a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 17px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: #fff 2px solid;
  border-bottom: #fff 2px solid;
  transform: rotate(-45deg); }

.btList a:hover {
  background-color: #bb0103;
  text-decoration: none; }

.alphaBnr a img {
  transition: .3s; }

.alphaBnr a:hover img {
  opacity: 0.6; }

.fc_br {
  color: #7e2701; }

/*---------------------------------
      media
----------------------------------*/
.mediaBG {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100vh;
  background: #5f0200 url("../../img/common/grad_1.png") center bottom no-repeat;
  background-size: 100% 30vh;
  padding-bottom: 60px; }

/*----- table ----*/
.mediaBox table {
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  border-collapse: separate;
  border-spacing: 2px; }

.mediaBox table th {
  color: #fff;
  padding: 10px;
  background-color: #ab3643;
  text-align: center; }

.mediaBox table td {
  color: #000;
  padding: 10px;
  /*border: 1px solid rgba(198,93,0,0.70);*/
  background-color: rgba(255, 255, 255, 0.7); }

.newsTable th, .newsTable td {
  text-align: center;
  color: #000;
  font-weight: 400; }

/*----- w897 ----*/
@media only screen and (max-width: 460px) {
  .newsTable {
    margin: 0; }

  .newsTable tr {
    display: block;
    margin-bottom: 10px; }

  .newsTable th {
    display: none; }

  .newsTable td {
    display: list-item;
    list-style: none;
    width: 100%;
    border: none;
    text-align: left;
    vertical-align: middle;
    border-bottom: 2px dotted #6D080A;
    font-size: 1.36rem; }

  .newsTable td.time {
    border-bottom: none; }

  .newsTable td::before {
    content: attr(data-label);
    float: left;
    background: #ab3643;
    font-size: 1.36rem;
    /*font-weight: bold;*/
    color: #fff;
    padding: 2px 5px;
    height: 100%;
    margin-right: 10px;
    border-radius: 5px; }

  .newsPager {
    font-size: 12px; } }
.m_Title {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 1.0;
  position: relative; }
  .m_Title img {
    display: block;
    width: 40%;
    max-width: 200px;
    margin: 0 auto;
    padding: 0; }

.media {
  display: block;
  text-align: center;
  margin: 20px auto 10px auto;
  padding-top: 0;
  width: 90%;
  max-width: 900px;
  color: #000; }

.mediaList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto 10px auto;
  font-family: 'Noto Serif JP', serif; }

.mediaList div {
  display: flex;
  width: calc(18% - 6px);
  height: auto;
  justify-content: center;
  align-items: center;
  margin: 0 2px 1px 2px;
  font-size: 1.5rem; }

.mediaList div.lge {
  display: flex;
  width: calc(18% - 6px);
  height: auto;
  justify-content: center;
  align-items: center;
  margin: 0 2px 1px 2px;
  font-size: 1.5rem; }

.mediaList a {
  display: block;
  width: 100%;
  height: auto;
  background: #d18000;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  padding: 6px 0; }

.mediaList a:hover {
  color: #fff;
  background: #c62f00; }

.mediaList a.cs,
.mediaList a.cs:hover {
  background: rgba(198, 47, 0, 0.6);
  color: rgba(255, 255, 255, 0.4); }

.infoTxt {
  display: block;
  width: 88%;
  margin: 0 auto;
  font-size: 1.34rem;
  line-height: 1.6;
  text-align: left; }

@media screen and (max-width: 800px) {
  .media {
    display: block;
    text-alignt: center;
    margin: 0 auto 60px auto;
    padding-top: 20px;
    width: 90%;
    color: #000; }

  .mediaList {
    justify-content: center; }

  .mediaList div {
    display: flex;
    width: calc(50% - 6px);
    max-width: 300px;
    height: auto;
    margin-bottom: 4px;
    text-align: center; }

  .mediaList div.lge {
    display: flex;
    width: calc(100% - 6px);
    max-width: 606px;
    height: auto;
    text-align: center; }

  .mediaList a {
    padding: 5px 0; } }
.infoTxt {
  display: block;
  width: 88%;
  margin: 0 auto;
  font-size: 1.30rem;
  line-height: 1.6;
  text-align: left; }

.mediaBox {
  display: block;
  width: 100%;
  margin: 0;
  padding-top: 118px;
  max-width: 900px; }
  .mediaBox .box__1 {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    background: #ead7bb;
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto; }

.mediaBox#magazine {
  padding-top: 40px; }

.mediaTit {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #ab3643;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #FFF;
  padding: 10px 15px;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  color: #fff;
  /*margin-bottom: 5px;*/ }

.mediaTit span.update {
  font-size: 12px; }

.mediaWeb_tit {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 10px 20px;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  margin-bottom: 0; }

.media_Detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  border-bottom: 1px dotted rgba(154, 154, 154, 0.7);
  font-size: 1.4rem; }

.media_Detail dt {
  width: 12%;
  padding: 8px 0;
  font-weight: bold;
  color: #ac0014;
  font-family: 'Noto Serif JP', serif; }

.media_Detail dd {
  display: flex;
  width: 87%;
  padding: 8px 4px 8px 8px;
  border-bottom: 1px dotted rgba(154, 154, 154, 0.7);
  position: relative;
  text-indent: -1rem;
  padding-left: 1rem; }

.media_Detail dd:last-child {
  border-bottom: none; }

.weblist a {
  display: inline-block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 10px 30px 8px 18px;
  border-bottom: 1px dotted rgba(154, 154, 154, 0.7);
  position: relative;
  color: #000;
  text-decoration: none;
  text-align: left;
  font-size: 1.4rem; }

.weblist a.first {
  margin-top: -15px; }

.weblist a:hover {
  background: #ead7bb; }

.weblist a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 17px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: #ac0014 2px solid;
  border-bottom: #ac0014 2px solid;
  transform: rotate(-45deg); }

.tokuban_txt {
  font-size: 15px;
  line-height: 1.8;
  color: #fff; }

@media screen and (max-width: 897px) {
  .mediaBox {
    padding-top: 60px; }

  .mediaBox#magazine {
    padding-top: 20px; }

  .mediaTit span.update {
    font-size: 11px; }

  .media_Detail {
    justify-content: space-between;
    font-size: 14px; }

  .media_Detail dt {
    text-align: left;
    width: 100%;
    padding: 8px 10px 2px 10px; }

  .media_Detail dd {
    text-align: left;
    width: 100%;
    border-bottom: none;
    padding: 2px 4px 2px 16px; }

  .media_Detail dd:last-child {
    padding-bottom: 8px; }

  .weblist a {
    font-size: 14px; }

  .tokuban_txt {
    font-size: 14px; } }
.b_cast {
  padding-right: 10px;
  min-width: 80px; }

.mediaBox div.rBox {
  display: block;
  margin-bottom: 30px;
  padding: 24px;
  text-align: justify;
  border: 1px solid #80200a;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px; }

/*---------------------------------
      media-toggle
----------------------------------*/
.accordion_container {
  max-width: 800px;
  margin: 0 auto 2px auto; }

.accordion_title {
  background-color: #be003b;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 10px 5% 10px 3%;
  text-align: left;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s; }

.accordion_title:hover {
  opacity: 0.8; }

.icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 3%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s; }

.icon {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative; }

.accordion_title.open
.icon_wrap {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg); }

.icon:before, .icon:after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center; }

.icon:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px; }

.accordion_title.open
.icon_wrap .icon:before {
  content: none; }

.accordion_title.open
.icon_wrap .icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.accordion_inner {
  display: none;
  padding: 20px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-left: 1px solid #be003b;
  border-right: 1px solid #be003b;
  box-sizing: border-box; }

.ac_inner_wraper {
  height: auto; }

.bb_dot {
  border-bottom: 1px dotted #ca3469; }

p.txt_a_ac {
  margin: 0; }

@media screen and (max-width: 1024px) {
  .accordion_title {
    font-size: 1.7rem; }

  .icon_wrap {
    width: 30px;
    height: 30px;
    margin-top: -15px; } }
@media screen and (max-width: 767px) {
  .accordion_title {
    font-size: 1.6rem;
    text-align: left;
    padding: 15px 60px 15px 15px; } }
.notice_inner {
  display: block;
  width: 100% !important;
  margin: 0;
  padding: 0;
  position: relative;
  font-size: 1.28rem;
  line-height: 1.5; }
  .notice_inner h3 {
    font-weight: 700;
    text-align: center;
    font-size: 1.5rem; }

@media screen and (min-width: 720px) {
  .notice_inner {
    font-size: 1.36rem;
    line-height: 1.5; }
    .notice_inner h3 {
      font-weight: 700;
      text-align: center;
      font-size: 1.6rem; } }
.text_wrap {
  display: block;
  width: 100% !important;
  height: 210px;
  overflow-x: hidden;
  overflow-y: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px 8px 12px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  position: relative; }
  .text_wrap .text_inner {
    display: block;
    width: 100%;
    height: 180px;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 0;
    padding: 14px 2px 14px 14px;
    /*border-radius: 20px;*/
    position: relative;
    /*a{color: gold;
    text-decoration: none;}
    
    a:hover{color:palegoldenrod;
    text-decoration: underline;}*/ }
    .text_wrap .text_inner ul {
      list-style: none; }
    .text_wrap .text_inner li {
      text-indent: -1.4rem;
      margin-bottom: 8px;
      padding-right: 5px;
      color: #000; }
    .text_wrap .text_inner li::before {
      content: "";
      width: 8px;
      height: 8px;
      display: inline-block;
      background-color: #BC0003;
      border-radius: 50%;
      position: relative;
      top: -1px;
      margin-right: 5px; }

@media screen and (min-width: 720px) {
  .text_wrap {
    height: 220px;
    padding: 0 10px 14px 24px; }
    .text_wrap .text_inner {
      height: 184px;
      padding: 16px 6px 18px 18px; } }
