@charset "UTF-8";


nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background:#FFF9D9;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}

.toggle_btn {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

main {
  padding: 50px;
}
main h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  text-align: center;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.fuwatAnime {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1.5s;
 -ms-animation-duration:1.5s;
 animation-duration:1.5s;
 -webkit-animation-name: fuwatAnime;
 -ms-animation-name: fuwatAnime;
 animation-name: fuwatAnime;
 visibility: visible !important;
}
@-webkit-keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(-20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fuwatAnime {
 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); }
}

.arrowWrap {
  margin-top: 4vh;
}

.arrow1 {
  width: 15px;
  margin: 0 auto;
  -webkit-animation: arrow1 2s linear 0s infinite normal;
  animation: arrow1 2s linear 0s infinite normal;
}

.arrow2 {
  width: 15px;
  margin: 0 auto;
  -webkit-animation: arrow2 2s linear 0s infinite;
  animation: arrow2 2s linear 0s infinite;
}

.arrow1 span,
.arrow2 span {
  position: relative;
  display: block;
  left: 50%;
}

.arrow1 span {
  margin-top: -10px;
}

.arrow1 span:before,
.arrow2 span:before {
  content: '';
  width: 15px;
  height: 15px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  box-sizing: border-box;
}

@keyframes arrow1 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  20% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }

  80% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes arrow2 {
  0% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }

  20% {
    -webkit-transform: translate3d(-50%, 20px, 0);
    transform: translate3d(-50%, 20px, 0);
  }

  40% {
    -webkit-transform: translate3d(-50%, 20px, 0);
    transform: translate3d(-50%, 20px, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 20px, 0);
    transform: translate3d(-50%, 20px, 0);
  }

  80% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
  }
}

body{
	background-color: #FDFFE3;
}

h1{
	font-size: 24px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	width: 100%;
	position: relative;
	text-align: center;
	margin-top: 80px;
	background-color: #FFC6A2
	
}
div#divfirst p#kyapusyonn{
	
}
div#divfirst p#honnbunn{;
	clear: left;
}
h2{
	text-align: center;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	background-color: #FFC6A2
}

p#tububu{
	text-align: left;
	margin-left: 20px;
	margin: 20px;
	margin-top: 25px;
}
p#honnbunn{
	text-align: left;
	margin-left: 20px;
	margin: 20px;
}

p#bun{
	text-align: left;
	margin-left: 20px;
	margin: 20px;

}
p#bun2{
	text-align: left;
	margin-left: 20px;
	margin: 20px;
}
p#bun3{
	text-align: left;
	margin-left: 20px;
	margin: 20px;
}
p#bun4{
	text-align: left;
	margin-left: 20px;
	margin: 20px;
}
p#bun5{
	text-align: left;
	margin-left: 20px;
	margin: 20px;
}

div#divsecond{
	text-align: center;
	margin-top: 50px;
}

h3{
	font-size: 24px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	width: 100%;
	position: relative;
	text-align: center;
	margin-top: 80px;
	background-color: #FFC6A2
	
}


.resipisyasin{
	margin-left: 15px;
}

.resipisyasinn2{
	margin-left: 15px;
}

.resipisyasinn3{
	margin-left: 15px;
}

p#resipi1{
	text-align: left;
	font-size: 15px;
	margin-left: 30px;
	margin-bottom: 10px;
	margin-top: 50px;
	color: black;
  padding: 0.5em;
  display: inline-block;
  line-height: 1.3;
  background: #FFC6A2;
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;
}

p#resipi1:before{
  content: '●';
  color: white;
  margin-right: 8px;
}

p#resipi2{
	text-align: left;
	font-size: 15px;
	margin-left: 30px;
	margin-bottom: 10px;
	margin-top: 50px;
	color: black;
  padding: 0.5em;
  display: inline-block;
  line-height: 1.3;
  background: #FFC6A2;
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;
}

p#resipi2:before{
  content: '●';
  color: white;
  margin-right: 8px;
}

p#resipi3{
		text-align: left;
	font-size: 15px;
	margin-left: 30px;
	margin-bottom: 10px;
	margin-top: 50px;
	color: black;
  padding: 0.5em;
  display: inline-block;
  line-height: 1.3;
  background: #FFC6A2;
  vertical-align: middle;
  border-radius: 25px 0px 0px 25px;
}

p#resipi3:before{
  content: '●';
  color: white;
  margin-right: 8px;
}

p#tukurikata{
	text-align: left;
	background-color: #FDFFE3;
    border-radius: 240px 15px 100px 15px / 15px 200px 15px 185px;
    padding: 4%;
    width: 260px;
    margin: 10px;
	border: 6px solid #FFC6A2;
	margin-left: 30px

}
p#tukurikata2{
	text-align: left;
	background-color: #FDFFE3;
    border-radius: 240px 15px 100px 15px / 15px 200px 15px 185px;
    padding: 4%;
    width: 260px;
    margin: 10px;
	border: 6px solid #FFC6A2;
	margin-left: 30px

}

p#tukurikata3{
	text-align: left;
	background-color: #FDFFE3;
    border-radius: 240px 15px 100px 15px / 15px 200px 15px 185px;
    padding: 4%;
    width: 260px;
    margin: 10px;
	border: 6px solid #FFC6A2;
	margin-left: 30px;
	margin-bottom: 80px
}

.hutatu{
	margin-top: 40px;
	margin-left: 75px;
}


p#top{
	width: 100%;
	text-align: left
}

p#topsyame{
	width: 100%;
	text-align: left
}
*{
margin: 0;
	padding: 0;
}

.rogotop{
	margin-top: 10px
}
.tubu{
	margin-left: 40px;
	margin-top: 10px;
}

.hukuro01{
	margin-top: 50px;
}
p#sabu1{
	text-align: center;
	background-color: #FFC6A2
}

p#sabu2{
	text-align: center;
    background-color: #FFC6A2
}

p#sabu3{
	text-align: center;
    background-color: #FFC6A2;
}

div #divfnish{
	font-size: 20px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-family: "Yu Gothic", YuGothic, Verdana, 'Hiragino Kaku Gothic ProN','Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, sans-serif;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: 30px;
	margin-bottom: 0px;
	background-color: #FFC6A2
}

#divfnish a {
	text-decoration: none;
	color: black;
}

a{
  position: relative;
  display: inline-block;
  transition: .3s;
}

a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color:#FDFFE3;
  transition: .3s;
  transform: translateX(-50%);
}

a:hover::after{
  width: 100%;
}

div#nanae{
text-align: center;
background-color: #FFC6A2
}

div#buy{
	text-align: center;
	margin-top: 50px
}

.btn-flat-border {
  display: inline-block;
  padding: 0.5em 1.2em;
  text-decoration: none;
  color:black;
  border: solid 2px black;
  border-radius: 3px;
  transition: .4s;
}

.btn-flat-border:hover {
  background: #FFC6A2;
  color: white;
}