@charset "UTF-8";
/* info_custom */
/* text ........... $base-textcolor */
/* background ..... #eeeeee        */
/* button ......... $base-btncolor */
/* button ......... rgba(32,171,203  */
/* maincolor ...... #888888        */
/* error .......... #E86A6D        */
html {
  font-size: 62.5%;
}
@media screen and (min-width: 767px) {
  html {
    font-size: 130%;
  }
}
body {
  background: #fdf7ef;
  background-size: 400% 400%;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  -webkit-animation: BackgroundAnimation 40s ease infinite;
  -moz-animation: BackgroundAnimation 40s ease infinite;
  animation: BackgroundAnimation 40s ease infinite;
  font-size: 1.6rem;
  color: #7B6156;
}
* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
a {
  text-decoration: none;
}
@-webkit-keyframes BackgroundAnimation {
  0% {
    background-position: 19% 0%;
  }
  50% {
    background-position: 82% 100%;
  }
  100% {
    background-position: 19% 0%;
  }
}
@-moz-keyframes BackgroundAnimation {
  0% {
    background-position: 19% 0%;
  }
  50% {
    background-position: 82% 100%;
  }
  100% {
    background-position: 19% 0%;
  }
}
@keyframes BackgroundAnimation {
  0% {
    background-position: 19% 0%;
  }
  50% {
    background-position: 82% 100%;
  }
  100% {
    background-position: 19% 0%;
  }
}
.base-wrapper {
  max-width: 768px;
  min-width: 320px;
  min-height: 100vh !important;
  margin: 0 auto;
  padding: 0;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 0 20px #cccccc;
  vertical-align: top;
  padding-top: 70px;
}
header {
  max-width: 768px;
  min-width: 320px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  text-align: center;
  z-index: 4;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: 0 auto;
  padding: 10px 0;
}
header .header__logo {
  width: 45%;
  text-align: left;
}
header .header__logo img {
  max-width: 40%;
}
header .header__member {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
header .header__not-member {
  display: flex;
  justify-content: flex-end;
  width: 50%;
}
header .headermenu__myrecipe a {
  color: #ffa75a;
}
header .headermenu i {
  font-size: 100%;
  height: 58px;
  line-height: 58px;
  vertical-align: middle;
}
@media screen and (max-width: 480px) {
  header .headermenu i {
    font-size: 3.2rem;
  }
}
header .headerbutton_wrapper__btn {
  width: 45%;
  border-radius: 0.3rem;
}
header .headerbutton_wrapper__btn a {
  display: block;
  border-radius: 0.3rem;
  text-decoration: none;
  font-size: 1rem;
  color: #7b6156;
}
header .headerbutton_wrapper__btn--login a {
  color: #7b6156;
}
header .headerbutton_wrapper .headerbutton_wrapper__btn--regist i, header .headerbutton_wrapper .headerbutton_wrapper__btn--login i {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  vertical-align: middle;
  border-radius: 24px;
  background: #edc290;
  color: #503428;
  font-size: 0.6rem;
  text-align: center;
  margin: 0 5px 0 0;
}
body.fixed {
  position: fixed;
  left: 0;
  width: 100%;
}
.modal {
  display: none;
  /* 初期状態 */
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  /* モーダルは画面いっぱいに */
  height: 100vh;
  /* モーダルは画面いっぱいに */
  z-index: 99;
}
.modal__overlay {
  width: 100%;
  /* 黒背景も画面いっぱいに */
  height: 100vh;
  /* 黒背景も画面いっぱいに */
  background-color: rgba(32, 171, 203, 0.95);
}
.modal__menu {
  position: absolute;
  background-color: transparent;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  max-width: 768px;
  min-width: 320px;
  height: auto;
}
.modal .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: 0 auto;
  padding: 1rem 0 0.5rem 0;
}
.modal .header__logo {
  width: 45%;
}
.modal .header__logo img {
  width: 100%;
}
.modal .header__member {
  display: flex;
  justify-content: flex-end;
  justify-content: flex-end;
  width: 30%;
}
.modal .headermenu {
  width: 20%;
  margin-right: 1.5rem;
}
.modal .headermenu__myrecipe {
  width: 45%;
  margin-right: 15%;
}
.modal .headermenu__menuclose {
  width: 48%;
}
.modal .headermenu img {
  width: 100%;
}
.modal__menuwrapper {
  margin-top: 1.5rem;
  padding-right: 3rem;
  height: 80vh;
  overflow: auto;
  text-align: right;
}
.modal .menulist__img {
  height: 3.5rem;
  margin-bottom: 1.5rem;
}
.modal .menulist__img img {
  width: auto;
  height: 100%;
}
.modal .menulist__img--last {
  margin-bottom: 3rem;
}
.modal .menulist__text {
  margin-bottom: 1rem;
}
.modal .menulist__text a {
  text-decoration: none;
  color: #ffffff;
}
.modal .menulist__text a:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 0.5rem;
}
.siteh2 {
  background-color: #ffffff;
  font-weight: bold;
  background-image: url(../image/site/common__h2-back.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center 3.5rem;
  font-size: 1.75rem;
  padding: 20px 0px 10px 0;
  margin: 0 auto 2rem auto;
  text-align: center;
}
.siteh2 span {
  padding-bottom: 2px;
}
.contents_block {
  width: 95%;
  margin: 0 auto;
}
.scroll_info {
  text-align: center;
  padding-bottom: 3rem;
}
