/*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%;
	background:transparent;
}
article,nav,section,header,footer,aside,main,address{
	display:block;
}
* {
	box-sizing: border-box;
}
nav ul,
nav li{
	list-style:none;
	margin:0;
	padding:0;
}
img {
	line-height:0;
	border:none;
	max-width:100%;
	height:auto;
	-moz-box-sizing: border-box;
 	-webkit-box-sizing: border-box;
	box-sizing:border-box;
}

:root {
  --color-rgb:155,14,21;/*メイン 濃い赤*/
  --color-back:6,41,107;/*背景 濃い青*/
  --color-link:243,224,130;/**/
  --color-text:255,255,255;/**/
  --color-hover:243,224,130;/**/
  --color-pink:255,218,218;/**/
  --grd: linear-gradient(135deg,rgb(231,172,22) 0%, rgb(249,243,197) 50%, rgb(231,172,22) 100%);
  --grd-back: linear-gradient(180deg,rgb(229,1,18) 0%, rgb(155,14,21) 50%, rgb(120,11,17) 100%);
  --color-sun:237,0,123;/**/
  --color-sat:0,139,237;/**/
  --color-day:transparent;/**/
  --color-allday:6,41,107;/**/
}

/*body
------------------*/
body{
	margin:0px;
	padding:0px;
	background-color:#FFF;
	color:rgb(var(--color-text));
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-family:Lucida Sans Unicode ,Trebuchet MS,"メイリオ" , Meiryo , 'YuGothic', '游ゴシック','Yu Gothic','游ゴシック体', "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif, serif ,monospace;
	line-height:1.5;
	font-size:16px;
}

/*wrapper
------------------*/
#WRAPPER{
	margin:0px;
	padding:0px;
	height:100%;
	overflow-x: hidden;
	position: relative;
}
.wrapper_fixed{
	padding-top:100px !important;
}

.overlay {
	content: "";
	display: block;
	width: 0;
	height: 0;
	background-color: rgba(50,50,50,0.8);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	opacity: 0;
	transition: opacity .5s;
}
.overlay.open {
	width: 100%;
	height:100vh;
	opacity: 1;
}
/*inner
------------------*/
.inner{
	margin:0 auto;
	overflow:hidden;
	box-sizing:border-box;
	width:94%;
}

@media screen and (min-width: 1024px){
	.inner{
		max-width: 1200px;
	}
}

/*header
---------------------------------------------------------------------*/
#header{
	top:-100px;
	position: sticky;
	z-index:20;
	width:100%;
	padding:10px 2%;
	display:flex;
    align-items: center;
    justify-content:space-between;
	background-color: rgba(var(--color-back), 1);
}
#header.fixed{
	top: 0;
	position: fixed;
	margin: 0;
	background-color:rgba(var(--color-back), .8);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
	box-shadow:0 0 5px rgba(0,0,0,0.1);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
}
#headerlogo img{
	width:240px;
}
ul#header_menu{
	list-style:none;
	margin:5px 0;
	padding:0;
	display:flex;
    align-items: center;
    justify-content: flex-end;
}
ul#header_menu li{
	margin:0 0 0 5px;
	padding:0;
}
ul#header_menu li img{
}
ul#header_menu li a{
	display:block;
    width: 40px;
    height:40px;
/*	padding:10px;
	border-radius:50%;
	border:solid 1px rgba(255,255,255,1) ;*/
}
#navi_spmenu{
	position: relative;
	cursor: pointer;
    width: 50px;
    height:50px;
	z-index:100;
	border:solid 1px rgba(255,255,255,1) ;
	border-radius:50%;
}
#navi_spmenu span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
	background: rgba(255,255,255,1) ;
  	width: 45%;
  }


#navi_spmenu span:nth-of-type(1) {
	top:15px;	
}

#navi_spmenu span:nth-of-type(2) {
	top:23px;
}

#navi_spmenu span:nth-of-type(3) {
	top:31px;
}


#navi_spmenu.active span:nth-of-type(1) {
    top: 17px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
  	width: 45%;
}

#navi_spmenu.active span:nth-of-type(2) {
	opacity: 0;
}

#navi_spmenu.active span:nth-of-type(3){
    top: 29px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
  	width: 45%;
}


#headernavi{
	flex-grow:2;
}
@media screen and (min-width: 1024px){

	.pcmenu{
		position:relative;
		overflow:hidden;
		display:flex !important;
		justify-content:flex-end;
	}
}
#header .pcmenu li{
	margin:0 5px;
	text-align:center;
}
#header .pcmenu li a{
	padding:5px 5px;
	display:block;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	position:relative;
	height:3.5em;
	color:#FFF;
}

#header .pcmenu li a:after{
	display:block;
	position:absolute;
	bottom:0;
	content:"";
	height:3px;
	width:0;
	background: var(--grd);
	border-radius:5px;
    transition: all .4s;
    width:100%;
    left: 0px;
    transition: 0.3s ease-in-out;
    bottom: 0;
	transform:scale(0);
}
#header .pcmenu li a:hover,
#header .pcmenu li a.current{
	color:rgba(var(--color-link), 1);
}
#header .pcmenu li a:hover:after,
#header .pcmenu li a.current:after{
	transform:scale(1);
}
#mainnavi {
	width: 320px;
	height:100vh;
	background-color: rgba(var(--color-rgb), 1);
	position: fixed;
	top: 0px;
	right: 0;
	z-index:11;
	padding-top:90px;
	transform: translate(320px,0px);
	transition: all .5s;
}
#mainnavi.open {
	transform: translateZ(0);
	transition: all .5s;
}
.slidemenu{
	margin:0 auto;
	padding-bottom:2em;
	transition: all .5s;
}
.slidemenu ul{
	margin-left:2em;
}
#mainnavi.open .slidemenu{
	margin:0px auto 0;
}
.slidemenu > li{
	transition: all .5s;
}
#mainnavi.open .slidemenu li{
	height:auto;
}
.slidemenu > li{
	border-top:dotted 1px #DDD;
}
.slidemenu li a{
	display:block;
	padding:0.75em;
	position:relative;
	flex-grow: 2;
	color:#FFF;
}

.slidemenu a:after{
	display:block;
	content:"";
	border-top: solid 2px rgba(255,255,255,1);
	border-right: solid 2px rgba(255,255,255,1);
	width: 12px;
	height: 12px;
	position:absolute;
	right:15px;
	top: 50%;
	transform: translate(0, -50%) rotate(45deg);
}


/*totop
------------------*/

/*footer
------------------*/
#footer{
	padding:00px 0 30px;
	color:#FFF;
	background-color:rgba(var(--color-back), 1);
	text-align:center;
}
#footer .inner{
	margin-top:30px;
}
h2.footerlogo{
	width:240px;
	margin:0 auto 20px;
}
ul.sns_icon{
	display:flex;
	justify-content:center;
	margin:auto;
}
ul.sns_icon li{
	width:50px;
}
ul.sns_icon li img{
}
#footer #copyright{
	text-align:center;
	font-size:small;
	clear:both;
	margin:0px 0;
	padding:10px 0;
}





/*Common
------------------*/
/*main
------------------*/
#main{
	margin:0px auto;
	position:relative;
	background:rgba(var(--color-rgb), 1);
}
#mainimg{
}
h1#mainimg {
	margin:0 auto 00px;
	padding:0px 0 0;
	line-height:0;
	text-align:center;
	background-size:contain;
	position:relative;
}
h1#mainimg img{
	width:100%;
	position:relative;
	z-index:10;
}
/*maincol
------------------*/
#maincol{
	overflow:hidden;
	margin:0px auto;
	position:relative;
	padding:0px 0 0 0;
}
#maincol article  {
	margin:0px 0;
	padding:0;
	position: relative;
	background:var(--grd-back);
}
#footer:before,
#maincol article:before{
	content:'';
	display:block;
	height:10vh;
	width:120%;
	margin:0 -10%;
	border-bottom-left-radius: 50% 100%;
	border-bottom-right-radius: 50% 100%;
	background-color:rgb(120,11,17) ;
	box-shadow:0 -20px 20px inset rgba(0, 0, 0, 0.2);
}
#maincol article:first-child:before{
	display:none;
}
#maincol article .inner{
	padding:40px 4%;
	position:relative;
	z-index:10;
}

p{
	margin:0 0 1em 0;
	padding:0;
}
h1,h2,h3{
	float:none;
	clear:both;
}

#maincol h2 {
	text-align: left;
	font-size: clamp(1.8rem, 1.5rem + 2vw, 4rem);
	margin:0em 0 1.5em;
	padding:0.25em 0;
	color:rgba(var(--color-link), 1);
	position:relative;
	position: relative;
	line-height:1.2;
}
#maincol h2 small{
	font-size:0.9rem;
	font-weight:normal;
}
#maincol h2 span{
	display:inline-block;
	margin-right:0.5em;
	display:inline-block;
	padding:0;
	font-weight: bold;
	margin:0 0.5em 0 0;
	background: var(--grd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#maincol h3{
	margin:3em 0 1.5em;
	position: relative;
	font-size: clamp(1.2rem, 1.3vw, 1.5rem); 
	padding:0 1rem 0.5rem ;
	position:relative;
}
#maincol h3:after{
	content: '';
  position: absolute;
  background:var(--grd);
  box-shadow: 0px 0px 12px rgb(var(--color-link));
  height: 4px;
  width: 100%;
  top: 100%;
  left: 0;
  border-radius: 50%;
  overflow: hidden;
}

#maincol h4{
	margin:0 0 0.5em 0 ;
	font-size: clamp(1.1rem, 1.2vw, 1.25rem); 
	padding:0;
	border-radius:3rem;
}

#maincol .inner > h3:first-child{
	margin-top:0em;
}
#maincol h4{
}
.small{
	font-size:80%;
}
.large{
	font-size:120%;
}

.center{
	text-align:center !important;
}
.txtright{
	text-align:right !important;
}
.txtleft{
	text-align:left !important;
}


.clear{
	clear:both;
	float:none;
}
strong{
	font-weight:bold;
	font-size:1.1em;
}
em,
.red{
	font-style:normal;
	color:#ff3f30 !important;
}
.blue{
	color: #39a6ff !important;
}
.linkbutton a{
	background-color:rgba(var(--color-link), 1);
	background:var(--grd);
	background-size:200%;
	background-position:100%;
	color:rgba(var(--color-rgb), 1) !important;
	display:inline-block;
	padding:0.5em 2em;
    font-size: 18px;
    font-weight: bold;
	position:relative;
	min-width:300px;
	border-radius:50px;
}
.linkbutton a:hover{
	text-decoration:none !important;
	background-position:0%;
}

.border{
	border:solid 1px #CCC;
}
hr{
	border:0px;
	border-top:dotted 1px #333;
}
.u_line{
	background: linear-gradient(transparent 70% , rgba(var(--color-back),.5) 70%);
}
a{
	text-decoration: none;
}
a:hover{
	color:rgba(var(--color-link), 1);
	transition-duration: 0.2s;
}
#main a{
	color: rgba(var(--color-hover), 1);
	text-decoration: none;
	transition-duration: 0.2s;
}

#main a:hover{
	text-decoration:underline;
}
#maincol a img{
	filter: Alpha(opacity=100); 
    -moz-opacity:1.0;
    opacity:1.0; 
	transition-duration: 0.2s;
}
#maincol a:hover img{
	filter: Alpha(opacity=85); 
    -moz-opacity:0.85;
    opacity:0.85; 
	transition-duration: 0.2s;
}
#main a.blank:not(a:has(img)):after{
	content:'';
	display:inline-block;
	vertical-align:middle;
	margin-left: 5px;
	height:1em;
	width:1em;
	background:url(../img/blank.svg) no-repeat center center;
	background-size:0.8em;
}
@media screen and (min-width: 1024px){
	.flexbox{
		display:flex;
		justify-content:space-between;
		/*align-items:flex-start;*/
	}
	.flexbox div{
		width:48%;
	}
}

/*table*/
table caption{
	text-align:left;
}
table.default{
	border-collapse:collapse;
	margin:0px 0 20px 0;
	width:100%;
	background-color:#000;
	/*color:#000;*/
}
table.default th,
table.default td{
	padding: 10px 10px;
	border-left: 1px solid rgba(var(--color-text), 1);
	border-bottom: solid 1px rgba(var(--color-text), 1);
}
table.default tr{
	border-right: 1px solid rgba(var(--color-text), 1);
	border-top: solid 1px rgba(var(--color-text), 1);
}

table.default thead th{
}
table.default thead td{
}

table.default th{
	font-weight: bold;
	white-space: nowrap;
	background-color:rgba(var(--color-rgb), .5);
}
table.default td{
	vertical-align:middle;
	/*background-color:rgba(var(--color-rgb), .1);*/
}
table.default thead th,
table.default thead td{
	text-align:center;
}

table.widthmax{
	width:100%;
}

table.default tbody.weekday td,
table.default th.weekday,
table.default td.weekday{
	background-color:var(--color-day);
}
table.default tbody.sat td,
table.default th.sat,
table.default td.sat{
	background-color: rgba(var(--color-sat), 1);
}
table.default tbody.sun td,
table.default th.sun,
table.default td.sun{
	background-color: rgba(var(--color-sun), 1);
}
table.default tbody.allday td,
table.default th.allday,
table.default td.allday{
	background-color:rgba(var(--color-allday), 1);
}
table.timetable{
	text-align:center;
}
table.timetable tbody tr:nth-of-type(2n+1) td{
	background-color:rgba(255,255,255,.2);
}

table.present{
	border-collapse:collapse;
	margin:0px auto 20px;
	width:100%;
	border-top: dotted 1px rgba(var(--color-back), 1);
}
table.present tr{
	border-bottom: dotted 1px rgba(var(--color-back), 1);
}
table.present th,
table.present td{
	padding: 10px 10px;
}
table.present th{
	text-align:left;
}
table.present td{
	text-align:right;
}
table.welcome td{
	text-align:center;
	width:25%;
}
table.welcome td img{
	width:150px;
}
@media screen and (max-width: 1023px){

	table{
	font-size:80%;
	}
	table.default th,
	table.default td{
		padding:5px 2px;
	}
	
	.tableblock{
	}
	table.tableblock th,
	table.tableblock td{
	}
	table.tableblock th{
	}
	table.tableblock td{
		display:block;
	}
	table.tableblock td:not(:last-child){
		border-bottom: solid 0px rgba(255,255,255,1);
	}
}
#maincol article#event{
	padding-top:50px;
}
.event{
	margin:0 0 50px;
	padding:20px;
	background:var(--grd-back);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius:10px;
	position:relative;
}

.event::after {
	position: absolute;
	content: "";
	bottom:-10px;
	left: 0;
	right: 0;
	z-index: -1;
	height: 30px;
	width: 100%;
	border-radius:50%;
	margin: 0 auto;
	transform: scale(0.75);
	-webkit-filter: blur(20px);
	filter: blur(20px);
	background: var(--grd);
	background-size: 100% 100%;
}

#maincol .event h3{
	margin-top:0 !important;
}


/*dl*/

/*ul*/
li{
	margin-bottom:0.5em;
}


ul.chui {
  counter-reset: number;
  list-style: none;
}
ul.chui li{
	text-indent:-1.6em;
	margin-bottom:0.2em;
	font-size:90%;
}
ul.chui li:before {
  content: "※ ";
  padding-right:0.25em;
}

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

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


@media print{

	body{
		width:960px !important;
	}
	#header,
	#header.fixed{
		position:relative !important;
	}
	#totop{
		display:none;
	}
	#footer #footernavi{
		/*display:none;*/
	}
	.flexslider{
		width:960px !important;
	}
	#topimage{
		position:relative !important;
	}
	#main{
		margin-top:0px;
	}
	.print{
		display:none;
	}
}





