@charset "utf-8";
/* CSS Document */

/* ------------------------------------
 * BASE
 * ------------------------------------ */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display: block;
}
ul{
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}
ins {
    background-color: #fff;
    color: #000;
    text-decoration: none;
}
mark {
    background-color: #fff;
    color: #000; 
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;   
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}
input, select {
    vertical-align: middle;
}

/* ------------------------------------
 * COMMON
 * ------------------------------------ */
html {
  font-size: 62.5%;
}
body {
	font-family: 游ゴシック, YuGothic, Helvetica, Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, verdana, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
img {
	max-width: 100%;
	vertical-align: top;
}
.app {
	width: 100%;
}
.flex {
	justify-content: center;
	flex-wrap: wrap;
	display: flex;
}
p,small {
	font-size: 1.6rem;
	line-height: 2.0;
	font-family: 'Noto Serif JP', serif;
}
ul,dl,h1,h2,h3,h4 {
	font-family: 'Noto Serif JP', serif;
}
.sm_view {
	display: block;
}
.lg_view {
	display: none;
}

.main_container{
	display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media screen and (min-width:768px) {
p {
	font-size: 1.8rem;
	line-height: 2.0;
	}
.sm_view {
	display: none;
}
.lg_view {
	display: block;
}
}

/* ------------------------------------
 * MODAL
 * ------------------------------------ */
.hide_area{
	display: none;
}
.modaal-content-container {
	padding: 0!important;
	background-color: #000;
}
.modaal-inner-wrapper {
    padding: 80px 10px!important;
}
@media screen and (min-width:768px) {
	.modaal-content-container {
		padding: 30px!important;
	}
	.modaal-inner-wrapper {
		padding: 80px 25px!important;
}
}
/* ------------------------------------
 * NAV
 * ------------------------------------ */
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 99;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background-image: url(/storage/img/common/bg_gnav.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	/*background:#999;*/
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 99; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
	width: 90%;
    position: absolute;
    z-index: 99;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position: fixed;
    width: 50px;
    height:50px;
    z-index: 100;
	top:1.4%;
	cursor: pointer;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.menu_list {
	font-size: 1.8rem;
}
@media screen and (min-width:540px) {
	.openbtn{
		top:18px;
	}
}
/* ------------------------------------
 * TITLE
 * ------------------------------------ */
p.ttl_head {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size:1.8rem;
	font-weight: 900;
	border-bottom: 1px solid #4d291b;
}
p.ttl_head::first-letter  {
    padding: 0.5rem 0 0.5rem 0.5rem;
    color: #8d1919;
    border-left: 5px solid;
}
/* ------------------------------------
 * BUTTON
 * ------------------------------------ */
.btn_img {
	width: 90%;
	max-width: 370px;
	display: block;
	margin: 20px auto;
}
.btn_white {
	width: 100%;
	max-width: 300px;
	display: block;
	margin: 20px auto;
	background: #e3dec3; 
  	padding: 5px 10px; 
	box-sizing: border-box;
	text-decoration: none;
	border-radius: 90px; 
}
.btn_white p {
	font-size: 2.2rem;
	font-weight: 900;
	position: relative;
	margin-left: -1em;
	text-align: center;
	color: #140803;
}
.btn_white p::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 14px;
	border-color: transparent transparent transparent #76470f;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -6px;
}
.btn_brown {
	width: 100%;
	max-width: 300px;
	display: block;
	margin: 20px auto;
	background: #4d291b; 
  	padding: 5px 10px; 
	box-sizing: border-box;
	text-decoration: none;
	border-radius: 90px; 
}
.btn_brown p {
	font-size: 2.2rem;
	font-weight: 900;
	position: relative;
	margin-left: -1em;
	text-align: center;
	color: #fff;
}
.btn_brown p::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 14px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -6px;
}
.btn_rpg {
	max-width: 140px;
	margin: auto;
}
.btn_text_small p {
	font-size: 1.8rem;
}
.link_sns_circle {
	width: 100%;
	max-width: 40px;
	margin: 10px 5px;
}
@media screen and (min-width:768px) {
	.btn_white p {
		font-size: 2.4rem;
	}
	.btn_white p::after {
		border-width: 10px 0 10px 16px;
		right: 10px;
		margin-top: -8px;
	}
	.link_sns_circle {
		max-width: 60px;
	}
}
/* ------------------------------------
 * BANNER
 * ------------------------------------ */
.box_banner {
	width: 96%;
	max-width: 800px;
	margin: -60px auto 30px;
	text-align: center;
	filter: drop-shadow(5px 5px 5px #201b19);
}
.banner_first {
	margin-top: -20px;
}
.banner_list {
	width: 100%;
    max-width: 750px;
	margin: 0px auto 30px;
}
.banner_list--2col .box_banner {
	width: 96%;
	margin: 10px auto;
}
@media screen and (min-width:768px) {
	.box_banner {
		width: 80%;
		margin: -50px auto 50px;
	}
	.banner_first {
		margin-top: 0px;
	}
	.banner_list {
		max-width: 1000px;
	}
	.banner_list--2col .box_banner {
		width: 46%;
	}

}
/* ------------------------------------
 * DECO
 * ------------------------------------ */
span.line {
	background: linear-gradient(transparent 70%, #ffff7f 0%);
}
p.txt_center {
	text-align: center;
}
/* ------------------------------------
 * NEWS_ticker
 * ------------------------------------ */
.news {
	width: 100%;
	padding: 3px;        /* 枠線の内側の余白 */
	overflow : hidden;
	box-sizing: border-box;
}
.news_box {
	width: 100%;
	padding-right: 110px;
	padding-left: 100%;    /* 右端から文字をスタートさせるため */
	white-space : nowrap; /* 改行が起こらないように対策 */
	line-height : 3em;         /* 行間（高さ）を1文字分にする */
	animation : scroll 10s linear infinite; /* 下のアニメーションを10秒かけて行い、それをくりかえす */
	align-items: center;
	flex-wrap: nowrap;
}
.news a {
	text-decoration: underline;
	color: #000;
}
.new {
	padding: 3px 7px;
	margin-right: 10px;
	background-color: #ea5305;
	color: #fff;
	font-size: 1.4rem;
	border-radius: 90px;
}
.news_icon {
	min-width: 56px;
	margin-right: 10px;
}
.news_sm {
	background: #21070d;
}
.news_sm a {
	color: #fff;
}
@keyframes scroll{
  0% { 
    transform: translateX(0)
  }
  100% {
    transform: translateX(-100%)
  }
}
@media screen and (min-width:768px) {
	.news {
		width: 50%;
		margin: auto;
		text-align: center;
	}
	.news_box { 
		padding-left: 10px; 
		padding-right: 0px;
		animation : none;
	}
	.news_icon {
		max-width: 80px;
	}
}
/* ------------------------------------
 * ANIME
 * ------------------------------------ */
@keyframes fluffy1 {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-15px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-15px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}
@keyframes poyoyon {
	0% {
    transform: translateX(140px);
    opacity: 0;
	}
	50% {
    transform: translateX(0);
	}
	65% {
    transform: translateX(30px);
	}
	100% {
    transform: translateX(0);
	}
	20%,100% {
    opacity: 1;
	}
}
/* ------------------------------------
 * 短いページ対応
 * ------------------------------------ */
.app {
    margin: 0;
    display: flex;
    flex-flow: column;
    min-height: 100vh;
	min-height: 100svh;
}
main {
	flex: 1;
}
/* ------------------------------------
 * TOP
 * ------------------------------------ */
header {
	width: 100%;
	background: url("../img/common/bg_paper.jpg");
}
.nav {
	width: 100%;
	justify-content: space-between;
	align-items: center;
}
header h1 {
	width: 20%;
	max-width: 100px;
	padding: 10px 0 10px 10px;
}
.area_share {
	width: 40%;
	max-width: 160px;
	padding-right: 10px;
}
.box_share {
	align-items: center;
}
.box_share li.share_title {
	width: 40%;
}
.box_share li.share_btn {
	width: 20%;
	max-width: 50px;
}
.box_share li.menu_btn  {
	width: 20%;	
}
.box_share li.share_btn a {
	display: block;
}
.box_kv {
	width: 100%;
	text-align: center;
	background: url("../img/top/bg_sky.png");
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
}
.box_kv_lg {
	position: relative;
	width: 100%;
	min-height: 500px;
	margin-bottom: 150px;
	text-align: center;
	background-image: url(/storage/img/lower/story_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.kv_logo_lg {
	max-width: 300px;
    position: absolute;
	bottom: -44%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index: 1;
}
.kv_chara_lg {
	width: 80%;
	max-width: 600px;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.box_kv_sm {
	position: relative;
	width: 100%;
	text-align: center;
}
.kv_logo_sm {
    width: 66%;
    position: absolute;
    bottom: -16%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.box_kv img {
	max-height: 600px;
	margin-top: 20px; 
}
.box_message {
	width: 96vw;
	max-width: 750px;
	margin: 40px auto;
	padding: 30px;
	color: #fff;
	background-color: rgba(28,3,3,0.8);
	border: 2px solid #fff285;
	border-radius: 10px;
	box-sizing: border-box;
	box-shadow: inset 10px 20px 20px rgba(0,0,0,.5),
            inset -10px -20px 20px rgba(0,0,0,.5);
}
.box_concept {
	margin-top: -10px;
}
.box_message h2 {
	text-align: center;
	padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #fff285;
    font-weight: bold;
    font-size: 26px;
}
h2.pagetitle {
	width: 90%;
	max-width: 400px;
	margin: 10px auto 0;
	text-align: center;
	margin-bottom: 10px!important;
}
hr.emboss {
	width: 80%;
	margin: 30px auto;
	border-top: 3px double #ccc;
}
.annotation_box {
	text-align: center;
}
.annotation {
	font-size: 1.4rem;
	color: #fff;
	text-decoration: underline;
	text-align: center;
	margin-bottom: 10px;
}
.swiper-pagination {
	bottom: 0!important;
}
@media screen and (min-width:1200px) {
	.box_kv_lg {
		background-position: 50% 16%;
		min-height: 650px;
		margin-bottom: 170px;
	}
	.kv_chara_lg {
		max-width: 800px;
		top: 60%;
	}
	.kv_logo_lg {
		max-width: 400px;
		bottom: -40%;
	}
}
/* ------------------------------------
 * MAIN
 * ------------------------------------ */
#app {
	background: url("../img/common/bg_brick.jpg");
	background-size: 20%;
}
.box_contents {
	width: 100%;
	max-width: 750px;
	margin: 0 auto 80px;	
	background: url("../img/common/bg_paper.jpg");
}
.box_inner {
	width: 88%;
	margin: auto;
}
.box_contents::before{
	content:"";
	display: block;
	position: relative;
	top: -10px;
	width: 100%;
	height: 50px;
	background-image: url("../img/common/bg_paper_top_sm.png");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
 }
.box_contents::after{
	content:"";
	display: block;
	position: relative;
	bottom: -10px;
	width: 100%;
	height: 50px;
	background-image: url("../img/common/bg_paper_bottom_sm.png");
	background-position: bottom center;
	background-size: contain;
	background-repeat: no-repeat;
 }
.box_contents h3, .box_contents h4 {
	margin-bottom: 20px;
	letter-spacing: 2px;
	text-align: center;
} 
.box_contents h3 {
	width: 96%;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.box_contents h4 {
	color: #fff;
	font-size: 2.0rem;
	line-height: 1.6;
	background: #4d291b;
	border-radius: 90px;
	margin-bottom: 5px;
}
.box_inner ul {
	margin-bottom: 20px;
}
.box_inner ul:last-child {
	margin-bottom: 0;
}
.box_chara {
	margin-bottom: 20px;
}
.box_chara li {
	width: 30%;
	margin: 0 1%;
}
.face_secondclass {
	width: 38%!important;
}
.box_chara li dl {
	display: block;
	text-align: center;
	font-size: 2.0rem;
	margin-top: 20px;
}
.box_chara li dl a {
	color: #000;
}
.box_chara li dl dd {
	margin-bottom: 10px;
}
.box_text {
	padding-left: 1em;
	font-size: 1.6rem;
	line-height: 1.8;
	list-style: disc;
}
.list_style_none {
	list-style: none;
	padding-left:0;
}
.list_style_decimal {
	list-style-type: decimal;
}
.list_style_roman {
	list-style-type: lower-roman;
}
.list_alert {
	list-style: none;
	padding-left: 2em;
	text-indent: -1em;
}
.text_inner_border {
	padding: 2%;
	border: solid 1px #4d291b;
}
.wrap_profile {
	font-size: 1.6rem;
	line-height: 1.8;
}
.date {
	width: 80%;
	max-width: 450px;
	text-align: center;
	margin: 0 auto 20px;
}
.box_square {
	width: 100%;
	margin: auto;
	flex-wrap: wrap-reverse;
}
.square_contents {
	width: 46%;
	margin: 2%;
}
.txt_ope {
	font-size: 1.4rem;
	line-height: 1.4;
}
#twitter-widget-0 {
	max-height: 600px;
}
/*========= レスポンシブ ===============*/
@media screen and (min-width:576px) {
	.box_contents::before, .box_contents::after{
		height: 80px;
	}
	.box_contents::before {
		top:-15px
	}
	.box_contents::after {
		bottom:-15px;
	}
	.txt_ope {
		font-size: 1.8rem;
		line-height: 2.0;
	}
}
@media screen and (min-width:768px) {
	.box_contents h4  {
		font-size: 1.8rem;
		line-height: 2.6;
		margin-bottom: 0;
	}
	.box_contents::before {
		top:-20px
	}
	.box_contents::after {
		bottom:-20px;
	}
	.box_square {
		width: 90%;
	}
	.square_contents {
		width: 40%;
		margin: 2%;
	}
	#twitter-widget-0 {
		max-height: 1000px;
	}
}
@media screen and (min-width:1200px) {
	.box_message {
		max-width: 1000px;
	}
	.box_contents {
		max-width: 1000px;
	}
	.box_contents::before{
		background-image: url("../img/common/bg_paper_top.png");
		background-position: top center;
		background-size: contain;
		top: -10px;
	}
	.box_contents::after{
		background-image: url("../img/common/bg_paper_bottom.png");
		background-position: top center;
		background-size: contain;
		bottom: -30px;
	}
	.txt_contents {
		font-size: 1.6rem;
		line-height: 1.8;
	}
}
/* ------------------------------------
 * FOOTER
* ------------------------------------ */
footer {
	width: 100%;
	min-height: 160px;
	background-image: url("../img/top/bg_footer.png");
	background-repeat: repeat-x;
	background-size: contain;
	background-position: bottom;
	text-align: center;
}
footer small {
	margin: auto;
	font-size: 1.4rem;
	color: #fff;
	font-weight: 600;
}
.nav_footer {
	width: 100%;
	margin: 20px auto;
	text-align: center;
}
.nav_footer li {
	font-size: 1.6rem;
}
.nav_footer li {
	margin-bottom: 20px; 
}
.nav_footer li:last-child {
	margin-bottom: 0; 
}
.nav_footer li a {
	color:#fff;
	text-decoration: underline;
}
@media screen and (min-width:768px) {
	footer {
		padding-bottom: 20px;
	}
}
/* ------------------------------------
 * ARTICLE
* ------------------------------------ */

/* ------------------------------------
 * NEWS
* ------------------------------------ */
.list_news {
	width: 90%;
	margin: auto;
	text-align: center;
}
.list_news li {
	margin-bottom: 20px;
	text-align: left;
	border-radius: 100px;
	align-items: center;
	justify-content: flex-start;
}
.list_news a {
	padding: 10px;
	background: #fff;
	line-height: 2;
	width: 100%;
	border-radius: 5px;
}
.list_news li:last-child {
	margin-bottom: 0;
}
.news_date {
    display: block;
	margin-right: 2%;
	margin-bottom: 2%;
	padding: 2%;
	background: #810101;
    position: relative;
	text-align: center;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
}
.news_title {
	color: #810101;
	text-decoration: underline;
	font-size: 1.6rem;
}
.page_child .news {
	margin-bottom: 50px;
}
@media screen and (min-width:768px) {
	.page_child header {
		margin-bottom: 50px;
	}
	.page_child .news {
		margin-bottom: auto;
	}
	.list_news li {
		flex-wrap: nowrap;
	}
	.news_date {
		margin-bottom: 0;
	}
}