/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@font-face {
  font-family: "tsukuhou";
  src: url("../font/Tsukuhou-35Point-Gothic.ttf") format("truetype");
}
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
/* ******************************
 *
 * KEYFRAMES
 *
 * ****************************** */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.recipeDetails {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  .recipeDetails {
    margin-top: -12rem;
    padding: 20rem 5vw 15rem;
  }
}
@media screen and (min-width: 1025px) {
  .recipeDetails {
    margin-top: -38rem;
    padding: 42rem 10vw 128px;
  }
}
.recipeDetails::before {
  content: "";
  position: absolute;
  top: 0;
  border-radius: 50%;
  background: var(--tertiary-color);
}
@media screen and (min-width: 320px) {
  .recipeDetails::before {
    width: 400vw;
    height: 400vw;
    left: -150vw;
  }
}
@media screen and (min-width: 1025px) {
  .recipeDetails::before {
    width: 200vw;
    height: 200vw;
    left: -50vw;
  }
}
.recipeDetails .sectionInner {
  position: relative;
  z-index: 1;
  display: grid;
}
@media screen and (min-width: 320px) {
  .recipeDetails .sectionInner {
    grid-template-columns: repeat(1, 1fr);
    gap: 64px;
  }
}
@media screen and (min-width: 1025px) {
  .recipeDetails .sectionInner {
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
  }
}

.recipeSection_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media screen and (min-width: 320px) {
  .recipeSection_head {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1025px) {
  .recipeSection_head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.recipeSection_head svg {
  display: block;
}
@media screen and (min-width: 320px) {
  .recipeSection_head svg {
    width: 2.8rem;
    height: 2.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .recipeSection_head svg {
    width: 3.4rem;
    height: 3.4rem;
  }
}
.recipeSection_head .title {
  display: inline-block;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(var(--primary-color)), to(var(--secondary-color)));
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 320px) {
  .recipeSection_head .title {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .recipeSection_head .title {
    font-size: 3.8rem;
  }
}
.recipeSection_head .title span {
  letter-spacing: 0.2em;
}
.recipeSection_head .title small {
  font-size: 40%;
}

.recipeSection_ingredients {
  display: grid;
}
@media screen and (min-width: 320px) {
  .recipeSection_ingredients {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .recipeSection_ingredients {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.recipeSection_ingredients dl {
  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;
  border-bottom: solid 1px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 320px) {
  .recipeSection_ingredients dl {
    font-size: 1.4rem;
    padding: 0 16px 16px;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .recipeSection_ingredients dl {
    font-size: 1.8rem;
    padding: 0 32px 16px;
    margin-bottom: 16px;
  }
}
.recipeSection_ingredients dt {
  width: 55%;
}
.recipeSection_ingredients dd {
  width: 40%;
  color: var(--desc-color);
}

.recipeSection_process li {
  margin-bottom: 32px;
}
.recipeSection_process dl {
  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;
}
.recipeSection_process dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: var(--base-color);
  background: var(--primary-color);
  border-radius: 50%;
  line-height: 1;
}
@media screen and (min-width: 320px) {
  .recipeSection_process dt {
    font-size: 1.8rem;
    width: 4.2rem;
    height: 4.2rem;
  }
}
@media screen and (min-width: 1025px) {
  .recipeSection_process dt {
    font-size: 2.8rem;
    width: 5.2rem;
    height: 5.2rem;
  }
}
.recipeSection_process dd {
  color: var(--desc-color);
}
@media screen and (min-width: 320px) {
  .recipeSection_process dd {
    font-size: 1.4rem;
    width: calc(100% - 4.2rem - 16px);
  }
}
@media screen and (min-width: 1025px) {
  .recipeSection_process dd {
    font-size: 2rem;
    width: calc(100% - 5.2rem - 16px);
  }
}/*# sourceMappingURL=recipe.css.map */