/* 一覧 */
body {
  background-color: #fff6e2;
}

footer{
	/* position: absolute; */
	/* bottom: 0;
	left: 0; */

	width: 100%;

	color: #ffffff;
}


.footer_nav a{
	color: #ffffff;
}

.copyright{
	padding: 0 0 0;

	color: #ffffff;

	font-size: 12px;
}

.cont_wrap{
	position: relative;
	z-index: 1;

	padding: 10% 0;
}

.cont{
	position: relative;
	z-index: 1;

	max-width: 300px;
	margin: 0 auto;
	padding: 20px 0 30px;

	opacity: 0.7;
	color: #ffffff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	background: #2f1e00;
}

@media only screen and (max-width:640px) {
	.cont{
		max-width: 220px;
		padding: 20px 0 30px;
	}
}

.cont ul{
	list-style: none;
}

.cont ul li{
	padding: 10px 0 0 0;
}

.cont ul li.margin{
	padding: 10px 0 90px 0;
}

.cont ul li a{
	display: inline-block;

	padding: 2px 5px;

	text-decoration: none;

	color: #ffffff;

	font-size: 12px;
	line-height: 1.2em;
}

.cont ul li a:hover{
	text-decoration: none;

	color: #351f00;
	background: #ffffff;
}

.corona{
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;

  pointer-events: none;

  opacity: 0;
  background: #fff6e2;
}
@media only screen and (max-width:640px) {
  .corona{
    position: fixed;

    height: auto;
    padding: 50px 0 0;
  }
}
.corona  {
    animation: coronaAnimation 4s linear 0s;
}
@keyframes coronaAnimation {
    0% { opacity: 1 }
    80% { opacity: 1 }
    100% { opacity: 0 }
}

.corona_title{
  margin: 0 0 20px;

  font-size: 20px;
  font-weight: bold;
}

.corona_body{
  padding: 0 1.5em;

  font-size: 16px;
  line-height: 2;
}

.corona_body .sp{
  display: none;
}

@media only screen and (max-width:640px) {
  .corona_body .sp{
    display: block;
  }
}

.cb-slideshow {
  background-color: #fff6e2;
  display: none;
}
.cb-slideshow,
.cb-slideshow:after {
    position: fixed;
    z-index: 0;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;

    list-style: none;
}
.cb-slideshow:after {
    content: '';
    /*background: transparent url(../images/pattern.png) repeat top left;*/
}



.cb-slideshow li span {
    position: absolute;
    z-index: 0;
    top: 0px;
    left: 0px;

    width: 100%;
    height: 100%;
    /* animation: imageAnimation 24s linear infinite 0s; */

    animation: imageAnimation 21s linear 0s;

    opacity: 0;
    color: transparent;
    background-repeat: none;
    background-position: 50% 50%;
    background-size: cover;
}


/* .cb-slideshow li div {
	display: none;
    z-index: 1000;
    position: absolute;
    bottom: 30px;
    left: 0px;
    width: 100%;
    text-align: center;
    opacity: 0;
    color: #fff;
    animation: titleAnimation 24s linear infinite 0s;
}
.cb-slideshow li div h3 {
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    font-size: 240px;
    padding: 0;
    line-height: 200px;
} */




.cb-slideshow li:nth-child(1) span {
    animation-delay: 0s;

    background-image: url(../img/index/photo01.jpg?v=20170904);
}
.cb-slideshow li:nth-child(2) span {
    animation-delay: 5s;

    background-image: url(../img/index/photo02.jpg?v=20170904);
}
.cb-slideshow li:nth-child(3) span {
    animation-delay: 10s;

    background-image: url(../img/index/photo03.jpg?v=20170904);
}
.cb-slideshow li:nth-child(4) span {
    animation-delay: 15s;

    background-image: url(../img/index/photo04.jpg?v=20170904);
}

@media only screen and (max-width:640px) {
	.cb-slideshow li:nth-child(1) span {
	    background-image: url(../img/index/photo01s.jpg?v=20170904);
	}
	.cb-slideshow li:nth-child(2) span {
	    background-image: url(../img/index/photo02s.jpg?v=20170904);
	}
	.cb-slideshow li:nth-child(3) span {
	    background-image: url(../img/index/photo03s.jpg?v=20170904);
	}
	.cb-slideshow li:nth-child(4) span {
	    background-image: url(../img/index/photo04s.jpg?v=20170904);
	}
}


/* .cb-slideshow li:nth-child(1) div {
    animation-delay: 3s;
}
.cb-slideshow li:nth-child(2) div {
    animation-delay: 9s;
}
.cb-slideshow li:nth-child(3) div {
    animation-delay: 15s;
}
.cb-slideshow li:nth-child(4) div {
    animation-delay: 21s;
} */

@keyframes imageAnimation {
    0% {animation-timing-function: ease-in;  opacity: 0; }
    8% {animation-timing-function: ease-out;  opacity: 1; }
    17% {transform: scale(1.1); opacity: 1; }
    25% {transform: scale(1.1); opacity: 0; }
    100% { opacity: 0 }
}

@keyframes titleAnimation {
    0% { opacity: 0 }
    8% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}


footer,
.footer_nav a,
.copyright{
  /* animation-name: footerAnimation;
  animation-duration: 3s;
  animation-delay: 20s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: 1; */

	color: #4f2b0e;
}
@keyframes footerAnimation {
    0% { color: #ffffff }
    100% { color:  #4f2b0e}
}



div.menulist_wrap{
  /* position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; */

  display: flex;
  align-items: center;

  /* width: 100%;
  height: 100%; */
}

div.menulist  {
    /* animation-name: menulistAnimation;
    animation-duration: 3s;
    animation-delay: 20s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
    animation-iteration-count: 1; */
    opacity: 1;
}
@keyframes menulistAnimation {
    0% { opacity: 0 }
    100% { opacity: 1 }
}



div.menulist {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;

  padding: 30px 5% 0;

  color: #4f2b0e;
}
@media only screen and (max-width:640px) {
  div.menulist {
    padding: 0 5%;
  }
}

div.menulist a {
  color: #4f2b0e;
}
div.menulist div.menulist_item{
  display: flex;
  flex-direction: column;

  width: 30%;
}
div.menulist div.menulist_item:first-child{
  width: 100%;
  margin-bottom: 30px;
}
@media only screen and (max-width:640px) {
  div.menulist div.menulist_item:first-child{
    margin-bottom: 0;
  }
}
div.menulist div.menulist_item:first-child div.menulist_photo{
  width: 30%;
  margin: 0 auto;
}
@media only screen and (max-width:640px) {
  div.menulist div.menulist_item:first-child div.menulist_photo{
    width: 100%;
    margin: 0 auto;
  }
}
div.menulist div.menulist_item:first-child div.menulist_desc{
  font-size: 125%;
  text-align: center;
  line-height: 1.8;
  margin-top: 10px;
  padding: 0;
}
@media only screen and (max-width:640px) {
  div.menulist div.menulist_item:first-child div.menulist_desc{
    font-size: 130%;
  }
}

div.menulist div.menulist_cont{
  flex: 1 1 auto;
}
div.menulist div.menulist_item h3{
  padding: 0 10px 10px;

  text-align: left;

  font-size: 130%;
  line-height: 1.2;
}
div.menulist div.menulist_desc {
  padding: 0 10px 10px;

  text-align: left;
}
div.menulist div.menulist_share {
  padding: 10px;

  text-align: right;

  line-height: 1;
}
div.menulist div.menulist_share img{
  width: 12px;
  height: auto;
  margin: 0 0 0 5px;
}
div.menulist div.menulist_link {
   justify-content: space-around;

  padding: 10px;

   font-size: 16px;
}
div.menulist div.menulist_link img{
  width: 16px;
  height: auto;
  margin: 0 0 0 5px;
}


@media only screen and (max-width:640px) {
  div.menulist_wrap{
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;
    align-items: center;

    width: 100%;
    height: auto;
  }

  div.menulist {
    position: relative;

    flex-wrap: wrap;
  }
  div.menulist div.menulist_item{
    width: 100%;
    margin: 30px 0 0;
  }
  footer,
  footer.fixed{
    position: relative;
  }
}

.snow{
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;

  display: block;
  overflow: hidden;

  width: 100%;
  height: 100%;

  pointer-events: none;
}
.snowfall-flakes{
  border-radius: 100%;
  box-shadow: 0 0 3px rgb(255, 255, 255), 0 0 5px rgb(255, 255, 255);
}

.snow.sakura .snowfall-flakes{
  animation-name: sakura;
  animation-duration: 2s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  pointer-events: none;

  background-color: transparent !important;
  background-image: url("../img/all/sakura.png") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;

  border-radius: 0;
  box-shadow: none;

  animation-fill-mode: none;
}

.snow.sakura .snowfall-flakes:nth-child(4n){
  animation-name: sakura2;

}
.snow.sakura .snowfall-flakes:nth-child(3n){
  background-image: url("../img/all/sakura2.png") !important;
}
.snow.sakura .snowfall-flakes:nth-child(7n){
  animation-name: sakura3;

  background-image: url("../img/all/sakura3.png") !important;
}

@keyframes sakura {
  0%{
    transform: rotate(0);
  }
  33%{
    transform: rotate(15deg);
  }
  66%{
    transform: rotate(-15deg);
  }
  100%{
    transform: rotate(0);
  }
}

@keyframes sakura2 {
  0%{
    transform: rotate(0);
  }
  /* 50%{
    transform: rotate(360deg);
  } */
  100%{
    transform: rotate(360deg);
  }
}

@keyframes sakura3 {
  0%{
    transform: rotate(0) scale(1.5);
  }
  100%{
    transform: rotate(360deg) scale(1.5);
  }
}

.test{
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;

  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  pointer-events: none;
}
.test2{
  animation-name: sakura;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  pointer-events: none;

  animation-fill-mode: none;
}
