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

#calendar h2{
}
#mainout{
	  background-color: #2B2B2B;
	height: 328px;
}
#calendar {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    margin-top: 1px;
}
#content{
    width: 1080px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}
#yotei{
    margin-left: 120px;
    float: left;
    margin-top: 20px;
}
#yotei li{
    margin-left: 30px;
    float: left;	
}
#yotei li a{
    	color: #59622A;
	font-size: 20px;
text-decoration: none;
}
#yotei li a:hover{text-shadow: 2px 2px 10px #C3BC64;
}
.title{
  
  
}

#next {
    clear: both;
    text-align: center;	
}
#next ul{
}
#next li{
    float: left;
    margin-top: 20px;
    margin-bottom: 5px;
    margin-left: 180px;  
}
#next a{
    color: rgba(255,255,255,1.00);
    font-size: 32px;
    text-decoration: none;
}
#next2 {
    clear: both;
    text-align: center;	
}
#next2 ul{
}
#next2 li{
    float: left;
    margin-top: 20px;
    margin-bottom: 5px;
    margin-left: 180px;  
}
#next2 a{
    color: rgba(255,255,255,1.00);
    font-size: 32px;
    text-decoration: none;
}
.calendar-back{
    position: relative;
    display: inline-block;
    height: 46px;
    margin-left: 0px;
    padding-top: 6px;
    padding-right: 10px;
    padding-left: 6px;
    padding-bottom: 6px;
    color: #fff;
    background: #59622A;
    margin-right: 0px;
}
.calendar-back:before {
  position: absolute;
  top: 0;
  left: -23px;
  content: '';
  border-width: 23px 23px 23px 0;
  border-style: solid;
  border-color: transparent #59622A transparent transparent;
}
.calendar-next{
    position: relative;
    display: inline-block;
    height: 46px;
    margin-right: 0px;
    padding-top: 6px;
    padding-right: 6px;
    padding-left: 10px;
    padding-bottom: 6px;
    color: #fff;
    background: #59622A;
    margin-left: 0px;
}
.calendar-next:before {
  position: absolute;
  top: 0;
  left: 80px;
  content: '';
  border-width: 23px 0px 23px 23px;
  border-style: solid;
  border-color: transparent transparent transparent #59622A;
}
.type2{
    margin-left: 30px;
	margin-bottom: 10px;
    display: inline-block;
    padding-top: 5px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 5px;
    border-radius: 6px;
    color: rgba(255,255,255,1.00);
    text-shadow: -1px -1px rgba(95,95,95,1.00);
    -webkit-box-shadow: 1px 1px rgba(115,115,115,1.00);
    box-shadow: 1px 1px rgba(115,115,115,1.00);
}


.type-live{background-color: #C13A40}
.type-program{background-color: #94B78D}
.type-chapel{background-color: #756F55}
.type-plan{background-color: #435847}
.type-snow{background-color: #398793}
.type-walk{background-color: #402E2B}
.type-wagai{background-color: #E59A57}
.type-event{background-color: #75394D }
#setumei{
    margin-bottom: 20px;	
}


.c-switch-check {
    display: none;
}
.c-switch-label {
	top: 7px;
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    border-radius: calc(26px / 2);
    background: #cccccc;
    transition: background 200ms;
}
.c-switch-label::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    width: calc(26px - 4px);
    height: calc(26px - 4px);
    border-radius: calc((26px - 4px) / 2);
    background: #ffffff;
    transform: translateX(0);
    transition: transform 200ms;
}
.c-switch-check:checked + .c-switch-label {
    background: #3dcc55;
}
.c-switch-check:checked + .c-switch-label::before {
    transform: translateX(calc((50px - 4px) - (26px - 4px)));
}
/* トグルチェックボックスを隠す */
#live-toggle {display: none;}
/* 開く要素は既定で隠す */
.live {display : none;}
/* チェックボックスをチェックしたときに隠しコンテンツを表示 */
#live-toggle:checked ~ * .live {display: block;}
/* チェックボックスがチェックされていたらボタンにスタイルを適用 */
#live-toggle:checked ~ #live-btn {background-color: #3dcc55;}

/* トグルチェックボックスを隠す */
#program-toggle {display: none;}
/* 開く要素は既定で隠す */
.program {display : none;}
/* チェックボックスをチェックしたときに隠しコンテンツを表示 */
#program-toggle:checked ~ * .program {display: block;}
/* チェックボックスがチェックされていたらボタンにスタイルを適用 */
#program-toggle:checked ~ #program-btn {background-color: #3dcc55;}

/* トグルチェックボックスを隠す */
#chapel-toggle {display: none;}
/* 開く要素は既定で隠す */
.chapel {display : none;}
/* チェックボックスをチェックしたときに隠しコンテンツを表示 */
#chapel-toggle:checked ~ * .chapel {display: block;}
/* チェックボックスがチェックされていたらボタンにスタイルを適用 */
#chapel-toggle:checked ~ #chapel-btn {background-color: #3dcc55;}

/* トグルチェックボックスを隠す */
#plan-toggle {display: none;}
/* 開く要素は既定で隠す */
.plan {display : none;}
/* チェックボックスをチェックしたときに隠しコンテンツを表示 */
#plan-toggle:checked ~ * .plan {display: block;}
/* チェックボックスがチェックされていたらボタンにスタイルを適用 */
#plan-toggle:checked ~ #plan-btn {background-color: #3dcc55;}

/* トグルチェックボックスを隠す */
#snow-toggle {display: none;}
/* 開く要素は既定で隠す */
.snow {display : none;}
/* チェックボックスをチェックしたときに隠しコンテンツを表示 */
#snow-toggle:checked ~ * .snow {display: block;}
/* チェックボックスがチェックされていたらボタンにスタイルを適用 */
#snow-toggle:checked ~ #snow-btn {background-color: #3dcc55;}

/* トグルチェックボックスを隠す */
#walk-toggle {display: none;}
/* 開く要素は既定で隠す */
.walk {display : none;}
/* チェックボックスをチェックしたときに隠しコンテンツを表示 */
#walk-toggle:checked ~ * .walk {display: block;}
/* チェックボックスがチェックされていたらボタンにスタイルを適用 */
#walk-toggle:checked ~ #walk-btn {background-color: #3dcc55;}

/* トグルチェックボックスを隠す */
#wagai-toggle {display: none;}
/* 開く要素は既定で隠す */
.wagai {display : none;}
/* チェックボックスをチェックしたときに隠しコンテンツを表示 */
#wagai-toggle:checked ~ * .wagai {display: block;}
/* チェックボックスがチェックされていたらボタンにスタイルを適用 */
#wagai-toggle:checked ~ #wagai-btn {background-color: #3dcc55;}

/* トグルチェックボックスを隠す */
#event-toggle {display: none;}
/* 開く要素は既定で隠す */
.event {display : none;}
/* チェックボックスをチェックしたときに隠しコンテンツを表示 */
#event-toggle:checked ~ * .event {display: block;}
/* チェックボックスがチェックされていたらボタンにスタイルを適用 */
#event-toggle:checked ~ #event-btn {background-color: #3dcc55;}


.onoff{
    margin-left: 60px;	
}
.onoff input{
    padding: 4px 10px 4px 10px;
    margin-left: 20px;
    float: left;
}


#table{
    width: 980px;
    margin-left: 10px;
    float: left;
    margin-top: 30px;	
}

.calendar-box{
    display: flex;
    padding-bottom: 16px;    
}
.calendar-day{
    width: 160px;
    background: rgba(232,231,66,0.3);
    text-align: center;
    font-size: 20px;
   
    vertical-align: middle;
    border: solid rgba(95,95,95,0.7);
    border-width: 1px;
    padding-top: auto;
    padding-bottom: auto;
	 display: -webkit-flex;
 display: flex;
 -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
 align-items: center; /* 縦方向中央揃え */
 -webkit-justify-content: center; /* 横方向中央揃え（Safari用） */
 justify-content: center; /* 横方向中央揃え */
}
.calendar-labels{
    width: 820px;
    text-align: left;
    background: rgba(255,255,255,0.5);
    display: inline-block;
    vertical-align: middle;
    border: solid rgba(95,95,95,0.5);
    border-width: 1px;
	min-height: 40px;
    
    }
.calendar-labels p{
   
}
.hol{
	background: rgba(255,149,150,0.5);
}

.sat{
	background: rgba(156,232,255,0.5);
}
#calendar article{
    border-bottom: thin solid rgba(95,95,95,0.5);
    height: 80px;
    margin-left: 10px;
    margin-top: 0px;
    width: 800px;
    border-top: thin solid rgba(95,95,95,0.5);
    padding-top: 10px;
}
.calendar-labels a img{
    float: left;
}
#calendar article img{
	width: 130px;
	height: 60px;
}
#calendar article a{
	text-decoration: none;
    color: #2B2B2B; 
}
#calendar article a:hover{
	 opacity: 0.5;
	
}
.in{
    color: #156E17;
    height: 20px;
	width: 790px;
    margin-top: 0px;
    padding-left: 5px;
	padding-right: 5px;
    padding-top: 2px;
    margin-left: 14px;
    margin-right: 8px;
    padding-bottom: 2px;
}
.info1{
    float: left;
    margin-left: 5px;
    width: 200px;
}
.info2{
    float: left;
    margin-left: 5px;	
}
.type{
    margin-bottom: 10px;
    display: inline-block;
    padding-top: 5px;
    padding-right: 15px;
    padding-left: 15px;
    padding-bottom: 5px;
    border-radius: 6px;
    color: rgba(255,255,255,1.00);
    text-shadow: -1px -1px rgba(95,95,95,1.00);
    -webkit-box-shadow: 1px 1px rgba(115,115,115,1.00);
    box-shadow: 1px 1px rgba(115,115,115,1.00);
}
.time{
    color: #156E17;
    padding-left: 4px;
    width: 180px;
    padding-right: 4px;
    display: block;
    padding-top: 2px;
    padding-bottom: 2px;
}
.calenderimg img{
	width: 140px;
	height: 60px;
}
.performer{
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
	color: #1F6EC1;
}
.contents{
    margin-left: 10px;	
}
.live .type{
}
#jump{
    height: 930px;
    width: 60px;
    float: right;
    margin-right: 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
    margin-top: 40px;
}
#jump ul{
   
}
#jump ul li{
    width: 60px;
    height: 24px;
    background-color: rgba(183,67,67,0.5);
    vertical-align: middle;
    border: solid rgba(255,255,255,1.00);
    border-width: 1px;
    border-radius: 5px;
    margin-bottom: 1px;   
}
#jump ul li a{
    text-decoration: none;
    text-align: center;
    color: rgba(244,244,244,1.00);
    padding-top: 5px;
    padding-bottom: 1px;
    font-size: 20px;
}
#jump ul li a:hover{
	font-size: 24px;
}
.kara {
	display: none;
}
.kara .calendar-day{
    display: none;	
}
.kara .calendar-labels{
    display: none;	
}
