@charset "UTF-8";
/* ==========================================================================
   utility
========================================================================== */
/*------------------------------------------------------------
  画像　w100%用
------------------------------------------------------------*/
.u-img-w100 {
  width: 100%;
}

/* --------------------------------------------------------------------------
  font
-------------------------------------------------------------------------- */
.u-font-zenmaru--700, .u-font-zenmaru {
  font-family: var(--font-zenmaru);
}

.u-font-zenmaru {
  font-weight: 500;
}
.u-font-zenmaru--700 {
  font-weight: 700;
}

.u-font-cantataone {
  font-family: var(--font-cantataone);
}

.u-font-cantataone {
  font-weight: 400;
}

/* ---------------------------------------------------------------------------
  show/hide
--------------------------------------------------------------------------- */
.u-show-mobile {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-show-mobile {
    display: initial;
  }
}

.u-show-desktop {
  display: initial;
}
@media screen and (min-width: 768px) {
  .u-show-desktop {
    display: none;
  }
}

/* ---------------------------------------------------------------------------
  flex
--------------------------------------------------------------------------- */
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.u-flex--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .u-flex--pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-flex--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.u-flex--wrap.u-flex, .u-flex--wrap.u-flex--pc, .u-flex--wrap.u-flex--sp {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.u-flex--justify-between.u-flex, .u-flex--justify-between.u-flex--pc, .u-flex--justify-between.u-flex--sp {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.u-flex--justify-center.u-flex, .u-flex--justify-center.u-flex--pc, .u-flex--justify-center.u-flex--sp {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.u-flex--flexd-rowr.u-flex, .u-flex--flexd-rowr.u-flex--pc, .u-flex--flexd-rowr.u-flex--sp {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.u-flex--align-end.u-flex, .u-flex--align-end.u-flex--pc, .u-flex--align-end.u-flex--sp {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.u-flex--align-center.u-flex, .u-flex--align-center.u-flex--pc, .u-flex--align-center.u-flex--sp {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ---------------------------------------------------------------------------
  sr-only
--------------------------------------------------------------------------- */
.u-sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border-width: 0;
  white-space: nowrap;
}

:root {
  --color-main: #000;
  --color-back: #8DB436;
  --color-inner: #FFFCD1;
  --color-title-blue: #518FDC;
  --color-title-red: #E7383D;
  --color-title-green: #0C6A00;
  --color-recipe-link-bg: rgba(231, 56, 61, 0.1);
  --font-base: "Zen Maru Gothic", sans-serif;
  --font-zenmaru: "Zen Maru Gothic", sans-serif;
  --font-sofia: "Sofia Sans", sans-serif;
  --header-h-pc:123px;
  --header-h-sp:61px;
  --footer-h-pc:192px;
  --footer-h-sp:223.0769230769vw;
  --fv-top-pc:152px;
  --fv-top-sp:61px;
  --line-height-default: 1.2;
  --padding-side-xl-pc:20px;
  --padding-side-pc:0;
  --padding-side-sp:6.4102564103vw;
  --container-width: 1220px;
  --container-width-1000px: 1000px;
}

/* ==========================================================================
  component
========================================================================== */
/* --------------------------------------------------------------------------
  font
-------------------------------------------------------------------------- */
.c-font-zenmaru--black {
  font-family: var(--font-zenmaru);
  font-weight: 900;
}

.c-font-sofia {
  font-family: var(--font-sofia);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
  c-side
-------------------------------------------------------------------------- */
.c-side__inner {
  background: var(--color-inner);
}
.c-side--left {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-side--left {
    overflow-x: clip;
    display: grid;
    place-items: center;
    position: sticky;
    top: var(--fv-top-pc);
    height: calc(100vh - var(--fv-top-pc));
    min-height: 786px;
    padding: 0 0 65px;
  }
}
@media screen and (min-width: 768px) {
  .c-side--left {
    padding-left: 26px;
  }
}

.c-side--right {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-side--right {
    overflow-x: clip;
    display: grid;
    place-items: center;
    position: sticky;
    top: var(--fv-top-pc);
    height: calc(100vh - var(--fv-top-pc));
    min-height: 786px;
    padding: 0 0 65px;
  }
}
@media screen and (min-width: 768px) {
  .c-side--right {
    padding-right: 26px;
  }
}

/* --------------------------------------------------------------------------
  c-header
-------------------------------------------------------------------------- */
.c-header--blue {
  text-align: center;
}
.c-header--blue .c-header__sub {
  background-color: var(--color-title-blue);
}
.c-header--blue .c-header__title {
  color: var(--color-title-blue);
}

.c-header--red {
  text-align: center;
}
.c-header--red .c-header__sub {
  background-color: var(--color-title-red);
}
.c-header--red .c-header__title {
  color: var(--color-title-red);
}

.c-header--green {
  text-align: center;
}
.c-header--green .c-header__sub {
  background-color: var(--color-title-green);
}
.c-header--green .c-header__title {
  color: var(--color-title-green);
}

.c-header__sub {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0.75em;
  padding: 0.75em 2.5em;
  font-size: 3.2vw;
  color: #fff;
  border-radius: 18.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-header__sub {
    font-size: 12px;
    border-radius: 70px;
  }
}

.c-header__title {
  font-size: 9.3333333333vw;
  font-weight: 900;
  line-height: 1.37;
}
@media screen and (min-width: 768px) {
  .c-header__title {
    font-size: 35px;
  }
}

/* --------------------------------------------------------------------------
  c-campaign-area
-------------------------------------------------------------------------- */
.c-campaign-area {
  padding: 8vw 2.6666666667vw 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-campaign-area {
    padding: 0;
  }
}

.c-campaign-area__growth {
  padding-top: 5.3333333333vw;
  text-align: center;
}
.c-campaign-area__growth img {
  width: 90%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .c-campaign-area__growth {
    padding-top: 20px;
  }
  .c-campaign-area__growth img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

.c-campaign-area-links {
  padding-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .c-campaign-area-links {
    padding-top: 40px;
  }
}

.c-campaign-area-links__item-link {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.c-campaign-area-links__item-link:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
  c-recipe-links
-------------------------------------------------------------------------- */
.c-recipe-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2vw 0;
}
@media screen and (min-width: 768px) {
  .c-recipe-links {
    gap: 12px 0;
  }
}

.c-recipe-links__item {
  font-size: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .c-recipe-links__item {
    font-size: 17px;
  }
}
.c-recipe-links__item:nth-last-of-type(even) .c-recipe-links__item-link {
  grid-template-areas: "text image";
  grid-template-columns: auto 113px;
}

.c-recipe-links__item-link {
  display: grid;
  grid-template-areas: "image text";
  grid-template-columns: 113px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 2.6666666667vw;
  width: 100%;
  border-radius: 6px;
  background: var(--color-recipe-link-bg);
}
@media screen and (min-width: 768px) {
  .c-recipe-links__item-link {
    gap: 0 28px;
    padding: 0 3px;
  }
}

.c-recipe-links__item-image {
  grid-area: image;
}
.c-recipe-links__item-text {
  grid-area: text;
}
/* --------------------------------------------------------------------------
  c-img-w100
-------------------------------------------------------------------------- */
.c-img-w100 {
  width: 100%;
}

/* --------------------------------------------------------------------------
  link
-------------------------------------------------------------------------- */
.c-link--hover {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-link--hover:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
  c-modal setting
-------------------------------------------------------------------------- */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 100%;
}

.c-modal__overlay {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(141, 180, 54, 0.9);
}

.c-modal__container {
  position: fixed;
  inset: 0;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: min(94%, 1200px);
  height: min(96svh, 700px);
  margin: auto;
  padding: 2.6666666667vw 0;
  border-radius: 5.3333333333vw;
  background-color: #FFFCD1;
}
.c-modal__close {
  display: grid;
  place-items: center;
  width: 16vw;
  height: 10.6666666667vw;
  margin: 0 auto;
  padding: 0;
  color: #000;
  font-family: var(--font-zenmaru);
  font-weight: 500;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
}
.c-modal__close svg {
  pointer-events: none;
  width: 8.5333333333vw;
  height: 11.2vw;
}
.c-modal__close:hover {
  color: var(--col-gold);
  border-color: var(--col-gold);
  background-color: var(--col-lgray);
}
.c-modal__close:hover svg {
  fill: var(--col-gold);
}

.c-modal__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
  width: 100%;
  height: auto;
}

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

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
}
.micromodal-slide {
  opacity: 0;
  pointer-events: none;
}
.micromodal-slide.is-open {
  opacity: 1;
  pointer-events: auto;
}

.micromodal-slide[aria-hidden=false] .c-modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=false] .c-modal__container {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .c-modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden=true] .c-modal__container {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .c-modal__container,
.micromodal-slide .c-modal__overlay {
  will-change: transform;
}

/* ==========================================================================
  layout
========================================================================== */
/* ==========================================================================
  main => .Main上書き
========================================================================== */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

.Main {
  overflow: visible;
  margin-top: 0;
  color: var(--color-main);
  font-family: var(--font-base);
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: var(--line-height-default);
  font-optical-sizing: auto;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 768px) {
  .Main {
    min-width: 1240px;
    font-size: 16px;
    line-height: var(--line-height-default);
  }
}
.Main a:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.Main a:focus-visible {
  outline: 3px solid #449cf7;
}

/* ==========================================================================
  animation js-fade
========================================================================== */
.is-init {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.is-init.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ==========================================================================
   index
========================================================================== */
/* --------------------------------------------------------------------------
  splide => 上書き
-------------------------------------------------------------------------- */
.splide__pagination__page {
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  margin: 1.3333333333vw;
  opacity: 1;
  background: #686868;
}
@media screen and (min-width: 768px) {
  .splide__pagination__page {
    width: 10px;
    height: 10px;
    margin: 5px;
  }
}
.splide__pagination__page.is-active {
  -webkit-transform: scale(1);
          transform: scale(1);
  background: #000;
}

.splide__arrow {
  top: auto;
  bottom: 0.5333333333vw;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  background: transparent;
}
@media screen and (min-width: 768px) {
  .splide__arrow {
    bottom: 2px;
  }
}
.splide__arrow img {
  width: 5.0666666667vw;
  height: 9.8666666667vw;
}
@media screen and (min-width: 768px) {
  .splide__arrow img {
    width: 19px;
    height: 37px;
  }
}

.splide__arrow--next {
  right: 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .splide__arrow--next {
    right: 80px;
  }
}

.splide__arrow--prev {
  left: 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .splide__arrow--prev {
    left: 80px;
  }
}
.splide__arrow--prev img {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.splide {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .splide {
    margin-bottom: 10px;
  }
}

/* --------------------------------------------------------------------------
  p-top-side
-------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-top-side--left {
    position: relative;
    width: min(100%, 460px);
    height: auto;
    padding: 39px 0 27px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-side--left {
    margin: 0 auto;
    padding-left: 27px;
    padding-right: 27px;
  }
}

@media screen and (min-width: 768px) {
  .p-top-side--right {
    position: relative;
    width: min(100%, 460px);
    height: auto;
    padding: 39px 0 27px;
    border-radius: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-side--right {
    margin: 0 auto;
    padding-left: 22px;
    padding-right: 22px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-side--right .c-header__title {
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .p-top-side__copyright {
    position: absolute;
    left: 1em;
    bottom: -1.5em;
    font-family: var(--font-sofia);
    font-size: 14px;
    font-weight: 500;
  }
}

/* --------------------------------------------------------------------------
  p-top-main
-------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .p-top-main {
    display: grid;
    grid-template-columns: 1fr 428px 1fr;
    background-color: var(--color-back);
  }
}

.p-top-main-contents {
  overflow: hidden;
  min-height: 100vh;
}

.p-top-main-contents__inner {
  margin: var(--header-h-sp) auto 0;
  padding-top: 6.6666666667vw;
  background: var(--color-inner);
}
@media screen and (min-width: 768px) {
  .p-top-main-contents__inner {
    width: 375px;
    margin: var(--fv-top-pc) auto 0;
    padding-top: 25px;
  }
}

/* --------------------------------------------------------------------------
  p-top-uchunews
-------------------------------------------------------------------------- */
.p-top-uchunews__title {
  width: 94.9333333333vw;
  margin: 0 auto 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews__title {
    width: 356px;
    margin-bottom: 22px;
  }
}

.p-top-uchunews-list__item {
  position: relative;
  width: 96%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-list__item {
    width: 360px;
  }
}
.p-top-uchunews-list__item.add-border::after {
  content: "";
  display: block;
  width: 100%;
  height: 8vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-image: url(/event/uchuunews/assets/img/uchunews/line@2x.png);
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-list__item.add-border::after {
    height: 30px;
  }
}

.p-top-uchunews-scrollarea {
  overflow-x: auto;
  width: 100vw;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-scrollarea {
    width: 368px;
  }
}

.p-top-uchunews-scrollarea__img {
  width: 346.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-scrollarea__img {
    width: 1300px;
  }
}

.p-top-uchunews-list__item--10__image {
  position: absolute;
  right: -1.8666666667vw;
  top: 37.3333333333vw;
  width: 24.8vw;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-list__item--10__image {
    top: 140px;
    right: -7px;
    width: 93px;
  }
}

.p-top-uchunews-point .c-header__title {
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-point .c-header__title {
    padding-bottom: 40px;
  }
}

.p-top-uchunews-point {
  position: relative;
  margin-top: 8.5333333333vw;
  padding: 15.7333333333vw 0 10.4vw;
  border-radius: 8vw;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-point {
    margin-top: 32px;
    padding: 59px 0 39px;
    border-radius: 30px;
  }
}

.p-top-uchunews-point__inner {
  width: 90.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-point__inner {
    width: 340px;
  }
}

.p-top-uchunews-point-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16vw 0;
  width: 77.0666666667vw;
  margin: 0 auto;
  color: #604F3D;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-point-list {
    gap: 60px 0;
    width: 289px;
  }
}

.p-top-uchunews-point-list__title {
  padding: 0.5em 0;
  color: #fff;
  font-size: 4.8vw;
  text-align: center;
  border-radius: 40vw;
  background-color: #604F3D;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-point-list__title {
    font-size: 18px;
    border-radius: 150px;
  }
}
.p-top-uchunews-point-list__title span {
  display: block;
  font-size: 0.775em;
}

.p-top-uchunews-point-list__text {
  padding-top: 5.3333333333vw;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-point-list__text {
    padding-top: 20px;
  }
}

.p-top-uchunews-point-list__text-notes {
  padding: 9.0666666667vw 0 5.3333333333vw;
  font-size: 3.2vw;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-point-list__text-notes {
    -webkit-transform: translateX(2em);
            transform: translateX(2em);
    padding: 34px 0 20px;
    font-size: 12px;
  }
}

.p-top-uchunews-point__pdfs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-point__pdfs {
    gap: 20px 0;
  }
}

.p-top-uchunews-point-list__dot li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-top-uchunews-point__pot {
  position: absolute;
  top: -8.8vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 13.0666666667vw;
}
@media screen and (min-width: 768px) {
  .p-top-uchunews-point__pot {
    top: -33px;
    width: 49px;
  }
}

/* --------------------------------------------------------------------------
  p-top-sec-recipe
-------------------------------------------------------------------------- */
.p-top-sec-recipe .c-header__title {
  padding-bottom: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  .p-top-sec-recipe .c-header__title {
    padding-bottom: 28px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-sec-recipe .c-recipe-links__item-link {
    gap: 0 10px;
  }
}

.p-top-sec-recipe {
  --color-recipe-link-bg: rgba(231, 56, 61, 0.2);
  position: relative;
  width: 96%;
  margin: 13.8666666667vw auto 0;
  padding: 17.3333333333vw 0 11.2vw;
  border-radius: 8vw;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top-sec-recipe {
    margin-top: 52px;
    padding: 65px 0 42px;
    border-radius: 30px;
  }
}

.p-top-sec-recipe__lovevege {
  width: 84.2666666667vw;
  margin: 0 auto;
  padding-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-top-sec-recipe__lovevege {
    width: 316px;
    padding-top: 40px;
  }
}

.p-top-sec-recipe__vege {
  position: absolute;
  top: -13.8666666667vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 95.4666666667vw;
}
@media screen and (min-width: 768px) {
  .p-top-sec-recipe__vege {
    top: -52px;
    width: 358px;
  }
}

.p-top-sec-artist__copyright {
  padding-top: 3em;
  font-family: var(--font-sofia);
  font-size: 3.7333333333vw;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-sec-artist__copyright {
    display: none;
  }
}

/* --------------------------------------------------------------------------
  p-top-sec-artist
-------------------------------------------------------------------------- */
.p-top-sec-artist {
  padding: 9.3333333333vw 5.3333333333vw 24.8vw;
  line-height: 1.62;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top-sec-artist {
    padding: 35px 20px 93px;
  }
}

.p-top-sec-artist__name {
  display: block;
  width: 48.5333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-top-sec-artist__name {
    width: 182px;
  }
}

.p-top-fixed-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  width: 90%;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media screen and (min-width: 768px) {
  .p-top-fixed-banner {
    display: none;
  }
}
.p-top-fixed-banner.is-hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}