@charset "UTF-8";
/* freepage 共通css */
#tblLayout {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

/* h-recipe_1 */
.h-recipe_1 {
  max-width: 1000px;
  width: 100%;
  font-size: 15px;
  text-align: center;
  color: #000;
  line-height: 1.5;
  margin: 40px auto 80px;
  /* common */
  /* 編集ここから */
  /* タブ切り替え */
  /* タブボタンの色味変更 記述 */
  /*エリアの表示非表示と形状*/
  /*areaにis-activeというクラスがついた時の形状*/
  /* パネル切り替えのアニメーション */
}

@media screen and (max-width: 960px) {
  .h-recipe_1 {
    font-size: 12px;
    margin: 20px auto 40px;
  }
}

.h-recipe_1 img {
  width: 100%;
  height: auto;
}

.h-recipe_1 .only-desktop {
  display: block !important;
}

.h-recipe_1 .only-mobile {
  display: none !important;
}

.h-recipe_1 .only-narrow {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .h-recipe_1 img {
    width: 100%;
    height: auto;
  }
  .h-recipe_1 .only-desktop {
    display: none !important;
  }
  .h-recipe_1 .only-mobile {
    display: block !important;
  }
  .h-recipe_1 .inline-block {
    display: inline-block;
  }
}

@media screen and (max-width: 480px) {
  .h-recipe_1 .only-narrow {
    display: block !important;
  }
}

.h-recipe_1__kv {
  margin-bottom: 40px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__kv {
    margin-bottom: 25px;
  }
}

.h-recipe_1__tab {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__tab {
    width: 95%;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    margin: 0 auto 25px;
  }
}

.h-recipe_1__tab__btn {
  background-color: #F9EEE4;
  font-size: 20px;
  font-weight: 500;
  padding: 35px 10px;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__tab__btn {
    font-size: 13px;
    padding: 20px 10px;
  }
}

.h-recipe_1 .h-recipe_1__tab__btn.active {
  background-color: #F6D1AF;
}

.h-recipe_1 .area {
  overflow: hidden;
  opacity: 0;
  height: 0;
  visibility: hidden;
}

.h-recipe_1 .area.active {
  opacity: 1;
  height: auto;
  visibility: visible;
  -webkit-animation: panel-show .3s ease-in-out forwards;
          animation: panel-show .3s ease-in-out forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.h-recipe_1__anchor-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__anchor-list {
    width: 95%;
    gap: 10px;
    margin: 0 auto 25px;
  }
}

.h-recipe_1__anchor-list__txt {
  margin-top: 10px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__anchor-list__txt {
    margin-top: 5px;
  }
}

.h-recipe_1__contents {
  margin-bottom: 60px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__contents {
    width: 95%;
    margin: 0 auto 25px;
  }
}

.h-recipe_1__contents:last-child {
  margin-bottom: 0;
}

.h-recipe_1__ttl {
  background-color: #F6D1AF;
  border-radius: 10px;
  font-size: 27px;
  font-weight: 700;
  padding: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__ttl {
    border-radius: 5px;
    font-size: 15px;
    padding: 10px;
    margin-bottom: 15px;
  }
}

.h-recipe_1__ttl--sub {
  background-color: #C72D18;
  border-radius: 0;
  text-align: center;
  color: #fff;
  padding: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__ttl--sub {
    padding: 5px;
    margin-bottom: 10px;
  }
}

.h-recipe_1__layout {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 30px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__layout {
    display: block;
    margin-bottom: 15px;
  }
}

.h-recipe_1__layout:last-child {
  margin-bottom: 0;
}

.h-recipe_1__layout__img, .h-recipe_1__layout__table, .h-recipe_1__layout__section {
  width: calc(480 / 1000 * 100%);
}

@media screen and (max-width: 960px) {
  .h-recipe_1__layout__img, .h-recipe_1__layout__table, .h-recipe_1__layout__section {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .h-recipe_1__layout__img {
    margin-bottom: 15px;
  }
}

.h-recipe_1__layout__section {
  text-align: left;
}

.h-recipe_1__layout__section:nth-child(n+3) {
  margin-top: 30px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__layout__section:nth-child(n+2) {
    margin-top: 15px;
  }
}

.h-recipe_1__table {
  border-collapse: collapse;
  border: 1px solid;
  height: 20vh;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__table {
    height: auto;
  }
}

.h-recipe_1__table > tbody > tr > th,
.h-recipe_1__table > tbody > tr > td {
  text-align: center;
  vertical-align: middle;
  border: 1px solid;
  padding: 2px;
}

.h-recipe_1__table > tbody > tr > th {
  font-weight: 400;
}

.h-recipe_1__table__th-blue {
  background-color: #C6E0DE;
}

.h-recipe_1__table__th-purple {
  background-color: #C6D9EA;
}

.h-recipe_1__table__th-red {
  background-color: #EAC6CC;
}

.h-recipe_1__table__th-yellow {
  background-color: #FBED82;
}

.h-recipe_1__table__td-blue {
  background-color: #E3EFEA;
}

.h-recipe_1__table__td-purple {
  background-color: #EAF4FC;
}

.h-recipe_1__table__td-red {
  background-color: #F1D9D8;
}

.h-recipe_1__table__td-yellow {
  background-color: #FBF2C3;
}

.h-recipe_1__table__th-narrow {
  width: 40%;
}

.h-recipe_1__space {
  margin-top: 5px;
}

.h-recipe_1__txt-small {
  font-size: 13px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__txt-small {
    font-size: 12px;
  }
}

.h-recipe_1__A-recipe {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-left: 2px solid #C72D18;
  margin-left: 10px;
  position: relative;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__A-recipe {
    border-left: 1.5px solid #C72D18;
    margin-left: 7px;
  }
}

.h-recipe_1__A-recipe__dd {
  padding-left: 15px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__A-recipe__dd {
    padding-left: 10px;
  }
}

.h-recipe_1__A-txt {
  font-weight: 700;
}

.h-recipe_1__A-txt--left {
  position: absolute;
  left: -10px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__A-txt--left {
    left: -7px;
  }
}

.h-recipe_1__A-txt--houto {
  margin: 0 1px;
}

.h-recipe_1__A-txt--houto > span {
  padding-left: 1em;
}

.h-recipe_1__A-txt > span {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #C72D18;
  color: #fff;
  border-radius: 50%;
  line-height: 1.1;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__A-txt > span {
    width: 13px;
    height: 13px;
  }
}

.h-recipe_1__A-txt-sub {
  font-weight: 700;
}

.h-recipe_1__A-txt-sub--left {
  position: absolute;
  left: -9px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__A-txt-sub--left {
    left: -7px;
  }
}

.h-recipe_1__A-txt-sub--houto {
  margin: 0 1px;
}

.h-recipe_1__A-txt-sub--houto > span {
  padding-left: 1em;
}

.h-recipe_1__A-txt-sub > span {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #C72D18;
  color: #fff;
  border-radius: 50%;
  line-height: 1.1;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__A-txt-sub > span {
    width: 13px;
    height: 13px;
  }
}

.h-recipe_1__dl > dt {
  font-weight: 400;
}

.h-recipe_1__txt-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.h-recipe_1__txt-indent > li:nth-child(n+2) {
  margin-top: 2px;
}

.h-recipe_1__txt-indent--asterisk {
  font-size: 13px;
  line-height: 1.3;
  color: #C72D18;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__txt-indent--asterisk {
    font-size: 12px;
  }
}

.h-recipe_1__txt-indent--asterisk > li::before {
  content: "※";
}

.h-recipe_1__txt-indent--asterisk .h-recipe_1__black {
  color: #000;
}

.h-recipe_1__txt-indent--number > li:nth-child(1)::before {
  content: "\02460";
}

.h-recipe_1__txt-indent--number > li:nth-child(2)::before {
  content: "\02461";
}

.h-recipe_1__txt-indent--number > li:nth-child(3)::before {
  content: "\02462";
}

.h-recipe_1__txt-indent--number > li:nth-child(4)::before {
  content: "\02463";
}

.h-recipe_1__txt-indent--number > li:nth-child(5)::before {
  content: "\02464";
}

.h-recipe_1__txt-indent--number > li:nth-child(6)::before {
  content: "\02465";
}

.h-recipe_1__txt-indent--number > li:nth-child(7)::before {
  content: "\02466";
}

.h-recipe_1__txt-indent--number > li:nth-child(8)::before {
  content: "\02467";
}

.h-recipe_1__kokomade {
  display: inline-block;
  width: 45px;
  margin: 0 3px;
}

@media screen and (max-width: 960px) {
  .h-recipe_1__kokomade {
    width: 35px;
    margin: 0 2px;
  }
}

.h-recipe_1__point__ttl {
  color: #C72D18;
}

.h-recipe_1__bnr {
  width: 95%;
  margin: 5% auto;
}

.h-recipe_1__xmas {
  padding: calc(30 / 1000 * 100%);
  border-radius: 20px;
  border: solid 6px #2F944F;
  box-sizing: border-box;
  margin-bottom: calc(40 / 1000 * 100%);
}

.h-recipe_1__xmas__ttl {
  margin-bottom: calc(15 / 1000 * 100%);
}

.h-recipe_1__xmas__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: calc(15 / 1000 * 100%);
}

.h-recipe_1__xmas__nav > li {
  width: 50%;
}

.h-recipe_1__xmas__movie {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  padding-bottom: 50.25%;
  margin: 0 auto;
}

.h-recipe_1__xmas__movie > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
