@charset "UTF-8";
/* ====================
 * 共通
 * ==================== */
:root {
  --site-header-height: 64px;
  --anchor-scroll-offset: calc(var(--site-header-height) + 16px);
}
@media (min-width: 768px) {
  :root {
    --site-header-height: 80px;
  }
}
@media (min-width: 1120px) {
  :root {
    --site-header-height: 90px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-scroll-offset);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #333333;
  background: #ffffff;
  line-height: 1.7;
}
body.is-menu-open {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.container {
  width: 100%;
  max-width: 1192px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 1224px) {
  .container {
    padding-inline: 0;
  }
}

@media (min-width: 1024px) {
  #main-content,
  #recycle-structure,
  #paper-lab,
  #happiness-art-contest,
  #project-goal {
    scroll-margin-top: var(--anchor-scroll-offset);
  }
}
.skip-link {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 8px 12px;
  background: #2d2d25;
  color: #fff;
  transform: translateY(-150%);
  transition: transform 0.24s ease;
}
.skip-link:focus-visible {
  transform: translateY(0);
}

.text-link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  text-decoration: none;
  margin-right: 4px;
}
.text-link-with-icon::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 1px;
  background-color: currentColor;
}
.text-link-with-icon::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("../../assets/images/text-link-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.text-link-with-icon:hover::before, .text-link-with-icon:focus-visible::before {
  content: none;
}

/* ====================
 * サイトヘッダー
 * ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.1);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
@media (min-width: 768px) {
  .site-header__inner {
    min-height: 80px;
  }
}
@media (min-width: 1120px) {
  .site-header__inner {
    min-height: 90px;
  }
}
.site-header__logo a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.site-header__logo img {
  width: 40px;
  height: auto;
}
@media (min-width: 768px) {
  .site-header__logo img {
    width: 80px;
  }
}
.site-header__logo span {
  font-size: 1.125rem;
  font-weight: 700;
}
@media (min-width: 1120px) {
  .site-header__logo span {
    font-size: 1.5rem;
  }
}
.site-header__nav {
  position: fixed;
  min-width: 280px;
  top: var(--site-header-height);
  right: 0;
  z-index: 40;
  padding: 24px 32px;
  background: #fff;
  border-radius: 0 0 0 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0s linear 0.24s;
}
@media (min-width: 1120px) {
  .site-header__nav {
    position: static;
    display: block;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: inherit;
  }
}
.site-header__nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.site-header__nav-list {
  display: grid;
}
@media (min-width: 1120px) {
  .site-header__nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
  }
}
.site-header__nav-list-item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}
@media (max-width: 1119px) {
  .site-header__nav-list-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #009B63;
  }
  .site-header__nav-list-item:first-child a {
    padding-top: 0;
  }
  .site-header__nav-list-item:last-child a {
    padding-bottom: 0;
    border-bottom: none;
  }
  .site-header__nav-list-item:last-child {
    display: none;
  }
  .site-header__nav-list-item svg {
    display: none;
  }
}
@media (min-width: 1120px) {
  .site-header__nav-list-item a {
    font-size: clamp(0.875rem, 0.4808vw + 0.5673rem, 1rem);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    text-decoration: none;
  }
  .site-header__nav-list-item a svg {
    display: block;
    flex-shrink: 0;
    align-self: center;
  }
  .site-header__nav-list-item:not(._coop-logo) a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.24s ease;
  }
  .site-header__nav-list-item:not(._coop-logo) a:hover::before, .site-header__nav-list-item:not(._coop-logo) a:focus-visible::before {
    transform: scaleX(1);
  }
  .site-header__nav-list-item:last-child img {
    width: 75px;
  }
}
.site-header__menu-toggle {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 50px;
  height: 46px;
  border: 2px solid #009B63;
  border-radius: 8px;
  background: #ffffff;
  color: #009B63;
}
@media (min-width: 1120px) {
  .site-header__menu-toggle {
    display: none;
  }
}
.site-header__menu-toggle[aria-expanded=true] {
  gap: 0;
}
.site-header__menu-toggle[aria-expanded=true] .site-header__menu-toggle-line:nth-child(1) {
  transform: translateY(1px) rotate(45deg);
}
.site-header__menu-toggle[aria-expanded=true] .site-header__menu-toggle-line:nth-child(2) {
  display: none;
}
.site-header__menu-toggle[aria-expanded=true] .site-header__menu-toggle-line:nth-child(3) {
  transform: translateY(-1px) rotate(-45deg);
}
.site-header__menu-toggle:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-accent) 95%, transparent);
  outline-offset: 3px;
}
.site-header .site-header__menu-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  transform-origin: center;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 29;
  background: rgba(24, 24, 19, 0.58);
  opacity: 0;
  transition: opacity 0.24s ease;
}
.menu-overlay.is-active {
  opacity: 1;
}
.menu-overlay:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-accent) 95%, transparent);
  outline-offset: 3px;
}

/* ====================
 * メインコンテンツ
 * ==================== */
.main-content {
  overflow-x: clip;
}
@supports not (overflow: clip) {
  .main-content {
    overflow-x: hidden;
  }
}

/* ====================
 * スクロールヒーロー・ファーストビュー
 * ==================== */
.scroll-hero {
  position: relative;
  height: var(--scroll-hero-height, 280vh);
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f1 100%);
  overflow: clip;
}
@media (min-width: 768px) {
  .scroll-hero {
    height: var(--scroll-hero-height, 320vh);
  }
}
@media (min-width: 1024px) {
  .scroll-hero {
    height: var(--scroll-hero-height, 360vh);
  }
}
.scroll-hero__stage {
  position: sticky;
  top: var(--site-header-height);
  height: calc(100svh - var(--site-header-height));
  overflow: hidden;
}
.scroll-hero__track {
  display: flex;
  width: max-content;
  min-width: 100%;
  height: 100%;
  transform: translate3d(var(--scroll-hero-x, 0px), 0, 0);
  will-change: transform;
}
.scroll-hero__first-view {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}
.scroll-hero__first-view-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  transform: translate3d(0, var(--scroll-hero-y, 0px), 0);
  will-change: transform;
}
@media (min-width: 768px) {
  .scroll-hero__first-view-inner {
    padding-block: 96px;
    gap: 48px;
    align-items: center;
    padding-bottom: 0;
    max-width: inherit;
  }
}
.scroll-hero__first-view-headline {
  font-size: 1.5rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .scroll-hero__first-view-headline {
    font-size: 2.5rem;
    text-align: center;
  }
  .scroll-hero__first-view-headline br:last-child {
    display: none;
  }
}
.scroll-hero__first-view-lead {
  font-size: 0.875rem;
  line-height: 2;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .scroll-hero__first-view-lead {
    max-width: 960px;
    text-align: center;
  }
}
.scroll-hero__first-view-badge {
  font-size: 1rem;
  position: relative;
  display: block;
  width: 100%;
  max-width: 344px;
  margin-inline: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  background-color: #009B63;
  border: 2px solid #009B63;
  color: #ffffff;
  padding: 16px 48px;
  border-radius: 8px;
  z-index: 1;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}
@media (min-width: 768px) {
  .scroll-hero__first-view-badge {
    max-width: 374px;
  }
}
@media (min-width: 1024px) {
  .scroll-hero__first-view-badge {
    margin-top: -16px;
  }
}
.scroll-hero__first-view-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M7.99888 2V13.5M7.99888 13.5L4.07031 9.57726M7.99888 13.5L11.9275 9.57726' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: translateY(-50%);
}
.scroll-hero__first-view-badge:hover, .scroll-hero__first-view-badge:focus-visible {
  background-color: #ffffff;
  color: #009B63;
}
.scroll-hero__first-view-badge:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(76, 96, 47, 0.16);
}
.scroll-hero__first-view-scroll-message {
  text-align: center;
  position: relative;
  z-index: 1;
}
.scroll-hero__first-view-scroll-message span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #009B63;
}
.scroll-hero__first-view-scroll-message span::before {
  content: "";
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3E%3Cpath d='M20 36.7306C16.88 36.7306 14.225 35.6356 12.035 33.4456C9.845 31.2556 8.75 28.6006 8.75 25.4806V14.375C8.75 11.255 9.845 8.6 12.035 6.41C14.225 4.22 16.88 3.125 20 3.125C23.12 3.125 25.775 4.22 27.965 6.41C30.155 8.6 31.25 11.255 31.25 14.375V25.4806C31.25 28.6006 30.155 31.2556 27.965 33.4456C25.775 35.6356 23.12 36.7306 20 36.7306ZM20.9375 14.375H29.375C29.375 11.9087 28.5562 9.79188 26.9187 8.02438C25.2812 6.25688 23.2875 5.26312 20.9375 5.04313V14.375ZM10.625 14.375H19.0625V5.04313C16.7137 5.26437 14.72 6.25813 13.0813 8.02438C11.4425 9.79063 10.6237 11.9081 10.625 14.3769M20 34.8556C22.5938 34.8556 24.805 33.9413 26.6338 32.1125C28.4625 30.2838 29.3762 28.0731 29.375 25.4806V16.25H10.625V25.4806C10.625 28.0744 11.5394 30.2856 13.3681 32.1144C15.1969 33.9431 17.4075 34.8569 20 34.8556Z' fill='black'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.scroll-hero__first-view-leaf {
  position: absolute;
  top: 10px;
  right: 0;
  width: 230px;
  height: auto;
  z-index: -1;
  opacity: 0.88;
}
@media (min-width: 768px) {
  .scroll-hero__first-view-leaf {
    width: 720px;
    top: inherit;
    right: inherit;
    left: 0;
    bottom: 0;
  }
}
.scroll-hero__first-view-leaf img {
  width: 100%;
  height: auto;
}
.scroll-hero__image {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  min-width: 220vw;
  background: #ffffff;
  padding-block: 10vh;
}
@media (min-width: 768px) {
  .scroll-hero__image {
    min-width: 180vw;
    padding-block: inherit;
  }
}
@media (min-width: 1024px) {
  .scroll-hero__image {
    min-width: 136vw;
  }
}
.scroll-hero__image img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.scroll-hero__skip-button {
  font-size: 1rem;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  background-color: #009B63;
  color: #ffffff;
  padding: 16px 48px;
  border-radius: 8px;
  border: 2px solid #009B63;
  box-shadow: 0 12px 32px rgba(76, 96, 47, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.42s ease, visibility 0s linear 0.42s, transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}
.scroll-hero__skip-button span {
  padding-right: 20px;
}
@media (min-width: 768px) {
  .scroll-hero__skip-button {
    right: 24px;
    bottom: 24px;
  }
}
.scroll-hero__skip-button:hover, .scroll-hero__skip-button:focus-visible {
  background-color: #ffffff;
  color: #009B63;
}
.scroll-hero__skip-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 44px;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M7.99888 2V13.5M7.99888 13.5L4.07031 9.57726M7.99888 13.5L11.9275 9.57726' stroke='black' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: translateY(-50%);
}
.scroll-hero__skip-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s, 0s, 0s, 0s, 0s, 0s;
}
.scroll-hero__skip-button:focus-visible {
  outline: 3px solid color-mix(in srgb, #ffffff 55%, transparent);
  outline-offset: 3px;
}
.scroll-hero__banner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../../assets/images/banner-bg-pattern.png) 0 0/50px 50px repeat, #FAFCF5;
  box-shadow: 5px 5px 5px 0 rgba(126, 126, 126, 0.3);
  padding: clamp(1rem, 1.9231vw - 0.2308rem, 1.5rem);
}
@media (min-width: 768px) {
  .scroll-hero__banner {
    position: absolute;
    z-index: 100;
    right: clamp(1rem, 4.8077vw - 2.0769rem, 2.25rem);
    bottom: 24px;
    opacity: 0;
    transform: translateY(24px);
    animation: scroll-hero-banner-fade-in 2.5s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
    width: auto;
  }
}
.scroll-hero__banner-title {
  font-size: 0.75rem;
  color: #009B63;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .scroll-hero__banner-title {
    font-size: 0.875rem;
  }
}
.scroll-hero__banner-title span::before, .scroll-hero__banner-title span::after {
  display: inline-block;
  font-weight: 700;
}
.scroll-hero__banner-title span::before {
  content: "＼";
  padding-right: 10px;
}
.scroll-hero__banner-title span::after {
  content: "／";
  padding-left: 10px;
}
.scroll-hero__banner-desc {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
.scroll-hero__banner-desc br {
  display: none;
}
@media (min-width: 768px) {
  .scroll-hero__banner-desc {
    font-size: 1rem;
  }
  .scroll-hero__banner-desc br:last-child {
    display: block;
  }
}
.scroll-hero__banner-image {
  width: 200px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .scroll-hero__banner-image {
    width: clamp(16.875rem, 7.2115vw + 12.2596rem, 18.75rem);
  }
}
.scroll-hero__banner-image img {
  width: 100%;
}

/* ====================
 * 紙リサイクルの仕組み
 * ==================== */
.recycle-structure {
  overflow: hidden;
}
.recycle-structure__splide {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .recycle-structure__splide {
    flex-direction: row;
    gap: 16px;
  }
}
.recycle-structure__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  .recycle-structure__header {
    padding-top: 55px;
    flex: 3;
    gap: 32px;
  }
}
.recycle-structure__header-title {
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 700;
  color: #009B63;
}
@media (min-width: 1024px) {
  .recycle-structure__header-title {
    font-size: 3rem;
    line-height: 1.3;
  }
}
.recycle-structure__header-title-desc {
  line-height: 2;
}
.recycle-structure__arrows {
  gap: 16px;
}
@media (max-width: 1023px) {
  .recycle-structure__arrows.--only-mobile {
    display: flex;
  }
  .recycle-structure__arrows.--only-pc {
    display: none;
  }
}
@media (min-width: 1024px) {
  .recycle-structure__arrows.--only-mobile {
    display: none;
  }
  .recycle-structure__arrows.--only-pc {
    display: flex;
  }
}
.recycle-structure__arrow {
  background-color: #009B63;
  border: 2px solid #009B63;
  color: #ffffff;
  border-radius: 5px;
  padding: 8px;
  height: 48px;
  width: 48px;
}
.recycle-structure__arrow:hover {
  background-color: #ffffff;
  color: #009B63;
}
.recycle-structure__arrow svg {
  width: 28px;
  height: 28px;
}
.recycle-structure__splide-track {
  position: relative;
  padding-block: 35px;
  width: calc(100% + 50vw - 50%);
  margin-right: calc(50% - 50vw);
}
@media (min-width: 1024px) {
  .recycle-structure__splide-track {
    padding-top: 55px;
    padding-bottom: 10px;
  }
}
.recycle-structure__splide-track::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url("../images/recycle-structure-slide-curve-arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
  top: -14px;
  right: 32px;
  width: 140px;
  height: 57px;
}
@media (min-width: 1024px) {
  .recycle-structure__splide-track::after {
    width: 190px;
    height: 56px;
    right: inherit;
    left: 300px;
  }
}
@media (min-width: 1024px) {
  .recycle-structure__splide-track {
    flex: 7;
  }
}
.recycle-structure__splide-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #F0FBD8;
  box-shadow: 5px 5px 5px 0 rgba(126, 126, 126, 0.3);
  padding: 24px;
}
@media (min-width: 1024px) {
  .recycle-structure__splide-slide {
    padding: 32px;
    width: 376px !important;
  }
}
.recycle-structure__splide-slide:after {
  position: absolute;
  content: "";
  background-image: url("../images/recycle-structure-slide-clip.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 16px;
  height: 48px;
  top: -8px;
  right: 35px;
  z-index: 100;
}
@media (min-width: 1024px) {
  .recycle-structure__splide-slide:after {
    top: -10px;
    width: 20px;
    height: 64px;
  }
}
.recycle-structure__splide-slide .title {
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .recycle-structure__splide-slide .title {
    font-size: 1.5rem;
  }
}
.recycle-structure__splide-slide .image img {
  border-radius: 4px;
  width: 100%;
}
.recycle-structure__splide-slide .desc {
  line-height: 1.5;
}

/* ====================
 * ペーパーラボ
 * ==================== */
.paper-lab__inner {
  position: relative;
  padding-top: 140px;
}
@media (min-width: 768px) {
  .paper-lab__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
}
.paper-lab__inner::before {
  position: absolute;
  content: "";
  background-image: url(../images/paper-lab-leaf.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 230px;
  height: 135px;
  top: 0;
  left: 0;
}
@media (min-width: 1024px) {
  .paper-lab__inner::before {
    top: 55px;
    width: 445px;
    height: 260px;
  }
}
.paper-lab__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #009B63;
}
.paper-lab__header-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}
.paper-lab__header-title {
  order: 1;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}
@media (min-width: 1024px) {
  .paper-lab__header-title {
    font-size: 3.75rem;
  }
}
.paper-lab__header-title-ruby {
  font-size: 0.875rem;
  font-weight: bold;
  order: 0;
  margin-bottom: -10px;
}
@media (min-width: 1024px) {
  .paper-lab__header-title-ruby {
    font-size: 1.25rem;
  }
}
.paper-lab__header-desc {
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .paper-lab__header-desc {
    font-size: 1.25rem;
  }
}
.paper-lab__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 768px) {
  .paper-lab__content {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .paper-lab__content-image, .paper-lab__content-text {
    --gap: 3rem;
    flex: 0 0 calc((100% - var(--gap)) / 2);
  }
}
.paper-lab__content-image {
  position: relative;
  margin-top: 24px;
  margin-left: -16px;
}
@media (min-width: 1224px) {
  .paper-lab__content-image {
    flex-basis: calc((100% - var(--gap)) / 2 + (100vw - 1192px) / 2);
    margin-left: calc((100vw - 1192px) / -2);
  }
}
.paper-lab__content-image figcaption {
  font-size: 0.875rem;
  padding-left: 16px;
  line-height: 1.4;
  margin-top: -24px;
}
@media (min-width: 1224px) {
  .paper-lab__content-image figcaption {
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    padding-left: 0;
    margin-top: 0;
    left: calc((100vw - 1192px) / 2);
  }
}
.paper-lab__content-text .text {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 32px;
}
.paper-lab__content-text .heading {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}
.paper-lab__content-text .heading::before, .paper-lab__content-text .heading::after {
  content: "";
  flex: 1 1 auto;
  min-width: 0;
  height: 2px;
  background-color: #009B63;
}
.paper-lab__content-text .data {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}
.paper-lab__content-text .data dt {
  display: inline-flex;
  flex: 0 0 120px;
  width: 120px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #009B63;
  border-radius: 8px;
  border: 2px solid var(--paper-green3, #009B63);
  background: var(--paper-green1, #F0FBD8);
  line-height: 1;
}
.paper-lab__content-text .data dd {
  display: flex;
  align-items: center;
  flex: 1 1 calc(100% - 136px);
  font-size: 1rem;
  line-height: 1.5;
}

/* ====================
 * アップサイクル品
 * ==================== */
.upcycle-product {
  padding-block: 64px;
}
.upcycle-product__header {
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .upcycle-product__header {
    margin-bottom: 48px;
  }
}
.upcycle-product__header-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .upcycle-product__header-inner {
    gap: 32px;
  }
}
.upcycle-product__header-group {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
  align-items: center;
  color: #009B63;
}
.upcycle-product__header-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .upcycle-product__header-title {
    font-size: 2rem;
  }
}
.upcycle-product__header-desc {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .upcycle-product__header-desc {
    font-size: 1.125rem;
  }
}
.upcycle-product__header-desc:before {
  content: "＼";
}
.upcycle-product__header-desc:after {
  content: "／";
}
.upcycle-product__header-lead {
  font-size: 1rem;
  line-height: 2;
}
@media (min-width: 1024px) {
  .upcycle-product__header-lead {
    text-align: center;
  }
}
.upcycle-product__header-lead .br-1 {
  display: none;
}
@media (min-width: 1024px) {
  .upcycle-product__header-lead .br-1 {
    display: block;
  }
}
.upcycle-product__slider-list {
  align-items: center;
}
.upcycle-product__slider-slide {
  display: flex;
  flex-direction: column;
  align-self: center;
}
.upcycle-product__slider-slide._top {
  align-self: flex-start;
}
.upcycle-product__slider-slide._middle {
  align-self: center;
}
.upcycle-product__slider-slide._bottom {
  align-self: flex-end;
}
.upcycle-product__slider-slide .fukidashi span {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  background-color: #009B63;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1;
  margin-bottom: 15px;
}
.upcycle-product__slider-slide .fukidashi span::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 12px;
  width: 13px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='10' viewBox='0 0 13 10' fill='none'%3E%3Cpath d='M13 10C9.256 5.69231 2.77333 1.53846 0 0H13V10Z' fill='%23009B63'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ====================
 * ハピネスアートコンテスト
 * ==================== */
.happiness-art-contest {
  position: relative;
  padding-top: 140px;
  padding-bottom: 140px;
}
@media (min-width: 1024px) {
  .happiness-art-contest {
    padding-top: 100px;
  }
}
.happiness-art-contest::before, .happiness-art-contest::after {
  position: absolute;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
}
.happiness-art-contest::before {
  background-image: url(../../assets/images/happiness-art-contest-leaf-03.png);
  width: 184px;
  height: 101px;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (min-width: 1024px) {
  .happiness-art-contest::before {
    background-image: url(../../assets/images/happiness-art-contest-leaf-01.png);
    width: 380px;
    height: 192px;
  }
}
.happiness-art-contest:after {
  background-image: url(../../assets/images/happiness-art-contest-leaf-02.png);
  width: 240px;
  height: 140px;
  bottom: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .happiness-art-contest:after {
    width: 445px;
    height: 260px;
  }
}
.happiness-art-contest__inner {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../../assets/images/banner-bg-pattern.png) 0 0/50px 50px repeat, #FAFCF5;
  padding-inline: inherit;
  width: 100%;
  position: relative;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media (min-width: 1024px) {
  .happiness-art-contest__inner {
    max-width: 988px;
    padding-top: 48px;
    padding-bottom: 80px;
    padding-inline: 102px;
  }
}
.happiness-art-contest__inner::after {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  width: 100%;
  height: calc(100% + 48px);
  background-color: #B4DA95;
  transform: rotate(3deg);
  z-index: -1;
}
@media (min-width: 1024px) {
  .happiness-art-contest__inner::after {
    top: 0;
    height: 100%;
    transform: rotate(5deg);
  }
}
.happiness-art-contest__header {
  position: relative;
  padding-inline: 16px;
}
.happiness-art-contest__header::before {
  position: absolute;
  content: "";
  display: inline-block;
  background-image: url(../../assets/images/happiness-art-contest-usagi.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 125px;
  height: 203px;
  transform: rotate(5deg);
  top: -150px;
  right: 30px;
}
@media (min-width: 768px) {
  .happiness-art-contest__header::before {
    top: -80px;
    right: 20vw;
  }
}
@media (min-width: 1024px) {
  .happiness-art-contest__header::before {
    width: 194px;
    height: 283px;
    top: 50%;
    transform: inherit;
    margin-top: -180px;
    right: -20px;
  }
}
.happiness-art-contest__header-title {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .happiness-art-contest__header-title img {
    max-width: 640px;
  }
}
.happiness-art-contest__header-desc {
  font-size: 1rem;
  line-height: 2;
  padding-inline: 16px;
  text-align: center;
}
.happiness-art-contest__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-inline: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 1024px) {
  .happiness-art-contest__content {
    padding-inline: 0;
    gap: 48px;
  }
}
.happiness-art-contest__content .introduction-submitted-works {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.happiness-art-contest__content .introduction-submitted-works .title {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  padding-right: 32px;
}
.happiness-art-contest__content .introduction-submitted-works .title:before, .happiness-art-contest__content .introduction-submitted-works .title:after {
  content: "";
  position: absolute;
  top: 50%;
  background-color: #333333;
  height: 32px;
  width: 2px;
}
.happiness-art-contest__content .introduction-submitted-works .title:before {
  transform: translateY(-50%) rotate(-45deg);
  left: 8px;
}
.happiness-art-contest__content .introduction-submitted-works .title:after {
  transform: translateY(-50%) rotate(45deg);
  right: 8px;
}
.happiness-art-contest__content .introduction-submitted-works .banners {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (min-width: 768px) {
  .happiness-art-contest__content .introduction-submitted-works .banners {
    flex-direction: row;
    gap: 32px;
  }
}
.happiness-art-contest__content .introduction-submitted-works .banners-item a {
  position: relative;
  overflow: hidden;
}
.happiness-art-contest__content .introduction-submitted-works .banners-item a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}
.happiness-art-contest__content .introduction-submitted-works .banners-item a:hover::after {
  opacity: 1;
}
.happiness-art-contest__content .introduction-submitted-works .banners-item a img {
  display: block;
}
.happiness-art-contest__content .thank-you-for-your-join {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.happiness-art-contest__content .thank-you-for-your-join .thank-you-message {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-left: 32px;
  padding-right: 32px;
}
.happiness-art-contest__content .thank-you-for-your-join .thank-you-message br:last-child {
  display: block;
}
@media (min-width: 1024px) {
  .happiness-art-contest__content .thank-you-for-your-join .thank-you-message br:last-child {
    display: none;
  }
}
.happiness-art-contest__content .thank-you-for-your-join .thank-you-message:before, .happiness-art-contest__content .thank-you-for-your-join .thank-you-message:after {
  content: "";
  position: absolute;
  bottom: -18px;
  background-color: #333333;
  height: 32px;
  width: 2px;
}
.happiness-art-contest__content .thank-you-for-your-join .thank-you-message:before {
  transform: translateY(-50%) rotate(-45deg);
  left: 8px;
}
.happiness-art-contest__content .thank-you-for-your-join .thank-you-message:after {
  transform: translateY(-50%) rotate(45deg);
  right: 8px;
}
.happiness-art-contest__content .thank-you-for-your-join .closed-banner {
  max-width: 375px;
}
.happiness-art-contest__content .thank-you-for-your-join .closed-banner a {
  display: inline-block;
}
.happiness-art-contest__content .thank-you-for-your-join .please-wait-message {
  text-align: left;
}
@media (min-width: 768px) {
  .happiness-art-contest__content .thank-you-for-your-join .please-wait-message {
    text-align: center;
  }
}
.happiness-art-contest__content .opened-contests,
.happiness-art-contest__content .past-contests {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.happiness-art-contest__content .opened-contests .title,
.happiness-art-contest__content .past-contests .title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  line-height: 1.5;
  color: #009B63;
  text-align: left;
}
@media (min-width: 1024px) {
  .happiness-art-contest__content .opened-contests .title,
  .happiness-art-contest__content .past-contests .title {
    font-size: 1.5rem;
  }
}
.happiness-art-contest__content .opened-contests .opened-banner {
  max-width: 375px;
  margin-inline: auto;
}
.happiness-art-contest__content .opened-contests .opened-banner a {
  display: inline-block;
}
.happiness-art-contest__content .past-contests .accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.happiness-art-contest__content .past-contests .accordion-item {
  border: 2px solid #009B63;
  background-color: #F7FBF5;
  border-radius: 8px;
}
.happiness-art-contest__content .past-contests .accordion-item[open] .accordion-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_3927_15591)'%3E%3Cpath d='M0 13L-1.74846e-07 11L24 11L24 13L0 13Z' fill='%23009B63'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3927_15591'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.happiness-art-contest__content .past-contests .accordion-item[open] .accordion-summary {
  background-color: #F0FBD8;
}
.happiness-art-contest__content .past-contests .accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  list-style: none;
  border-radius: 8px;
}
.happiness-art-contest__content .past-contests .accordion-summary:hover {
  background-color: #F0FBD8;
}
.happiness-art-contest__content .past-contests .accordion-summary::-webkit-details-marker {
  display: none;
}
.happiness-art-contest__content .past-contests .accordion-label {
  font-size: 1.125rem;
}
.happiness-art-contest__content .past-contests .accordion-icon {
  display: inline-block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cg clip-path='url(%23clip0_3927_15599)'%3E%3Cpath d='M0 13L-1.74846e-07 11L24 11L24 13L0 13Z' fill='%23009B63'/%3E%3Cpath d='M11 0L13 -1.74846e-07L13 24L11 24L11 0Z' fill='%23009B63'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3927_15599'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.24s ease;
}
.happiness-art-contest__content .past-contests .accordion-panel {
  background-color: #F0FBD8;
  border-radius: 8px;
  padding: 0 24px 24px 24px;
}
.happiness-art-contest__content .past-contests .accordion-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .happiness-art-contest__content .past-contests .accordion-links {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .happiness-art-contest__content .past-contests .accordion-links-item {
    flex: 1;
  }
}
.happiness-art-contest__content .past-contests .accordion-links-item + .happiness-art-contest__accordion-links-item {
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .happiness-art-contest__content .past-contests .accordion-links-item + .happiness-art-contest__accordion-links-item {
    margin-top: 0;
  }
}
.happiness-art-contest__content .past-contests .accordion-links-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: #009B63;
  color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  border: 2px solid #009B63;
}
.happiness-art-contest__content .past-contests .accordion-links-item a:hover {
  background-color: #fff;
  color: #009B63;
}
.happiness-art-contest__content .past-contests .accordion-links-item a::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("../../assets/images/arrow-paper-white.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.happiness-art-contest__content .past-contests .accordion-links-item a:hover::after {
  background-image: url("../../assets/images/arrow-paper-accent.png");
}

/* ====================
 * プロジェクトゴール
 * ==================== */
@media (min-width: 1024px) {
  .project-goal {
    margin-top: 0;
  }
}
.project-goal__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .project-goal__header {
    align-items: center;
  }
}
.project-goal__header-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #009B63;
}
@media (min-width: 768px) {
  .project-goal__header-title {
    font-size: 3rem;
    text-align: center;
  }
}
.project-goal__header-desc {
  font-size: 1rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .project-goal__header-desc {
    text-align: center;
  }
}
.project-goal__main-image {
  display: block;
  margin-block: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .project-goal__main-image {
    margin-block: 48px;
  }
}
.project-goal__main-image img {
  max-width: 790px;
}
.project-goal__feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .project-goal__feature {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.project-goal__feature-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  border: 4px solid;
  background-color: #fff;
}
@media (min-width: 768px) {
  .project-goal__feature-item {
    padding-inline: 64px;
    flex: 0 0 calc((100% - 16px) / 2);
  }
}
.project-goal__feature-item--01 {
  border-color: #f1f396;
}
.project-goal__feature-item--01 .title img {
  width: 75px;
}
.project-goal__feature-item--02 {
  border-color: #d7f396;
}
.project-goal__feature-item--02 .title img {
  width: 59px;
}
.project-goal__feature-item--03 {
  border-color: #a0e594;
}
.project-goal__feature-item--03 .title img {
  width: 96px;
}
.project-goal__feature-item--04 {
  border-color: #bbf396;
}
@media (min-width: 768px) {
  .project-goal__feature-item--04 {
    padding-top: 37px;
    gap: 21px;
  }
}
.project-goal__feature-item .title {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}
@media (min-width: 768px) {
  .project-goal__feature-item .title {
    align-items: center;
  }
}
.project-goal__feature-item .title span {
  color: #009B63;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .project-goal__feature-item .title span {
    font-size: 1.25rem;
  }
}
.project-goal__feature-item .list-item {
  position: relative;
  padding-inline-start: 1.2em;
}
.project-goal__feature-item .list-item:before {
  position: absolute;
  inline-size: 0.5em;
  block-size: 0.5em;
  inset-inline-start: 0;
  inset-block-start: 0.45em;
  content: "";
  background-color: #009B63;
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
.project-goal__case-study {
  background-color: #f0fbd8;
  margin-right: -16px;
  margin-left: -16px;
  padding-inline: 16px;
  padding-block: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .project-goal__case-study {
    margin-right: inherit;
    margin-left: inherit;
    padding-inline: inherit;
    border-radius: 20px;
    padding-block: 80px;
  }
}
.project-goal__case-study-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .project-goal__case-study-header {
    max-width: 880px;
    margin-inline: auto;
  }
}
.project-goal__case-study-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #009B63;
  text-align: center;
}
@media (min-width: 768px) {
  .project-goal__case-study-title {
    font-size: 2rem;
  }
}
.project-goal__case-study-title br {
  display: block;
}
@media (min-width: 768px) {
  .project-goal__case-study-title br {
    display: none;
  }
}
.project-goal__case-study-title-desc {
  font-size: 1rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .project-goal__case-study-title-desc {
    text-align: center;
  }
}
.project-goal__case-study-list {
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .project-goal__case-study-list {
    max-width: 880px;
  }
}
.project-goal__case-study-list-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
}
@media (min-width: 768px) {
  .project-goal__case-study-list-item {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .project-goal__case-study-list-item .image {
    flex: 0 0 210px;
  }
}
.project-goal__case-study-list-item .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .project-goal__case-study-list-item .content {
    flex: 1 1 auto;
  }
}
.project-goal__case-study-list-item .title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #009B63;
}
.project-goal__case-study-list-item .text {
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hero__track {
    transform: translate3d(0, 0, 0);
  }
  .scroll-hero__skip-button {
    transition: none;
  }
  .scroll-hero__banner {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
@keyframes scroll-hero-banner-fade-in {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ====================
 * サイトフッター
 * ==================== */
.site-footer {
  background: #ffffff;
}
.site-footer__menu {
  padding-block: 48px;
}
.site-footer__menu-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .site-footer__menu-inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.site-footer__menu-title {
  font-size: 1.125rem;
  font-weight: bold;
}
.site-footer__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.4;
  margin-bottom: -16px;
}
.site-footer__title a {
  text-decoration: none;
}
.site-footer__title a:hover {
  text-decoration: underline;
}
.site-footer__title::after {
  display: inline-block;
  content: "";
  width: 32px;
  height: 32px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M3 17H27L22.2245 11' stroke='black' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  position: relative;
  top: 5px;
}
.site-footer__logo img {
  width: 100%;
  max-width: 262px;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.site-footer__col-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__list {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__list-item {
  display: flex;
  align-items: center;
}
.site-footer__list-item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 1px;
  background-color: #333333;
  margin-right: 8px;
}
.site-footer__list-item a {
  position: relative;
}
.site-footer__list-item a:hover {
  text-underline-offset: 0.3em;
  text-decoration: underline;
}
.site-footer__copyright {
  background-color: #009B63;
  color: #ffffff;
  padding-block: 16px;
}
.site-footer__copyright-text {
  font-size: 0.75rem;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .skip-link,
  .menu-overlay,
  .site-header__nav,
  .site-header__menu-toggle-line {
    transition-duration: 0.01ms;
  }
}
