@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: linear-gradient(104deg, #b2e6f1, #fffef2);
  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;
  animation: BackgroundAnimation 40s ease infinite;
  font-size: 1.4rem;
}

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
          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%;
  }
}

@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;
  -webkit-box-shadow: 0 0 20px #cccccc;
          box-shadow: 0 0 20px #cccccc;
  vertical-align: top;
  padding-top: 70px;
}

header {
  max-width: 768px;
  min-width: 320px;
  width: 100%;
  position: fixed !important;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  text-align: center;
  z-index: 4;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem 0 .5rem 0;
  height: 55px;
}

header .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 95%;
  margin: 0 auto;
}

header .header__logo {
  width: 45%;
}

header .header__logo img {
  width: 100%;
}

header .header__member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  justify-content: flex-end;
  width: 30%;
}

header .header__not-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 50%;
}

header .headermenu {
  width: 20%;
  margin-right: 1.5rem;
}

header .headermenu__myrecipe {
  width: 45%;
  margin-right: 15%;
}

header .headermenu__menu {
  width: 48%;
}

header .headermenu img {
  width: 100%;
}

header .headerbutton_wrapper__btn {
  width: 45%;
  border-radius: .3rem;
}

header .headerbutton_wrapper__btn a {
  padding: .3rem 0;
  display: block;
  border-radius: .3rem;
  text-decoration: none;
}

header .headerbutton_wrapper__btn--login {
  border: 1px solid #20ABCB;
}

header .headerbutton_wrapper__btn--login a {
  color: #18ABCB;
  background-color: #ffffff;
}

header .headerbutton_wrapper__btn--regist {
  background-color: #20ABCB;
  margin-right: .5rem;
}

header .headerbutton_wrapper__btn--regist a {
  color: #ffffff;
}

@media screen and (min-width: 767px) {
  .base-wrapper {
    padding-top: 135px;
  }
  header {
    height: 105px;
  }
}

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%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 100%;
  max-width: 768px;
  min-width: 320px;
  height: auto;
}

.modal .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 95%;
  margin: 0 auto;
  padding: 1rem 0 .5rem 0;
}

.modal .header__logo {
  width: 45%;
}

.modal .header__logo img {
  width: 100%;
}

.modal .header__member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          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: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: .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;
}
/*# sourceMappingURL=common.css.map */