@charset "UTF-8";
/* CSS Document */
	
body{
	margin:0px;
	background-color:#fff;
	font-family:'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-weight: 400;
	font-style: normal;
	color:#222;
	height:100%;
}

html{
	height:100%;
}

img { border-style:none;
	vertical-align: bottom;}

a img { border-style:none;}

a:hover img { border-style:none; }

*{
margin: 0;
padding: 0;
}

ol, ul {
	list-style: none;
}

.cf:before,
.cf:after {
  content: "";
  display: table;}
.cf:after {
  clear: both;}
.cf {
  *zoom: 1;}


/* 非表示 */
.is-hide {
    display: none;
}
/* ローディング画面をフェードアウト */
.fadeout-bg {
    transition-property: opacity;
    transition-delay: .9s;
    transition-duration: .8s;
    opacity: 0;
    pointer-events: none;
}
/* ローダーをフェードアウト */
.fadeout-loader {
    transition-property: opacity;
    transition-delay: .9s;
    transition-duration: .3s;
    opacity: 0;
    pointer-events: none;
}
/* ローディング画面 */
#loader-bg {
    background: #b94811;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 105;
}

@keyframes spin {
  from{
    transform: rotateZ(0deg);         /* アニメーション開始状態 */
  }
  to{
    transform: rotateZ(360deg);       /* アニメーション終了状態 */
  }
}

.loading {
  position: absolute;                 /* 良くわからなければ無くてもよい */
  width: 50px;                        /* 横幅 */
  height: 50px;                       /*  高さ */
  border: 3px solid #333;         /* 線(上下左右)の太さ,形,色 */
  border-top-color: #fff;          /* 線(上)の色 */
  border-radius: 50%;                 /* 円形 */
  animation: 1s spin infinite linear; /* アニメーション指定(1秒1回転で一定の速度で永遠回るように指定) */
	box-sizing:border-box;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
    position: fixed;
    top: 50%;
}


.btn-trigger_fix{
	width:70px;
	height:70px;
	border-radius: 50%;
	position: fixed;
	top:2%;
	right: 2%;
	z-index: 100;
	background-color:#ce4a15;
	box-sizing: border-box;
}


.btn-trigger {
  position: relative;
  width: 36px;
  height: 31px;
  cursor: pointer;
  margin-left: 17px;
  margin-top:20px;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fcfcf3;
  border-radius: 2px;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 14.5px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

#btn08.active span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(-315deg);
  transform: translateY(15px) rotate(-315deg);
}
#btn08.active span:nth-of-type(2) {
  opacity: 0;
}
#btn08.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(315deg);
  transform: translateY(-15px) rotate(315deg);
}


nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left :0;
  color: #fff;
  font-weight: 700;
  background-color:rgba(252,252,243,0.95);
  box-sizing: border-box;
  padding:15% 15%;
  width: 100%;
  height: 100%;
	text-align: center;
  margin-left:100%;
  opacity: 0;
  -webkit-transition-property: all;
     -moz-transition-property: all;
      -ms-transition-property: all;
       -o-transition-property: all;
          transition-property: all;
  -webkit-transition: .6s ease;
     -moz-transition: .6s ease;
      -ms-transition: .6s ease;
       -o-transition: .6s ease;
          transition: .6s ease;
}



nav.globalMenuSp.active {
  opacity: 100;
  margin-left:0;

}

.menu{
	width:49%;
	font-size: 20px;
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
}

.menu:nth-child(2n) {
  margin-right:0;
}

.menu a {
  color: #222;
  display: block;
  padding:2% 1%;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
	font-weight: bold;
  text-decoration: none;
	border-radius: 100vh;
	box-sizing: border-box;
	border:1px solid #000;
}

.menu a:hover {
   background-color: #b94811;
	border:1px solid #b94811;
	box-sizing: border-box;
  color: #fff;
    -webkit-transition: 0.7s;
    -moz-transition: 0.7s;
    -o-transition: 0.7s;
    transition: 0.7s;
}


#spmain{
	display:none;
}

#sptrailerarea{
	display:none;
}

#contents_wrapper{
	width:100%;
	height: auto;
	margin:0 auto;
	font-size: 15px;
	text-align: justify;
	word-break: break-all;
	line-height: 180%;
}

#contents_wrapper img{
	width:100%;
	height: 100%;
	margin-left:auto;margin-right:auto;display:table;
}


#top_wrapper{
    width:100%;
	height: auto;
	position: relative;
}


#top_main{
    width:100%;
}


#top_catch1{
	width:4.5%;
	position: absolute;
	right: 47%;
	top:3%;
	opacity:0;
	-webkit-transition: 1.0s;
	transition: 1.0s;
}
  
.showNavi #top_catch1{
  opacity:1;
  -webkit-transition-delay:1.0s;
  transition-delay:1.0s
}


#top_catch2{
	width:3%;
	position: absolute;
	right: 15%;
	top:5%;
	opacity:0;
	-webkit-transition: 1.0s;
	transition: 1.0s;
}
  
.showNavi #top_catch2{
  opacity:2;
  -webkit-transition-delay:1.3s;
  transition-delay:1.3s;
}


#top_logo_wrapper{
	width:70%;
	position: absolute;
	top:58%;
	right: 15%;
	padding-bottom: 50px;
}




#top_logo{
	width:100%;
	margin-bottom: 20px;
	opacity: 0;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -o-transition: all 1.5s;
    -ms-transition: all 1.5s;
    transition: all 1.5s;
	opacity:0;
}
  
.showNavi #top_logo{
  opacity:2;
  -webkit-transition-delay:1.0s;
  transition-delay:1.0s;
}


#top_day{
	width:13%;
	position: absolute;
	left: 12%;
	top:50%;
	opacity:0;
	-webkit-transition: .3s;
	transition: .3s;
	-webkit-transform: scale( 0.2,  0.2);
	transform: scale( 0.2,  0.2);
	transition-timing-function: cubic-bezier(.68,-0.55,.27,1.55);
}
  
.showNavi #top_day{
  opacity:2;
  -webkit-transition-delay:1.5s;
  transition-delay:1.5s;
  -webkit-transform: translate( 0, 0);
  transform: translate( 0, 0);
}


#top_biling{
	width:100%;
	margin-bottom: 20px;
	opacity: 0;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -o-transition: all 1.5s;
    -ms-transition: all 1.5s;
    transition: all 1.5s;
}
  
.showNavi #top_biling{
  opacity:1;
  -webkit-transition-delay:1.5s;
  transition-delay:1.5;
}

#top_bottom{
	width:100%;
	padding-bottom: 50px;
}

#snsbtn_wrapper1{
	width: 8%;
	position: absolute;
	top:2.8%;
	left:2%;
	opacity: 0;
    -webkit-transition: all 1.5s;
    -moz-transition: all 1.5s;
    -o-transition: all 1.5s;
    -ms-transition: all 1.5s;
    transition: all 1.5s;
	margin-bottom: 10px;
	overflow: hidden;
	z-index: 90;
}
  
.showNavi #snsbtn_wrapper1{
  opacity:1;
  -webkit-transition-delay:3.0s;
  transition-delay:3.0s;
}

.snsbtn{
	width:42%;
	float: left;
	margin-right:16%;
}

.snsbtn:nth-child(2) {
  margin-right: 0;
}

.snsbtn img{
  transition-duration: 0.3s;
}

.snsbtn img:hover {
   opacity:0.7;
 transition-duration: 0.3s;
}

#snsbtn_wrapper2{
	width:260px;
	margin: 0 auto;
	overflow: hidden; /* heightを戻す */
}

.tweet{
	width:75px;
	float:left;
	margin-right:5px;
	line-height: 100%;
}

.like{
	width:87px;
	float:left;
	margin-right:5px;
	line-height: 100%;
	overflow: hidden;
}

.line{
	width:83px;
	float:left;
	margin-right:5px;
	line-height: 100%;
}





.pcview{
	width:100%;
}

.spview{
	display: none;
}


.scrollShowEffect {
	-webkit-transition-delay: 0.5s;
	   -moz-transition-delay: 0.5s;
	    -ms-transition-delay: 0.5s;
	     -o-transition-delay: 0.5s;
	        transition-delay: 0.5s;
	-webkit-transition: all 0.5s ease-in-out;
	   -moz-transition: all 0.5s ease-in-out;
	    -ms-transition: all 0.5s ease-in-out;
	     -o-transition: all 0.5s ease-in-out;
	        transition: all 0.5s ease-in-out;
	opacity:0;
}

.scrollShowEffect-R {
	-webkit-transform: translate3d(40%, 0%, 0);
	   -moz-transform: translate3d(40%, 0%, 0);
	    -ms-transform: translate3d(40%, 0%, 0);
	     -o-transform: translate3d(40%, 0%, 0);
	        transform: translate3d(40%, 0%, 0);
	transition-timing-function: cubic-bezier(.68,-0.55,.27,1.55);
}
.scrollShowEffect-L {
	-webkit-transform: translate3d(-40%, 0%, 0);
	   -moz-transform: translate3d(-40%, 0%, 0);
	    -ms-transform: translate3d(-40%, 0%, 0);
	     -o-transform: translate3d(-40%, 0%, 0);
	        transform: translate3d(-40%, 0%, 0);
}
.scrollShowEffect-B {
	-webkit-transform: translate3d(0, 50%, 0);
	   -moz-transform: translate3d(0, 50%, 0);
	    -ms-transform: translate3d(0, 50%, 0);
	     -o-transform: translate3d(0, 50%, 0);
	        transform: translate3d(0, 50%, 0);
	transition-timing-function: cubic-bezier(.68,-0.55,.27,1.55);
}

.scrollShowEffect-T {
	-webkit-transform: translate3d(0, -15%, 0);
	   -moz-transform: translate3d(0, -15%, 0);
	    -ms-transform: translate3d(0, -15%, 0);
	     -o-transform: translate3d(0, -15%, 0);
	        transform: translate3d(0, -15%, 0);
}

.scrollShowEffect-Z {
	-webkit-transform: scale( 0.2,  0.2);
	transform: scale( 0.2,  0.2);
}

.scrollShowEffect.showItem {
	opacity:1;
	-webkit-transform: translate3d(0, 0, 0);
	   -moz-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	     -o-transform: translate3d(0, 0, 0);
	        transform: translate3d(0, 0, 0);
}


.mb0{
	width:100%;
	overflow: hidden; /* heightを戻す */
}

.mb5{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 5px;
	line-height: 140%;
}

.mb10{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 10px;
}

.mb20{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 20px;
}

.mb30{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 30px;
}

.mb50{
	width:100%;
	overflow: hidden; /* heightを戻す */
	margin-bottom: 50px;
}

.pagetitle1{
	width:100%;
	font-size: 50px;
    font-weight: 700;
    font-style: normal;
	margin-bottom: 70px;
	color: #b94811;
}

.pagetitle2{
	width:100%;
	font-size: 50px;
    font-weight: 700;
    font-style: normal;
	margin-bottom: 70px;
	color: #b94811;
	text-align: center;
}

.pagetitle3{
	width:100%;
	font-size: 50px;
    font-weight: 700;
    font-style: normal;
	margin-bottom: 70px;
	color: #fff;
	text-align: center;
}

#intro_wrapper{
	width:100%;
	background:#fefefe;
	overflow: hidden;
}

#intro_inner{
	width:100%;
	margin:0 auto;
	box-sizing: border-box;
	padding:10%;
}

.intromidashi{
	width:100%;
	margin-bottom: 20px;
	font-size: 26px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 36px;
}

.intro_l{
	width:48%;
	float: left;
}

.intro_r{
	width:48%;
	float: right;
}

#story_wrapper{
	width:100%;
	background: url("images/story/bg.jpg") 100% 0 no-repeat fixed;
	background-size:cover;
	overflow: hidden;
	box-sizing: border-box;
	color: #fff;
	padding-top:40%;
}

#story_inner{
	width:100%;
	box-sizing: border-box;
	padding:10% 15%;
	background-color: rgba(0,0,0,1.0);
	overflow: hidden;
	font-size: 20px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 32px;
	text-align: center;
}

#foul_wrapper{
	width:100%;
	background: url("images/foul/bg.jpg") 100% 0 no-repeat fixed;
	background-size:cover;
	overflow: hidden;
	box-sizing: border-box;
	padding-top:40%;
}

#foul_inner{
	width:100%;
	box-sizing: border-box;
	padding:10%;
	background-color:#b94811;
	overflow: hidden;
	color: #fff;
}


.wrapperline{
	width:100%;
	overflow: hidden; /* heightを戻す */
	padding:0;
	display:-webkit-box;
display:-moz-box;
display:-ms-box;
display:-webkit-flexbox;
display:-moz-flexbox;
display:-ms-flexbox;
display:-webkit-flex;
display:-moz-flex;
display:-ms-flex;
display:flex;
-webkit-box-lines:multiple;
-moz-box-lines:multiple;
-webkit-flex-wrap:wrap;
-moz-flex-wrap:wrap;
-ms-flex-wrap:wrap;
flex-wrap:wrap;
}

.foulbox{
	width:32%;
	float: left;
	margin-right: 2%;
	box-sizing: border-box;
	overflow: hidden;
}

.foulbox:nth-child(3n) {
  margin-right:0;
}

.foul_name{
	width:100%;
	box-sizing: border-box;
	font-size: 20px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 32px;
	text-align: center;
}

.foul_midashi{
	width:100%;
	box-sizing: border-box;
	font-size: 24px;
    font-weight: 700;
    font-style: normal;
	line-height: 32px;
	text-align: center;
	padding:1% 20%;
	border-bottom:1px solid #fff;
	margin-bottom: 30px;
}

.foul_disco1{
	width:100%;
	text-align: center;
	font-size: 18px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 26px;
	margin-bottom: 7px;
}

.foul_disco2{
	width:100%;
	text-align: center;
	margin-bottom: 30px;
}

#staff_wrapper{
	width:100%;
	background:#fefefe;
	overflow: hidden;
}

#staff_inner{
	width:100%;
	margin:0 auto;
	box-sizing: border-box;
	padding:20% 20%;
}

.staff_l{
	width:35%;
	float: left;
}

.staff_r{
	width:60%;
	float: right;
}

.staff_name{
	width:100%;
	box-sizing: border-box;
	font-size: 20px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 32px;
}

#comment_wrapper{
	width:100%;
	background: url("images/comment/bg.jpg") 100% 0 no-repeat fixed;
	background-size:cover;
	overflow: hidden;
	box-sizing: border-box;
}

#comment_inner{
	width:100%;
	box-sizing: border-box;
	padding:10% 8%;
	overflow: hidden;
	color: #fff;
}

.container {
  margin: 0 auto;
  width: 100%;
  column-count: 3;
  column-gap: 2;
}

.grid {
  padding: 5%;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  box-sizing: border-box;
  background-color: rgba(0,0,0,0.7);
  margin-bottom: 10px;
}

.commenttext{
    width:100%;
    font-size: 16px;
    margin-bottom: 10px;
	font-weight: bold;
}


.commentname1{
	width:100%;
	box-sizing: border-box;
	font-size: 20px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 32px;
	text-align: right;
	color: rgba(253,147,0,1.00);
}

.commentname2{
	width:100%;
	box-sizing: border-box;
	font-size: 14px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 20px;
	text-align: right;
}

#footer_wrapper{
	width:100%;
	overflow: hidden;
	padding:5% 0;
	background-color: #000;
}

#footer_inner{
	width:40%;
	margin:0 auto;
}

@media screen and (max-width:768px){

#spmain{
	display: inherit;
	width:100%;
	margin-bottom: 20px;
}

div.sptrailer {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
	margin-bottom: 20px;
}
 
div.sptrailer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#sptrailerarea{
	width:90%;
	margin:0 auto;
	margin-bottom:30px;
	display: inherit;
	margin-top:30px;
}

.pcview{
	display: none;
}

.spview{
	display: inherit;
	width:100%;
}





#top_wrapper{
    width:100%;
	height: auto;
	position: inherit;
}


#top_main{
    display: none;
}


#top_catch1{
    display: none;
}

#top_catch2{
    display: none;
}

#top_catch3{
    display: none;
}

#top_logo_wrapper{
	width:90%;
	position: inherit;
	top:0;
	right: 0;
	margin:0 auto;
	padding-bottom: 50px;
}


#top_logotext{
    display: none;
}

#top_logo{
    display: none;
}

#top_day{
    display: none;
}

#top_biling{
    display: none;
}


#snsbtn_wrapper1{
	width: 30%;
	position: inherit;
	top:0;
	left:0;
	opacity: 1;
	margin:0 auto;
	margin-bottom: 20px;
	overflow: hidden;
	z-index: 90;
}
  
.showNavi #snsbtn_wrapper1{
  opacity:1;
  -webkit-transition-delay:0s;
  transition-delay:0s;
}

.snsbtn{
	width:40%;
	float: left;
	margin-right:20%;
	background-color: rgba(0,0,0,1.00);
	border-radius: 50%;
	padding:7%;
	box-sizing: border-box;
}

.snsbtn:nth-child(2) {
  margin-right: 0;
}

#snsbtn_wrapper2{
	width:260px;
	margin: 0 auto;
	overflow: hidden; /* heightを戻す */
}

.tweet{
	width:75px;
	float:left;
	margin-right:5px;
	line-height: 100%;
}

.like{
	width:87px;
	float:left;
	margin-right:5px;
	line-height: 100%;
	overflow: hidden;
}

.line{
	width:83px;
	float:left;
	margin-right:5px;
	line-height: 100%;
}


nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left :0;
  color: #fff;
  font-weight: 700;
  font-style: normal;
  background-color:rgba(252,252,243,0.95);
  box-sizing: border-box;
  padding:20% 10%;
  width: 100%;
  height: 100%;
	text-align: center;
  margin-left:100%;
  opacity: 0;
  -webkit-transition-property: all;
     -moz-transition-property: all;
      -ms-transition-property: all;
       -o-transition-property: all;
          transition-property: all;
  -webkit-transition: .6s ease;
     -moz-transition: .6s ease;
      -ms-transition: .6s ease;
       -o-transition: .6s ease;
          transition: .6s ease;
}

.menu{
	width:100%;
	font-size: 20px;
	float: none;
	margin-right: 0;
	margin-bottom: 2%;
}


.intro_l{
	width:100%;
	float: none;
	margin-bottom: 20px;
}

.intro_r{
	width:100%;
	float: none;
}

#story_wrapper{
	width:100%;
	background:none;
	overflow: hidden;
	box-sizing: border-box;
	color: #fff;
	padding-top:0;
}

#story_inner{
	width:100%;
	box-sizing: border-box;
	padding:10% 10%;
	background-color: rgba(0,0,0,1.0);
	overflow: hidden;
	font-size: 18px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 32px;
	text-align: center;
}

#foul_wrapper{
	width:100%;
	background:none;
	overflow: hidden;
	box-sizing: border-box;
	padding-top:0;
}

#foul_inner{
	width:100%;
	box-sizing: border-box;
	padding:10%;
	background-color:#b94811;
	overflow: hidden;
	color: #fff;
}

.foulbox{
	width:100%;
	float: none;
	margin-right: 0;
	box-sizing: border-box;
	overflow: hidden;
	margin-bottom: 30px;
}


.foul_midashi{
	width:100%;
	box-sizing: border-box;
	font-size: 22px;
    font-weight: 700;
    font-style: normal;
	line-height: 32px;
	text-align: center;
	padding:1% 20%;
	border-bottom:1px solid #fff;
	margin-bottom: 30px;
}

.foul_disco1{
	width:100%;
	text-align: center;
	font-size: 16px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 26px;
	margin-bottom: 7px;
}

.foul_disco2{
	width:100%;
	font-size: 12px;
	text-align: center;
	margin-bottom: 30px;
}

#staff_wrapper{
	width:100%;
	background:#fefefe;
	overflow: hidden;
}

#staff_inner{
	width:100%;
	margin:0 auto;
	box-sizing: border-box;
	padding:10% 10%;
}

.staff_l{
	width:100%;
	float: none;
	margin-bottom: 20px;
}

.staff_r{
	width:100%;
	float: none;
}

.staff_name{
	width:100%;
	box-sizing: border-box;
	font-size: 20px;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: 900;
	font-style: normal;
	line-height: 32px;
}

#comment_wrapper{
	width:100%;
	background:none;
	overflow: hidden;
	box-sizing: border-box;
}

#comment_inner{
	width:100%;
	box-sizing: border-box;
	padding:10%;
	overflow: hidden;
	color: #fff;
	background-color: rgba(7,6,65,1.00);
}


.container {
  margin: 0 auto;
  width: 100%;
  column-count: 1;
  column-gap: 2;
}

#footer_wrapper{
	width:100%;
	overflow: hidden;
	padding:10% 0;
	background-color: #000;
}

#footer_inner{
	width:50%;
	margin:0 auto;
}

}