@charset "UTF-8";

.cts__first-recipe {
  max-width: 1200px;
  margin: -255px auto 0 auto;
  padding: 0;
  position: relative;
}
.cts__first-recipe::before {
  content: none;
}
.cts__search {
  padding: 0 95px;
}
.cts__recipe-list {
  padding: 66px 0 180px 0;
}
.search {
  background: #fff;
  padding: 50px 100px;
  border-radius: 32px;
}
.search__slct {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.search__slctBtn {
  position: relative;
}
.search__slctBtn select {
  width: 330px;
  height: 45px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #000;
  padding: 10px 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-weight: var(--regular);
  background-color: var(--bgbasebrown);
  cursor: pointer;
  position: relative;
}
.search__slctBtn::before,
.search__slctBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 10;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #000;
}
.search__slctBtn::after {
  top: 40%;
  transform: translateY(-50%) rotate(-180deg);
}
.search__slctBtn::before {
  top: 60%;
}
.search__parts {
  margin: 0 10px;
  width: 60px;
  height: 60px;
  position: relative;
}
.search__parts::before,
.search__parts::after {
  display: block;
  content: "";
  width: 60px;
  height: 1px;
  position: absolute;
  top: 50%;
  background: #000;
  transform: rotate(45deg) translateY(-50%);
}
.search__parts:after {
  transform: rotate(-45deg);
}
.search__btnArea-reset {
  display: flex;
  justify-content: center;
  margin: 35px 0 0 0;
  position: relative;
}
.reset__btn::after {
  content: none;
}
.reset__deco01 {
  width: 92px;
  position: absolute;
  top: 40%;
  left: 40px;
  transform: rotate(-10deg) translateY(-50%);
}
.menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}
.menu__list::after {
  width: 33%;
  content: "";
  display: block;
}
.menu__item {
  width: calc((100% - 90px) / 3);
}
#not__found {
  font-size: 1.6rem;
  text-align: center;
}

/* レシピ詳細ページ
============================== */
.ctsArea__white-recipe {
  background: transparent;
}
.ctsArea__white-recipe::before {
  content: none;
}
.ctsArea__white-inner {
  margin-top: -255px;
}
.recipe-info {
  background: #fff;
  padding: 130px 120px 245px 120px;
}
.recipe__top {
  display: flex;
  justify-content: space-between;
  gap: 36px;
}
.recipe__ph {
  width: 463px;
}
.recipe__ph-txt {
  position: relative;
  padding: 0 0 0 30px;
  margin: 5px 0 0 0;
}
.recipe__ph-txt::before {
  content: "";
  width: 24px;
  height: 24px;
  color: #fff;
  background: url(../images/recipe_clock_icon.svg) no-repeat center / cover;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: 1px 0 0 0;
}
.recipe__txtarea {
  width: 100%;
}
.re__ph-remarks {
  font-size: 1.2rem;
  padding: 0 0 0 3px;
}
.recipe__tag {
  display: flex;
  gap: 0 10px;
  margin: 0 0 20px 0;
  position: static;
}
.recipe__name {
  margin: 0 0 10px 0;
  line-height: 1.2;
}
.recipe__name-long {
  font-size: 3.2rem;
  letter-spacing: 0;
}
.recipe__txt {
  font-size: 1.6rem;
}
.recipe__base {
  margin: 20px 0 0;
  width: 100%;
  position: relative;
}
.recipe__base-tit {
  margin: 0 0 5px 0;
  padding: 0 0 10px 0;
  font-size: 2rem;
  font-weight: var(--bold);
  position: relative;
  border-bottom: 1px solid var(--floworange);
}
.re__base-remarks {
  font-size: 1.4rem;
  padding: 0 0 0 3px;
}
.recipe__base-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 1.5rem;
  border-bottom: 1px solid #ddd;
}
.recipe__item {
  padding: 7px 0;
  font-size: 1.4rem;
  border-bottom: 1px solid #ddd;
}
.recipe__make,
.recipe__preparation {
  margin: 30px 0 0 0;
}
.make__process-list {
  counter-reset: number 0;
}
.make__process {
  padding: 0 0 0 35px;
  line-height: 1.6;
  position: relative;
}
.make__process:before {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-family: var(--ffOs);
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--floworange);
  border-radius: 50%;
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  top: 0;
  left: 0;
}
.suggest {
  background: #f7f5e0;
  max-width: 755px;
  margin: -200px auto 100px auto;
  position: relative;
  text-align: center;
  z-index: 1;
}
.ctsArea__suggest {
  position: relative;
}
.recipe_deco02 {
  width: 108px;
  position: absolute;
  bottom: -45px;
  left: -55px;
  transform: rotate(-4deg);
  z-index: 2;
}
.ctsArea__suggest::after {
  content: "";
  background: url(../images/recipe_deco01.png) no-repeat center center/ cover;
  height: 228px;
  width: 158px;
  position: absolute;
  right: -135px;
  top: -165px;
  transform: rotate(5deg);
}
.suggest::before,
.suggest::after,
.suggest__list::before,
.suggest__list::after {
  background: #000;
  content: "";
  position: absolute;
}
.suggest::before,
.suggest::after {
  height: 1px;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 40px);
}
.suggest__list::before,
.suggest__list::after {
  height: calc(100% - 40px);
  top: 50%;
  transform: translate(0, -50%);
  width: 1px;
}
.suggest::before {
  top: 0;
}
.suggest::after {
  bottom: 0;
}
.suggest__list::before {
  left: 0;
}
.suggest__list::after {
  right: 0;
}
.suggest__tit {
  left: 50%;
  position: absolute;
  top: -40px;
  transform: translate(-50%, 0);
  width: 125px;
}
.suggest__tit::before,
.suggest__tit::after {
  content: "";
  position: absolute;
}
.suggest__tit::before {
  background: #f7f5e0;
  bottom: 24px;
  height: 5px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 170px;
  z-index: -1;
}
.suggest__list {
  display: inline-flex;
  flex-direction: column;
  gap: 20px 0;
  justify-content: center;
  padding: 75px 50px;
  text-align: left;
}
.suggest__item--txt {
  display: inline-block;
  font-size: 1.8rem;
  padding-left: 30px;
  position: relative;
}
.suggest__item--txt::before,
.suggest__item--txt::after {
  content: "";
  left: 0;
  position: absolute;
}
.suggest__item--txt::before {
  background: #fff;
  border: 1px solid #000;
  height: 17px;
  top: 14px;
  transform: translate(0, -50%);
  width: 17px;
}
.suggest__item--txt::after {
  border-bottom: 4px solid var(--floworange);
  border-right: 4px solid var(--floworange);
  height: 24px;
  left: 1px;
  top: -7px;
  transform: rotate(45deg);
  width: 16px;
}
.recipe__btnArea {
  display: flex;
  justify-content: center;
  margin: 0 0 180px 0;
}
@media screen and (max-width: 812px) {
  .cts__first-recipe {
    max-width: 100%;
    margin: -128px auto 0 auto;
    border-radius: 22px;
  }
  .cts__search {
    max-width: 100%;
    padding: 0 20px;
  }
  .search {
    background: #fff;
    padding: 54px 20px;
    border-radius: 22px;
  }
  .search__slct {
    display: block;
  }
  .search__slctBtn {
    position: relative;
    width: 100%;
    max-width: 315px;
    margin: 0 auto;
  }
  .search__slctBtn select {
    width: 100%;
    height: 45px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 10px 15px;
  }
  .search__parts {
    width: 50px;
    height: 50px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    margin: 18px 0;
  }
  .reset__deco01 {
    width: 80px;
    top: 40%;
    left: 10px;
  }
  .cts__recipe-list {
    padding: 50px 0 80px 0;
  }
  .menu__list {
    gap: 35px 18px;
  }
  .menu__name {
    font-size: 1.5rem;
  }
  .menu__item {
    width: calc((100% - 18px) / 2);
  }
  .menu__tag {
    top: 5px;
    left: 5px;
    display: flex;
    gap: 0 4px;
  }
  .menu__rice,
  .menu__wheat,
  .menu__beans {
    font-size: 1rem;
    padding: 2px 5px;
    border-radius: 50px;
    text-align: center;
    white-space: nowrap;
  }
  .menu__genre {
    font-size: 1rem;
    font-weight: var(--medium);
    padding: 2px 5px;
    border-radius: 50px;
    text-align: center;
  }
  /* レシピページ
	============================== */
  .ctsArea__white-inner {
    margin-top: -70px;
  }
  .recipe-info {
    padding: 50px 20px 180px 20px;
  }
  .recipe__top {
    display: block;
    gap: 36px;
  }
  .recipe__tag {
    justify-content: center;
    gap: 0 10px;
    margin: 0 0 10px 0;
    position: static;
  }
  .recipe__rice,
  .recipe__wheat,
  .recipe__beans {
    font-size: 1.4rem;
    padding: 2px 13px;
    border-radius: 50px;
    text-align: center;
    white-space: nowrap;
  }
  .recipe__genre {
    font-size: 1.4rem;
    padding: 2px 13px;
    border-radius: 50px;
    text-align: center;
    white-space: nowrap;
  }
  .recipe__name {
    text-align: center;
    margin: 0 0 30px 0;
  }
  .recipe__pharea {
    margin: 0 0 10px 0;
  }
  .recipe__ph {
    width: 100%;
  }
  .recipe__ph-txt {
    padding: 0 0 0 25px;
  }
  .recipe__ph-txt::before {
    content: "";
    width: 19px;
    height: 19px;
  }
  .re__ph-remarks {
    font-size: 1.2rem;
  }
  .recipe__txt {
    font-size: 1.5rem;
  }
  .recipe__base {
    margin: 30px 0 0;
  }
  .recipe__item {
    padding: 15px 0;
    font-size: 1.5rem;
  }
  .recipe__preparation {
    margin: 20px 0 0;
  }
  .recipe__make {
    margin: 30px 0 0;
  }
  /* point
	============================== */
  .cts__suggest {
    padding: 0 20px;
    margin: 0 0 77px 0;
  }
  .suggest {
    margin: -180px 20px 0;
    max-width: 100%;
  }
  .suggest::before,
  .suggest::after {
    width: calc(100% - 30px);
  }
  .suggest__list::before,
  .suggest__list::after {
    height: calc(100% - 30px);
  }
  .suggest__tit {
    top: -35px;
    width: 110px;
  }
  .suggest__tit::before {
    bottom: 21px;
    width: 113px;
  }
  .suggest__tit::after {
    height: 140px;
    left: auto;
    right: -30px;
    top: -145px;
    transform: rotate(-10deg) translate(0);
    width: 70px;
  }
  .suggest__list {
    gap: 13px 0;
    padding: 58px 20px;
  }
  .suggest__item--txt {
    display: inline-block;
    font-size: 1.5rem;
    padding-left: 30px;
  }
  .suggest__item--txt::after {
    top: -8px;
  }
  .suggest__item--txt::before {
    top: 12px;
  }
  .ctsArea__suggest::after {
    height: 151px;
    width: 104px;
    position: absolute;
    right: -30px;
    top: -109px;
    transform: rotate(5deg);
  }
  .recipe_deco02 {
    width: 80px;
    bottom: -30px;
    left: -30px;
  }
  .recipe__btnArea {
    padding: 0 20px;
    display: flex;
    justify-content: center;
    margin: 0 0 77px 0;
  }
  #not__found {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
