/* src/styles/article.scss */
.article-form-checkbox__input:focus-visible + .article-form-checkbox__content {
  outline: Highlight solid 2px;
  outline: -webkit-focus-ring-color solid 2px;
}
.article-form-box-consent__container > :first-child,
.article-box-section__content > :first-child,
.article-recipe__area > :first-child,
.article-recipe__product-content > :first-child,
.article-media-layout__content > :first-child,
.article-media-list__item > :first-child,
.article-box__body > :first-child,
.article-section__head > :first-child {
  margin-top: 0 !important;
}
.article-form-box-consent__container > :last-child,
.article-box-section__content > :last-child,
.article-recipe__area > :last-child,
.article-recipe__product-content > :last-child,
.article-media-layout__content > :last-child,
.article-media-list__item > :last-child,
.article-box__body > :last-child,
.article-section__head > :last-child {
  margin-bottom: 0 !important;
}
.article-form-checkbox__input,
.article-button__blank-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.article-section__body {
  margin-top: 50px;
}
.article-text {
  margin-top: var(--SPACING);
}
.article-heading {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 10px;
  margin-top: var(--SPACING);
  color: var(--COLOR_PRIMARY);
}
.article-heading--center {
  text-align: center;
}
.article-heading--dotted {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.article-heading--dotted::after {
  content: "";
  width: 100%;
  height: 2px;
  background-image: url(/assets/images/common/icon-ellipse.svg);
  background-size: contain;
}
.article-heading--line {
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-color: var(--COLOR_PRIMARY);
  padding-block: 10px;
}
.article-heading--underline {
  border-bottom: 2px solid var(--COLOR_PRIMARY);
  padding-bottom: 10px;
  color: var(--COLOR_FONT);
}
.article-heading--color {
  border-left: 3px solid var(--COLOR_PRIMARY);
  padding-left: 10px;
  background-color: var(--COLOR_BACKGROUND);
}
.article-heading--color-2 {
  border-bottom: 2px solid var(--COLOR_PRIMARY);
  padding: 10px 2px;
  background: linear-gradient(var(--COLOR_BACKGROUND) calc(100% - 3px), transparent calc(100% - 3px));
}
.article-heading--announce::after {
  content: "";
  width: 43px;
  height: 28px;
  background: url(/assets/images/common/icon-megaphone-2.svg) no-repeat center/contain;
}
.article-heading--decorated-2 {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  column-gap: 4px;
}
.article-heading--decorated-2::before,
.article-heading--decorated-2::after {
  content: "";
  width: 50px;
  height: 50px;
  background-color: var(--COLOR_PRIMARY);
  mask: url(/assets/images/common/icon-decorated.svg) no-repeat center/contain;
  flex-shrink: 0;
}
.article-heading--decorated-2::after {
  transform: scaleX(-1);
}
.article-heading__heading {
  flex: 1;
  font-size: 2rem;
}
.article-heading--decorated .article-heading__heading {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  padding-inline: 10px;
}
.article-heading--decorated .article-heading__heading::before,
.article-heading--decorated .article-heading__heading::after {
  content: "";
  width: 2px;
  height: 30px;
  background-color: var(--COLOR_PRIMARY);
}
.article-heading--decorated .article-heading__heading::before {
  rotate: -40deg;
}
.article-heading--decorated .article-heading__heading::after {
  rotate: 40deg;
}
.article-heading--decorated-2 .article-heading__heading {
  flex: unset;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 0.8em;
  text-decoration-color: var(--COLOR_BACKGROUND);
  text-underline-offset: -0.4em;
  text-decoration-skip-ink: none;
}
.article-box {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  border-radius: 10px;
  margin-top: var(--SPACING);
  padding: 20px;
  background-color: var(--COLOR_BACKGROUND_TRANSLUCENT);
}
.article-box--point {
  background-color: var(--COLOR_BACKGROUND);
}
.article-box__head {
  color: var(--COLOR_PRIMARY);
  font-size: var(--FONT_SIZE);
}
.article-box--point .article-box__head {
  padding-left: 21px;
  background: url(/assets/images/common/icon-point.svg) no-repeat 0 center;
}
.article-media {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 10px;
  margin-top: var(--SPACING);
}
.article-media--auto {
  text-align: center;
}
.article-media__caption {
  color: var(--COLOR_INACTIVE);
  font-size: 1rem;
}
.article-media__item {
  width: 100%;
  border-radius: 10px;
}
.article-media--auto .article-media__item {
  width: auto;
}
.article-media-list .article-media__item {
  aspect-ratio: var(--ASPECT_RATIO);
  object-fit: cover;
}
.article-media-list {
  display: flex;
  column-gap: 20px;
  margin-top: var(--SPACING);
}
.article-media-list__item {
  flex: 1;
}
.article-media-layout {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  margin-top: var(--SPACING);
}
@media (width >= 768px) {
  .article-media-layout {
    flex-direction: row-reverse;
  }
}
@media (width < 768px) {
  .article-media-layout--row-reverse-sp {
    flex-direction: row-reverse;
  }
}
@media (width < 768px) {
  .article-media-layout--column-sp {
    flex-direction: column;
  }
}
@media (width >= 768px) {
  .article-media-layout--row-pc {
    flex-direction: row;
  }
}
@media (width >= 768px) {
  .article-media-layout--column-pc {
    flex-direction: column-reverse;
  }
}
.article-media-layout__content,
.article-media-layout__image {
  flex: 1;
}
.article-media-layout__image-item {
  width: 100%;
  border-radius: 10px;
}
.article-media-layout__text + .article-media-layout__text {
  margin-top: 10px;
}
.article-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: var(--SPACING);
}
@media (width >= 768px) {
  .article-card[data-column-pc="3"] {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width >= 768px) {
  .article-card[data-column-pc="4"] {
    grid-template-columns: repeat(4, 1fr);
  }
}
.article-card__item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  row-gap: 10px;
}
.article-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: var(--FONT_WEIGHT_BOLD);
}
.article-card__image {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: var(--ASPECT_RATIO);
  object-fit: cover;
}
.article-card[data-column-pc] .article-card__image {
  aspect-ratio: 1/1;
}
.article-button {
  display: flex;
  justify-content: center;
  margin-top: var(--SPACING);
}
.article-button__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  width: min(100%, 360px);
  min-height: 45px;
  border: 2px solid var(--COLOR_PRIMARY);
  border-radius: 100vmax;
  padding-inline: 42px;
  background-color: var(--COLOR_BASE);
  color: var(--COLOR_PRIMARY);
  font-weight: var(--FONT_WEIGHT_BOLD);
  transition: background-color var(--TRANSITION), color var(--TRANSITION);
  box-shadow: var(--SHADOW_BUTTON);
  text-align: center;
  line-height: 1.4285714286;
}
.article-button__item::after {
  content: "";
  position: absolute;
  inset: 0 30px 0 auto;
  width: 15px;
  height: 15px;
  margin: auto;
  background-color: currentColor;
  mask: url(/assets/images/common/icon-chevron.svg) no-repeat center/contain;
  transition: background-color var(--TRANSITION);
}
@media (hover: hover) and (width >= 768px) {
  .article-button__item:not(button:disabled, a:not(:any-link)):hover {
    background-color: var(--COLOR_BACKGROUND);
  }
}
.article-button__item:not(button:disabled, a:not(:any-link)):active {
  background-color: var(--COLOR_PRIMARY);
  color: var(--COLOR_BASE);
}
.article-button__item--emphasis {
  background-color: var(--COLOR_PRIMARY);
  color: var(--COLOR_BASE);
}
.article-button__item--emphasis::after {
  background-color: currentColor;
}
@media (hover: hover) and (width >= 768px) {
  .article-button__item--emphasis:not(button:disabled, a:not(:any-link)):hover {
    background-color: var(--COLOR_HOVER);
    border-color: var(--COLOR_HOVER);
    color: var(--COLOR_BASE);
  }
}
.article-button__item--emphasis:not(button:disabled, a:not(:any-link)):active {
  background-color: var(--COLOR_BASE);
  border-color: var(--COLOR_PRIMARY);
  color: var(--COLOR_PRIMARY);
}
.article-button__item[download]::after {
  width: 18px;
  height: 18px;
  mask: url(/assets/images/common/icon-download.svg) no-repeat center/contain;
}
.article-button__item[target=_blank]::after {
  content: unset;
}
.article-button__blank {
  position: absolute;
  inset: 0 30px 0 auto;
  width: 20px;
  height: 20px;
  margin: auto;
  background-color: currentColor;
  mask: url(/assets/images/common/icon-blank.svg) no-repeat center/contain;
}
.article-link {
  display: block;
  margin-top: var(--SPACING);
  color: var(--COLOR_PRIMARY);
  font-weight: var(--FONT_WEIGHT_BOLD);
  transition: opacity var(--TRANSITION);
}
.article-link::after {
  content: "";
  position: relative;
  top: 0.1em;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  background-color: currentColor;
  mask: url(/assets/images/common/icon-chevron.svg) no-repeat center/contain;
}
@media (hover: hover) and (width >= 768px) {
  .article-link:hover {
    opacity: 0.5;
  }
}
.article-link-text {
  color: var(--COLOR_PRIMARY);
  text-decoration: underline;
}
.article-highlight {
  --color: var(--COLOR_BACKGROUND);
  background: linear-gradient(transparent 60%, var(--color) 40%);
}
.article-highlight--secondary {
  --color: #ffe7e9;
}
.article-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: var(--SPACING);
}
.article-list__item {
  --size-bullet: 4px;
  position: relative;
  padding-left: calc(var(--size-bullet) + 8px);
}
.article-list__item::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: var(--size-bullet);
  height: var(--size-bullet);
  border-radius: 100vmax;
  background-color: var(--COLOR_PRIMARY);
  flex-shrink: 0;
}
.article-list--secondary .article-list__item {
  --size-bullet: 15px;
  padding-left: calc(var(--size-bullet) + 6px);
}
.article-list--secondary .article-list__item::before {
  top: 0.2em;
}
.article-list-number {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: var(--SPACING);
}
.article-list-number__item {
  display: flex;
  align-items: flex-start;
  column-gap: 5px;
}
.article-list-number__number {
  width: 23px;
  height: 23px;
  background-color: var(--COLOR_BASE);
  color: var(--COLOR_PRIMARY);
  text-align: center;
  font-weight: var(--FONT_WEIGHT_BOLD);
  flex-shrink: 0;
}
.article-list-number--secondary .article-list-number__number {
  border-radius: 100vmax;
  padding-block: 2px;
  background-color: var(--COLOR_PRIMARY);
  color: var(--COLOR_BASE);
  font-size: 1.2rem;
}
.article-list-description {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-top: var(--SPACING);
}
.article-list-description__dt {
  font-weight: var(--FONT_WEIGHT_BOLD);
}
.article-list-description__dd {
  margin-top: 10px;
}
.article-note {
  margin-top: var(--SPACING);
  font-size: 1rem;
}
.article-table {
  margin-top: var(--SPACING);
}
.article-table__table {
  table-layout: fixed;
  width: 100%;
}
.article-table__cell {
  border: 1px solid #b5b5b5;
  padding: 12px;
  text-align: center;
}
.article-table__cell--heading {
  background-color: var(--COLOR_PRIMARY);
  color: var(--COLOR_BASE);
}
.article-box-profile {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  border-radius: 10px;
  margin-top: var(--SPACING);
  padding: 20px;
  background-color: var(--COLOR_BACKGROUND_TRANSLUCENT);
}
.article-box-profile__head {
  color: var(--COLOR_PRIMARY);
  font-size: 2rem;
}
.article-box-profile__body {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
  column-gap: 20px;
}
.article-box-profile__content {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.article-box-profile__image {
  max-width: 100px;
  width: 100%;
  object-fit: cover;
}
.article-iframe {
  margin-top: var(--SPACING);
  text-align: center;
}
.article-iframe__item {
  height: auto;
  aspect-ratio: var(--ASPECT_RATIO);
}
.article-main-visual {
  width: 100%;
  border-radius: 10px;
}
.article-page-title {
  margin-top: var(--SPACING);
  color: var(--COLOR_PRIMARY);
  font-size: 2.3rem;
}
.article-date {
  display: block;
  margin-top: var(--SPACING);
  font-size: 1.2rem;
}
.article-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  width: fit-content;
  border-radius: 10px;
  padding: 10px 20px;
  margin-top: var(--SPACING);
  background-color: var(--COLOR_BACKGROUND);
  color: var(--COLOR_PRIMARY);
  font-weight: var(--FONT_WEIGHT_BOLD);
}
.article-badge--inactive {
  background-color: var(--COLOR_INACTIVE);
  color: var(--COLOR_BASE);
}
.article-recipe {
  display: grid;
}
@media (width >= 768px) {
  .article-recipe {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
  }
}
@media (width >= 1000px) {
  .article-recipe {
    grid-template-columns: 32% auto;
  }
}
@media (width < 768px) {
  .article-recipe__area--head {
    margin-top: 20px;
  }
  .article-recipe__area--hero {
    order: -1;
  }
  .article-recipe__area--ingredients {
    margin-top: 50px;
  }
  .article-recipe__area--steps {
    margin-top: 50px;
  }
  .article-recipe__area--product {
    margin-top: 50px;
  }
  .article-recipe__area--memo {
    margin-top: 20px;
  }
}
@media (width >= 768px) {
  .article-recipe__area {
    grid-column: span 2;
  }
  .article-recipe__area--head {
    grid-area: 1/2/2/3;
  }
  .article-recipe__area--hero {
    grid-area: 1/1/2/2;
  }
}
@media (width >= 1000px) {
  .article-recipe__area {
    grid-column: span 1;
  }
  .article-recipe__area--hero {
    grid-area: 1/1/2/2;
  }
}
.article-recipe__hero {
  text-align: center;
}
.article-recipe__hero-image {
  width: 100%;
  border-radius: 10px;
}
.article-recipe__box {
  padding: 17px;
  border: 3px solid var(--COLOR_PRIMARY);
  border-radius: 10px;
}
.article-recipe__box-title {
  font-size: 1.4rem;
}
.article-recipe__box-title--memo {
  padding-left: 26px;
  background: url(/assets/images/common/icon-pencil.svg) no-repeat 0 center;
  color: var(--COLOR_PRIMARY);
}
.article-recipe__product {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-direction: row-reverse;
  margin-top: var(--SPACING);
}
.article-recipe__product-content {
  flex: 1;
}
.article-recipe__product-image {
  flex: 1;
}
.article-recipe__product-image-item {
  width: 100%;
  border-radius: 10px;
}
.article-box-section {
  margin-top: var(--SPACING);
}
.article-box-section__title {
  border-left: 3px solid currentColor;
  padding: 16px 20px;
  font-size: 2rem;
}
.article-box-section__content {
  min-height: 70px;
  padding: 20px;
  background-color: rgba(165, 165, 165, 0.08);
}
.article-text-large {
  margin-top: var(--SPACING);
  font-size: 2rem;
  font-weight: var(--FONT_WEIGHT_BOLD);
  color: var(--COLOR_PRIMARY);
  text-align: center;
}
.article-form-box-consent {
  margin-top: var(--SPACING);
}
.article-form-box-consent__inner {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.article-form-box-consent__container {
  max-height: 220px;
  padding: 20px;
  background-color: rgba(165, 165, 165, 0.0784313725);
  border: 1px solid #E2E2E2;
  border-radius: 10px;
  overflow: auto;
}
.article-form-box-consent__checkbox {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 5px;
}
.article-form-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}
.article-form-checkbox__content {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  padding-left: 51px;
}
.article-form-checkbox__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 100vmax;
  background-color: #e2e2e2;
}
.article-form-checkbox__content::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 16px;
  height: 10px;
  background-color: var(--COLOR_BASE);
  mask: url(/assets/images/common/icon-check.svg) no-repeat center/contain;
}
.article-form-checkbox__input:checked + .article-form-checkbox__content::before {
  background-color: var(--COLOR_BACKGROUND);
}
.article-form-checkbox__input:checked + .article-form-checkbox__content::after {
  background-color: var(--COLOR_PRIMARY);
}
.article-form-checkbox__note {
  font-size: 1.2rem;
  color: var(--COLOR_INACTIVE);
}
.article-text-error {
  margin-top: 10px;
  color: var(--COLOR_PRIMARY);
  font-weight: var(--FONT_WEIGHT_BOLD);
}


