@charset "UTF-8";
/* ========================================
  LP-共通
======================================== */
:root {
  /* layout */
  --com-margin-bottom: 5rem;
  /* typography */

  /* color */
  --color-text: #333;
  --color-text-invert: #fff;
  --color-palegray: #f1f1f1;
  --color-gray: #ccc;
  --color-bg: #fff;
  --color-hover: #666;
  --color-accent: #816D44;
  --color-notice: #ff0000;
  --grad-white-fade-color: rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%;
  --grad-accent-fade-color: rgba(129,109,68,1) 60%, rgba(129,109,68,0) 100%;
  --grad-gray-fade-color: rgba(243,243,243,1) 20%, rgba(243,243,243,0) 100%;


  /* base font size */
  --fs-heading: clamp(2.6rem, 2rem + 1.3vw, 4rem);
  --fs-heading-3: clamp(1.6rem, 1rem + 1.3vw, 3rem);
  --fs-maintxt: clamp(1.4rem, 1rem + .8vw, 2.4rem);
  --fs-itemname: clamp(3.2rem, 1.5rem + 2.2vw, 6rem);
  --fs-itemprice: clamp(2rem, 1rem + 1.5vw, 4rem);
  --fs-accent: clamp(1.3rem, 1.1rem + 0.2vw, 2rem);
  --fs-form: clamp(1.6rem, 1.6rem + 0.2vw, 2rem);
  --fs-l: clamp(1.8rem, 1.2rem + 1vw, 3rem);
  --fs-m: clamp(1.4rem, 1rem + .8vw, 2rem);
  --fs-s: clamp(1.2rem, 0.9rem + 1vw, 1.6rem);
  

  /* logo-slide size */
  --logo-size: 10rem;
  --logo-gap: 2rem;
  --logo-count: 7;
  --com-list-width: calc((var(--logo-size) * var(--logo-count)) + (var(--logo-gap) * (var(--logo-count) - 1)));
}

/* 769〜1199 */
@media (min-width: 641px) and (max-width: 1279px){
  :root {
    --logo-size: 14rem;
  }
}
/* 1200以上 */
@media (min-width: 1280px) {
  :root {
    /* layout */
    --com-margin-bottom: 4rem;

    /* logo-slide size */
    --logo-size: 16rem;
  }
}

/* フォント：日本語 */
[class*="-jp"],
body:has(.l-header.-jp) {
  font-family:
    "Kozuka Mincho Pr6N",
    "Noto Serif JP",
    serif;
}

/* フォント：繁体字 */
[class*="-zh"],
body:has(.l-header.-zh) {
  font-family:
    "Noto Serif TC",
    serif;
}

@media (max-width: 768px) {
  [class*="page-template-page-lp-"] {
    margin-top:6rem;
  }
}

.l-container {
  width: 100%;
  max-width: 100%;
  min-height: 100svh;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}
/* 769〜1279 */
@media (min-width: 769px) and (max-width: 1279px){
  .l-container {
    max-width: 500px;
  }
}
/* 1280以上 */
@media (min-width: 1280px) {
  .l-container {
    max-width: 768px;
  }
}

.btn {
  color: var(--color-text-invert);
  background: var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5rem;
}
.btn {
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: var(--color-hover);
}

/* ========================================
  LP-Header
======================================== */
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.l-header .l-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header .site-title {
  height: 4rem;
}
.l-header .site-title img {
  width: auto;
  height: clamp(4rem, 3rem + 2vw, 6rem);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.l-header .btn.lang-switch {
  width: 8rem;
  height: 4rem;
}

@media (max-width: 768px) {
  .l-header {
    height: 6rem;
    background: linear-gradient(
      to bottom,
      var(--grad-white-fade-color)
    );    
  }
}
@media (min-width: 769px) {
  .l-header {
    height: 9rem;
  }
}


/* ========================================
  下部固定ボタン
======================================== */
.fixedbtn {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 2;
}
.btn.hasborder {
  font-size: clamp(1.8rem, 1rem + .8vw, 2.4rem);
  padding: 2.2rem clamp(3rem, 3rem + 1.6vw, 7rem);
  outline : 1px solid #FFFFFF;;
  outline-offset : -5px;
}
@media (max-width: 768px) {
  .fixedbtn {
    width: 90%;
    max-width: 500px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 3rem;
  }
}
/* ========================================
  動画
======================================== */
.video-wrap > div  {
  position: relative;
}
.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
  LP-コンテンツ
======================================== */
/* 共通 */
.accent {
  color: var(--color-accent)
}

.sec-heading {
  font-size: var(--fs-heading);
  letter-spacing: .1rem;
  margin-block-end: var(--fs-heading);
}
.sec-heading.-has-grad-border .accent {
  font-size: var(--fs-accent);
  letter-spacing: .2rem;
  display: block;
  margin-block-end: .8rem;
}

.l-section:has(> .-has-grad-border) {
  position: relative;
  padding-block-start: clamp(3rem, 4vw, 6rem);
}
.l-section:has(> .-has-grad-border)::before {
  content: "";
  width: 50%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--grad-accent-fade-color)
  );
  position: absolute;
  top: 0;
  left: 0;
}
h2.sec-heading.-has-short-border{
  font-size: var(--fs-l);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.l-section:has(> .-has-short-border) {
  position: relative;
  padding-block-start: clamp(3rem, 4vw, 4rem);
}
.l-section:has(> .-has-short-border)::before {
  content: "";
  width: clamp(5rem, 12vw, 9rem);
  height: 2px;
  background: var(--color-accent);
  position: absolute;
  top: 0;
  left: var(--content-padding);
}

.l-section p {
  font-size: var(--fs-maintxt);
  line-height: 2;
  font-weight: 400;
}
.l-section p + p {
  margin-block-start: 2.2em;
}
p.right {
  text-align: right;
}

.deco-border {
  outline: 1px solid #FFFFFF;
  outline-offset: -10px;
}

/* メインビジュアル */
.mv {
  width: 100%;
}
.mv.video-wrap > div::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 25%;
  background: linear-gradient(
    to top,
    var(--grad-white-fade-color)
  );
  z-index: 1;
}
.mv-logo {
  width: 80%;
  max-width: 600px;
  padding-block: clamp(2rem, 2rem + 2vw, 4rem) 11rem;
  margin-inline: auto;
}

/* 取引企業 */
.l-section + .l-section.trading-companies {
  margin-block-start: 2rem;
}
.trading-companies h2 {
  font-size: var(--fs-l);
  text-align: center;
}
.list-wrap {
  width: 100%;
  overflow: hidden;
}
.list-inner {
  display: flex;
  width: calc(var(--com-list-width) * 2);
  animation: loop 20s linear infinite;
}
.com-list {
  display: flex;
  white-space:nowrap;
  flex-shrink: 0;
  width: var(--com-list-width);
}
.com-list + .com-list {
  margin-inline-start : var(--logo-gap);
}
.com-list li {
  width: var(--logo-size);
  margin-inline-end: var(--logo-gap);
}
.com-list li:last-child {
  margin-inline-end: 0;
}
.com-list li img {
  width: 100%;
  aspect-ratio: 1/1;
}
@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 真菌幹細胞研究所とは？ */
.about {
  padding-left: var(--content-padding);
  padding-right: var(--content-padding);
  background: url(../img/0203bf-fungal-stemcell.com-used-creative-1.4.1.webp) center bottom no-repeat;
  background-size: 100% auto;
  position: relative;
  padding-bottom: 90%;
}
.about::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  pointer-events: none;
  background: linear-gradient(
    to top,
    var(--grad-white-fade-color)
  );
}

/* 真菌の特徴 */
.features {
  padding-block-start: clamp(2rem, 2rem + 2vw, 5rem);
}
.features .v-wrap {
  position: relative;
}
.features .v-wrap .vertical {
  letter-spacing: 0.6em;
  font-weight: 700;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.9;
  position: absolute;
  top: -4em;
  right: var(--content-padding);
  z-index: 1;
}
.features .v-wrap .accent {
  font-size: var(--fs-m);
  line-height: 1.5;
  margin: 2rem 0 0 var(--content-padding);
}
.features .video-wrap > div::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 25%;
  background: linear-gradient(
    to top,
    var(--grad-white-fade-color)
  );
  z-index: 1;
}
.features .txt-wrap {
  margin-block-start: clamp(3rem, 4rem + 1vw, 6rem);
  padding-inline: var(--content-padding)
}

.features figure {
  width: 85%;
  max-width: 560px;
  margin-block: clamp(3rem, 4rem + 1vw, 6rem);
  margin-left: auto;
}

.features figure.reverse {
  margin-left: inherit;
  margin-right: auto;
}

@media (min-width: 769px) and (max-width: 1279px) {
  .features {
    padding-block-start: 6rem;
  }
  .features .v-wrap .vertical {
    letter-spacing: 0.3em;
    top: -7rem;
  }  
}
@media (max-width: 768px) {
  .features {
    padding-block-start: 6rem;
  }
  .features .v-wrap .vertical {
    letter-spacing: 0.4em;
    top: -7.5rem;
  }   
  .features figure {
    margin-right: calc(var(--content-padding) * -1);
  }
  .features figure.reverse {
    margin-left: calc(var(--content-padding) * -1);
  }
}

/* 商品エリア-1 */
.item-data-1 .video-wrap > ::after {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 100%;
    height: 17%;
    background: linear-gradient(to top, var(--grad-white-fade-color));
    z-index: 1;
}
.item-data-1 .item-base-wrap {
  background: linear-gradient(to top, var(--grad-gray-fade-color));
}

/* 商品エリア共通 */
.item-base-wrap .accent {
  font-size: var(--fs-m);
  line-height: 1.5;
  margin-block-end: .5rem;
}
.item-base-wrap {
  padding: clamp(2rem, 2rem + 2vw, 4rem) var(--content-padding) calc((clamp(2rem, 2rem + 2vw, 4rem)) * 1.5 );
}
.item-base-wrap p + p {
  margin-block-start: 0;
}
.item-base-wrap .item-base {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-block-end: .5rem;
}
.item-base-wrap .item-name {
  font-size: var(--fs-itemname);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}
.item-base-wrap .price {
  font-size: var(--fs-itemprice);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}
.item-base-wrap .price span {
  font-size: var(--fs-m);
}
.item-base-wrap .outline {
  margin-block-start: 1.6em;
}

/* 商品エリア-2 */
.item-data-2 {
  margin-top: calc(var(--section-gap) / 2);
  padding-inline: var(--content-padding);
}
.item-data-2 figure {
  width: 100%;
  aspect-ratio: 1/1;
}
.item-data-2 .item-base-wrap {
  padding: clamp(2rem, 2rem + 2vw, 4rem) 0 0;
}


/* 原材料 */
.materials {
  padding-inline: var(--content-padding);
}
.materials h3 {
  font-size: var(--fs-heading-3);
  font-weight: 500;
  background: var(--color-palegray);
  padding: 1.2rem;
  margin-block-end: 2rem;
}
.materials ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.materials ul li {
  width: calc((100% - 2rem) / 2);
}
.materials figure figcaption {
  font-size: var(--fs-m);
  text-align: center;
  padding: 1rem;

}
.materials ul + h3 {
  margin-block-start: 3rem;
}

/* 着目する理由 */
.reasons-to-focus {
  padding-inline: var(--content-padding);
}
.reasons-to-focus dl > div + div {
  margin-block-start: var(--fs-heading);
}
.reasons-to-focus dt {
  font-size: var(--fs-heading-3);
  text-align: center;
  font-weight: 500;
  padding: 1.2rem;
  margin-block-end: 2rem;
  border: 1px solid var(--color-gray);
}
.reasons-to-focus dd > p {
  font-size: var(--fs-maintxt);
  text-align: center;
  line-height: 1.5;
  margin-block-end: 2rem;
}
.reason-txt-wrap {
  position: relative;
  margin-top: 6rem;
}
.reason-txt-wrap::before {
    content: "";
    display: block;
    width: 4px;
    height: 24px;
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;
    margin: auto;
    background-image: radial-gradient(circle at center, var(--color-gray) 2px, transparent 2px);
    background-size: 4px 8px;
    background-repeat: repeat-y;
}
/* 769〜1279 */
@media (min-width: 769px) and (max-width: 1279px){
  .reason-txt-wrap {
    margin-top: 8rem;
  }
}
@media (min-width: 1280px){
  .reason-txt-wrap {
    margin-top: 10rem;
  }
  .reason-txt-wrap::before {
    width: 6px;
    height: 38px;
    top: -60px;
    background-image: radial-gradient(circle at center, var(--color-gray) 3px, transparent 3px);
    background-size: 6px 12px; /* ←ここ広げる */
  }
}

.reason-summury {
  margin-top: clamp(3rem, 4vw, 6rem);
}
.reason-summury > p {
  font-size: var(--fs-l);
  font-weight: 700;
  line-height: 1.8;
}
.reason-summury figure {
  margin: clamp(3rem, 4vw, 6rem) calc(var(--content-padding) * -1);
}
.reason-summury figure img {
  width: 100%;
}

/* 製造工程 */
.manufacturing .item-base-wrap {
  padding-block-start: 0;
}
.process,
.management,
.manufacturing .process-txt-wrap {
  padding-inline: var(--content-padding);
}

.manufacturing .bg-wrap {
  padding-block: clamp(5rem, 4vw + 1rem, 10rem);
  margin-block-end: clamp(3rem, 4vw, 6rem);
  position: relative;
  z-index: 0;
}
.manufacturing .bg-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16rem;
  background: linear-gradient(to bottom, var(--grad-gray-fade-color));
  z-index: -1;
  pointer-events: none;
}

.manufacturing:has(.process) .bg-wrap {
  background-image: url(../img/0203bf-fungal-stemcell.com-used-creative-1.26.webp);
  background-position:54% bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.manufacturing:has(.management) .bg-wrap {
  background-image: url(../img/0203bf-fungal-stemcell.com-used-creative-1.24.webp);
  background-position: 80% bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

@media (min-width: 769px) {
  .manufacturing:has(.process) .bg-wrap {
    background-position: right bottom;
  }
  .manufacturing:has(.management) .bg-wrap {
    background-position: right bottom;
  }
}

.manufacturing .video-wrap {
  padding-inline: var(--content-padding);
}
.manufacturing .video-wrap > ::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 17%;
    background: linear-gradient(to top, var(--grad-white-fade-color));
    z-index: 1;
}
.process-txt-wrap {
  margin-block: clamp(3rem, 4vw, 6rem);
}

/* 納入済み管理番号 */
.management-number {
  padding-inline: var(--content-padding);
}
.management-number figure {
  width: 100%;
  height: 100%;
  margin-block-end: var(--fs-heading);
}
.management-number h3 {
  font-size: var(--fs-heading-3);
  text-align: center;
  font-weight: 500;
  padding: 1.2rem;
  margin-block-end: 2rem;
  border: 1px solid var(--color-gray);
}
.management-number .num-text-wrap p {
  font-size: var(--fs-s);
}

/* 商品エリア-3 */
.item-data-3 {
  padding: var(--section-gap) var(--content-padding) 0;
  background: linear-gradient(to bottom, var(--grad-gray-fade-color)) top center no-repeat;
  background-size: 100% 80%;
}
.item-data-3 .item-base-wrap {
  padding: 0;
}
.item-data-3 figure {
  margin-block: 2rem;
}
.item-data-3 .item-base-wrap p:not(.accent) {
  text-align: center;
}
.item-data-3 .item-base-wrap .net-vol {
  margin-block-start: 1.5rem;
}

.item-data-3 .btn-wrap {
  margin-block-start: 2.2em;
}
.item-data-3 .btn-wrap a {
  font-size: var(--fs-itemprice);
  padding: 2.6rem clamp(3rem, 3rem + 1.6vw, 7rem);
}

/* 研究領域 */
.research-field {
  padding-inline: var(--content-padding);
}
.research-field h2 {
  line-height: 1.2;
}
.research-field .sec-heading.-has-grad-border .accent {
  font-size: var(--fs-s);
}
.field-list > div + div {
  margin-block-start: 3.5rem;
}
.field-list dt {
  padding: .5rem 0 .5rem 1rem;
  border-left: 5px solid var(--color-gray);
  margin-block-end: 1.5rem;
}
@media (min-width: 769px) {
  .field-list dt {
    font-size: clamp(1.6rem, 1rem + 1.3vw, 2.8rem);
    font-weight: 700;
    border-left: 8px solid var(--color-gray);
  }
}
.field-list dd {
  font-size: var(--fs-maintxt);
  line-height: 2;
}

.research-field figure {
  margin-block-start: 3rem;
}

.l-section.research-field.--effect::before {
  background: linear-gradient(to left, var(--grad-accent-fade-color));
  left: inherit;
  right: 0;
}
.l-section.research-field.--effect .sec-heading {
  text-align: right;
}

.l-section.research-field.--from-now-on {
  background: url(../img/0203bf-fungal-stemcell.com-used-creative-1.4.1.webp) center bottom no-repeat;
  background-size: 100% auto;
  position: relative;
  padding-bottom: 90%;
}

/* 最下部 */
.bottom-logo {
  width: 80%;
  max-width: 600px;
  padding-block: clamp(2rem, 2rem + 2vw, 4rem) 11rem;
  margin-inline: auto;
}
@media (min-width: 769px) {
  .bottom-logo {
    padding-block: 6rem;
  }
}


/* 背景 */
/* PCのみ 背景フェード切替 */
@media (min-width: 769px) {
  body.page-bg-ready::before,
  body.page-bg-ready::after {
    content: "";
    position: fixed;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease;
  }

  body.page-bg-ready::before {
    background-image: var(--bg-current);
    opacity: 1;
  }

  body.page-bg-ready.is-switching::after {
    background-image: var(--bg-next);
    opacity: 1;
  }
}



/* ========================================
  繁体字用調整
======================================== */
.page-template-page-lp-zh .features .v-wrap .vertical {
  z-index: 2;
}


/* ========================================
  問い合わせ用調整
======================================== */

[class*="page-template-page-contact-"] .btn.lang-switch {
  display: none;
}

@media (min-width: 769px) {
  [class*="page-template-page-contact-"]::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url(../img/0203bf-fungal-stemcell.com-used-creative-1.31.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    transition: opacity 1s ease;
  }
}

[class*="page-template-page-contact-"] .l-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
[class*="page-template-page-contact-"] .bottom-logo {
  margin-block-start: auto;
  flex-grow: 0;
}
@media (max-width: 768px) {
  [class*="page-template-page-contact-"] .bottom-logo {
    padding-block: 5rem 3rem;
  }
}


[class*="page-template-page-contact-"] .contact {
  padding-inline: var(--content-padding)
}
@media (max-width: 768px) {
  [class*="page-template-page-contact-"] .contact {
    padding-block-start: 9rem;
  }
}

[class*="page-template-page-contact-"] .contact::before {
  display: none;
}
.l-section p.contact-note {
  font-size: var(--fs-m);
  line-height: 1.4;
}

.contact-wrap {
  margin-block-start: clamp(2rem, 2rem + 2vw, 4rem);
}
.contact-wrap dl > div + div {
  margin-block-start: 3rem;
}
.contact-wrap dt {
  font-size: var(--fs-form);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem 0;
}
.contact-wrap .required {
  color: var(--color-text-invert);
  font-size: var(--fs-s);
  font-weight: 600;
  line-height: 1;
  padding: .5rem .8rem;
  border-radius: .5rem;
  background: var(--color-accent);
}
.contact-wrap dd {
  font-size: var(--fs-form);
  font-weight: 400;
  padding-block: 1rem;
}
.contact-wrap input,
.contact-wrap textarea {
  font-size: var(--fs-form);
  font-size: 1.6rem;
  width: 100%;
  padding: .8rem;
  outline: 1px solid var(--color-gray);
  border-radius: .5rem;
}
.contact-wrap input:focus,
.contact-wrap textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.contact-wrap .wpcf7-not-valid-tip {
  font-size: var(--fs-form);
  margin-block-start: .8rem;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  text-align: center;
  border: 0;
  color: var(--color-text-invert);
  background: #dc3232;
  padding: .8rem .5rem;
  margin: 0;
}

.form-submit {
  margin-block-start: clamp(2rem, 2rem + 2vw, 4rem);
}
.contact-wrap input[type="submit"] {
  font-size: clamp(1.8rem, 1rem + .8vw, 2.4rem);
  color: var(--color-text-invert);
  background: var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5rem;
  outline: 1px solid #FFFFFF;
  outline-offset: -5px;
  transition: background-color 0.3s ease;
}
.contact-wrap input[type="submit"]:hover {
  background-color: var(--color-hover);
}

.contact-wrap .back-btn {
  width: 70%;
  max-width: 300px;
  margin-inline: auto;
}
.contact-wrap .back-btn input {
  cursor: pointer;
  border-radius: 5rem;
}

.back-sitetop {
  width: 70%;
  max-width: 300px;
  margin: clamp(6rem, 3rem + 3vw, 10rem) auto 0;
}


/* ========================================
  404調整
======================================== */

@media (min-width: 769px) {
  body:has(.notfound)::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url(../img/0203bf-fungal-stemcell.com-used-creative-1.31.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    transition: opacity 1s ease;
  }
}
.l-container.notfound {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.notfound .bottom-logo {
  margin-block-start: auto;
  flex-grow: 0;
}
@media (max-width: 768px) {
  .notfound .bottom-logo {
    padding-block: 5rem 3rem;
  }
}


.l-container.notfound .l-section {
  padding-inline: var(--content-padding)
}
@media (max-width: 768px) {
  .l-container.notfound .l-section {
    padding-block-start: 9rem;
  }
}

.l-container.notfound .l-section::before {
  display: none;
}
.l-container.notfound .l-section p {
  font-size: var(--fs-m);
  line-height: 1.4;
}