@charset "UTF-8";
/*
　事例詳細ページ（ブラッシュアップしたページ用）
　※旧デザインのCSSはfooddesign.cssです。
*/
body {
  line-height: 1.5;
  color: var(--black);
}

.app {
  min-height: 100vh;
  width: 100%;
  margin-bottom: 560px;
}
@media screen and (max-width: 1680px) {
  .app {
    margin-bottom: 12rem;
  }
}
@media screen and (max-width: 1366px) {
  .app {
    margin-bottom: 4rem;
  }
}

.hero {
  position: relative;
  width: 100%;
}
.hero__content {
  padding: 5rem 15rem;
  background-color: rgba(63, 63, 63, 0.5);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.65))), url("../images/design03_hero.jpeg");
  background: linear-gradient(rgba(255, 255, 255, 0.65)), url("../images/design03_hero.jpeg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1366px) {
  .hero__content {
    padding: 5rem 8rem;
  }
}
@media screen and (max-width: 1024px) {
  .hero__content {
    padding: 5rem;
  }
}
@media screen and (max-width: 420px) {
  .hero__content {
    padding: 2.7em;
  }
}
.hero__text {
  color: var(--black);
}
.hero__title {
  font-size: 4.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 0;
  text-shadow: rgba(167, 167, 167, 0.5) 8px 8px 8px;
}
@media screen and (max-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 420px) {
  .hero__title {
    font-size: 1.5rem;
  }
}
.hero__subtitle {
  font-size: 6rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: rgba(167, 167, 167, 0.5) 8px 8px 8px;
}
@media screen and (max-width: 1024px) {
  .hero__subtitle {
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__subtitle {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 420px) {
  .hero__subtitle {
    font-size: 3rem;
  }
}
.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.hero__action-text {
  font-size: 1.2rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  border-radius: 2px;
  background: var(--white);
}
@media screen and (max-width: 1024px) {
  .hero__action-text {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 420px) {
  .hero__action-text {
    font-size: 1rem;
  }
}
.hero__action-button {
  position: relative;
  width: 573px;
  padding: 1.5rem 4rem;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 2px;
  background-color: var(--yellow-light);
  -webkit-box-shadow: rgba(167, 167, 167, 0.5) 8px 8px 8px;
          box-shadow: rgba(167, 167, 167, 0.5) 8px 8px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .hero__action-button {
    width: 100%;
  }
}
@media screen and (max-width: 420px) {
  .hero__action-button {
    padding: 2rem 1rem;
    gap: 1rem;
    font-size: 1.7rem;
  }
}
.hero__action-button__action-label {
  line-height: 1;
}
.hero__action-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
}
.hero .arrow {
  width: 30px;
  height: 100%;
}
.hero__action-title {
  font-size: 20px;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.2px;
  text-align: center;
}
.hero__action-main {
  font-size: 39px;
  color: var(--black);
  font-weight: bold;
  letter-spacing: 0.39px;
  text-align: center;
  margin-top: 30px;
}
.hero__action-button--secondary .hero__action-main {
  font-size: 32px;
  letter-spacing: 0.32px;
  margin-top: 0;
}

.video-section {
  width: 100%;
  padding: 8rem 15rem;
}
@media screen and (max-width: 1366px) {
  .video-section {
    padding: 5rem 8rem;
  }
}
@media screen and (max-width: 1024px) {
  .video-section {
    padding: 5rem;
  }
}
@media screen and (max-width: 420px) {
  .video-section {
    padding: 2.7em;
  }
}
.video-section__container {
  width: 100%;
}
.video-section__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .video-section__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.video-section__text {
  width: 473px;
}
@media screen and (max-width: 1024px) {
  .video-section__text {
    margin-bottom: 1.5rem;
    width: 100%;
  }
}
.video-section__subtitle {
  font-size: 24px;
  letter-spacing: 0.24px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .video-section__subtitle {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 420px) {
  .video-section__subtitle {
    font-size: 1.4rem;
  }
}
.video-section__title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.39px;
}
.video-section__video {
  position: relative;
  width: 720px;
  height: 357.938px;
  aspect-ratio: 16/9;
}
.video-section__video video {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .video-section__video {
    width: 560px;
  }
}
@media screen and (max-width: 1024px) {
  .video-section__video {
    width: 100%;
  }
}
@media screen and (max-width: 420px) {
  .video-section__video {
    width: 100%;
    height: auto;
  }
}

.video-player {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.video-player__overlay {
  position: absolute;
  top: 51px;
  left: 100px;
  color: white;
}
.video-player__title {
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 0.44px;
  line-height: 1.1;
  margin-bottom: 0;
}
.video-player__subtitle {
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 0.44px;
  line-height: 1.1;
}
.video-player__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 59.938px;
  height: 59.938px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.play-icon {
  width: 52px;
  height: 45px;
}

.client-summary {
  width: 100%;
  padding: 8rem 15rem;
}
@media screen and (max-width: 1366px) {
  .client-summary {
    padding: 5rem 8rem;
  }
}
@media screen and (max-width: 1024px) {
  .client-summary {
    padding: 5rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .client-summary {
    padding: 0rem 5rem 5rem 5rem;
    margin-top: 0rem;
  }
}
@media screen and (max-width: 420px) {
  .client-summary {
    padding: 2.7em;
  }
}
.client-summary__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .client-summary__container {
    gap: 4rem;
  }
}

.client-info__title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--black);
  letter-spacing: 0.36px;
}
.client-info__content {
  margin-top: 1.5rem;
}
.client-info__name {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--black);
  letter-spacing: 0.2px;
}
.client-info__description {
  margin-top: 0.8rem;
}
.client-info__text {
  font-size: 18px;
  color: var(--black);
  letter-spacing: 0.18px;
  width: 218px;
}

.summary {
  width: 100%;
}
.summary__title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--black);
  letter-spacing: 0.36px;
  margin-bottom: 1.5rem;
}
.summary__section {
  margin-bottom: 1.5rem;
}
.summary__section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--black);
  letter-spacing: 0.2px;
  margin-bottom: 1rem;
}
.summary__list {
  padding-left: 1rem;
}
.summary__item {
  font-size: 1.2rem;
  color: var(--black);
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}
.summary__item:last-child {
  margin-bottom: 0;
}

.action-cta {
  padding: 0rem 15rem 8rem 15rem;
}
@media screen and (max-width: 1366px) {
  .action-cta {
    padding: 0rem 8rem 8rem;
  }
}
@media screen and (max-width: 1024px) {
  .action-cta {
    padding: 0rem 5rem 5rem;
  }
}
@media screen and (max-width: 420px) {
  .action-cta {
    padding: 2.7rem;
  }
}
.action-cta__box {
  border: 0.5px solid var(--yellow-light);
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 2px;
}
@media screen and (max-width: 1024px) {
  .action-cta__box {
    padding: 2rem;
  }
}
.action-cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.action-cta__text {
  color: var(--black);
}
.action-cta__title {
  font-size: 2rem;
  letter-spacing: 0.28px;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 420px) {
  .action-cta__title {
    font-size: 1.7rem;
  }
}
.action-cta__description {
  font-size: 18px;
  letter-spacing: 0.18px;
}
.action-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
.action-cta__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 1.5rem 3rem;
  border: none;
  cursor: pointer;
  -webkit-box-shadow: rgba(167, 167, 167, 0.3) 4px 4px 8px;
          box-shadow: rgba(167, 167, 167, 0.3) 4px 4px 8px;
}
@media screen and (max-width: 1024px) {
  .action-cta__button {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .action-cta__button {
    padding: 1rem;
    gap: 1rem;
  }
}
.action-cta__button--primary {
  background-color: var(--yellow-light);
}
.action-cta__button-text {
  font-size: 1.5rem;
  color: black;
  font-weight: bold;
  letter-spacing: 0.18px;
}
@media screen and (max-width: 420px) {
  .action-cta__button-text {
    font-size: 1.4rem;
  }
}
.action-cta__action-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
}
.action-cta .arrow {
  width: 30px;
  height: 100%;
}

.detailed-content {
  width: 100%;
  padding: 5rem 15rem;
}
@media screen and (max-width: 1366px) {
  .detailed-content {
    padding: 5rem 8rem;
  }
}
@media screen and (max-width: 1024px) {
  .detailed-content {
    padding: 5rem;
  }
}
@media screen and (max-width: 420px) {
  .detailed-content {
    padding: 2.7rem;
  }
}
.detailed-content__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .detailed-content__container {
    gap: 5rem;
  }
}

.content-section .image {
  width: 100%;
  height: 68vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 70%;
     object-position: center 70%;
}
@media screen and (max-width: 768px) {
  .content-section .image {
    height: auto;
  }
}
.content-section__title {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.3px;
  margin-bottom: 1.5rem;
}
.content-section__text {
  font-size: 1.2rem;
  letter-spacing: 0.2px;
  line-height: 1.5;
}
.content-section__text--large {
  font-size: 1.5rem;
  letter-spacing: 0.25px;
  margin-bottom: 2rem;
}
.content-section__text-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.content-section__atention-text {
  margin: 1.5rem 0rem;
}
.content-section__table-group {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.5rem 1.5rem 3rem;
}
.content-section__unit {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  text-align: right;
}
.content-section__table-title {
  font-size: 1.25rem;
  margin: 1.5rem 0rem 0rem 1.5rem;
}
.content-section__table {
  border-collapse: collapse;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
.content-section__th {
  padding: 1rem;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  text-align: center;
}
.content-section__th:first-child {
  text-align: left;
}
.content-section__td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray);
  text-align: center;
}
.content-section__td:first-child {
  text-align: left;
}
.content-section__td sup {
  font-size: 1.2rem;
  color: var(--orange);
}
.content-section__tag-cold, .content-section__tag-warm {
  font-size: 1rem;
  margin-left: 0.5rem;
  padding: 0.1rem 0.4rem;
  font-weight: 500;
}
.content-section__tag-warm {
  background-color: #FFF5AD;
}
.content-section__tag-cold {
  background-color: #c6c6c6;
}
.content-section__image-wrapper {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 60px;
  background-color: var(--white);
  text-align: center;
}
.content-section__image-wrapper .image_sm {
  display: none;
}
@media screen and (max-width: 1366px) {
  .content-section__image-wrapper .image_pc {
    width: 100%;
  }
}
@media screen and (max-width: 420px) {
  .content-section__image-wrapper .image_pc {
    display: none;
  }
  .content-section__image-wrapper .image_sm {
    display: inline;
    width: 100%;
  }
}
.content-section__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
.content-section__button {
  padding: 1.5rem;
  border: none;
  cursor: pointer;
  -webkit-box-shadow: rgba(167, 167, 167, 0.3) 4px 4px 8px;
          box-shadow: rgba(167, 167, 167, 0.3) 4px 4px 8px;
}
.content-section__button--primary {
  background-color: var(--yellow-light);
}
.content-section__button--secondary {
  background-color: transparent;
  border: 1px solid var(--yellow-light);
}
.content-section__button-text {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.18px;
}

.info-box {
  margin-top: 3rem;
}
.info-box__text {
  font-size: 18px;
  letter-spacing: 0.18px;
  margin-bottom: 1.5rem;
}
.info-box__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 1.5rem 3rem;
  border: none;
  cursor: pointer;
  background-color: var(--yellow-light);
  -webkit-box-shadow: rgba(167, 167, 167, 0.3) 4px 4px 8px;
          box-shadow: rgba(167, 167, 167, 0.3) 4px 4px 8px;
}
@media screen and (max-width: 1024px) {
  .info-box__button {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.info-box__button-text {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.18px;
}
.info-box__action-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
}
.info-box .arrow {
  width: 30px;
  height: 100%;
}

.test-results__list {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}
.test-results__item {
  font-size: 20px;
  letter-spacing: 0.2px;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.test-results__item:last-child {
  margin-bottom: 0;
}
.test-results__text {
  letter-spacing: 0.2px;
  line-height: 1.5;
}
.test-results__text:first-child {
  font-weight: 500;
}
.test-results__text:last-child {
  padding-left: 1rem;
}

.features-list {
  margin-left: 2rem;
  margin-bottom: 0.8rem;
}
.features-list__item {
  font-size: 1.25rem;
  letter-spacing: 0.2px;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.features-list__item:last-child {
  margin-bottom: 0;
}
.features-list__item::before {
  position: relative;
  content: "●";
  top: -3px;
  left: 0;
  font-size: 0.5rem;
  padding-right: 0.5rem;
}

.end-cta {
  border: 0.5px solid var(--yellow-light);
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .end-cta {
    padding: 2rem;
  }
}
.end-cta__title {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.3px;
  margin-bottom: 1.5rem;
}
.end-cta__text {
  font-size: 1.2rem;
  letter-spacing: 0.2px;
  line-height: 1.5;
}
.end-cta__text--large {
  font-size: 1.5rem;
  letter-spacing: 0.25px;
  margin-bottom: 2rem;
}
.end-cta__text .lg_br {
  display: inline;
}
@media screen and (max-width: 1024px) {
  .end-cta__text .lg_br {
    display: block;
  }
}
.end-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}
.end-cta__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  padding: 1.5rem 3rem;
  border: none;
  cursor: pointer;
  -webkit-box-shadow: rgba(167, 167, 167, 0.3) 4px 4px 8px;
          box-shadow: rgba(167, 167, 167, 0.3) 4px 4px 8px;
}
@media screen and (max-width: 1024px) {
  .end-cta__button {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 420px) {
  .end-cta__button {
    gap: 1rem;
  }
}
.end-cta__button--primary {
  background-color: var(--yellow-light);
}
.end-cta__button-text {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.18px;
}
.end-cta__button-text .sm_br {
  display: inline;
}
@media screen and (max-width: 420px) {
  .end-cta__button-text .sm_br {
    display: block;
    font-size: 1.8rem;
  }
}
.end-cta__action-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
}
.end-cta .arrow {
  width: 30px;
  height: 100%;
}