@charset "utf-8";
/* --------------------------------------------

index

---------------------------------------------- */

/* 共通設定
-------------------------*/

body {
  background: var(--color-white);
}

.sec {
  width: 100%;
  height: auto;
}

.page-ttl {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  width: 100%;
  max-width: 550px;
  padding: 2.5rem 0;
  color: var(--color-white);
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  background: var(--color-primary);
  background: linear-gradient(145deg, rgba(160, 31, 0, 1) 0%, rgba(203, 78, 31, 1) 50%, rgba(226, 95, 46, 1) 100%);
  letter-spacing: 0.075em;
  -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.sec-ttl {
  margin: 0 0 3.6rem;
  padding: 1rem 0 1.25rem 2.5rem;
  font-size: 3.8rem;
  font-weight: bold;
  font-weight: 600;
  line-height: 1;
  border-left: 6px solid var(--color-primary);

  & .sm {
    display: block;
    margin-top: 2rem;
    font-size: 1.7rem;
    font-weight: 500;
  }
}

@media screen and (max-width: 1023px) {
  .page-ttl {
    width: auto;
    max-width: -webkit-min-content;
    max-width: -moz-min-content;
    max-width: min-content;
    min-width: 37.5rem;
    padding: 1.5rem 2rem;
    font-size: clamp(2.2rem, 1rem + 1.57vw, 2.6rem);
  }

  .sec-ttl {
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .sec {
    & .inner {
      max-width: calc(100% - 3.2rem);
    }
  }

  .page-ttl {
    font-size: 2.25rem;
  }

  .sec-ttl {
    margin-bottom: 1.5rem;
    padding-left: 2.15rem;
    font-size: 2.75rem;

    & .sm {
      margin-top: 1.5rem;
      font-size: 1.5rem;
    }
  }
}

/* .mv - メインビジュアル
-------------------------*/
.mv {
  height: 560px;
  background: url(../img/index/bg-mv.jpg) no-repeat center;
  background-size: cover;
  margin-bottom: 8.5rem;

  & .inner {
    position: relative;
    height: 100%;
  }

  & .logo {
    position: absolute;
    top: calc(50% + 75px);
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    max-width: 500px;
    text-align: center;
    -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.75));
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.75));

    & img {
      width: 100%;
      max-width: 100%;
      height: auto;
    }
  }
}

@media screen and (max-width: 1023px) {
  .mv {
    max-height: 435px;

    & .logo {
      max-width: 50%;
      top: 50%;
      padding-left: 1.5rem;
    }
  }
}

@media screen and (max-width: 767px) {
  .mv {
    max-height: 320px;
    background-image: url(../img/index/bg-mv_sp.jpg);
    margin-bottom: 4.75rem;

    & .logo {
      max-width: 260px;
      top: auto;
      bottom: 55px;
      left: 50%;
      transform: translateX(-50%);
      padding-left: 0;
    }
  }
}

/* .sec_stock-info - 株価情報
-------------------------*/
.sec_stock-info {
  padding-bottom: 0;

  & .sec-ttl {
    margin-bottom: 0;
  }
}

/* .sec_topics - IRニュース
-------------------------*/
.sec_topics {
  padding: 5rem 0;
  background: url(../img/index/bg-news.jpg) no-repeat center;
  background-size: cover;

  & .sec-ttl {
    font-size: 3.2rem;
    border: none;
    letter-spacing: 0.135rem;
    padding-left: 0;
    margin: 0;
  }

  & .inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 3.2rem 5rem 5rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);

    & .topics-header {
      margin-bottom: 2.3rem;
      display: flex;
      align-items: baseline;
      justify-content: space-between;

      & .link-archive {
        & a {
          color: var(--color-black);
          font-size: 1.75rem;
          font-style: normal;
          font-weight: 500;
          text-decoration: none;
          display: inline-flex;
          flex-wrap: nowrap;
          align-items: center;
          justify-content: flex-end;
          gap: 0.75rem;

          &::after {
            content: '\e5e1';
            font-family: 'Material Symbols Outlined';
            font-weight: 400;
            color: var(--color-primary);
          }
        }
      }
    }

    & .topics-contents {
      & .topics-contents-item {
        padding: 1.4rem 0;
        border-bottom: 1px dotted var(--color-border-dark);

        & a {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          gap: 2.0rem;
          color: var(--color-black);
          font-weight: 500;
          text-decoration: none;
        }

        & .category {
          width: 14.5rem;
          color: var(--color-white);
          background-color: var(--color-primary);
          text-align: center;
        }
      }
    }
  }
}

@media screen and (max-width: 1179px) {
  .sec_topics {
    padding: 5rem 2rem;

    & .topics-contents {
      & .topics-contents-item {
        & a {
          font-size: clamp(1.4rem, 1rem + 0.49vw, 1.6rem);
        }
      }
    }
  }
}

@media screen and (max-width: 1023px) {
  .sec_topics {
    & .inner {
      padding: 3rem;

      & .topics-header {
        margin-bottom: 1rem;
      }

      & .topics-contents {
        & .topics-contents-item {
          & a {
            flex-wrap: wrap;
            row-gap: 1.3rem;
            justify-content: flex-start;

            & .ttl {
              display: block;
              width: 100%;
              flex-grow: 3;
            }
          }
        }
      }
    }
  }
}

@media screen and (max-width: 767px) {
  .sec_topics {
    padding: 2rem 1.6rem;
    background-image: url(../img/index/bg-news_sp.jpg);

    & .sec-ttl {
      font-size: 2.75rem;
    }

    & .inner {
      padding: 2rem 2rem 2.5rem;

      & .topics-header {
        & .link-archive {
          & a {
            font-size: 1.835rem;
          }
        }
      }

      & .topics-contents {
        & .topics-contents-item {
          & a {
            row-gap: 1rem;
            font-size: 1.7rem;
            letter-spacing: 0;
          }

          & .category {
            font-size: 1.575rem;
          }

          & .date {
            font-size: 1.75rem;
          }
        }
      }
    }
  }
}


/* .sec_movie - IR動画
-------------------------*/
.sec_movie {
  padding: 5rem 0;
}

.movie-header {
  margin-bottom: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;

  & .sec-ttl {
    margin-bottom: 0;
  }

  & .link-archive {
    & a {
      color: var(--color-black);
      font-size: 1.75rem;
      font-style: normal;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: flex-end;
      gap: 0.75rem;

      &::after {
        content: '\e5e1';
        font-family: 'Material Symbols Outlined';
        font-weight: 400;
        color: var(--color-primary);
      }
    }
  }
}

.movie-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  list-style: none;
}

.movie-list-item {
  max-width: 100%;
  width: 100%;
  height: auto;

  & a {
    display: block;
    text-decoration: none;
    color: inherit;

    &:hover .video-thumbnail {
      outline: 2px solid #c84210;
      outline-offset: 5px;
    }
  }
}

.video-thumbnail {
  position: relative;
  max-width: 100%;
  width: 100%;
  padding-top: 56.25%;
  transition: all 0.15s ease-in 0.05s;
  line-height: 1;
  margin-bottom: 2rem;

  & iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
}

.movie-list-item {
  & .caption {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.5;
  }

  & .date {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-gray600);
    text-align: right;
    line-height: 1;
  }
}

@media screen and (max-width: 1023px) {
  .sec_movie {
    padding: 3rem 0 0;
  }

  .movie-list {
    gap: 2rem;
  }

  .movie-list-item {
    & .caption {
      font-size: 1.5rem;
    }
  }
}

@media screen and (max-width: 767px) {
  .movie-header {
    align-items: baseline;

    & .link-archive {
      & a {
        font-size: 1.835rem;
      }
    }
  }

  .movie-list {
    padding: 1rem 0.5rem;
    grid-template-columns: 1fr;
    row-gap: 3.5rem;
  }

  .movie-list-item {
    & .caption {
      font-size: 1.825rem;
    }

    & .date {
      font-size: 1.5rem;
    }
  }
}

/* .sec_financial-info - 業績ハイライト・経営
-------------------------*/
.sec_financial-info {
  padding-top: 2.5rem;
  background-color: var(--color-gray100);
  padding-bottom: 4.5rem;

  & .clmBox__item {
    & h3 {
      font-weight: 500;
    }
  }
}

.financial-info-highlight,
.financial-info-guide {
  padding: 2.5rem 0 2rem;
}


/* .sec_about-us - ホリイフードサービスとは
-------------------------*/
.sec_about {
  position: relative;
  padding-top: 7.5rem;
  margin-bottom: 7.5rem;

  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 45rem;
    background: url(../img/index/bg-about.jpg) no-repeat center;
    background-size: cover;
    z-index: -1;
  }

  & .sec-ttl {
    color: var(--color-white);
    border: none;
    text-align: center;
    font-size: 3.6rem;
    margin-bottom: 5rem;
  }

  & .heading {
    margin-bottom: 1.25rem;

    & h3 {
      display: inline-block;
      width: auto;
      color: var(--color-white);
      font-size: 2.2rem;
      font-weight: 700;
      background-color: var(--color-primary);
      padding: 1.5rem 3rem;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    & p {
      color: var(--color-primary);
      font-size: 3rem;
      font-weight: 700;
    }
  }

  & .txt {
    font-size: 1.75rem;
    font-weight: 500;
  }

}

.about-company {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  background-color: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border-dark);
  padding: 6rem;
}

.about-company-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-light);

  & img {
    display: inline-block;
    width: 84.5%;
    max-width: 454px;
  }
}

.about-company-txt {
  flex: 1;
}

.about-business {
  background-color: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border-dark);
  padding: 6rem;
}

.about-business-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
}

.about-business-main-img {
  flex: 1;
  border: 1px solid var(--color-border-light);
  background: url(../img/index/img-about-business.jpg) no-repeat center;
  background-size: cover;
  min-height: 25.2rem;
}

.about-business-main-txt {
  flex: 1;
}

.about-business-brand {
  & .ttl {
    color: var(--color-primary);
    font-size: 3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4.75rem 0 3.75rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    line-height: 1;

    &::before,
    &::after {
      content: "";
      display: inline-block;
      width: auto;
      flex-grow: 1;
      height: 2px;
      background-color: var(--color-primary);
    }
  }
}

.about-business-brand-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  justify-content: space-between;
}

.about-business-brand-list-item {
  padding: 3rem;
  border: 1px solid var(--color-border-dark);

  & .info {
    display: grid;
    grid-template-columns: 7.8125vw auto;
    gap: 2rem;
    margin-bottom: 2.45rem;

    & .logo {
      width: 100%;
      height: 100%;
      aspect-ratio: 1 / 1;

      & img {
        width: 100%;
        height: auto;
        -o-object-fit: cover;
        object-fit: cover;
      }
    }

    & .about {
      & .name {
        display: inline-block;
        width: auto;
        margin-bottom: 1rem;
        padding: 1.5rem 3rem;
        color: var(--color-white);
        font-size: clamp(1.6rem, 1.3rem + 0.16vw, 1.8rem);
        font-weight: 700;
        background-color: var(--color-primary);
        line-height: 1;
        letter-spacing: 0.05em;
      }

      & .concept {
        font-size: clamp(1.5rem, 1.3rem + 0.16vw, 1.7rem);
        font-weight: 500;
        line-height: 1.5;
        text-align: left;
        word-break: break-word;
      }
    }
  }

  & .photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    line-height: 1;

    & img {
      width: 100%;
      height: auto;
      -o-object-fit: cover;
      object-fit: cover;
    }
  }

  & .swiper {
    & .swiper-navigation-icon {
      display: none;
    }

    .swiper-button-next::before,
    .swiper-button-prev::before {
      font-family: 'Material Symbols Outlined';
      font-size: 32px;
      color: var(--color-white);
      text-shadow: 1px 1px 5px rgb(0, 0, 0, 0.85);
      z-index: 350;
    }

    .swiper-button-prev::before {
      content: '\eaa7';
    }

    .swiper-button-next::before {
      content: '\eaaa';
    }
  }

  & .swiper-wrapper {
    max-width: 27.5rem;
  }

  & .swiper-slide {
    width: auto;
    height: 100%;
    aspect-ratio: 16 / 9;

    & img {
      width: 100%;
      max-width: 100%;
      height: 100%;
    }
  }
}

@media screen and (max-width: 1365px) {
  .about-business-brand-list-item {
    & .info {
      grid-template-columns: 150px auto;
    }
  }
}

@media screen and (max-width: 1023px) {
  .sec_about {
    padding-top: 3.5rem;

    &::after {
      height: 30rem;
    }

    & .sec-ttl {
      font-size: clamp(2.4rem, 0.5rem + 3.14vw, 3.2rem);
      margin-bottom: 2.5rem;
    }

    & .heading {
      margin-bottom: 0.5rem;

      & h3 {
        padding: 1rem 2rem;
        font-size: clamp(1.7rem, 11.75rem + 0.78vw, 2.0rem);
      }

      & p {
        font-size: clamp(2rem, 0.75rem + 2.35vw, 2.4rem);
      }
    }

    & .txt {
      font-size: 1.5rem;
      line-height: 1.6;
    }
  }

  .about-company {
    padding: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }

  .about-business {
    padding: 2rem;
  }

  .about-business-main {
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }

  .about-business-main-img {
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    height: 100%;
    aspect-ratio: 16 / 9;
  }

  .about-business-brand {
    & .ttl {
      margin: 2.5rem 0 2rem;
      font-size: clamp(2rem, 0.795rem + 1.57vw, 2.4rem);
    }
  }

  .about-business-brand-list {
    gap: 2rem;
  }

  .about-business-brand-list-item {
    padding: 1.5rem;

    & .info {
      gap: 1rem;
      grid-template-columns: 100px auto;
      margin-bottom: 1.25rem;

      & .about {
        & .name {
          padding: 1rem 2rem;
          margin-bottom: 0.5rem;
        }
      }
    }
  }
}

@media screen and (max-width: 767px) {
  .sec_about {
    margin-bottom: 3.75rem;

    & .sec-ttl {
      font-size: 2.75rem;
    }

    & .heading {
      & h3 {
        font-size: 1.95rem;
      }

      & p {
        font-size: 2.5rem;
      }
    }

    & .txt {
      font-size: 1.75rem;
    }
  }

  .about-company {
    flex-wrap: wrap;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 2rem;
    margin-bottom: 1.6rem;
  }

  .about-company-img {
    flex-basis: auto;
    min-height: 150px;
  }

  .about-company-txt {
    flex-basis: auto;
  }

  .about-business-main {
    flex-wrap: wrap;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 1.6rem;
  }

  .about-business-main-img {
    flex-basis: auto;
    min-height: 150px;
  }

  .about-business-main-txt {
    flex-basis: auto;
  }

  .about-business-brand-list {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .about-business-brand-list-item {
    & .info {
      & .about {
        & .name {
          font-size: 1.7rem;
        }
      }
    }
  }
}