@charset "utf-8";
/* CSS Document */

/* --------------------------------------------------

reset

-------------------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	box-sizing: border-box;
	word-break: break-all;
	letter-spacing: .05em;
	text-indent: -.05rem;
}
html {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
img, a {
	vertical-align: top;
	max-width: 100%;
}
a img {
	border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
strong {
	font-weight: bold;
}
h3, h4, h5, h6 {
	letter-spacing: .2rem;
	text-indent: .2rem;
}
/* --------------------------------------------------
clearfix
-------------------------------------------------- */

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	/*font-size: 0;*/
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE Mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End Hack */ 

/* --------------------------------------------------
fonts
-------------------------------------------------- */

.wf-notosansjp {
	font-family: "Noto Sans JP";
}
.wf-notosansjp {
	font-family: "Noto Sans JP";
}

/* --------------------------------------------------
link
-------------------------------------------------- */

a:link {
	color: #212121;
	text-decoration: none;
}
a:visited {
	color: #212121;
	text-decoration: none;
}
a:hover {
	color: #212121;
	text-decoration: none;
}
a:active {
	color: #212121;
	text-decoration: none;
}
a {
	transition: .2s linear;
}
a img {
	transition:all .5s;
}

a:hover img {
	transform: scale(1.1);
}

@media screen and (max-width: 768px) {
	a:hover {
		opacity: 1;
	}
}

/* --------------------------------------------------

html

-------------------------------------------------- */

html {
	font-size: 62.5%;
	height: 100%;
}

@media screen and (max-width: 1400px) {
	html {
		font-size: 58.59%; /* 1.5rem */
	}
}
@media screen and (max-width: 768px) {
	html {
		font-size: 58.12%; /* 1.4rem */
	}
}



/* --------------------------------------------------

body

-------------------------------------------------- */

body {
	font-family: "urw-din","source-han-sans-japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, Osaka, sans-serif;
	font-size: 1.4rem;
	line-height: 1.6;
	height: 100%;
	font-weight: 400;
	color: #212121;
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	min-width: 1200px;
	overflow-x: hidden;
	background: #FFF;
}

@media screen and (max-width: 768px) {
	body {
		min-width: inherit;
	}
}

@media screen and (max-width: 420px) {
	body {
		line-height: 1.6;
	}
}




/* --------------------------------------------------

gdpr

-------------------------------------------------- */

.gdpr {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,0.9);
	color: #FFF;
	z-index: 100;
	padding: 4em 0;
}

.gdpr .inner {
	max-width: 700px;
	text-align: right;
}

.gdpr p {
	margin-bottom: 2em;
	text-align: left;
}

.gdpr p a {
	text-decoration: underline;
	color: #FFF;
}

.gdpr a.btn-accept {
	min-width: 10em;
	background: #FFF;
	color: #000;
	text-align: center;
	display: inline-block;
	padding: .5em 0;
}



/* --------------------------------------------------

header

-------------------------------------------------- */

#header {
	width: 100%;
	min-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	background: rgba(255,255,255,1);
	transition: all 0.2s ease;
	border-bottom: 1px solid #E3E3E3;
}
#header.fixed {
    position: fixed;
	background: rgba(255,255,255,0.8);
}
@media screen and (max-width: 768px) {
	#header {
		min-width: inherit;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		height: 60px;
	}
}

/* --  h-logo  -- */

.h-logo {
	width: 10%;
	text-align: right;
	position: relative;
	align-self: flex-start;
	z-index: 120;
}

.h-logo a {
	display: block;
	width: 96px;
	position: absolute;
	top: 0;
	right: 0;
	padding: 5px;
}

#header.fixed .h-logo a{
	width: 75px;
	padding-right: 20px;
}

@media screen and (max-width: 768px) {
	.h-logo {
		width: 25%;
		text-align: right;
		margin-left: 0;
	}
	.h-logo a {
		padding: 0 1em;
		max-width:75px;
		right: auto;
		left: 0;
		padding: 5px;
	}
	
	#header.fixed .h-logo {
		width: 25%;
	}
	
	#header.fixed .h-logo a{
		padding: 0 1em;
		width:75px;
		max-width:75px;
		right: auto;
		left: 0;
		padding: 5px;
	}
}
@media screen and (max-width: 1400px) {

	
	.h-logo a {
		display: block;
		width: 90px;
		position: absolute;
		top: 0;
		right: 0;
		padding: 5px;
	}

	#header.fixed .h-logo a{
		width: 70px;
		padding-right: 20px;
	}



}



/* --------------------------------------------------
#gnav
-------------------------------------------------- */

#gnav {
	flex-grow: 1;
	margin-left: 20px;
}
#gnav ul {
	display: flex;
	height: 100%;
}
#gnav ul li {
	position: relative;
	text-indent: .1rem;
	line-height: 1;
	font-weight: bold;
	height: 100%;

}
#gnav ul li a {
	position: relative;
	text-decoration: none;
	color: #272727;
	height: 100%;
	display: block;
	padding: 2em .6em;
	font-size: 1.5rem;
	transition: all 0.2s ease;
}

#gnav.fixed ul li a {
	padding: 1em .6em;
}

#gnav ul li a span {
	display: flex;
	align-items: center;
	justify-content: stretch;
	height: 100%;
	width: 100%;
}


#gnav a:hover,
#gnav .active a{
	opacity: 1;
}
#gnav a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 4px;
	background: #D8371C;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

#gnav a:hover::after,
#gnav .active a::after{
	transform-origin: left top;
	transform: scale(1, 1);
}

/* --  mnav  -- */


#gnav ul > li .mnav {
	width: 100%;
	top: 75px;
	left: 0;
	opacity: 0;
	position: fixed;
	z-index: -100;
	white-space: normal;
	transition: .2s;
	background: #EFEFEF;
	visibility: hidden;
}

#header.fixed #gnav .mnav {
	top: 45px;
}


@media screen and (max-width: 1480px) {
	
	#gnav ul > li .mnav {
		top: 70.25px;
	}

	#header.fixed #gnav .mnav {
		top: 42.15px;
	}
}



#gnav ul > li:nth-child(5):hover .mnav {
	opacity: 1;
	visibility: visible;
	z-index: 0;
}

#gnav .mnav-inner {
	width: 100%;
	max-width: 1280px;
	display: flex;
	align-items: center;
	margin: 0 auto;
}

#gnav .mnav-list {
	display: flex;
	align-items:flex-start;
	justify-content: center;
	width: 100%;
}
#gnav .mnav-list li {
	color: #272727;
	line-height: 1;
	position: relative;
	width: 20%;
}
#gnav .mnav-list li a {
	color: #272727;
	text-align: center;
	display: block;
}
#gnav .mnav-list li a:hover img{
	transform: scale(1.05);
	opacity: 0.75;
}

#gnav .mnav-list li a figure {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 61.3%;
	overflow: hidden;
}

#gnav .mnav-list li a figure img {
	position: absolute;
	top: -200%;
	bottom: -200%;
	left: -200%;
	right: -200%;
	margin: auto;
	width: 100%;
	height: auto;
	min-height: 100%;
	min-width: 100%;
}

#gnav .mnav-list li a p {
	padding: 1em 0;
}

#gnav .mnav-list li a::after {
	display: none;
}

/* for TABLET */
@media screen and (max-width: 768px) {
	#gnav{
		display: none;
	}
	.mnav {
		display: none;
	}
}


/* --  h-group-area  -- */

.h-group-area {
	margin-left: auto;
	margin-right: 10px;
}
.h-group-area .group-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.h-group-area .group-list li{
	margin:  0 10px;
	width: 90px;
}

.h-group-area .group-list li:last-child{
	width: 144px;
}
.h-group-area .group-list li a{
	display: block;
}
.h-group-area .group-list li img{
	margin:  5px 10px;
}

@media screen and (max-width: 1400px) {
	.h-group-area {
		margin-right: 0px;
	}
	.h-group-area .group-list li{
		margin:  0 10px;
		width: 60px;
	}

	.h-group-area .group-list li:last-child{
		width: 96px;
	}
}


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

	.h-group-area .group-list {
		display: none;
	}
}


/* --  h-sns-area  -- */

.h-sns-area {
	margin-left: 0px;
	margin-right: 20px;
}
.h-sns-area .sns-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.h-sns-area .sns-list li{
	margin:  0 10px;
}

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

	.h-sns-area .sns-list {
		display: none;
	}
}


/* --------------------------------------------------
btn-menu-area
-------------------------------------------------- */
/* --  btn-menu-area  -- */
.btn-menu-area {
	display: none;
}

/* for TABLET */
@media screen and (max-width: 768px) {

	.btn-menu-area {
		display: block;
		padding: 0;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 13px;
		right: 18px;
		z-index: 1001;
		text-align: center;
		outline: none;
		transition: all 0.2s ease;
	}

	
	.btn-menu-area .menu-btn{
		display: block;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
	}
	.drawer-bar {
		background-color: #000;
		display: inline-block;
		height: 3px;
		width: 100%;
	}
	.drawer-bar:nth-child(2) {
		display: block;
		width: 80%;
		margin: 12px 0;
	}

}

/* for MOBILE */
@media screen and (max-width: 420px) {

		#header.fixed .btn-menu-area.open .drawer-bar {
			margin: 8px 0;
			width: 28px;
		}
		.drawer-bar {
			transform-origin: 0 center;
		}
}


/* --------------------------------------------------
menu
-------------------------------------------------- */

#menu {
	display: none ;
	background: #C7151D;
}

/* for TABLET */
@media screen and (max-width: 768px) {
	
	
}


/* --------------------------------------------------

mmenu

-------------------------------------------------- */



.mm-menu_offcanvas {
    width: 75% !important;
}
.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(0,0,0) !important;
    transform: translate3d(0,0,0) !important;
}
.mm-wrapper_opening [class*="mm-menu_pagedim"].mm-menu_opened ~ .mm-wrapper__blocker {
    opacity: .7 !important;
}

.mm-menu {
	z-index: 100 !important;
	-webkit-transition: -webkit-transform, opacity .4s ease;
	transition: -webkit-transform, opacity .4s ease;
	-o-transition: transform, opacity .4s ease;
	transition: transform, opacity .4s ease;
	transition: transform, opacity .4s ease,-webkit-transform .4s ease;
	transform: translate3d(75vw,0,0) !important;
	display: block !important;
	opacity: 0;
}

.mm-menu.mm-menu_opened {
    -webkit-transform: translate3d(0,0,0) !important;
    transform: translate3d(0,0,0) !important;
	opacity: 1;
}

.mm-navbar_sticky {
	display: none !important;
}

.mm-navbar {
    min-height: 60px !important;
	justify-content: flex-end !important;
	background: none !important;
	border: none !important;
	z-index: 99 !important;
	position: relative;
}

.mm-btn_close {
	display: inline-block !important;
	width: 78px !important;
	padding-right: 18px !important;
	position: relative !important;
}

.mm-btn_close::after,
.mm-btn_close::before {
    content: '';
    display: block;
    width: 50px !important;
    height: 3px !important;
    margin: auto;
    position: absolute;
    top: 50% !important;
    bottom: auto !important;
	right: 0 !important;
	border:none !important;
	transform-origin: center !important;
	background: #FFF !important;
}

.mm-btn_close::before {
    right: 10px !important;
    -webkit-transform: rotate(-45deg) !important;
    -ms-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;

}
.mm-btn_close::after {
	right: 10px !important;
    -webkit-transform: rotate(-5deg) !important;
    -ms-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;

}

.mm-panels {
	overflow: visible !important;
	height:calc(100vh - 60px) !important;
	overflow-y: auto !important;
  -webkit-overflow-scrolling: auto;
  overflow-scrolling: auto;
}

.mm-panel {
	background: #C7151D !important;
	color: #000 !important;
	font-size: 2.4rem !important;
	font-weight: bold !important;
	height: 100% !important;
}

.mm-panel#mm-1{
	background: #000 !important;
	color: #FFF !important;
	height: 100% !important;
}

.mm-listview {
	display: flex !important;
	justify-content: space-around!important;
	flex-direction: column !important;
	height:90% !important;
	
}

.mm-listitem__text {
	padding: .5em 15px !important;

}

.mm-listitem {
	border: none !important;
}
.mm-listitem::after {
	border: none !important;
}

.mm-btn_next::after {
	width: 12px;
	height: 12px;
	border: 2px solid rgba(0,0,0,1) !important;
	border-bottom: none !important;
	border-right: none !important;
}

.mm-listitem .sp-group-area {
	padding: .5em 15px !important;
	display: flex;
	justify-content: center;
}
.mm-listitem .sp-group-area span{
	background: #FFF;
	width: 100% !important;
	padding:5%;
	margin: 0 1%;
	width: 48%;
}

.mm-listitem .sp-sns-area {
	padding: .5em 15px !important;
	width: 100% !important;
	justify-content: center;
	align-items: center;
}
.mm-listitem .sp-sns-area span{
	margin: 0 10px;
	width: 2em;

}

.mm-btn_prev {
	flex-grow: 1 !important;
	text-align: left;
	justify-content: flex-start !important;
}
.mm-btn_prev::before {
    width: 20px !important;
    height: 20px !important;
	border: 2px solid #FFF !important;
	border-bottom: none !important;
	border-right: none !important;
	display: inline-block;
}

.mm-btn_prev::after {
	content: "PREV";
	display: inline-block;
	font-size: 2.4rem !important;
	border: none !important;
	font-weight: bold !important;
	color: #FFF !important;
	padding-left: 2.5em;
}

#mm-1 {
	position: relative !important;
	overflow: visible !important;
}


#mm-1:before {
	display: block !important;
	content: "";
	background:#000!important;
	width: 100%;
	height: 60px;
	position: absolute;
	top: -60px;
	z-index: 50;
}

#mm-1 .mm-listview {
	display: block !important;
	position: relative !important;
	height: auto !important;
	background:#000!important;
}

.mm-panel::after {
	height: 90px!important;
}

#mm-1.mm-panel::after {
background:#000!important;
}

#mm-1 .mm-listview li:first-child {
	font-size: 2.4rem !important;
	padding: 1em 60px .5em 40px !important;
}
#mm-1 .mm-listitem {
	color: #FFF !important;
	font-size: 1.6rem !important;
	display: block !important;
} 

#mm-1 .mm-listitem a{
	padding: 1em 40px 1em 40px !important;
	white-space:normal !important;
	word-break:normal !important;
	display: block !important;
	word-wrap: break-word !important;
} 

#mm-1 .mm-listitem a:hover figure img{
	transform: scale(1)!important;
} 

#mm-1 .mm-listitem a p{
	word-break: normal !important;
} 

.mm-listitem_selected > .mm-listitem__text {
	background: none!important;
}
/* --------------------------------------------------

footer

-------------------------------------------------- */


#footer {
	position: relative;
	background: #EFEFEF;
	padding: 4%;
}

.footer-wrap {
	display: flex;
	align-items: center;
}

@media screen and (max-width: 768px) {
	
	#footer {
		padding: 0;
	}
	
	.footer-wrap {
		display: flex;
		flex-direction: column;
	}
	
	
	
}

/* f-logo */

.f-logo {
	max-width: 170px;
	width: 12%;
	margin-right: 40px;
}


@media screen and (max-width: 768px) {
	
	.f-logo {
		width: 50%;
		max-width: 210px;
		margin-right: 0;
		margin: 20px;
	}
	
	
}


/* f-com-info */

.f-com-info {
	margin-right: 40px;
}

.f-com-info .f-com-name {
	font-size: 2.0rem;
	font-weight: bold;
	margin-bottom: .5em;
}

.f-com-info address {
	font-size: 1.3rem;
}


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

	.f-com-info {
		margin-right: 0;
		margin-bottom: 40px;
	}
	
	.f-com-info .f-com-name {
		font-size: 2.5rem;
		margin-bottom: .5em;
		text-align: center;
	}
	
	.f-com-info address {
		font-size: 1.4rem;
		text-align: center;
	}
	
}





/* f-link-list */

.f-link-list {
	margin-right: 40px;
}

.f-link-list li {
	margin-bottom: .5em;
}
.f-link-list li:last-child {
	margin-bottom:0;
}

.f-link-list li a {
	display: block;
	color: #212121;
}


/* for MOBILE */
@media screen and (max-width: 768px) {

	.f-link-list {
		margin-right: 0;
		order: -1;
		background: #000;
		width: 100%;
	}
	
	.f-link-list li {
		border-bottom: 1px solid #323232;
		margin-bottom: 0;
	}
	.f-link-list li:last-child {
		border-bottom: none;
	}
	
	.f-link-list li a {
		font-size: 1.5rem;
		padding: 2em 1em;
		font-weight: bold;
		position: relative;
		line-height: 1;
	}
	
	.f-link-list li a:after {
		content: "\f105";
		font-family: FontAwesome;
		display: block;
		position: absolute;
		font-size: 2.4rem;
		font-weight: normal;
		top: 50%;
		right: 1em;
		margin-top: -0.5em;
	}
	
	
}




/* f-sns-area */

.f-sns-area {
	margin-right: 40px;
}

.f-sns-area p {
	font-weight: bold;
	margin-bottom: 1em;
}

.f-sns-area .sns-list {
	padding: 0 10px;
	display: flex;
	justify-content: space-around;
}

.f-sns-area .sns-list li{
	width: 45px;
}

.f-sns-area .sns-list a img {
	fill: #FFF;
	width: 45px;
}


/* for MOBILE */
@media screen and (max-width: 768px) {

	.f-sns-area {
		margin-right: 0;
		order: -1;
		padding: 2em 0;
		border-bottom: 2px solid #A51218;
		width: 100%;
		text-align: center;
	}
	
	.f-sns-area p {
		font-size: 1.5rem;
	}
	
	.f-sns-area .sns-list {
		justify-content:center;
	}
	
	.f-sns-area .sns-list li{
		margin: 0 10px;
	}
	
}




/* copy */

.copy {
	margin-left: auto;
	font-size: 1.0rem;
}


/* for MOBILE */
@media screen and (max-width: 768px) {

	.copy {
		margin-left: 0;
		font-size: 1.2rem;
		margin-bottom: 40px;
	}
	
}




/* --------------------------------------------------

contents

-------------------------------------------------- */

#contents {
	position: relative;
	z-index: 1;
	padding-top:70px;
}

 @media screen and (max-width: 768px) {
	#contents {
		padding-top:60px;
	}
}




/* --------------------------------------------------

breadCrumbs

-------------------------------------------------- */
.breadCrumbs {
	margin-top: 5px;
	padding-left: calc(10% + 25px);
}
.breadCrumbs ul {
	display: flex;
	align-items: center;
	padding: 10px 0;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.breadCrumbs li {
	font-size: 1.3rem;
	margin-left: 10px;
}
.breadCrumbs a {
	align-items: center;
	color: #C7151D;
}
.breadCrumbs a:hover {
	text-decoration: none;
}
.breadCrumbs li:after {
	content: "\03e";
	font-family: fontawesome;
	margin-left: 1rem;
	vertical-align: middle;
	color: #C7151D;
}
.breadCrumbs li:last-of-type:after {
	content: none;
}
.breadCrumbs.sp-area {
	display: none;
}
@media screen and (max-width: 768px) {

	.breadCrumbs {
		padding-left: 0;
	}
	.breadCrumbs ul {
		justify-content: flex-end;
		padding: 5px;
	}
	.breadCrumbs li {
		font-size: 1.2rem;
	}
}




/* --------------------------------------------------

layout

-------------------------------------------------- */


/* --------------------------------------------------
inner
-------------------------------------------------- */
.inner {
	width: 92%;
	margin: 0 auto;
	max-width: 1280px;
}


/* --------------------------------------------------
col2_block
-------------------------------------------------- */

.col2-block {
	width: 92%;
	margin: 0 auto 10rem;;
	max-width: 1280px;
	display: flex;
	justify-content: space-between;	
}

/* main-block */

.main-block {
	width: calc(100% - 380px);
	flex-grow: 1;
}


/* side-block */

.side-block {
	min-width: 340px;
	max-width: 340px;
	padding-left: 40px;
	border-left: 1px solid #EFEFEF;
	margin-left: 40px;
	position: relative;
}

.side-block .side-block-inner {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
}



@media screen and (max-width: 768px) {
	
	.col2-block {
		display: block;
		width: 100%;
		margin: 0 auto;
	}

	.main-block {
		width: 100%;
		margin: 0 auto 10%;
	}

	.side-block {
		width: 100%;
		max-width: none;
		padding: 5% 0 5%;
		margin: 0;
		border-left: none;
		background: #EFEFEF;
	}
	
	.side-block .side-block-inner {
	  position: relative;
	  top: auto;
	}
}




/* --------------------------------------------------
side-block
-------------------------------------------------- */

/* banner-area */

.banner-area {

}

.banner-area > div {
	margin-bottom: 1.5em;
	overflow: hidden;
}

.banner-area > div a:hover img{
	transform: scale(1);
	opacity: 0.75;
}
/* side-sns-area */
.side-sns-area {
	background: #EFEFEF;
	padding: 1em 2em;
}

.side-sns-area p {
	font-weight: bold;
	margin-bottom: 1em;
	font-size: 1.9rem;
	text-align: center;
}
.side-sns-area p span {
	color: #C7151D;
	font-weight: bold;
	display: block;
}

.side-sns-area .sns-list {
	padding: 0 10px;
	display: flex;
	justify-content: space-around;
}

.side-sns-area .sns-list li{
	width: 45px;
}

.side-sns-area .sns-list a img {
	fill: #FFF;
	width: 45px;
}



 @media screen and (max-width: 768px) {
	 
	.banner-area {
		margin-bottom: 20px;
	}
	.banner-area > div {
		margin-bottom: 0;
		text-align: center;
	}
	 
	.banner-area .slick-slide {
		padding: 0 5px;
	}
	.banner-area .slick-slide figure{
		overflow: hidden;
		text-align: center;
	}
	.banner-area .slick-slide figure img{
		display: inline-block;
		max-width: none;
		width: 100%;
	}
	.banner-area .slick-dots {
		bottom: auto;
		top: 115%;
	}
	.banner-area .slick-dotted.slick-slider {
		margin-bottom: 0;
	}
	 
	.banner-area .slick-dots li.slick-active button::before {
		background: #C7151D;
	}
	 
	 
	.side-sns-area {
		display: none;
	}
	 
}



/* --------------------------------------------------

element

-------------------------------------------------- */


/* --------------------------------------------------
paging
-------------------------------------------------- */

.paging{
	padding:40px 0;
	text-align:center;
	position:relative;
	overflow: hidden;
}

.paging span{
	display:inline-block;
	vertical-align:middle;
	font-weight: bold;
	margin: 0 0.5em 0.5em;
}
.paging a{
	line-height:1;
	letter-spacing:normal;
	display:inline-block;
	padding:1em;
	text-decoration:none;
	color:#272727;
	background:#E7E7E7;
	font-weight: bold;
}
.paging a:hover{
	opacity:1;
	color:#FFF;
	background:#C7151D;
}
.paging .current{
	line-height:1;
	letter-spacing:normal;
	display:inline-block;
	padding:1em;
	text-decoration:none;
	color:#FFF;
	background:#C7151D;
}


/* --------------------------------------------------
ttl
-------------------------------------------------- */


/* page-ttl */
.page-ttl {
	display:flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5rem;
	background:  #BD0E26;
	overflow: hidden;
	position: relative;
}

.page-ttl:before {
	content: "";
	display: block;
	background:  url("/National_Library/20160526010038oe_/https://sengokugaming.com/img/common/bg_ttl.png") center center no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.page-ttl h2 {
	padding: .9em 0;
	color: #FFF;
	font-size: 6.0rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.2;
	z-index: 5;
}


.page-ttl h2:before {
	content: "";
	background:  url("/National_Library/20160526010038oe_/https://sengokugaming.com/img/common/logo_w.png") center center no-repeat;
	background-size: contain;
	width: 80px;
	height: 90px;
	position: absolute;
	left: 5%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
}

.page-ttl h2:after {
	content: "";
	background:  url("/National_Library/20160526010038oe_/https://sengokugaming.com/img/common/logo_w.png") center center no-repeat;
	background-size: contain;
	width: 80px;
	height: 90px;
	position: absolute;
	right: 5%;
	top: 50%;
	transform: translate(50%,-50%);
	z-index: 10;
}



.page-ttl h2 span {
	color: #FFF;
	font-size: 1.4rem;
	display: block;
}
.page-ttl.topics-ttl h2 {
	color: #FFF;
	font-size: 4.7rem;
	padding: 1.5em 0;
}


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

	/* page-ttl */
	.page-ttl {
		margin-bottom: 3rem;
	}




	
	.page-ttl h2 {
		padding: 1em 0;
		font-size: 3.0rem;
	}


	.page-ttl h2:before {
		width: 40px;
		height: 45px;
		left: 8%;
	}
	
	.page-ttl h2:after {
		width: 40px;
		height: 45px;
		right: 8%;
	}

	.page-ttl h2 span {
		font-size: 1.4rem;
	}
	
	.page-ttl.topics-ttl h2 {
		font-size: 3.2rem;
		padding: 2.5em 0;
	}

}

/* main-ttl */


.main-ttl {
	border-top: 3px solid #C7151D;
	padding-top: 20px;
	font-size: 3.4rem;
	color: #000;
	margin-bottom: 1em;
	line-height: 1.4;
	font-weight: bold;
}

.main-ttl span {
	background: none;
	color: #C7151D;
	display: block;
	padding: .1em;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: .5em;
}


/* for TABLET */
@media screen and (max-width: 768px) {
	
	.main-ttl {
		width: 92%;
		margin: 0 auto 1em;
	}
}



/* sec-ttl*/


.sec-ttl{
    background: #000;
	margin-bottom: 2em;
}
.title-gray{
  background: #333;
}
.sec-ttl,
.title-gray{
  font-size: 1.4rem;
  position: relative;
  padding: 1.5rem 0 1.5rem 3.5rem;
  color: #fff;
  overflow: hidden;
}
.sec-ttl:before,
.title-gray:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 1rem solid #C5161B;
  border-bottom: 8rem solid transparent;
  border-bottom: 7.5rem solid transparent;
  top: 0;
  left: .8rem;
}
.sec-ttl:after,
.title-gray:after {
  content: "";
  display: block;
  position: absolute;
  right: 100%;
  width: .8rem;
  height: 100%;
  top: 0;
  left: 0;
  background: #C5161B;
}
.sec-ttl span,
.title-gray span {
  font-size: 2.8rem;
  font-weight: bold;
  margin-right: 2%;
	
}

@media screen and (max-width: 768px) {
	.sec-ttl:before,
	.title-gray:before{
	  border-bottom: 10rem solid transparent;
	}
	.sec-ttl span,
	.title-gray span {
		display: block;
	}
}




/* --------------------------------------------------
btn
-------------------------------------------------- */

/* btn-list */


.btn-list {
	width: 400px;
	margin: 3em auto;
}
.btn-list a{
	position: relative;
	display: block;
	text-align: center;
	padding: 1em;
	color: #C7151D;
	border: 1px solid #C7151D;
	font-weight: bold;
	font-size: 1.6rem;
}
.btn-list a:hover{
  background: #C7151D;
  color: #fff;
}
.btn-list a:after {
	content: "";
	background: url("/National_Library/20160526010038oe_/https://sengokugaming.com/img/common/ico_list.png");
	background-size: 16px;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1em;
	margin: auto;	
  transition: .3s;
}
.btn-list a:hover:after{
  background: url("/National_Library/20160526010038oe_/https://sengokugaming.com/img/common/ico_list02.png");
	background-size: 16px;
	width: 16px;
	height: 16px;
} 

/* btn-back */

.btn-back {
	width: 400px;
	margin: 3em auto;
}
.btn-back a{
	position: relative;
	display: block;
	text-align: center;
	padding: 1em;
	color: #C7151D;
	border: 1px solid #C7151D;
	font-weight: bold;
	font-size: 1.6rem;
}

.btn-back a:before {
	display: inline-block;
	position: absolute;
	margin-top: -0.5em;
	width: 6px;
	height: 6px;
	border-top: 2px solid #C7151D;
	border-right: 2px solid #C7151D;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	top: 0;
	bottom: 0;
	left: 1.5em;
	margin: auto;
	content: "";
  transition: .3s;
}
.btn-back a:hover:before{
  left: 1.2em;
  border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}



/* btn-prev  btn-next*/

.btn-back,
.btn-next{
	width: 400px;
	margin: 3em auto;
}
.btn-back a,
.btn-next a{
	position: relative;
	display: block;
	text-align: center;
	padding: 1em;
	color: #C7151D;
	border: 1px solid #C7151D;
	font-weight: bold;
	font-size: 1.6rem;
}
.btn-back a:hover,
.btn-next a:hover{
  background: #C7151D;
  color: #fff;
}
.btn-back a:before {
	display: inline-block;
	position: absolute;
	margin-top: -0.5em;
	width: 6px;
	height: 6px;
	border-top: 2px solid #C7151D;
	border-right: 2px solid #C7151D;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	top: 0;
	bottom: 0;
	left: 1.5em;
	margin: auto;
	content: "";
}

.btn-next a::after {
	display: inline-block;
	position: absolute;
	margin-top: -0.5em;
	width: 6px;
	height: 6px;
	border-top: 2px solid #C7151D;
	border-right: 2px solid #C7151D;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	right: 1.5em;
	margin: auto;
	content: "";
  transition: .3s;
}

.btn-next a:hover::after{
  border-top: 2px solid #fff;
	border-right: 2px solid #fff;
  right: 1.2em;
}


/* btn-area */

.btn-area {
	display: flex;
	justify-content: center;
}
.btn-area div {
	margin: 3em 2em 4em;
	width: 40%;
}


@media screen and (max-width: 768px) {
	.btn-list,
	.btn-back,
	.btn-next {
		width: 100%;
	}
	
	.btn-area div {
		margin: 2em 1em 3em;
		width: 100%;
	}
}

/* --------------------------------------------------
icon
-------------------------------------------------- */

.ico-category{
	display: inline-block !important;
	background: #C7151D;
	color: #fff;
	padding: .1rem .5rem !important;
	margin-right: .5rem;
	font-size: 1.0rem;
}

@media screen and (max-width: 768px) {
	.category{
		font-size: 1.4rem;
	}
}




/* --------------------------------------------------

module

-------------------------------------------------- */



/* --------------------------------------------------
list
-------------------------------------------------- */
.list li .pht {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.4%;
	overflow: hidden;
}
.list li .pht img {
	position: absolute;
	top: -200%;
	bottom: -200%;
	left: -200%;
	right: -200%;
	margin: auto;
	width: 100%;
	height: auto;
	min-height: auto;
	min-width: 100%;
	transition: 0.5s linear;
}
.list li a:hover .pht img {
	transform: scale(1.1);
	transition: 0.5s linear;
}
.list .date{
	font-size: 1.2rem;
	color: #C7151D;
	font-weight: bold;
}
.list .txt {
	margin-top: 1rem;
}
.list .news-ttl {
	margin: .5rem 0 1rem;
	line-height: 1.4;
}
.list-all .list li a,
.list-all .list li span{
	display: flex;
	position: relative;
	margin-bottom: 1em;
	padding-bottom: 2rem;
	border-bottom: 1px solid #E3E3E3;
}
.list-all .list li .pht-wrap {
	width: 200px;
	margin-right: 2rem;
}
.list-all .list li .txt {
/*	flex-grow: 1;*/
	width: calc(100% - 200px);
	padding-right: 2em;
}
.list-all .list li a:after {
	display: inline-block;
	position: absolute;
	margin-top: -0.5em;
	width: 6px;
	height: 6px;
	border-top: 2px solid #C7151D;
	border-right: 2px solid #C7151D;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	right: 1.5em;
	margin: auto;
	content: "";
  transition: .3s;
}
.list-all .list li a:hover:after{
  right: 1.2em;
}
@media screen and (max-width: 420px) {
	.list-all .list li .pht-wrap {
	width: 150px;
}
.list-all .list li .txt {
/*	flex-grow: 1;*/
	width: calc(100% - 150px);
	padding-right: 2em;
}
}




/* list-3col list-4col*/

.list-3col ,
.list-4col {
	margin-bottom: 4rem;
}

.list-3col ul,
.list-4col ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-right: -3%;
}
.list-3col li {
	width: calc(100% / 3 - 3%);
	margin-right: 3%;
	padding-bottom: 5%;
}
.list-4col li {
	width: calc(100% / 4 - 3%);
	margin-right: 3%;
	padding-bottom: 2%;
}
@media screen and (max-width: 768px) {
	.list-3col li,
	.list-4col li {
	width: calc(100% / 2 - 3%);
	}
}
@media screen and (max-width: 420px) {
	.list-3col {
		width: 100%;
	}
	.list-3col ul {
		margin-right: 0;
	}
	.list-3col li {
		width: 100%;
		margin-right: 0;
	}
}


/* --------------------------------------------------
list-cate-tab
-------------------------------------------------- */


.list-cate-tab {
	margin: 0 0 40px !important;
	position: relative;
	padding: 0 40px;
}

.list-cate-tab:before {
	background: #EFEFEF;
	content: "";
	height: 3px;
	bottom:0;
	left: 0;
	position: absolute;
	width: 100%;
}


.list-cate-tab:after {
	content: "";
	display: block;
	height: calc(100% - 3px);
	width: 8%;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
	background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
	position: absolute;
	right:40px;
	top:0;
	z-index: 10;
}

.list-cate-tab .swiper-cate {
	overflow: hidden;
}

.list-cate-tab .swiper-wrapper {
	padding: 20px 0;
	position: relative;
	
}


.list-cate-tab .swiper-slide{
	text-align: center;
	position: relative;
	padding: 0 5px;
	width: auto;
}

.list-cate-tab .swiper-slide a{
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.0;
	position: relative;
	padding: 20px 10px;
	color: #000;
}

.list-cate-tab .swiper-slide a:hover{
	color: #C7151D;
}

.list-cate-tab .swiper-slide a.active{
	color: #C7151D;
}

.list-cate-tab .swiper-slide a.active:before{
	background: #C7151D;
	content: "";
	height: 3px;
	top: 100%;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 100;
}

.list-cate-tab .swiper-button-prev {
	left: 0px!important;
	background:url("/National_Library/20160526010038oe_/https://sengokugaming.com/img/common/arrow_prev.svg") center center no-repeat!important;
	z-index: 20!important;
}
.list-cate-tab .swiper-button-next {
	right: 0px!important;
	background:url("/National_Library/20160526010038oe_/https://sengokugaming.com/img/common/arrow_next.svg") center center no-repeat!important;
	z-index: 20!important;
}

@media screen and (max-width: 768px) {
	
	.list-cate-tab {
		margin-bottom: 20px;
	}
	
	.list-cate-tab .swiper-button-prev {
		left: 10px!important;
		margin-top: -24px!important;
	}
	.list-cate-tab .swiper-button-next {
		right: 10px!important;
		margin-top: -24px!important;
	}
}

/* --------------------------------------------------
news-list
-------------------------------------------------- */


@media screen and (max-width: 768px) {
	
	.news-list {
		width: 92%;
		margin: 0 auto;
	}
	
}








/* --------------------------------------------------
detail-date
-------------------------------------------------- */


.news-detail-date {
	text-align: right;
	line-height: 1;
	font-weight: bold;
	margin-bottom:40px;
	border-top: 3px solid #000;
}

.news-detail-date span {
	display: inline-block;
	background: #000;
	color: #FFF;
	padding: 0.5em 1.5em;

}


/* for TABLET */
@media screen and (max-width: 768px) {
	
	.news-detail-date {
		width: 92%;
		margin: 0 auto 30px;
	}
	
}



/* --------------------------------------------------
schedule_container
-------------------------------------------------- */


.schedule_container .schedule_list > li:last-child {
	border-bottom: 1px solid #000;
}
.schedule_container a {
	padding: 2em 0;
	display: block;
	position: relative;
	transition: .5s;
}
.schedule_container a:before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: auto;
	z-index: 0;
	background: #000;
}
.schedule_container a:after {
	content: "";
	display: block;
	width: 104%;
	height: calc(100% + 1px);
	position: absolute;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
	z-index: 1;
	box-shadow: 0 0 30px rgba(0, 0, 0, .25);
	transition: .5s;
	opacity: 0;
	pointer-events: none;
}
.schedule_container a:hover {
	border-top: none;
}
.schedule_container a:hover:after {
	opacity: 1;
}
.schedule_container .category .ico-category {
	background: #000;
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.schedule_container .list_title {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 1.5em;
	margin-bottom: 1.5em;
	border-bottom: 1px solid #EFEFEF;
}
.schedule_container .list_title .list_inner .title {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.3;
	margin: 0 1em .2em 0;
}
.schedule_container .list_title .list_inner .date {
	display: flex;
	align-items: flex-start;
	font-weight: bold;
}
.schedule_container .list_title .list_inner .date.oneday {
	align-items: center;
}
.schedule_container .list_title .list_inner .date.oneday p:last-child {
	margin-left: .25em;
}
.schedule_container .date p.date-start, .date p.date-end {
	font-size: 3.5rem;
	line-height: 1;
}
.schedule_container .date p.date-start span, .date p.date-end span {
	font-size: 1.4rem;
	display: block;
	line-height: 1.5;
}
.schedule_container .date p.date-between {
	padding: 0 .25em;
	font-size: 3.5rem;
	line-height: 1.6;
}
.schedule_container .list ul {
	display: flex;
	justify-content: space-around;
}
.schedule_container .list ul li {
	padding-right: 20px;
	min-width: 33%;
	max-width: 33%;
}
.schedule_container .list ul li:last-child {
	flex-grow: 1;
	padding-right: 0;
	max-width: none;
}
.schedule_container .list ul li p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	font-size: 1.5rem;
}
/* for TABLET */
@media screen and (max-width: 768px) {
	.schedule_container .list ul li {
		padding-right: 20px;
		min-width: 100%;
		max-width: 100%;
	}
	.schedule_container .list_title .list_inner .title {
		margin: 0 1em .5em 0;
	}
}

/* button */
.btn {
	width: 200px;
	position: relative;
	display: block;
	text-align: center;
	padding: 1em;
	color: #C7151D;
	border: 1px solid #C7151D;
	font-weight: bold;
	font-size: 1.6rem;
	transition: .5s;
}
.btn:after {
	display: inline-block;
	position: absolute;
	margin-top: -0.5em;
	width: 6px;
	height: 6px;
	border-top: 2px solid #C7151D;
	border-right: 2px solid #C7151D;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 0;
	bottom: 0;
	right: 1.5em;
	margin: auto;
	content: "";
	transition: 0.5s;
}
.schedule_container a:hover .btn:after {
	right: 1em;
	transition: 0.5s;
}

.btn.result {
	background: #C7151D;
	color: #fff;
}
.btn.result:after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

/* for TABLET */
@media screen and (max-width: 768px) {

	.schedule_container .schedule_list > li {
		position: relative;
		padding: 0 1em;
	}
	.schedule_container a {
		padding: 2em 0 7em;
	}
	.schedule_container .list_title {
		display: block;
	}
	.schedule_container .list {
		margin-bottom: 1.5em;
	}
	.schedule_container .list ul {
		display: block;
	}
	.schedule_container .list ul li {
		width: 100% !important;
	}
	.schedule_container .list ul li p {
		margin-bottom: 1em;
	}
	.list_inner .btn {
		position: absolute;
		margin: auto;
		right: 0;
		left: 0;
		bottom: 2em;
		display: block;
		max-width: 320px;
		width: 100%;
	}
}


/* --------------------------------------------------
result-list
-------------------------------------------------- */

.result-list .sec-ttl{
  margin-bottom: 0;
}
.result-list-all{
  margin-bottom: 3em;
}
.result-list-all li {
  padding: 2% 4%;
  color: #FFF;
}
.result-list-all li:nth-child(odd) {
  background: #C7151D;
}
.result-list-all li:nth-child(even) {
  background: #9D1D21;
}
.result-list-all li .list-day {
  font-size: 1.6rem;
  margin-left: 2.5rem;
  color: #fff;
  font-weight: bold;
}
.result-list-all li .list-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
}



/* --------------------------------------------------
post-content
-------------------------------------------------- */

.post-content{
	overflow:hidden;
}

@media screen and (max-width: 768px) {
	.post-content{
		width: 92%;
		margin: 0 auto;
	}
	
}

/* post-sttl-large */

.post-sttl-large {
	line-height:1.2;
	margin-top:4em;
	margin-bottom:2em;
	font-size:2.8rem;
	padding-bottom:0.5em;
	font-weight:bold;
	border-bottom: 3px solid #C7151D;
}

.post-sttl-large:first-of-type {
	margin-top:0;
}


/* post-sttl-small */

.post-sttl-small {
	line-height:1.2;
	margin-top:3em;
	margin-bottom:2em;
	font-size:2.4rem;
	padding-bottom:0.5em;
	font-weight:bold;
	border-bottom: 2px solid #C7151D;
}

.post-sttl-large + .post-sttl-small {
	margin-top:0;
}

/* post-pht */

.post-pht {
	margin-bottom:5em;
}


.post-pht div {
	width:100%;
	height: auto;
  max-height: 600px;
  text-align: center;
}

.post-pht img {
  height: auto;
  max-height: 600px;
  max-width: 100%;
  width: auto;
}

.post-pht figcaption{
	display:block;
	font-size:1.2rem;
	padding:5px;
	line-height:1.2;
	text-align:center;
}


/* two-post-pht */

.two-post-pht {
	display:flex;
	justify-content: space-between;
}


.two-post-pht .post-pht {
	width:48%;
	font-size:1.6rem;
	vertical-align:top;
}

@media screen and (max-width: 420px) {
	
	.post-pht div {
		max-height: 300px;
	}
	
	.post-pht img {
		max-height: 300px;
	}
	
}

/* iframe-area */
.iframe-area {
	display: block;
	position: relative;
	margin-bottom: 5em;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}

.iframe-area iframe {
	position: absolute;
	top: -200%;
	bottom: -200%;
	left: -200%;
	right: -200%;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
}


/* wysiwyg */

.wysiwyg {
	word-wrap : break-word;
	overflow-wrap : break-word;
	margin-bottom:4%;
}


/* h1 */
.wysiwyg h1 {
	line-height:1.2;
	margin-top:4em;
	margin-bottom:2em;
	font-size:2.8rem;
	font-weight:bold;
	padding-bottom:0.5em;
	font-weight:bold;
	border-bottom: 3px solid #C7151D;
}



.wysiwyg h1:first-child {
	margin-top:0;
}

.wysiwyg p + h1,
.wysiwyg ul + h1,
.wysiwyg ol + h1,
.wysiwyg table + h1,
.wysiwyg dl + h1 {
	margin-top:4em;
}


/* h2 */
.wysiwyg h2  {
	line-height:1.2;
	margin-top:3em;
	margin-bottom:2em;
	font-size:2.4rem;
	padding-bottom:0.5em;
	font-weight:bold;
	border-bottom: 2px solid #C7151D;
}


/* h3 */
.wysiwyg h3  {
	line-height:1.2;
	margin-top:2em;
	margin-bottom:1.5em;
	font-size:2.0rem;
	padding-bottom:0.5em;
	font-weight:bold;
	border-bottom: 1px solid #C7151D;
}


/* h4 */
.wysiwyg h4  {
	line-height:1.2;
	margin-top:2em;
	margin-bottom:1.5em;
	font-size:1.8rem;
	padding-bottom:0.5em;
	font-weight:bold;
	border-bottom: 1px solid #E7E7E7;
}


/* h5 */
.wysiwyg h5  {
	line-height:1.2;
	margin-top:1.5em;
	margin-bottom:1em;
	font-size:1.6rem;
	padding-bottom:0.5em;
	font-weight:bold; 
	border-bottom: 1px solid #E7E7E7;
}


/* h6 */
.wysiwyg h6  {
	line-height:1.2;
	margin-top:1.5em;
	margin-bottom:1em;
	padding-bottom:0.5em;
	font-size:1.4rem;
	font-weight:bold;
	border-bottom: 1px solid #E7E7E7;
}

.wysiwyg h1 + h2,
.wysiwyg h1 + h3,
.wysiwyg h2 + h3,
.wysiwyg h1 + h4,
.wysiwyg h2 + h4,
.wysiwyg h3 + h4,
.wysiwyg h1 + h5,
.wysiwyg h2 + h5,
.wysiwyg h3 + h5,
.wysiwyg h4 + h5,
.wysiwyg h1 + h6,
.wysiwyg h2 + h6,
.wysiwyg h3 + h6,
.wysiwyg h4 + h6,
.wysiwyg h5 + h6 {
	margin-top:0;
}

/* 段落 <p> */
.wysiwyg p {
	margin-bottom:1em;
}

/* 太字赤文字 <strong> */
.wysiwyg strong {
	font-weight: bold;
	color:#F00;
}

/* 太字 <em> */
.wysiwyg em {
	font-weight: bold;
}

/* 斜体 <i> */
.wysiwyg i {
	font-style:italic;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


/* 下線 <u> */
.wysiwyg u {
	text-decoration:underline;
}

/* 打ち消し線 <s> */
.wysiwyg s {
	text-decoration:line-through;
}

/* 下付き <sub> */
.wysiwyg sub {
	font-size:0.8rem;
	vertical-align:bottom;
}

/* 上付き <sup> */
.wysiwyg sup {
	font-size:0.8rem;
	vertical-align:top;
}


.wysiwyg ol,
.wysiwyg ul {
  list-style: inherit;
  list-style-position: inside;
}



/* 順序のないリスト <ol> */
.wysiwyg ol {
	margin:0.5em 0 1em;
	list-style-type: none;
}
.wysiwyg ol > li {
	text-indent: -1em;
	padding-left: 1em;
}

/*順序のないリスト <ul> */
.wysiwyg ul {
	margin:0.5em 0 1em;
	list-style-type: none;
}
.wysiwyg ul > li {
	text-indent: -1em;
	padding-left: 1em;
}

/*横並びリスト <ol><ul> */

.wysiwyg ol.horizontal-list,
.wysiwyg ul.horizontal-list{
	display: flex;
}

.wysiwyg .horizontal-list li {
	margin-right:1.5em;
}

/*定義リスト <dl> */

.wysiwyg dl {
	margin:0.5em 0 1em;
}

.wysiwyg dl dt {
	font-weight:bold;
	display:inline-block;
	color: #C7151D;
}

.wysiwyg dl dd {
	margin-bottom:0.5em;
}



/*横並び定義リスト <dl> */

.wysiwyg dl.horizontal-list dt {
	float: left;
	margin-right:.5em;
}


/* インデント <p class="txt-indent"> */
.wysiwyg .txt-indent {
	text-indent:1em;
}

/* ブロック引用文 <blockquote> */
.wysiwyg blockquote {
	position: relative;
	padding: 1em 2em;
	box-sizing: border-box;
	font-style: italic;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin:0.5em 1em;
	border-left: 5px solid #E7E7E7;
}

/* 中央揃え <p class="txt-center"> */
.wysiwyg .txt-center {
	text-align:center;
}

/* 右揃え <p class="txt-right"> */
.wysiwyg .txt-right {
	text-align:right;
}

/* 両端揃え <p class="txt-justify"> */
.wysiwyg .txt-justify {
	text-align:justify;
}

/* ハイパーリンク <a href=""> */
.wysiwyg a[href] {
	text-decoration:underline;
	color:#03F;
}

/* アンカー挿入 <a id="" name=""> */
.wysiwyg a {
	text-decoration:none;
	color: inherit;
}

/* テーブル <table> */
.wysiwyg table {
	width: auto;
	max-width: 100%;
	margin:1em 0 2em;
	border-collapse:collapse;
	border: 1px solid #DDD;
	word-break: break-word;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.wysiwyg table caption {
	text-align:center;
	margin-bottom:0.5em;
}
.wysiwyg table tr th {
	background: #f6f6f6;
	padding: 0.5em 0.5em;
	border: 1px solid #DDD;
}
.wysiwyg table tr td {
	background: #FFFFFF;
	padding: 0.5em 0.5em;
	border: 1px solid #DDD;
}

.wysiwyg table .txt-justify {
	-moz-text-align-last: justify;
	text-align-last: justify;
}

.wysiwyg .table-center {
	margin: 1em auto 2em;
}
.wysiwyg .table-scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 1em 0 2em;
	max-width: none;
}

.wysiwyg .table-scroll::-webkit-scrollbar {
  height: 5px;
}
.wysiwyg .table-scroll::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #eee;
}
.wysiwyg .table-scroll::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #CCC;
}

.wysiwyg .table-scroll table {
	margin: 0;
	max-width: none;
}


.wysiwyg .table-scroll table caption {
		text-align:left;
}


@media screen and (max-width: 414px) {
	.wysiwyg .table-scroll table {
		min-width: 100%;
	}
}

/* フォントサイズ小 <span class="font-size-small"> */
.wysiwyg .font-size-small {
	font-size:0.6em;
}

/* フォントサイズ大 <span class="font-size-large"> */
.wysiwyg .font-size-large {
	font-size:1.75em;
}


/* 文字の間隔0.5em <span class="font-space-small"> */
.wysiwyg .font-space-small {
	letter-spacing:0.5em;
	margin-left:0.5em;
}

/* 文字の間隔1.0em <span class="font-space-medium"> */
.wysiwyg .font-space-medium {
	letter-spacing:1.0em;
	margin-left:1.0em;
}

/* 文字の間隔1.5em <span class="font-space-large"> */
.wysiwyg .font-space-large {
	letter-spacing:1.5em;
	margin-left:1.5em;
}

/* 文字の間隔2.0em <span class="font-space-xlarge"> */
.wysiwyg .font-space-xlarge {
	letter-spacing:2.0em;
	margin-left:2.0em;
}

/* アドレス */
.wysiwyg address {
	position: relative;
	padding: 1em 2em;
	box-sizing: border-box;
	font-style: italic;
	background: #FBFBFB;
	margin: 0.5em 1em;
}

/* 短い引用 */
.wysiwyg q:before {
	content:'"';
	display:inline-block;
}
.wysiwyg q:after {
	content:'"';
	display:inline-block;
}

.wysiwyg q q:before {
	content:"'";
	display:inline-block;
}
.wysiwyg q q:after {
	content:"'";
	display:inline-block;
}


.wysiwyg q:lang(ja):before {
	content:'『';
	display:inline-block;
}
.wysiwyg q:lang(ja):after {
	content:'』';
	display:inline-block;
}

.wysiwyg q q:lang(ja):before {
	content:"「";
	display:inline-block;
}
.wysiwyg q q:lang(ja):after {
	content:"」";
	display:inline-block;
}

	
/* 出典 */
.wysiwyg cite {
	font-style:italic;
	font-family:Times New Roman,"ＭＳ Ｐゴシック";
}


/* post-pht-txt */

.post-pht-txt {
	
}

.post-pht-txt:after {
  content: "";
  display: block;
  clear: both;
}

.post-pht-txt .post-pht {
	float:right;
	width:48%;
	margin:0 0 2% 2%;
	z-index:10;
	position:relative;
}

.post-pht-txt .wysiwyg {
	margin-bottom:5em;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.post-pht-txt .wysiwyg h1,
.post-pht-txt .wysiwyg h2,
.post-pht-txt .wysiwyg h3,
.post-pht-txt .wysiwyg h4,
.post-pht-txt .wysiwyg h5,
.post-pht-txt .wysiwyg h6,
.post-pht-txt blockquote {
	display:flex;
}


/* related-file */

.related-file {
	line-height:1.2;
	border:#B5B5B5 solid 1px;
	padding:2em;
	padding-left: 3.5em;
	text-indent: -1.5em;
	margin-bottom: 2em;
}

.related-file:before{
	content:"\f019";
	font-family:fontawesome;
	margin-right:0.5em;
	color:#999;
}


/* related-link */

.related-link {
	line-height:1.2;
	border:#B5B5B5 solid 1px;
	padding:2em;
	padding-left: 3.5em;
	text-indent: -1.5em;
	margin-bottom: 2em;
}

.related-link:before{
	content:"\f0c1";
	font-family:fontawesome;
	margin-right:0.5em;
	color:#999;
}


.related-file a,
.related-link a {
	color: #C7151D;
}





/* --------------------------------------------------
sns-share-area
-------------------------------------------------- */

.sns-share-area {
	background: #EFEFEF;
	padding: 2em;
	text-align: center;
	margin-bottom: 60px;
}

.sns-share-area p {
	font-size: 1.9rem;
	margin-bottom: 1em;
	font-weight: bold;
}

.sns-share-area ul {
	display: flex;
	justify-content: center;
}
.sns-share-area ul li {
	width: 50px;
	margin: 0 10px;
}


/* for TABLET */
@media screen and (max-width: 768px) {

	.sns-share-area {
		margin-bottom: 20px;
	}
	
}


/* --------------------------------------------------
animation for PC
-------------------------------------------------- */

	@media screen and (min-width: 768px) {
	
	/* --------------------------------------------------
	js-style
	-------------------------------------------------- */
	
	.fx-col-in li{
		opacity:0;
	}
	
	.fx-in,
	.fx-down,
	.fx-up,
	.fx-left,
	.fx-right{
		visibility:hidden;
	}

}


/* --------------------------------------------------
animate
-------------------------------------------------- */


.fadeIn {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:2s;
 -ms-animation-duration:2s;
 animation-duration:2s;
 -webkit-animation-name: fadeIn;
 animation-name: fadeIn;
 visibility: visible !important;
}
@-webkit-keyframes fadeIn {
 0% { opacity: 0;}
 100% { opacity: 1;}
}
@keyframes fadeIn {
 0% { opacity: 0;}
 100% { opacity: 1;}
}


.fadeInDown {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInDown;
 animation-name: fadeInDown;
 visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(-20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}


.fadeInUp {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInUp;
 animation-name: fadeInUp;
 visibility: visible !important;
}
@-webkit-keyframes fadeInUp {
 0% { opacity: 0; -webkit-transform: translateY(20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInUp {
 0% { opacity: 0; -webkit-transform: translateY(20px); -ms-transform: translateY(20px); transform: translateY(20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}


.fadeInLeft {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInLeft;
 animation-name: fadeInLeft;
 visibility: visible !important;
}
@-webkit-keyframes fadeInLeft {
 0% { opacity: 0; -webkit-transform: translateX(50px); }
 100% { opacity: 1; -webkit-transform: translateX(0); }
}
@keyframes fadeInLeft {
 0% { opacity: 0; -webkit-transform: translateX(50px); -ms-transform: translateX(50px); transform: translateX(50px); }
 100% { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
}


.fadeInRight {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInRight;
 animation-name: fadeInRight;
 visibility: visible !important;
}
@-webkit-keyframes fadeInRight {
 0% { opacity: 0; -webkit-transform: translateX(-20px); }
 100% { opacity: 1; -webkit-transform: translateX(0); }
}
@keyframes fadeInRight {
 0% { opacity: 0; -webkit-transform: translateX(-20px); -ms-transform: translateX(-20px); transform: translateX(-20px); }
 100% { opacity: 1; -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0); }
}


.fx-panel-right {
	position: relative;
	overflow: hidden;
}

.fx-panel-right img {
	visibility: hidden;
}

.fadePanelAnim img {
	animation-fill-mode: both;
	animation-duration:1s;
	animation-timing-function: ease-in;
	animation-name: imgfade;
	visibility: visible !important;
}

@keyframes imgfade {
	0% { opacity: 0; }
	50% {  opacity: 0; }
	51% { opacity: 1; }
	100% { opacity: 1; }
}


.fadePanelAnim::after {
	content:"";
	display: block;
	position:absolute;
	top:0;
	width:100%;
	height:100%;
	z-index:50;
	left: -100%;
	background: #000;
	animation-fill-mode: both;
	animation-duration:1s;
	animation-timing-function: ease-in;
	animation-name: blackPanel;
	visibility: visible !important;
}

@keyframes blackPanel {
	0% { left: -100%; }
	5% { left: -95%; }
	25% {  left: 0%; }
	75% { left: 0%; }
	80% { left: 5%; }
	100% {  left: 100%; }
}
