@charset "UTF-8";

/* 
============================================================
---- メインビジュアル ----
============================================================
*/
.topMv {
  height: 100vh;
  height: 100svh;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: var(--zindex-top-mv);
  background-color: var(--color-base);
}

@media screen and (max-width: 767px) {
  .topMv {
    height: auto;
    aspect-ratio: 1;
  }
}

.topMv__carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.topMv__carousel .splide__track {
  height: 100%;
}

.topMv__carouselImgContainer {
  width: 100%;
  height: 100%;
}

.topMv__carouselImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.topMv__copyContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: var(--zindex-upper);
  width: 100%;
  padding: 0 calc(var(--layout-margin-small-pc) * 2) 48px;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .topMv__copyContainer {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 var(--layout-margin-small-sp) 22px;
    row-gap: 32px;
  }
}

.topMv__copy {
  max-width: 682px;
  width: 100%;
  height: auto;
  flex: 1;
  opacity: 0;
  transform: translateY(15px);
  animation: mvCopyFade 1.2s ease 0.2s forwards;
}

@media screen and (max-width: 1279px) {
  .topMv__copy {
    max-width: 580px;
  }
}

@media screen and (max-width: 1023px) {
  .topMv__copy {
    max-width: 480px;
  }
}

@media screen and (max-width: 767px) {
  .topMv__copy {
    width: calc((566 / 750) * 100vw);
  }
}

.topMv__scrollDown {
  font-family: var(--font-lexend-deca);
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--color-base);
  text-align: center;
  opacity: 0;
  transform: translateY(15px);
  animation: mvCopyFade 1.2s ease 0.5s forwards;
}

@media screen and (max-width: 767px) {
  .topMv__scrollDown {
    font-size: 14px;
    margin-inline: auto;
  }
}

@keyframes mvZoomOut {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}

@keyframes mvCopyFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
============================================================
---- コンセプト ----
============================================================
*/
.topConcept {
  padding: 108px 0 0;
}

@media screen and (max-width: 1023px) {
  .topConcept {
    padding: 63px 0 0;
  }
}

.topConcept__textBox {
  grid-column: 2;
  grid-row: 1;
}

@media screen and (max-width: 1023px) {
  .topConcept__textBox {
    grid-column: 1;
    grid-row: 1;
  }
}

.topConcept__linkBox {
  margin-top: 64px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .topConcept__linkBox {
    margin-top: 35px;
    margin-inline: calc(
      var(--layout-margin-small-sp) + var(--layout-margin-large-sp)
    );
  }
}

.topConcept__img {
  display: block;
  margin-top: 110px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .topConcept__img {
    margin-top: 60px;
  }
}

/* 
============================================================
---- メニュー ----
============================================================
*/

.topMenu {
  padding: 130px 0;
}

@media screen and (max-width: 767px) {
  .topMenu {
    padding: 63px 0 0;
  }
}

.topMenu__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .topMenu__container {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
}

.topMenu__textBox {
  grid-column: 1;
  grid-row: 1;
  padding-left: calc(
    var(--layout-margin-small-pc) + var(--layout-margin-small-pc) +
      var(--layout-margin-large-pc) + var(--layout-margin-small-pc)
  );
  padding-right: 64px;
}

@media screen and (max-width: 1439px) {
  .topMenu__textBox {
    padding-left: calc(
      var(--layout-margin-small-pc) + var(--layout-margin-small-pc) +
        var(--layout-margin-large-pc)
    );
  }
}

@media screen and (max-width: 1279px) {
  .topMenu__textBox {
    padding-left: calc(
      var(--layout-margin-small-pc) + var(--layout-margin-small-pc)
    );
    padding-right: 48px;
  }
}

@media screen and (max-width: 767px) {
  .topMenu__textBox {
    padding-inline: var(--layout-margin-small-sp);
    grid-column: 1;
    grid-row: 1;
  }
}

.topMenu__img {
  width: 100%;
  height: auto;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  grid-column: 2;
  grid-row: 1;
}

@media screen and (max-width: 767px) {
  .topMenu__img {
    min-height: auto;
    object-fit: inherit;
    grid-column: 1;
    grid-row: 2;
  }
}

/* 
============================================================
---- シェフについて ----
============================================================
*/
.topChef {
  padding: 98px 0 89px;
  background-image: url(../img/top/chef-thumb.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 767px) {
  .topChef {
    padding: 63px 0 0;
    background-image: none;
  }
}

.topChef::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 25%
  );
  opacity: 0.52;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .topChef::before {
    content: none;
  }
}

.topChef__textBox {
  margin-left: auto;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .topChef__textBox {
    margin-left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .topChef__textBox .c-secLead {
    color: var(--color-text);
  }
}

.topChef__textBox .c-secLead .c-secLead__item:first-of-type {
  max-width: 234px;
}

@media screen and (max-width: 767px) {
  .topChef__textBox .c-secLead .c-secLead__item:first-of-type {
    max-width: 188px;
  }
}

.topChef__textBox .c-secLead .c-secLead__item:last-of-type {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .topChef__textBox .c-secLead .c-secLead__item:last-of-type {
    color: var(--color-text);
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .topChef__textBox .c-secTexts .c-secTexts__item {
    color: var(--color-text);
  }
}

.topChef .l-container__inner--full {
  display: none;
}

@media screen and (max-width: 767px) {
  .topChef .l-container__inner--full {
    display: block;
  }

  .topChef__imgBox {
    padding-top: 36px;
  }

  .topChef__img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* 
============================================================
---- ジャーナル ----
============================================================
*/
.topJournal {
  padding: 143px 0 130px;
}

@media screen and (max-width: 767px) {
  .topJournal {
    padding: 63px 0;
  }
}

.topJournal .l-container__inner.l-container__inner--base {
  padding-inline: var(--layout-margin-small-pc);
  position: relative;
}

@media screen and (max-width: 1023px) {
  .topJournal .l-container__inner.l-container__inner--base {
    padding-inline: 0;
  }
}

.topJournal__title {
  flex-direction: row;
}

.topJournal__title.c-secTitle .c-secTitle__img {
  height: 24px;
}

@media screen and (max-width: 767px) {
  .topJournal__title.c-secTitle .c-secTitle__img {
    height: 20px;
  }
}

.topJournal__carousel {
  margin-top: 68px;
}

@media screen and (max-width: 767px) {
  .topJournal__carousel {
    margin-top: 48px;
    margin-right: calc(50% - 50vw);
  }
}

.topJournal__carousel .splide__arrows {
  z-index: var(--zindex-tooltip);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 14px;
  position: absolute;
  top: -95px;
  right: 0;
}

@media screen and (max-width: 767px) {
  .topJournal__carousel .splide__arrows {
    column-gap: 15px;
    top: -70px;
    right: var(--layout-margin-small-sp);
  }
}

.topJournal__carousel .splide__arrow {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-accent);
  width: 22px;
  height: auto;
  aspect-ratio: 1;
  border: none;
  cursor: pointer;
  pointer-events: all;
}

@media screen and (max-width: 767px) {
  .topJournal__carousel .splide__arrow {
    width: 20px;
  }
}

.topJournal__carousel .splide__arrow:hover {
  opacity: 0.7;
}

.topJournal__carousel .splide__arrow svg {
  width: 5px;
  height: 8px;
}

@media screen and (max-width: 767px) {
  .topJournal__carousel .splide__arrow svg {
    scale: calc(4.5 / 6);
  }
}

.topJournal__carousel .splide__arrow--prev svg {
  transform: scale(-1, 1);
}

.topJournal__carousel .splide__arrow svg path {
  fill: var(--color-base);
}

.topJournal__article {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .topJournal__article {
    width: calc((424 / 750) * 100vw);
  }
}

.topJournal__articleLink {
  text-decoration: none;
  color: inherit;
}

.topJournal__articleLink:hover {
  opacity: 0.7;
}

.topJournal__articleImg {
  width: 100%;
  height: auto;
  aspect-ratio: 330 / 220;
  object-fit: cover;
}

.topJournal__articleTitle {
  margin-top: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
}

@media screen and (max-width: 767px) {
  .topJournal__articleTitle {
    font-size: 14px;
    margin-top: 11px;
    line-height: 1.64;
  }
}

.topJournal__articleDate {
  font-family: var(--font-lexend-deca);
  color: var(--color-text-description);
  font-size: 14px;
  line-height: 1;
  margin-top: 12px;
  letter-spacing: 0.1em;
  display: block;
}

@media screen and (max-width: 767px) {
  .topJournal__articleDate {
    color: #b8b4b6;
    font-size: 13px;
    margin-top: 11px;
  }
}

.topJournal__linkBox {
  margin-top: 66px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .topJournal__linkBox {
    margin-top: 42px;
    margin-inline: var(--layout-margin-large-sp);
  }
}

/* 
============================================================
---- プロデューサー ----
============================================================
*/
.topProducers {
  padding: 130px 0;
  background-color: var(--color-section-bg);
}

@media screen and (max-width: 1023px) {
  .topProducers {
    padding: 63px 0;
  }
}

@media screen and (max-width: 767px) {
  .topProducers .l-container__inner--outer {
    grid-column: 1 / -1;
  }
}

.topProducers__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 130px;
}

@media screen and (max-width: 1023px) {
  .topProducers__container {
    margin-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .topProducers__container {
    grid-template-columns: 1fr;
    row-gap: 60px;
    padding-inline: var(--layout-margin-small-sp);
  }
}

.topProducers__textBox {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  padding-left: 72px;
  padding-right: calc(
    var(--layout-margin-small-pc) + var(--layout-margin-small-pc) +
      var(--layout-margin-large-pc) + var(--layout-margin-small-pc)
  );
}

@media screen and (max-width: 1439px) {
  .topProducers__textBox {
    padding-right: calc(
      var(--layout-margin-small-pc) + var(--layout-margin-small-pc) +
        var(--layout-margin-large-pc)
    );
  }
}

@media screen and (max-width: 1279px) {
  .topProducers__textBox {
    padding-right: calc(
      var(--layout-margin-small-pc) + var(--layout-margin-small-pc)
    );
    padding-left: 48px;
  }
}
@media screen and (max-width: 767px) {
  .topProducers__textBox {
    grid-column: 1;
    grid-row: 1;
    padding-left: 0;
    padding-right: 0;
  }
}

.topProducers__imgBox {
  grid-column: 1;
  grid-row: 1;
}

@media screen and (max-width: 1023px) {
  .topProducers__imgBox {
    grid-row: 2;
    margin-top: 0;
  }
}

.topProducers__img {
  width: 100%;
  height: auto;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .topProducers__img {
    min-height: auto;
    object-fit: inherit;
  }
}

.topProducers__img--sub {
  grid-column: 1;
  grid-row: 1;
}

@media screen and (max-width: 767px) {
  .topProducers__img--sub {
    grid-row: 2;
  }
}

.topProducers__linkBox {
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .topProducers__linkBox {
    margin-top: 35px;
    margin-inline: var(--layout-margin-large-sp);
  }
}

/* 
============================================================
---- サステナビリティ ----
============================================================
*/
.topTeam__container {
  padding: 140px 0 104px;
}

@media screen and (max-width: 767px) {
  .topTeam__container {
    padding: 63px 0 59px;
  }
}

.topTeam__title {
  align-items: flex-start;
}

.topTeam__img {
  display: block;
  height: auto;
  width: 100%;
}

/* 
============================================================
---- ニュース ----
============================================================
*/
.topNews {
  padding: 144px 0 130px;
}

@media screen and (max-width: 767px) {
  .topNews {
    padding: 63px 0;
  }
}

.topNews__container {
  display: grid;
  grid-template-columns: 1fr calc(50% - 72px);
  grid-template-rows: auto auto 1fr;
  column-gap: 72px;
}

@media screen and (max-width: 1279px) {
  .topNews__container {
    column-gap: 48px;
    grid-template-columns: 1fr calc(50% - 48px);
  }
}

@media screen and (max-width: 767px) {
  .topNews__container {
    grid-template-columns: 1fr;
    column-gap: 24px;
  }
}

.topNews__title {
  grid-column: 1;
  grid-row: 1;
  height: fit-content;
  flex-direction: row;
}

@media screen and (max-width: 767px) {
  .topNews__title {
    grid-column: 1;
    grid-row: 1;
  }
}

.topNews__articleList {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  max-width: 790px;
  margin-top: 72px;
  border-bottom: 1px solid #edeced;
}

@media screen and (max-width: 767px) {
  .topNews__articleList {
    margin-top: 47px;
  }
}

.topNews__article {
  border-top: 1px solid #edeced;
}

.topNews__articleLink {
  padding: 19px 6px;
  text-decoration: none;
  color: inherit;
  display: flex;
  column-gap: 35px;
  align-items: center;
}

.topNews__articleLink:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .topNews__articleLink {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 8px;
    padding: 20px 0;
  }
}

.topNews__articleDate {
  font-family: var(--font-lexend-deca);
  color: #c3bfc1;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .topNews__articleDate {
    font-size: 13px;
  }
}

.topNews__articleTitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.66;
}

@media screen and (max-width: 767px) {
  .topNews__articleTitle {
    font-size: 14px;
  }
}

.topNews__linkBox {
  grid-column: 1;
  grid-row: 3;
  margin-left: auto;
  margin-top: 24px;
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .topNews__linkBox {
    grid-column: 1;
    grid-row: 1;
    margin-right: 0;
    margin-top: 0;
  }
}

.topNews__img {
  grid-column: 2;
  grid-row: 1 /-1;
  width: 100%;
  height: auto;
  min-height: 336px;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .topNews__img {
    grid-column: 1;
    grid-row: 3;
    margin-top: 64px;
    min-height: auto;
    object-fit: inherit;
  }
}
