@charset "UTF-8";
/* A Modern CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role="list"], ol[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    -webkit-animation-duration: .01ms !important;
            animation-duration: .01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: .01ms !important;
            transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

a {
  color: #1d1d1d;
}

body {
  position: relative;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  /* All browsers without overlaying scrollbars */
  font-size: 62.5%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

body {
  font: 400 1.6rem/1.75 "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  /*letter-spacing: .1rem;*/
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-print-color-adjust: exact;
}

main h1 {
  font-weight: 900;
  line-height: 1.4;
}

@media only screen and (min-width: 960px) {
  main h1 {
    font-size: 6rem;
    font-weight: 900;
  }
}

main h2, main .txt-h2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
}

@media only screen and (min-width: 600px) {
  main h2, main .txt-h2 {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.4;
  }
}

@media only screen and (min-width: 960px) {
  main h2, main .txt-h2 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.4;
  }
}

.loading {
  -webkit-animation: appear .5s ease;
          animation: appear .5s ease;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all .8s;
  transition: all .8s;
  z-index: 200;
}

.loading img {
  width: 60%;
  max-width: 240px;
}

.loading.loaded {
  opacity: 0;
  visibility: hidden;
  -webkit-animation: loading .8s ease;
          animation: loading .8s ease;
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}

@keyframes loading {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}

.m-block {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.m-block > div {
  margin-bottom: 4%;
}

.m-block.box-3 {
  list-style: none;
}

.m-block.box-3 > div {
  width: 70%;
}

@media only screen and (min-width: 600px) {
  .m-block.box-3 > div {
    width: 30%;
  }
}

@media only screen and (min-width: 960px) {
  .m-block.box-3 > div {
    width: 30%;
  }
}

.m-block.box-3 > li {
  width: 70%;
}

@media only screen and (min-width: 600px) {
  .m-block.box-3 > li {
    width: 30%;
  }
}

@media only screen and (min-width: 960px) {
  .m-block.box-3 > li {
    width: 30%;
  }
}

.txt-l {
  text-align: left !important;
}

.txt-c {
  text-align: center;
}

.txt-r {
  text-align: right;
}

.txt-br {
  display: block;
}

.txt-br-ib {
  display: inline-block;
}

.txt-br-sp {
  display: block;
}

@media only screen and (min-width: 600px) {
  .txt-br-sp {
    display: inline;
  }
}

@media only screen and (min-width: 960px) {
  .txt-br-sp {
    display: inline;
  }
}

.txt-br-tb {
  display: inline;
}

@media only screen and (min-width: 600px) {
  .txt-br-tb {
    display: block;
  }
}

@media only screen and (min-width: 960px) {
  .txt-br-tb {
    display: inline;
  }
}

.txt-br-pc {
  display: inline;
}

@media only screen and (min-width: 960px) {
  .txt-br-pc {
    display: block;
  }
}

.mask-circle {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.order__btn {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-direction: column;
      flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 600px) {
  .order__btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 80%;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 960px) {
  .order__btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
  }
}

.order__btn li {
  width: 80%;
  max-width: 320px;
  margin-bottom: 2%;
}

@media only screen and (min-width: 600px) {
  .order__btn li {
    width: 49%;
    max-width: 420px;
    margin: 0 0 2%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (min-width: 960px) {
  .order__btn li {
    width: 49%;
  }
}

.order__btn a {
  color: #fafafa;
  display: block;
  padding: 1.6rem .8rem;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
  position: relative;
  z-index: 0;
}

.order__btn a::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #eb415d), to(#e01f40));
  background: linear-gradient(90deg, #eb415d 50%, #e01f40 100%);
  border: 1px solid #eb415d;
  border-radius: 100px;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.order__btn a::after {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #e20f2b), to(#f10540));
  background: linear-gradient(90deg, #e20f2b 50%, #f10540 100%);
  border: 1px solid #e20f2b;
  border-radius: 100px;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.order__btn a:hover {
  color: #fff;
}

.order__btn a:hover::before {
  opacity: 0;
}

@media only screen and (min-width: 600px) {
  .order__btn a {
    font-weight: 500;
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 960px) {
  .order__btn a {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #d8ba79), to(#e4b842));
    background: linear-gradient(90deg, #d8ba79 50%, #e4b842 100%);
    border-radius: 100px;
    display: block;
    padding: 1.6rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6rem;
  }
}

.order__btn__black {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: block !important;
  width: 100%;
  max-width: 375px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 600px) {
  .order__btn__black {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    max-width: none;
  }
}

@media only screen and (min-width: 960px) {
  .order__btn__black {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: auto;
  }
}

.order__btn__black li {
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  .order__btn__black li {
    width: 49%;
    max-width: 49%;
    margin: 0 0 2%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (min-width: 960px) {
  .order__btn__black li {
    width: 49%;
    max-width: none;
    margin: 0 0 2%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.order__btn__black li a {
  display: block;
  padding: 1.6rem .8rem;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: .4s;
  transition: .4s;
  position: relative;
  z-index: 0;
  color: #fafafa;
}

.order__btn__black li a::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #eb415d), to(#e01f40));
  background: linear-gradient(90deg, #eb415d 50%, #e01f40 100%);
  border-radius: 100px;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.order__btn__black li a::after {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #e20f2b), to(#f10540));
  background: linear-gradient(90deg, #e20f2b 50%, #f10540 100%);
  border-radius: 100px;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.order__btn__black li a:hover::before {
  opacity: 0;
}

@media only screen and (min-width: 600px) {
  .order__btn__black li a {
    font-weight: 500;
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 960px) {
  .order__btn__black li a {
    border-radius: 100px;
    display: block;
    padding: 1.6rem;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 2rem;
    font-weight: 600;
  }
}

.l-header {
  background: #000;
  padding: 1.6rem;
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
}

@media only screen and (min-width: 600px) {
  .l-header {
    padding: 1.6rem;
  }
}

@media only screen and (min-width: 960px) {
  .l-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.6rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding-right: 120px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-header__logo {
  width: 40%;
  max-width: 190px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.l-main {
  padding-top: 84px;
}

@media only screen and (min-width: 960px) {
  .l-main {
    padding-top: 10.6rem;
  }
}

.l-main > section {
  padding: 3rem 1.6rem;
}

@media only screen and (min-width: 600px) {
  .l-main > section {
    padding: 4rem;
  }
}

@media only screen and (min-width: 960px) {
  .l-main > section {
    padding: 6rem;
  }
}

section .inner-section {
  max-width: 1400px;
  margin: 0 auto;
}

.navi-global {
  display: none;
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 960px) {
  .navi-global {
    display: block;
    text-align: right;
  }
}

.navi-global li {
  list-style: none;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-right: 1em;
}

.navi-global li:last-child {
  margin-right: 0;
}

.navi-global li a {
  display: block;
  text-decoration: none;
  position: relative;
}

.navi-global li a::before {
  background: #fa772b;
  content: "";
  display: block;
  height: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.navi-global li a:hover::before {
  width: 100%;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.show-menu .menu-toggle {
  position: fixed;
  top: 30px;
  right: 20px;
  width: 36px;
  z-index: 100;
}

@media only screen and (min-width: 600px) {
  .show-menu .menu-toggle {
    right: 40px;
  }
}

@media only screen and (min-width: 960px) {
  .show-menu .menu-toggle {
    top: 45px;
  }
}

.show-menu .menu-toggle span {
  background-color: #000;
  border-radius: 100px;
  display: block;
  margin-bottom: 9px;
  height: 1px;
  width: 100%;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.show-menu .menu-toggle span:last-child {
  margin-bottom: 0;
}

.show-menu .menu-toggle.is-open {
  z-index: 200;
}

.show-menu .menu-toggle.is-open span:first-child {
  -webkit-transform: translateY(10px) rotate(225deg);
          transform: translateY(10px) rotate(225deg);
}

.show-menu .menu-toggle.is-open span:nth-child(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.show-menu .menu-toggle.is-open span:last-child {
  -webkit-transform: translateY(-10px) rotate(-225deg);
          transform: translateY(-10px) rotate(-225deg);
}

.show-menu .menu-overlay {
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: .3s;
  transition: .3s;
  visibility: hidden;
}

.show-menu .menu-overlay.is-open {
  opacity: 1;
  z-index: 100;
  visibility: visible;
}

.cont {
  background: #000;
  padding: 4rem 0;
}

.cont__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 1250px;
}

@media only screen and (min-width: 960px) {
  .cont__inner {
    padding: 0;
    width: 100%;
  }
}

.cont.sns {
  background-color: #2e2e2e;
}

.key {
  background: url(../img/bg_key.jpg) center top repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  font-weight: 900;
  position: relative;
  width: 100vw;
  height: 80vh;
  min-height: 645px;
  z-index: 100;
}

@media only screen and (min-width: 960px) {
  .key {
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 600px) {
  .key {
    background-size: cover;
  }
}

@media only screen and (min-width: 960px) {
  .key {
    background-size: cover;
  }
}

.key__cont {
  background: url(../img/key_woman.png) center bottom 140px no-repeat;
  background-size: 320px auto;
  height: 100%;
  min-height: 620px;
  width: 100%;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 600px) {
  .key__cont {
    background: url(../img/key_woman.png) center bottom 80px no-repeat;
    background-size: 380px auto;
    height: 80vh;
    position: relative;
  }
}

@media only screen and (min-width: 960px) {
  .key__cont {
    background: url(../img/key_woman.png) 0% top no-repeat;
    background-size: contain;
    height: 80vh;
    position: relative;
  }
}

.key__ttl {
  display: block;
  margin-top: 8%;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media only screen and (min-width: 600px) {
  .key__ttl {
    margin-top: 7%;
  }
}

@media only screen and (min-width: 960px) {
  .key__ttl {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    padding-left: 40%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.key__ttl__txt {
  text-align: center;
  width: 100%;
  text-shadow: 0px 2px 2px rgba(98, 116, 123, 0.4);
}

@media only screen and (min-width: 960px) {
  .key__ttl__txt {
    padding: 0;
  }
}

.key__ttl__btn {
  position: absolute;
  bottom: 50px;
  padding: 0 2.0rem;
  margin: 0 auto;
  display: block !important;
  text-align: center;
  width: 90%;
  left: 0;
  right: 0;
}

@media only screen and (min-width: 600px) {
  .key__ttl__btn {
    bottom: 60px;
    width: 80%;
  }
}

@media only screen and (min-width: 960px) {
  .key__ttl__btn {
    position: relative;
    bottom: auto;
    width: 100%;
  }
}

.key__ttl__btn li {
  margin-bottom: 2%;
}

.key__ttl h1 {
  font-size: 24px;
  font-size: 6.4vw;
  line-height: 1.2;
}

@media only screen and (min-width: 600px) {
  .key__ttl h1 {
    font-size: 36px;
    font-size: 5.625vw;
  }
}

@media only screen and (min-width: 960px) {
  .key__ttl h1 {
    font-weight: 900;
    font-size: 5.8rem;
  }
}

.key__ttl p {
  font-weight: 500;
  font-size: 1.6rem;
}

@media only screen and (min-width: 600px) {
  .key__ttl p {
    font-size: 16px;
    font-size: 2.5vw;
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 960px) {
  .key__ttl p {
    font-weight: 400;
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}

.key .recipe__list {
  bottom: -40px;
}

@media only screen and (min-width: 600px) {
  .key .recipe__list {
    bottom: -70px;
  }
}

@media only screen and (min-width: 960px) {
  .key .recipe__list {
    bottom: -80px;
  }
}

.worries {
  position: relative;
  padding-bottom: 0;
}

.worries__title {
  background: #000;
  margin: 0 auto;
  padding: 6rem 0 10rem;
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .worries__title {
    padding: 16rem 0 20rem;
  }
}

.worries__img {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #d8ba79), to(#e4b842));
  background: linear-gradient(90deg, #d8ba79 50%, #e4b842 100%);
  padding: 0 0 0;
}

@media only screen and (min-width: 960px) {
  .worries__img {
    padding: 8rem 0;
  }
}

.worries__list {
  color: #1d1d1d;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1280px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.worries__list > li {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  /* fix IE11 */
  margin: -40px 0 80px;
}

@media only screen and (min-width: 960px) {
  .worries__list > li {
    margin-top: -160px;
  }
}

.worries__list > li img {
  width: 40%;
  height: 40%;
  margin: 0 auto 20px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

@media only screen and (min-width: 600px) {
  .worries__list > li img {
    width: 60%;
    height: 60%;
  }
}

@media only screen and (min-width: 960px) {
  .worries__list > li img {
    width: 80%;
    height: 80%;
  }
}

.worries__list > li figure {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.4;
}

@media only screen and (min-width: 600px) {
  .worries__list > li figure {
    font-size: 13px;
    font-size: 2.03125vw;
  }
}

@media only screen and (min-width: 960px) {
  .worries__list > li figure {
    font-weight: 600;
    font-size: 2.2rem;
  }
}

.anxiety {
  background: #000000;
  background-size: cover;
  padding: 8rem 0;
}

@media only screen and (min-width: 960px) {
  .anxiety {
    padding: 120px 0;
  }
}

.anxiety__cont {
  color: #ffbb00;
  background: -webkit-linear-gradient(0deg, #ffbb00, #e4b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  /* @include nml-txt(2.4rem, 600);

    @include pc {
      @include nml-txt(6rem, 600);
    } */
  text-align: center;
}

@media only screen and (min-width: 600px) {
  .anxiety__cont {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.4;
  }
}

@media only screen and (min-width: 960px) {
  .anxiety__cont {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.4;
  }
}

.anxiety__cont p:first-of-type {
  margin-bottom: 1em;
}

.ramen img {
  margin: 0 auto;
}

.sns {
  padding: 60px 0 70px;
  position: relative;
}

@media only screen and (min-width: 600px) {
  .sns {
    padding: 60px 0 80px;
  }
}

@media only screen and (min-width: 960px) {
  .sns {
    padding: 120px 0 150px;
  }
}

.sns__cont .m-block {
  display: block;
}

@media only screen and (min-width: 600px) {
  .sns__cont .m-block {
    padding: 0 4.0rem;
  }
}

@media only screen and (min-width: 960px) {
  .sns__cont .m-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (min-width: 960px) {
  .sns__cont__txt {
    width: 100%;
  }
}

.sns__cont__txt p {
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 40px;
}

@media only screen and (min-width: 600px) {
  .sns__cont__txt p {
    font-size: 18px;
    font-size: 2.8125vw;
  }
}

@media only screen and (min-width: 960px) {
  .sns__cont__txt p {
    font-weight: 500;
    font-size: 2.8rem;
  }
}

.sns__cont__catch {
  font-weight: 800;
  font-size: 2.8rem;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .sns__cont__catch {
    font-weight: 700;
    font-size: 5rem;
  }
}

.sns::before {
  content: "";
  display: block;
  border-top: 60px solid transparent;
  border-right: 50vw solid #000;
  position: absolute;
  bottom: 0;
  left: 50%;
}

@media only screen and (min-width: 960px) {
  .sns::before {
    border-top: 150px solid transparent;
  }
}

.sns::after {
  content: "";
  display: block;
  border-top: 60px solid transparent;
  border-left: 50vw solid #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (min-width: 960px) {
  .sns::after {
    border-top: 150px solid transparent;
  }
}

.product {
  padding-bottom: 8rem;
  position: relative;
}

@media only screen and (min-width: 600px) {
  .product {
    padding-bottom: 6rem;
  }
}

@media only screen and (min-width: 960px) {
  .product {
    padding-bottom: 200px;
  }
}

.product__mwcp2-2 {
  position: relative;
  background: url(../../../img/bg_product.png) center center no-repeat #000000;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media only screen and (min-width: 960px) {
  .product__mwcp2-2 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.product__xpm {
  position: relative;
  background: url(../../../img/bg_product2.png) center center no-repeat #000000;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media only screen and (min-width: 960px) {
  .product__xpm {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.product__xpm .product__cont__catch {
  margin-bottom: 1.5em;
  line-height: 1.4;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .product__xpm .product__name {
    text-align: left;
  }
}

.product__xpm .product__copy {
  padding: 0 2.0rem;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 960px) {
  .product__xpm .product__copy {
    padding: 0;
    text-align: left;
  }
}

@media only screen and (min-width: 960px) {
  .product__xpm .note {
    text-align: left;
  }
}

.product__cont__catch {
  color: #ffbb00;
  background: -webkit-linear-gradient(0deg, #ffbb00, #e4b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-size: 6.4vw;
  font-weight: 900;
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.4;
}

@media only screen and (min-width: 960px) {
  .product__cont__catch {
    font-weight: 900;
    font-size: 6rem;
  }
}

.product__cont__subcatch {
  color: #e4b842;
  background: -webkit-linear-gradient(0deg, #d8ba79, #e4b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 18px;
  font-size: 4.8vw;
  font-weight: 400;
  line-height: 1.2;
}

@media only screen and (min-width: 600px) {
  .product__cont__subcatch {
    font-size: 22px;
    font-size: 3.4375vw;
  }
}

@media only screen and (min-width: 960px) {
  .product__cont__subcatch {
    font-weight: 500;
    font-size: 3.2rem;
  }
}

.product__order {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin: 0 auto 3rem;
  padding: 4rem 0 0;
  max-width: 1280px;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media only screen and (min-width: 960px) {
  .product__order {
    padding: 8.0rem 4.0rem 0;
  }
}

@media only screen and (min-width: 960px) {
  .product__order {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.product__order__img {
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

@media only screen and (min-width: 960px) {
  .product__order__img {
    width: 49%;
  }
}

.product__order__img img {
  display: inline-block;
  width: 70%;
}

@media only screen and (min-width: 960px) {
  .product__order__img img {
    width: 90%;
  }
}

.product__order__txt {
  width: 100%;
  padding: 0 2rem;
}

@media only screen and (min-width: 960px) {
  .product__order__txt {
    padding: 0;
  }
}

@media only screen and (min-width: 960px) {
  .product__order__txt {
    width: 49%;
  }
}

.product__order__recipe {
  border: 1px solid #968344;
  border-radius: 10px;
  margin: 0 auto;
  padding: 1.6rem;
  width: 90%;
  max-width: 960px;
}

@media only screen and (min-width: 960px) {
  .product__order__recipe {
    width: 80%;
  }
}

.product__order__recipe h3 {
  color: #e4b842;
  background: -webkit-linear-gradient(0deg, #d8ba79, #e4b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: .5em;
}

@media only screen and (min-width: 960px) {
  .product__order__recipe h3 {
    font-weight: 700;
    font-size: 3.6rem;
  }
}

.product__order__recipe p {
  color: #fff;
  text-align: left;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.4;
}

@media only screen and (min-width: 600px) {
  .product__order__recipe p {
    text-align: center;
  }
}

@media only screen and (min-width: 960px) {
  .product__order__recipe p {
    font-weight: 500;
    font-size: 2.4rem;
  }
}

.product__order__recipe p .txt-br {
  display: inline;
}

@media only screen and (min-width: 600px) {
  .product__order__recipe p .txt-br {
    display: block;
  }
}

.product__copy {
  color: #fff;
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.4;
}

@media only screen and (min-width: 960px) {
  .product__copy {
    font-weight: 400;
    font-size: 2.4rem;
  }
}

.product__name {
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 0.5em;
  line-height: 1.2;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .product__name {
    font-weight: 700;
    font-size: 4.2rem;
    margin-bottom: 0.5em;
  }
}

.product__price {
  text-align: center;
  font-family: Lato;
  font-weight: 700;
  font-size: 4.8rem;
}

@media only screen and (min-width: 960px) {
  .product__price {
    font-weight: 700;
    font-size: 4.2rem;
    margin-bottom: 0.5em;
    text-align: right;
  }
}

.product__price span {
  font-weight: 700;
  font-size: 2.8rem;
  margin-left: 0.1em;
}

@media only screen and (min-width: 960px) {
  .product__price span {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.5em;
  }
}

.recipe {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #d8ba79), to(#e4b842));
  background: linear-gradient(90deg, #d8ba79 50%, #e4b842 100%);
  padding: 8rem 0 16rem;
  position: relative;
}

@media only screen and (min-width: 600px) {
  .recipe {
    padding: 12rem 0 16rem;
  }
}

@media only screen and (min-width: 960px) {
  .recipe {
    padding: 200px 0 340px;
  }
}

.recipe__cont h2 {
  color: #1d1d1d;
  font-weight: 900;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .recipe__cont h2 {
    font-weight: 900;
    font-size: 6rem;
    margin-bottom: 80px;
  }
}

.recipe__cont h2 span {
  display: block;
  font-weight: 500;
  font-size: 2.8rem;
}

@media only screen and (min-width: 960px) {
  .recipe__cont h2 span {
    font-weight: 400;
    font-size: 4.2rem;
  }
}

.recipe__list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  bottom: -40px;
  width: 90%;
  height: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1280px;
  left: 0;
  right: 0;
  z-index: 200;
}

@media only screen and (min-width: 600px) {
  .recipe__list {
    bottom: -90px;
  }
}

@media only screen and (min-width: 960px) {
  .recipe__list {
    bottom: -100px;
  }
}

.recipe__list li {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 32%;
}

.recipe__list li:nth-last-of-type(4) {
  display: none;
}

@media only screen and (min-width: 480px) {
  .recipe__list li:nth-last-of-type(4) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (min-width: 480px) {
  .recipe__list li {
    width: 23%;
  }
}

.recipe__list li img {
  width: 100%;
  max-width: 110px;
  height: auto;
  margin: 0 auto;
}

@media only screen and (min-width: 600px) {
  .recipe__list li img {
    width: 100%;
    max-width: 200px;
    height: auto;
  }
}

@media only screen and (min-width: 960px) {
  .recipe__list li img {
    width: 100%;
    max-width: none;
    height: auto;
  }
}

.recipe__merit {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  list-style: none;
  color: #1d1d1d;
  margin: 0 auto;
  padding: 0;
  width: 94%;
}

@media only screen and (min-width: 960px) {
  .recipe__merit {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 0 4rem;
  }
}

.recipe__merit li {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 4%;
}

@media only screen and (min-width: 600px) {
  .recipe__merit li {
    width: 100%;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}

@media only screen and (min-width: 960px) {
  .recipe__merit li {
    width: 30%;
    display: block;
  }
}

.recipe__merit li img {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

@media only screen and (min-width: 600px) {
  .recipe__merit li img {
    border-top-right-radius: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 30%;
  }
}

@media only screen and (min-width: 960px) {
  .recipe__merit li img {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    width: 100%;
  }
}

.recipe__merit li figure {
  line-height: 1.4;
  font-weight: 600;
  font-size: 1.8rem;
  padding: 3rem;
}

@media only screen and (min-width: 600px) {
  .recipe__merit li figure {
    width: 68%;
    display: -webkit-box;
    display: flex;
    display: -ms-flexbox;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}

@media only screen and (min-width: 960px) {
  .recipe__merit li figure {
    width: 100%;
    display: block;
    font-weight: 600;
    font-size: 2.8rem;
  }
}

.recipe::before {
  content: "";
  display: block;
  border-top: 60px solid transparent;
  border-right: 50vw solid #000;
  position: absolute;
  bottom: 0;
  left: 50%;
}

@media only screen and (min-width: 960px) {
  .recipe::before {
    border-top: 150px solid transparent;
  }
}

.recipe::after {
  content: "";
  display: block;
  border-top: 60px solid transparent;
  border-left: 50vw solid #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (min-width: 960px) {
  .recipe::after {
    border-top: 150px solid transparent;
  }
}

.menu {
  position: relative;
  padding-top: 0;
}

.menu__cont {
  margin: 0 auto;
  padding: 1.6rem;
  width: 100%;
  max-width: 1600px;
}

.menu h2 {
  color: #1d1d1d;
  font-weight: 900;
  font-size: 3.2rem;
  margin: 0 auto 80px;
  text-align: center;
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  z-index: 300;
}

@media only screen and (min-width: 960px) {
  .menu h2 {
    font-weight: 900;
    font-size: 6rem;
  }
}

@media only screen and (min-width: 960px) {
  .menu h2 {
    top: -240px;
  }
}

.menu__list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-top: -0px;
}

.menu__list > div {
  width: 49%;
  margin-bottom: 2%;
}

@media only screen and (min-width: 960px) {
  .menu__list > div {
    width: 32%;
  }
}

.menu__list > div figure {
  font-weight: 500;
  font-size: 1.1rem;
}

@media only screen and (min-width: 600px) {
  .menu__list > div figure {
    font-weight: 500;
    font-size: 1.3rem;
  }
}

.rizap {
  background: url(../img/bg_rizap_feature.png) 60% top no-repeat, url(../img/bg_key.jpg) center top repeat, #171717;
  background-size: cover;
  padding: 4rem 0;
}

@media only screen and (min-width: 960px) {
  .rizap {
    background: url(../img/bg_rizap_feature.png) left center no-repeat, url(../img/bg_key.jpg) center top repeat, #171717;
    background-size: contain;
  }
}

@media only screen and (min-width: 960px) {
  .rizap {
    padding: 12rem 0;
  }
}

.rizap h2 {
  color: #000000;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 1.5em;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .rizap h2 {
    font-weight: 900;
    font-size: 5rem;
  }
}

@media only screen and (min-width: 960px) {
  .rizap h2 {
    padding-left: 50%;
    text-align: left;
  }
}

.rizap h2 span {
  color: #eba714;
  background: -webkit-linear-gradient(0deg, #eba714, #ffa600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

@media only screen and (min-width: 960px) {
  .rizap h2 span {
    color: #fff;
    text-shadow: 0px 2px 2px rgba(98, 116, 123, 0.4);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
  }
}

.rizap__feature {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media only screen and (min-width: 960px) {
  .rizap__feature {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 0 4rem;
  }
}

.rizap__feature li {
  background: rgba(0, 0, 0, 0.82);
  border-radius: 10px;
  padding: 3.2rem 2.4rem;
  color: #fff;
  margin-bottom: 4%;
  font-weight: 400;
  font-size: 1.8rem;
  width: 94%;
}

@media only screen and (min-width: 960px) {
  .rizap__feature li {
    width: 30%;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 2.2rem;
  }
}

.rizap__feature li .txt-br {
  display: block;
}

@media only screen and (min-width: 600px) {
  .rizap__feature li .txt-br {
    display: inline-block;
  }
}

@media only screen and (min-width: 960px) {
  .rizap__feature li .txt-br {
    display: block;
  }
}

.rizap__feature li .catch-txt {
  color: #ffbb00;
  background: -webkit-linear-gradient(0deg, #ffbb00, #e4b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.4;
  margin-bottom: 0.5em;
}

@media only screen and (min-width: 960px) {
  .rizap__feature li .catch-txt {
    font-weight: 900;
    font-size: 3.6rem;
  }
}

.disadvantage {
  background: url(../img/bg_disadvantage.png) 60% top no-repeat, url(../img/bg_key.jpg) center top repeat, #171717;
  background-size: cover;
  padding: 10rem 0;
}

@media only screen and (min-width: 960px) {
  .disadvantage {
    background: url(../img/bg_disadvantage.png) right center no-repeat, url(../img/bg_key.jpg) center top repeat, #171717;
    background-size: contain;
  }
}

@media only screen and (min-width: 960px) {
  .disadvantage {
    padding: 120px 4rem;
  }
}

.disadvantage h2 {
  color: #000000;
  font-weight: 900;
  font-size: 3.2rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.5em;
}

@media only screen and (min-width: 960px) {
  .disadvantage h2 {
    text-align: left;
    font-weight: 900;
    font-size: 5rem;
  }
}

.disadvantage p {
  color: #000000;
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .disadvantage p {
    font-weight: 400;
    font-size: 3.2rem;
    text-align: left;
  }
}

.point {
  background: url(../img/bg_bodymake.jpg) center bottom no-repeat, url(../img/bg_key.jpg) center top repeat;
  background-size: cover;
  padding: 4rem 0 28rem;
}

@media only screen and (min-width: 960px) {
  .point {
    padding: 12rem 0 56rem;
  }
}

.point__cont h2 {
  color: #000;
  font-weight: 900;
  font-size: 3.2rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.5em;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .point__cont h2 {
    font-weight: 900;
    font-size: 5rem;
  }
}

.point__cont h2 span {
  color: #fff;
  text-shadow: 0px 2px 2px rgba(98, 116, 123, 0.4);
  display: block;
}

.point__cont p {
  color: #000;
  font-weight: 400;
  font-size: 1.8rem;
  text-align: center;
  line-height: 2;
}

@media only screen and (min-width: 960px) {
  .point__cont p {
    font-weight: 400;
    font-size: 3.2rem;
  }
}

.coupon {
  background: url(../img/bg_key.jpg) center top repeat, #171717;
}

@media only screen and (min-width: 600px) {
  .coupon__cont {
    padding: 60px 0;
  }
}

@media only screen and (min-width: 960px) {
  .coupon__cont {
    padding: 80px 0;
  }
}

.coupon__cont h2 {
  color: #000;
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.5em;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .coupon__cont h2 {
    font-weight: 600;
    font-size: 3.2rem;
  }
}

.coupon__cont h2 span {
  color: #fff;
  text-shadow: 0px 2px 2px rgba(98, 116, 123, 0.4);
  font-weight: 900;
  font-size: 3.2rem;
  margin-bottom: 0.5em;
  display: block;
}

@media only screen and (min-width: 960px) {
  .coupon__cont h2 span {
    margin-bottom: 0.4em;
    font-weight: 900;
    font-size: 5rem;
  }
}

.coupon__cont p {
  text-align: center;
}

.coupon__cont__infotxt {
  color: #000;
  line-height: 1.4;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 2em;
}

@media only screen and (min-width: 960px) {
  .coupon__cont__infotxt {
    font-weight: 600;
    font-size: 3.2rem;
  }
}

.coupon__list__ec {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media only screen and (min-width: 600px) {
  .coupon__list__ec {
    width: 94%;
    margin: 0 auto;
  }
}

.coupon__list__ec li {
  width: 100%;
  margin-bottom: 4%;
}

@media only screen and (min-width: 600px) {
  .coupon__list__ec li {
    width: 49%;
    margin-bottom: 0;
  }
}

.coupon__list__ec li img {
  margin-bottom: 1rem;
}

.addrecipe {
  background: url(../img/bg_key.jpg) center top repeat;
  background-size: cover;
}

.addrecipe h2 {
  color: #000;
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 1.5em;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .addrecipe h2 {
    font-weight: 900;
    font-size: 5rem;
  }
}

.addrecipe h2 span {
  color: #ffbb00;
  background: -webkit-linear-gradient(0deg, #ffbb00, #e4b842);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.addrecipe__list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-bottom: 3rem;
}

@media only screen and (min-width: 960px) {
  .addrecipe__list {
    margin-bottom: 0;
  }
}

.addrecipe__list > div {
  width: 32%;
}

.addrecipe p {
  color: #000;
  font-weight: 400;
  font-size: 1.8rem;
  padding: 0 2.4rem;
  text-align: left;
}

.addrecipe p .txt-br {
  display: inline;
}

@media only screen and (min-width: 600px) {
  .addrecipe p .txt-br {
    display: block;
  }
}

@media only screen and (min-width: 600px) {
  .addrecipe p {
    text-align: center;
  }
}

@media only screen and (min-width: 960px) {
  .addrecipe p {
    font-weight: 400;
    font-size: 3.2rem;
    padding: 0;
    text-align: center;
  }
}

.addrecipe p.note {
  font-weight: 400;
  font-size: 1.5rem;
  margin-top: 2em;
}

@media only screen and (min-width: 960px) {
  .addrecipe p.note {
    font-weight: 400;
    font-size: 2rem;
  }
}

.addrecipe p.notice {
  font-weight: 400;
  font-size: 1.5rem;
}

@media only screen and (min-width: 960px) {
  .addrecipe p.notice {
    font-weight: 400;
    font-size: 2rem;
  }
}

.set {
  background: url(../img/bg_key.jpg) center top no-repeat;
  background-size: cover;
  padding-top: 0;
}

.set h3 {
  color: #1d1d1d;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #d8ba79), to(#e4b842));
  background: linear-gradient(90deg, #d8ba79 50%, #e4b842 100%);
  padding: 2.8rem 0;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .set h3 {
    font-weight: 900;
    font-size: 5rem;
  }
}

.set__flow {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin-bottom: 3rem;
}

@media only screen and (min-width: 960px) {
  .set__flow {
    padding: 0 4rem;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.set__flow > div {
  width: 100%;
  position: relative;
  margin-bottom: 2em;
}

@media only screen and (min-width: 600px) {
  .set__flow > div {
    width: 30%;
  }
  .set__flow > div:first-child::after, .set__flow > div:nth-child(2)::after {
    content: "";
    display: block;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #ffbe0c;
    position: absolute;
    right: -14%;
    top: 42%;
    z-index: 2000;
  }
}

@media only screen and (min-width: 960px) {
  .set__flow > div {
    width: 25%;
  }
  .set__flow > div:first-child::after, .set__flow > div:nth-child(2)::after {
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 40px solid #ffbe0c;
    right: -24%;
  }
}

.set__flow > div span {
  display: block;
  color: #fff;
  text-shadow: 0px 2px 2px rgba(98, 116, 123, 0.4);
  font-weight: 600;
  font-size: 3.2rem;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .set__flow > div span {
    font-weight: 600;
    font-size: 4.2rem;
  }
}

.set__flow > div figure {
  color: #000;
  display: block;
  font-weight: 600;
  font-size: 3.2rem;
  text-align: center;
}

.set__flow > div img {
  width: 50%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

@media only screen and (min-width: 600px) {
  .set__flow > div img {
    width: 90%;
    height: 90%;
  }
}

@media only screen and (min-width: 960px) {
  .set__flow > div img {
    width: 90%;
    height: 90%;
  }
}

.set__cont {
  color: #000;
}

.set__cont__ttl {
  font-weight: 600;
  font-size: 3.2rem;
  text-align: center;
  line-height: 1.4;
  padding: 4rem 0;
}

@media only screen and (min-width: 960px) {
  .set__cont__ttl {
    font-weight: 600;
    font-size: 5rem;
  }
}

@media only screen and (min-width: 960px) {
  .set__cont__ttl {
    padding: 6rem 0;
  }
}

.set__cont__txt {
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
}

@media only screen and (min-width: 960px) {
  .set__cont__txt {
    font-weight: 600;
    font-size: 3.2rem;
  }
}

.end {
  background: url(../img/bg_key.jpg) center top repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  font-weight: 900;
  position: relative;
  width: 100vw;
  height: calc(80vh + 160px);
  min-height: 820px;
  z-index: 100;
}

@media only screen and (min-width: 960px) {
  .end {
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 600px) {
  .end {
    background-size: cover;
  }
}

@media only screen and (min-width: 960px) {
  .end {
    background-size: cover;
  }
}

.end__cont {
  background: url(../img/key_woman.png) center bottom 140px no-repeat;
  background-size: 320px auto;
  height: 100%;
  min-height: 620px;
  width: 100%;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 600px) {
  .end__cont {
    background: url(../img/key_woman.png) center bottom 80px no-repeat;
    background-size: 380px auto;
    height: calc(80vh + 160px);
    position: relative;
  }
}

@media only screen and (min-width: 960px) {
  .end__cont {
    background: url(../img/key_woman.png) 0% top no-repeat;
    background-size: contain;
    height: calc(80vh + 160px);
    position: relative;
  }
}

.end__ttl {
  display: block;
  margin-top: 8%;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media only screen and (min-width: 600px) {
  .end__ttl {
    margin-top: 7%;
  }
}

@media only screen and (min-width: 960px) {
  .end__ttl {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    padding-left: 40%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.end__ttl__txt {
  color: #000;
  text-align: center;
  width: 100%;
}

@media only screen and (min-width: 960px) {
  .end__ttl__txt {
    padding: 0;
  }
}

.end__ttl__txt h1 {
  text-shadow: 0px 2px 2px rgba(98, 116, 123, 0.4);
}

.end__ttl__btn {
  position: absolute;
  bottom: 50px;
  padding: 0 2.0rem;
  margin: 0 auto;
  display: block !important;
  text-align: center;
  width: 90%;
  left: 0;
  right: 0;
}

@media only screen and (min-width: 600px) {
  .end__ttl__btn {
    bottom: 60px;
    width: 80%;
  }
}

@media only screen and (min-width: 960px) {
  .end__ttl__btn {
    position: relative;
    bottom: auto;
    width: 100%;
  }
}

.end__ttl__btn li {
  margin-bottom: 2%;
}

.end__ttl h1 {
  font-size: 24px;
  font-size: 6.4vw;
  line-height: 1.2;
}

@media only screen and (min-width: 600px) {
  .end__ttl h1 {
    font-size: 36px;
    font-size: 5.625vw;
  }
}

@media only screen and (min-width: 960px) {
  .end__ttl h1 {
    font-weight: 900;
    font-size: 5.8rem;
  }
}

.end__ttl p {
  font-weight: 500;
  font-size: 1.6rem;
}

@media only screen and (min-width: 600px) {
  .end__ttl p {
    font-size: 16px;
    font-size: 2.5vw;
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 960px) {
  .end__ttl p {
    font-weight: 400;
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}

.end .recipe__list {
  bottom: -40px;
}

@media only screen and (min-width: 600px) {
  .end .recipe__list {
    bottom: -70px;
  }
}

@media only screen and (min-width: 960px) {
  .end .recipe__list {
    bottom: -80px;
  }
}

.contact__type__item {
  background: #e9e9e9;
}
/*# sourceMappingURL=style.css.map */