@charset "utf-8";

*, *:before, *:after {
-webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 -o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}

body{
	font-family: "M PLUS Rounded 1c";
}

a{
  text-decoration: none;
}

img{
  vertical-align: bottom;
  backface-visibility: hidden;
}

i {
	margin-right:15px;
}

.toroku {
  background-image: linear-gradient(to right, #b8cbb8 0%, #b8cbb8 0%, #b465da 0%, #cf6cc9 33%, #ee609c 66%, #ee609c 100%);
  box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.3);
  display: block;
  text-align: center;
  width: 80%;
  padding:20px 0;
  position: -webkit-sticky; /* Safariに対応する */
  position: sticky; /* 要素を固定/解除する */
  top: 30px; /* 縦方向の閾値 */
  left: 0;
  right: 0;
  margin:0 auto 20px;
  border-radius: 10px;
  color:#fff;
  font-weight: bold;
  font-size:22px;
  z-index: 9999;
}

.notice{
	display: flex;
	width:calc(100% - 40px);
	margin:15px auto;
}

.notice li{
	width:calc((100% - 40px) / 3);
	margin-right:20px;

}

.notice li:nth-of-type(3){
	margin-right:0;
}

.notice li a{
	font-size:11px;
	display: block;
	padding:5px;
	text-align: center;
	background:#e3c7d1;
	color:#301c23;
}

h1{
	position: absolute;
	top:50px;
	left:0;
}

h1 img{
	width:80%;
	box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.3);
}

h2{
	background:#301c23;
	color:#fff;
	padding:10px;
}

.wrap {
  overflow: hidden;
  position: relative;
  top:0;
  margin-bottom:20px;
}

.sliding {
  background: url("http://calendar-kabe.net/img/lp07-slideimg.jpg") repeat-x;
  height: 350px;
  width: 1182px;
  animation: slide 50s linear infinite;
}

@keyframes slide{
  0%{
    transform: translate3d(0, 0, 0);
  }
  100%{
    transform: translate3d(-591px, 0, 0);
  }
}

.mouse{
	display: flex;
	flex-wrap: wrap;
}

.mouse li{
	width:50%;
}

.mouse img{
	width:100%;
}

.list{
	width:calc(100%  - 40px);
	margin:20px auto;
}

.list a{
	display: block;
	width:calc(100% - 8px);
	padding:15px 0;
	font-size:12px;
	color:#301c23;
}

.list li{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width:100%;
}

.list li span{
	width:8px;
	height:8px;
	display: inline-block;
	border-top:2px solid #301c23;
	border-right:2px solid #301c23;
	transform: rotate(45deg)
}

.copy{
	text-align: center;
	font-size:12px;
	color:#fff;
	font-weight: bolder;
	margin-top:30px;
	background:#301c23;
	padding:20px 0;
}

.fadeIn {
  transform: translate3d(0, -10px, 0);
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}