@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Sofia+Sans+Extra+Condensed:wght@600&display=swap");
:root {
  --bg: #fff;
  --em: #4E9BC6;
  --blue: #89CBE5;
  --pale: #EEF4F7;
  --lightblue: #A0D8E8;
  --cream: #FFFDE5;
  --orange: #EC6D56;
  --purple: #B963A4;
  --lightpurple: #E098C1;
  --yellow: #F5F1DF;
  --text: #232323;
  --grey: #898989;
  --lightgrey: #EFEFEF;
  --violet: #E4007F;
  --lightviolet: #F3EBF4;
  --gold: #B89C3B;
  --pink: #F19CA6;
  --green: #6BBC6E;
  --yellowgreen: #AACF52;
  --mint: #5DC2D0;
  scroll-behavior: smooth;
}

#detail #middle_cont_left {
  color: var(--text);
  font-size: 13px;
  line-height: 21px;
  margin-bottom: 20px;
  box-sizing: border-box;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic Pro", "Noto Sans JP", "Meiryo", "MS PGothic", sans-serif;
  letter-spacing: -0.06em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  background-color: var(--bg);
  background-image: image-set(url("images/bg.png") 1x, url("images/bg@2x.png") 2x), linear-gradient(to top, white 0%, var(--lightblue) 5%, white 10%);
  background-size: 100% auto;
  background-position: left top, left bottom;
  background-repeat: no-repeat;
  padding: 30px;
}
@media screen and (max-width: 480px) {
  #detail #middle_cont_left {
    padding: 15px;
    background-image: url("images/bg-sp.png"), linear-gradient(to top, white 0%, var(--lightblue) 5%, white 10%);
  }
}
@media screen and (max-width: 320px) {
  #detail #middle_cont_left {
    font-size: 12px;
    line-height: 1.5;
    width: 95vw;
    padding: 0;
  }
}
#detail #middle_cont_left p {
  hanging-punctuation: allow-end;
  line-break: strict;
}
#detail #middle_cont_left sup {
  font-size: 80%;
  top: -0.3em;
  line-height: 1;
}
#detail #middle_cont_left em {
  color: var(--em);
}
#detail #middle_cont_left em,
#detail #middle_cont_left span {
  font-style: normal;
}
#detail #middle_cont_left em.blue,
#detail #middle_cont_left span.blue {
  color: var(--blue);
  font-style: inherit;
}
#detail #middle_cont_left em.green,
#detail #middle_cont_left span.green {
  color: var(--green);
  font-style: inherit;
}
#detail #middle_cont_left em.orange,
#detail #middle_cont_left span.orange {
  color: var(--orange);
  font-style: inherit;
}
#detail #middle_cont_left em.yellow,
#detail #middle_cont_left span.yellow {
  color: var(--yellow);
  font-style: inherit;
}
#detail #middle_cont_left em.purple,
#detail #middle_cont_left span.purple {
  color: var(--purple);
  font-style: inherit;
}
#detail #middle_cont_left em.gold,
#detail #middle_cont_left span.gold {
  color: var(--gold);
}
#detail #middle_cont_left em.pink,
#detail #middle_cont_left span.pink {
  color: var(--pink);
}
#detail #middle_cont_left .marker {
  /*color: #fff;*/
  color: inherit;
  background: transparent linear-gradient(to bottom, rgba(255, 230, 127, 0) 55%, rgb(255, 230, 127) 65%, rgb(255, 230, 127) 95%, rgba(255, 230, 127, 0) 100%);
  padding: 0;
  margin: 0;
}
#detail #middle_cont_left .marker_blue {
  /*color: #fff;*/
  color: inherit;
  background: transparent linear-gradient(to bottom, rgba(183, 205, 218, 0) 45%, rgba(183, 205, 218, 0.5) 55%, rgba(183, 205, 218, 0.5) 90%, rgba(183, 205, 218, 0) 95%);
  padding: 0;
  margin: 0;
}
#detail #middle_cont_left .marker_pink {
  /*color: #fff;*/
  color: inherit;
  background: transparent linear-gradient(to bottom, rgba(244, 180, 208, 0) 45%, rgba(244, 180, 208, 0.5) 55%, rgba(244, 180, 208, 0.5) 90%, rgba(244, 188, 208, 0) 95%);
  padding: 0;
  margin: 0;
}
#detail #middle_cont_left a img {
  border: none;
}

#page-top {
  z-index: 99;
}

#dv_latest_recipe .sq dd.naiyo {
  text-align: justify;
  line-break: strict;
}

#ul_kiji {
  padding: 0 28px;
}

/* ----------------------------------------------------------------------- */
/* 共通 */
/* ----------------------------------------------------------------------- */
.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 480px) {
  .flex {
    flex-wrap: wrap;
  }
}

.wrap {
  flex-wrap: wrap;
}

.caption,
.spec {
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
@media screen and (max-width: 480px) {
  .caption,
  .spec {
    transform: scale(1);
    font-size: 9px;
    line-height: 13px;
    letter-spacing: -0.05em;
  }
}

.spec strong {
  display: block;
  white-space: nowrap;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 480px) {
  .sp {
    display: revert !important;
  }
}

.sp5 {
  display: none !important;
}
@media screen and (max-width: 320px) {
  .sp5 {
    display: inherit !important;
  }
}

@media screen and (max-width: 480px) {
  .nosp {
    display: none !important;
  }
}

.alignRight {
  text-align: right !important;
  transform-origin: right bottom;
}

.alignCenter {
  text-align: center !important;
}

.serif {
  font-family: "Hiragino Mincho Pro", "Noto Serif JP", "Kozuka Mincho Pro", "Yu Mincho", serif;
}

#middle_cont_left {
  counter-reset: title;
}

/* ----------------------------------------------------------------------- */
/* c00 */
/* ----------------------------------------------------------------------- */
.c00 {
  position: relative;
  padding: 74px 0 0;
}
@media screen and (max-width: 480px) {
  .c00 {
    padding: 50px 0 0;
  }
}
.c00--lead {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 50px;
  padding: 0 50px;
}
@media screen and (max-width: 480px) {
  .c00--lead {
    padding: 0;
    margin-bottom: 30px;
  }
}
.c00--wrap {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  padding-top: 50px;
}
@media screen and (max-width: 480px) {
  .c00--wrap {
    flex-wrap: wrap;
    padding-top: 0;
    justify-content: space-between;
    gap: 30px;
  }
}
.c00--title {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  font-feature-settings: "palt";
  text-align: center;
  width: 128px;
  background: white;
  border-top: 4px solid var(--green);
  padding: 6px 0;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .c00--title {
    position: static;
  }
}
.c00--title span {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 6px;
}
.c00--badge {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 480px) {
  .c00--badge {
    position: static;
  }
}
.c00--figs {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .c00--figs {
    flex-wrap: wrap;
    gap: 10px 15px;
  }
}
@media screen and (max-width: 480px) {
  .c00--photo01 {
    order: 1;
    width: 100%;
    height: 250px;
    object-fit: contain;
  }
}
.c00--caption {
  display: flex;
  flex-direction: column;
}
.c00--caption-01 {
  align-items: end;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .c00--caption-01 {
    order: 2;
  }
}
.c00--caption-02 {
  align-items: start;
  padding-bottom: 1em;
}
@media screen and (max-width: 480px) {
  .c00--caption-02 {
    order: 3;
  }
}
.c00--caption_title {
  color: var(--green);
  font-size: 30px;
  line-height: 1.2;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  border-bottom: 1px dotted;
  padding-bottom: 8px;
  margin: 0 0 8px;
  width: fit-content;
  letter-spacing: 0.01em;
}
.c00--caption_title span {
  display: block;
  font-family: "Hiragino sans", "Hiragino Kaku Gothic", "Noto Sans JP", "Noto Sans", "Meiryo", sans-serif;
  font-size: 10px;
  color: var(--text);
  letter-spacing: 0;
}

/* ----------------------------------------------------------------------- */
/* c01 */
/* ----------------------------------------------------------------------- */
.c01 {
  padding: 40px 0 50px;
}
@media screen and (max-width: 480px) {
  .c01 {
    padding: 20px 0 30px;
  }
}
.c01--title {
  color: var(--green);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  margin: 36px 0 13px;
  padding: 6px 0 6px 12px;
  border-left: 6px solid var(--green);
}
@media screen and (max-width: 480px) {
  .c01--title {
    font-size: 14px;
  }
}
.c01--title_badge {
  position: absolute;
  top: -36px;
  left: -6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--green);
  height: 24px;
  padding: 0 16px;
  width: fit-content;
  border-radius: 12px;
}
@media screen and (max-width: 480px) {
  .c01--title_badge {
    top: -30px;
  }
}
.c01--title_strong {
  font-weight: 600;
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 480px) {
  .c01--title_strong {
    font-size: 21px;
  }
}
.c01 .c01a {
  padding-bottom: 40px;
}
.c01 .c01a--text {
  padding-right: 160px;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .c01 .c01a--text {
    padding: 0;
  }
}
.c01 .c01a--fig01 {
  display: block;
  margin: -60px 0 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 480px) {
  .c01 .c01a--fig01 {
    margin-top: 20px;
  }
}
.c01 .c01b--sub {
  display: flex;
  align-items: center;
  color: white;
  background: var(--green);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  height: 27px;
  padding: 0 10px;
  margin: 0 0 14px;
}
.c01 .c01b--text {
  margin-bottom: 20px;
}
.c01 .c01b--fig01 {
  display: block;
  max-width: 100%;
  margin: 0 auto 24px;
}
.c01 .c01b--fig02 {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

/* ----------------------------------------------------------------------- */
/* c02 */
/* ----------------------------------------------------------------------- */
.c02 {
  padding: 30px 30px 20px;
  background-image: linear-gradient(to bottom, white 0, var(--lightblue) 12%, var(--lightblue) 13%, white 25%);
  background-repeat: no-repeat;
  margin: 0 -30px;
}
@media screen and (max-width: 480px) {
  .c02 {
    padding: 20px 15px;
    margin: 0 -15px;
  }
}
.c02--title {
  position: relative;
  text-align: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 480px) {
  .c02--title {
    margin-bottom: 30px;
  }
}
.c02--title:before {
  content: "";
  position: absolute;
  left: calc(50% - 160px);
  top: -50px;
  width: 320px;
  height: 320px;
  background: var(--blue);
  border-radius: 160px;
  opacity: 0.5;
}
@media screen and (max-width: 480px) {
  .c02--title:before {
    left: calc(50% - 130px);
    top: -20px;
    width: 260px;
    height: 260px;
    border-radius: 130px;
  }
}
.c02--title img {
  position: relative;
  max-width: 100%;
}
.c02--lead {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .c02--lead {
    text-align: justify;
  }
}
.c02--fig_wrap {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .c02--fig_wrap {
    overflow: scroll;
    margin-right: -15px;
    padding-right: 15px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
}
.c02--text {
  margin-bottom: 20px;
}
.c02--fig03 {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/* ----------------------------------------------------------------------- */
/* c03 */
/* ----------------------------------------------------------------------- */
.c03 {
  padding: 30px 0 50px;
}
@media screen and (max-width: 480px) {
  .c03 {
    padding: 20px 0 30px;
  }
}
.c03--title {
  color: var(--green);
  font-size: 24px;
  font-weight: 600;
  border-left: 6px solid var(--green);
  margin: 0 0 24px;
  font-feature-settings: "palt";
  padding: 6px 0 6px 12px;
}
.c03--wrap {
  display: flex;
  gap: 36px;
}
@media screen and (max-width: 480px) {
  .c03--wrap {
    flex-direction: column;
    gap: 30px;
  }
}
.c03--subtitle {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 0.5em;
}
.c03--subtitle:before {
  color: var(--green);
  content: "▶";
}
.c03--text {
  text-align: justify;
  line-break: strict;
  margin-bottom: 1.3em;
}
.c03--fig01 {
  display: block;
  margin: 0 auto;
}
.c03--inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
}
.c03--slit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 22px;
  color: white;
  font-size: 12px;
  font-weight: 500;
  background: var(--green);
  border-radius: 11px;
  padding: 0 12px;
  margin: 0 0 0.5em;
}
.c03--column {
  border: 1px solid var(--green);
  border-radius: 12px;
  padding: 10px 14px;
}
.c03--column_title {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--green);
  font-size: 25px;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 10px;
}
.c03--column_text {
  font-size: 12px;
  text-align: justify;
  line-break: strict;
  margin-bottom: 0;
}
.c03--column_em {
  display: block;
  color: inherit !important;
  font-weight: 500;
  text-decoration: underline;
}

/* ----------------------------------------------------------------------- */
/* c04 */
/* ----------------------------------------------------------------------- */
.c04 {
  padding-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .c04 {
    padding-bottom: 0;
  }
}
.c04--wrap {
  filter: drop-shadow(1px 1px 0 var(--green)) drop-shadow(-1px -1px 0 var(--green)) drop-shadow(1px -1px 0 var(--green)) drop-shadow(-1px 1px 0 var(--green));
  margin-bottom: 14px;
}
.c04--inner {
  display: grid;
  grid-template: auto/auto 1fr;
  gap: 18px;
  padding: 10px 20px;
  background: var(--pale);
  clip-path: polygon(0 25px, 25px 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 480px) {
  .c04--inner {
    grid-template: auto/auto;
  }
}
.c04--title {
  align-self: center;
  margin: 0;
}
.c04--title img {
  max-width: 100%;
}
.c04--badge {
  justify-self: end;
}
.c04--figs {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  grid-column: 1/span 2;
}
@media screen and (max-width: 480px) {
  .c04--figs {
    grid-column: 1;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 6%;
    margin: 0 -20px;
  }
}
.c04--figs_wrap {
  position: relative;
}
.c04--figs_wrap-01 {
  width: 220px;
}
@media screen and (max-width: 480px) {
  .c04--figs_wrap-01 {
    width: 47%;
    order: 2;
  }
}
.c04--figs_wrap-02 {
  width: 190px;
}
@media screen and (max-width: 480px) {
  .c04--figs_wrap-02 {
    width: 47%;
    order: 3;
  }
}
@media screen and (max-width: 480px) {
  .c04--figs_img {
    order: 1;
    width: 100%;
    height: 228px;
    object-fit: contain;
  }
}
.c04--figs_title {
  position: absolute;
  top: 0;
  color: var(--green);
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 600;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 36px;
  line-height: 1.1;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .c04--figs_title {
    position: static;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 10px;
  }
}
.c04--figs_title-01 {
  left: 0;
}
@media screen and (max-width: 480px) {
  .c04--figs_title-01 {
    text-align: right;
  }
}
.c04--figs_title-02 {
  right: 0;
  text-align: right;
}
@media screen and (max-width: 480px) {
  .c04--figs_title-02 {
    text-align: left;
  }
}
.c04--figs_copy {
  position: absolute;
  top: 0;
  writing-mode: vertical-rl;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  hanging-punctuation: allow-end;
}
@media screen and (max-width: 480px) {
  .c04--figs_copy {
    position: static;
    writing-mode: horizontal-tb;
    margin-bottom: 10px;
  }
}
.c04--figs_copy-01 {
  right: 0;
}
@media screen and (max-width: 480px) {
  .c04--figs_copy-01 {
    text-align: right;
  }
}
.c04--figs_copy-02 {
  left: 0;
}
.c04--figs_spec {
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 480px) {
  .c04--figs_spec {
    position: static;
  }
}
.c04--figs_spec-01 {
  right: 0;
  text-align: right;
}
.c04--figs_spec-02 {
  left: 0;
}

/*# sourceMappingURL=detail.css.map */
