@charset "UTF-8";
/*-----------------------------------------------------------
	#global-header
-----------------------------------------------------------*/
#global-header .back-btn {
  display: block;
}

#global-header .logo {
  width: 147.6px;
  margin: 20px 0;
}

#global-header .global-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 48px;
}

#global-header .global-header-wrap .menu ul {
  display: flex;
  column-gap: 25px;
}

#global-header .global-header-wrap .menu ul li a {
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #222222;
}

@media only screen and (min-width: 1001px) {
  .header-sp {
    display: none !important;
  }
}

@media screen and (max-width: 1000px) {
  .header-pc {
    display: none !important;
  }

  #global-header {
  }

  #global-header .logo {
    width: 100px;
  }

  #global-header .global-header-wrap {
    padding: 0 24px;
  }

  #global-header .logo .home a img {
    width: 283px;
    height: auto;
  }

  #global-header .menu-toggle {
    display: block;
    position: absolute;
    right: 24px;
    top: 0;
    z-index: 200;
  }

  #global-header.chg .menu-toggle {
    top: 4px;
  }

  #global-header .sp-menu {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 0 24px 32px;
    height: 100lvh;
    opacity: 0;
    overflow: auto;
    background-color: #222;
  }

  #global-header .sp-menu.show {
    display: block;
    animation: fadeIn 0.3s forwards;
    opacity: 0;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  #global-header .sp-menu ul {
    margin: 26px 0 0;
    padding: 0 16px;
  }

  #global-header .sp-menu ul li a {
    position: relative;
    display: block;
    padding: 12.5px 0;
    color: #fff;
    font-size: 0.9375em;
    font-weight: bold;
    text-decoration: none;
  }

  #global-header .sp-menu ul ul {
    padding: 0 5.5% 15px;
    display: none;
  }

  #global-header .sp-menu ul ul li {
    margin-top: 20px;
  }

  #global-header .sp-menu ul ul li a {
    font-size: 1.1875em;
  }
}

@media screen and (max-width: 768px) {
  #global-header .menu-toggle {
    top: 12px;
  }
}

/*-----------------------------------------------------------
	共通部分
-----------------------------------------------------------*/
.common-button {
  position: relative;
  width: 100%;
  max-width: 256px;
}

.common-button a {
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  line-height: 2.25;
  padding: 1px;
  border: 2px solid transparent;
  border-radius: 2em;
  background-color: transparent;
  text-align: center;

  will-change: transform;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
}

.common-button a span {
  position: relative;
  z-index: 10;
  color: #fff;
  will-change: transform;
}

.common-button a:after {
  will-change: transform;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #000;
  width: 100%;
  height: 100%;
  transition: position 200ms 0s ease-out;
  pointer-events: none;
}

.common-button:before {
  pointer-events: none;
  display: block;
  content: "";
  width: 1.445em;
  height: 1.445em;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  right: 0.55em;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s ease-out;
  z-index: 1;
}

.common-button:after {
  position: absolute;
  top: 50%;
  right: 0.9em;
  width: 11px;
  height: 11px;
  background: url(/sustainableproducts/lp/images/icon-lp-button.svg) right center / 11px no-repeat;
  transform: translate(0, -43%);
  content: "";
  z-index: 2;
}

@media only screen and (min-width: 769px) {
  /*hoverした際の形状*/
  body:not(.is-touch) .common-button a:hover span {
    color: #000;
  }

  body:not(.is-touch) .common-button a:hover {
    background-color: #fff;
    border: solid 2px #000;
  }
  body:not(.is-touch) .common-button a:hover:after {
    left: 100%;
    transition: all 0.25s ease-out 0s;
  }
  body:not(.is-touch) .common-button:hover:before {
    background-color: #000;
  }
  body:not(.is-touch) .common-button:hover:after {
    background: url(/sustainableproducts/lp/images/icon-lp-button_white.svg) right center / 11px no-repeat;
  }
}

.contact-banner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 42px;

  padding: 32px 100px;
  border-radius: 24px;
  background: linear-gradient(#e4f5ab, #bddc56);
}

.contact-banner h2 {
  line-height: 2;
  font-size: 2em;
  letter-spacing: 0.05em;
}

.contact-banner p {
  margin: 0 auto;
  line-height: 2;
  font-size: 1.125em;
  letter-spacing: 0.05em;
}

.contact-banner .common-button {
  margin: 24px 0 0;
}

.contact-banner figure {
  max-width: 310px;
}

@media only screen and (max-width: 768px) {
  .contact-banner {
    flex-direction: column-reverse;
    row-gap: 8px;

    padding: 32px 24px;
  }

  .contact-banner h2 {
    text-align: center;
    font-size: 1.375em;
  }

  .contact-banner p {
    font-size: 1.125em;
    margin: 6px auto 0;
  }

  .contact-banner figure {
    max-width: 450px;
  }

  .contact-banner .common-button {
    margin: 27px auto 0;
  }
}

/*-----------------------------------------------------------
	#top
-----------------------------------------------------------*/
#top {
  position: relative;
  background: url(/sustainableproducts/morimori/chikuhot/images/mv-bg.png) center center / 100% 100% no-repeat;
  overflow: hidden;
  position: relative;
}

#top .area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
}

#top .wrap {
  max-width: 540px;
  width: 37.5vw;
  opacity: 0;
}

#top .wrap h2 {
  font-size: 2.6875em;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

#top .wrap .sub-title {
  margin-top: 3px;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

#top .wrap .sub-title + p {
  margin: 24px auto 0;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

#top .wrap p + figure {
  margin-top: 32px;
  margin-left: -18px;
  max-width: 348px;
}

#top .catch {
  display: block;
  margin: 0;
  padding: 0;
  background: left center no-repeat transparent;
  background-size: contain;
  opacity: 0;
}

#top .top-fixed-button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 242px;
  bottom: 111px;
  right: 32px;
  border-radius: 16px;
  /* background-color: #E72C0F; */
  opacity: 0;
  overflow: hidden;
}

#top .top-fixed-button::before {
  will-change: transform;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #e72c0f;
  width: 100%;
  height: 100%;
  transition: position 200ms 0s ease-out;
  pointer-events: none;
}

#top .top-fixed-button a {
  display: block;
  padding: 22px 0;
}

#top .top-fixed-button span {
  position: relative;
  color: #fff;
  font-size: 1.125em;
  font-weight: 400;
  padding-right: 28px;
  letter-spacing: 0.05em;
}

#top .top-fixed-button span:before {
  pointer-events: none;
  display: block;
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  right: -3px;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

#top .top-fixed-button span::after {
  pointer-events: none;
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  z-index: 3;
  transition: border 0.2s ease-out;
}

@media only screen and (min-width: 768px) {
  body:not(.is-touch) #top .top-fixed-button:hover {
    background-color: #fff;
    border: 1px solid #e72c0f;
  }
  body:not(.is-touch) #top .top-fixed-button:hover span {
    color: #e72c0f;
  }
  body:not(.is-touch) #top .top-fixed-button:hover:before {
    left: 100%;
    transition: all 0.25s ease-out 0s;
  }
  body:not(.is-touch) #top .top-fixed-button:hover span::before {
    border: 1px solid #e72c0f;
  }
  body:not(.is-touch) #top .top-fixed-button:hover span::after {
    border-top: 1px solid #e72c0f;
    border-right: 1px solid #e72c0f;
  }
}

@media only screen and (min-width: 1001px) {
  #top {
    height: 717px;
  }

  #top .area {
    max-width: 1285px;
  }

  #top .catch {
    position: absolute;
    right: 1%;
    top: 0;
    width: 606px;
    height: 652px;
  }
}

@media only screen and (max-width: 1000px) {
  #top {
    height: 874px;
    background: url(/sustainableproducts/morimori/chikuhot/images/mv-bg_sp.png) center center / 100% 100% no-repeat;
  }
  #top .area {
    height: auto;
    padding: 86px 0 0;
    flex-direction: column;
    overflow: hidden;
  }

  #top .wrap {
    width: 100%;
    max-width: 450px;
    margin-top: 30px;
    padding: 0 24px;
  }

  #top .wrap h2 {
    font-size: 1.75em;
  }

  #top .wrap .sub-title {
    margin-top: 5px;
    font-size: 1.25em;
  }

  #top .wrap .sub-title + p {
    margin: 15px auto 0;
  }

  #top .wrap p + figure {
    margin-top: 21px;
    margin-left: -18px;
    max-width: 400px;
  }

  #top .catch {
    width: 100%;
    height: 221px;
    background-position: center top;
  }

  #top .top-fixed-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 48px);
    max-width: 400px;
    height: 61px;
    bottom: 0;
    right: 0;
    margin: 30px auto 0;
  }

  #top .top-fixed-button a {
    display: block;
    width: 100%;
    text-align: center;
  }

  #top .top-fixed-button span {
    display: block;
    width: 100%;
    padding-left: 0;
  }

  #top .top-fixed-button span:before {
    right: 20px;
  }

  #top .top-fixed-button span::after {
    right: 29px;
  }
}

/*-----------------------------------------------------------
	#theme
-----------------------------------------------------------*/
#theme .area {
  padding: 120px 0 0;
  display: flex;
  justify-content: space-between;
}

#theme .wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

#theme .wrap .sec-title {
  text-align: center;
}

#theme .wrap .sec-title h2 {
  font-size: 2.875em;
  line-height: 1.2;
}

#theme .wrap .sec-title h2 + p {
  margin-top: 12px;
  font-weight: 700;
}

#theme .wrap .sec-inner > p {
  margin-top: 48px;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

#theme .wrap ul {
  display: flex;
  margin-top: 48px;
  column-gap: 54px;
}

#theme .wrap ul li {
  display: flex;
  flex-direction: column;
  align-items: center;

  width: calc(100% / 3);
  background: linear-gradient(#e4f5ab, #bddc56);
  border-radius: 64px 64px 64px 0;
  padding: 32px;
}

#theme .wrap ul li h3 {
  margin-top: 8px;
  font-size: 1.75em;
  line-height: 1.6;
}

#theme .wrap ul li p {
  margin-top: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  #theme .area {
    padding: 76px 0 0;
  }

  #theme .wrap .sec-title h2 {
    font-size: 2.5em;
  }

  #theme .wrap .sec-title h2 + p {
    margin-top: 15px;
  }

  #theme .wrap .sec-inner > p {
    margin-top: 35px;
    line-height: 2;
    text-align: left;
  }

  #theme .wrap ul {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    row-gap: 20px;
  }

  #theme .wrap ul li {
    width: 100%;
    padding: 24px 32px;
    border-radius: 64px 64px 64px 0;
  }

  #theme .wrap ul li .list-num img {
    height: 52px;
    width: auto;
  }

  #theme .wrap ul li h3 {
    margin-top: 6px;
    font-size: 1.5em;
  }

  #theme .wrap ul li p {
    margin-top: 12px;
  }
}

/*-----------------------------------------------------------
	#personality
-----------------------------------------------------------*/
#personality .area {
  margin-top: 64px;
}

#personality .wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 54px 60px 0;
  border-top: 1px solid #000;
}

#personality .wrap .sec-title {
  text-align: center;
}

#personality .wrap .sec-title h2 {
  font-size: 2.25em;
  line-height: 1.2;
}

#personality .wrap .sec-title h2 + p {
  margin-top: 14px;
  font-weight: 700;
}

#personality .wrap ul {
  display: flex;
  column-gap: 60px;
  margin-top: 36px;
}

#personality .wrap ul li {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 32px;
  width: calc(50% - 30px);
}

#personality .wrap ul li figure {
  max-width: 140px;
}

#personality .wrap ul li > div {
  flex: 1;
}

#personality .wrap ul li p {
  margin-top: 4px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

#personality .wrap ul li p:has(b) {
  margin-top: 0;
  font-size: 1.3125em;
}

@media only screen and (max-width: 768px) {
  #personality .area {
    margin-top: 30px;
    padding: 0 24px;
  }

  #personality .wrap {
    padding: 33px 0 0;
  }

  #personality .wrap {
    padding: 33px 0 0;
  }

  #personality .wrap .sec-title h2 + p {
    margin-top: 10px;
  }

  #personality .wrap ul {
    flex-direction: column;
    margin-top: 34px;
    row-gap: 20px;
  }

  #personality .wrap ul li {
    width: 100%;
    column-gap: 24px;
  }

  #personality .wrap ul li figure {
    max-width: 120px;
  }

  #personality .wrap ul li p {
    margin-top: 4px;
    font-size: 0.875em;
  }

  #personality .wrap ul li p:has(b) {
    font-size: 1.1875em;
  }
}

/*-----------------------------------------------------------
	#contact
-----------------------------------------------------------*/
#contact .area {
  margin-top: 60px;
}

#contact .wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0 0;
  border-top: 1px solid #000;
}

#contact .wrap > p {
  font-size: 1.3125em;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.8;
}

#contact .wrap > a {
  display: flex;
  justify-content: center;
  text-decoration: underline;
  margin-top: 14px;
  color: #000;
}

#contact .wrap > a span {
  position: relative;
  padding-left: 75px;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #000;
}

#contact .wrap > a span:after {
  position: absolute;
  top: 43%;
  left: 20px;
  width: 32px;
  height: 32px;
  background: url(/sustainableproducts/shared/images/icon-lp-mail.svg) right center / 32px no-repeat;
  transform: translate(0, -43%);
  content: "";
  z-index: 2;
}

#contact .wrap > a span:before {
  pointer-events: none;
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  transition: background 0.2s ease-out;
  z-index: 1;
}

#contact .contact-banner {
  margin: 83px auto 0;
}

@media only screen and (min-width: 769px) {
  /*hoverした際の形状*/
  body:not(.is-touch) #contact .wrap dl dd a:hover {
    text-decoration: none;
  }

  body:not(.is-touch) #contact .wrap > a:hover {
    text-decoration: none;
  }
}

@media only screen and (max-width: 768px) {
  #contact .area {
    margin-top: 38px;
    padding: 0 24px;
  }

  #contact .wrap {
    padding: 32px 0 0;
  }

  #contact .wrap > p {
    font-size: 1.1875em;
  }

  #contact .wrap > a {
    display: flex;
    justify-content: center;
    text-decoration: underline;
    margin-top: 16px;
  }
}

/*-----------------------------------------------------------
	#archive
-----------------------------------------------------------*/
#archive {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0) 7vw, #e4f5ab 7vw, #bddc56 100%), url(/sustainableproducts/shared/images/archive_back.png) center top;
  background-repeat: repeat-x;
  background-size: 100%;
  margin-top: 120px;
  padding-bottom: 100px;
}

#archiveTarget {
  position: relative;
  top: 100px;
}

#archive .area {
  width: 100%;
  max-width: 1240px;
  padding: 237px 20px 120px;
}

#archive .wrap .sec-title {
  text-align: center;
}

#archive .wrap .sec-title h2 {
  font-size: 2.875em;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

#archive .wrap .sec-title h2 + p {
  margin-top: 20px;
  font-weight: 700;
}

#archive .wrap > p {
  margin-top: 48px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}

#archive .wrap ul {
  margin-top: 54px;
}

#archive .wrap ul li + li {
  margin-top: 60px;
  padding-top: 63px;
  border-top: 1px solid #fff;
}

#archive .wrap ul li .archive-date {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

#archive .wrap ul li .archive-date span {
  position: relative;
  padding: 13px 24px 11px;
  border-radius: 100px;
  color: #fff;
  background-color: #e72c0f;
  font-size: 1.125em;
}

#archive .wrap ul li .archive-date span::before {
  position: absolute;
  bottom: -11px;
  left: 50%;
  width: 18px;
  height: 12px;
  transform: translateX(-50%);
  background: url(/sustainableproducts/morimori/chikuhot/images/archive-date.svg) center center no-repeat;
  content: "";
}

#archive .wrap ul li h3 {
  padding-top: 26px;
  font-size: 2em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}

#archive .wrap ul li .movie-block {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  column-gap: 28px;
}

#archive .wrap ul li .movie-block .shanon-tag,
#archive .wrap ul li .movie-block:not(:has(.shanon-tag)) > div {
  width: calc(50% - 14px);
  height: auto;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 24px;
}

#archive .wrap ul li .movie-block .shanon-tag > div {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

#archive .wrap ul li .movie-block .shanon-tag div > iframe,
#archive .wrap ul li .movie-block:not(:has(.shanon-tag)) div > iframe {
  /* width: calc(50% - 14px); */
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

#archive .wrap ul li p {
  margin-top: 40px;
  font-size: 1.125em;
  line-height: 2;
  letter-spacing: 0.05em;
}

#archive .wrap ul li a {
  display: flex;
  text-decoration: underline;
  margin-top: 14px;
  font-size: 1.125em;
  color: #000;
}

#archive .wrap ul li a:hover {
  text-decoration: none;
}

#archive .wrap ul li a + a {
  margin-top: 20px;
}

#archive .wrap ul li a.external {
  position: relative;
  width: fit-content;
  padding-right: 25px;
  text-decoration: none;
}

#archive .wrap ul li a.external::before{
  position: absolute;
  top: 50%;
  right: 0;
  width: 26px;
  height: 26px;
  background: url(/sustainableproducts/shared/images/icon-external.png) right center / 26px no-repeat;
  transform: translate(0, -43%);
  content: '';
}

#archive .wrap ul li a.external::after{
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #222;
  transform-origin: left top;
  transition: all .3s ease;
  content: '';
}

#archive .wrap ul li a.external:hover:after{
  content: none;
}

#archive .wrap .link-button,
#archive .wrap .more-button {
  position: relative;
  width: 17.75em;
  display: block;
  margin-top: 59px;
  margin-left: auto;
  margin-right: auto;
  will-change: transform;
  pointer-events: none;
  text-align: center;
}
#archive .wrap .link-button a span,
#archive .wrap .more-button a span {
  position: relative;
  z-index: 10;
  color: #fff;
  will-change: transform;
}

#archive .wrap .link-button a,
#archive .wrap .more-button a {
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  line-height: 2.75;
  padding: 1px;
  border: 2px solid transparent;
  border-radius: 2em;
  background-color: transparent;
  /* slide */
  will-change: transform;
  position: relative;
  overflow: hidden;
  pointer-events: auto;
}

#archive .wrap .link-button a:after,
#archive .wrap .more-button a:after {
  will-change: transform;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #000;
  width: 100%;
  height: 100%;
  transition: position 200ms 0s ease-out;
  pointer-events: none;
}

#archive .wrap .link-button:before {
  pointer-events: none;
  display: block;
  content: "";
  /* width: 1.7777778em;
  height: 1.7777778em; */
  width: 1.625em;
  height: 1.625em;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  /*right: 0.75em;*/
  right: 0.7em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  transition: background 0.2s ease-out;
}
#archive .wrap .link-button:after {
  pointer-events: none;
  display: block;
  content: "";
  width: 0.4em;
  height: 0.4em;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  right: 1.4em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 3;
  transition: border 0.2s ease-out;
}

#archive .wrap .more-button .icon-plus {
  pointer-events: none;
  display: block;
  content: "";
  width: 1.625em;
  height: 1.625em;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  /* right: 0.75em; */
  right: 0.7em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  transition: background 0.2s ease-out;
}

#archive .wrap .more-button .icon-plus:before,
#archive .wrap .more-button .icon-plus:after {
  pointer-events: none;
  display: block;
  content: "";
  position: absolute;
  inset: 50%;
  width: 0.625em;
  height: 2px;
  background-color: #000;
  z-index: 3;
  transform: translate(-50%);
  transition: background-color 0.2s ease-out;
}
#archive .wrap .more-button .icon-plus:after {
  transform: translate(-50%) rotate(90deg);
}

@media only screen and (min-width: 769px) {
  /*hoverした際の形状*/
  body:not(.is-touch) #archive .wrap .link-button a:hover span,
  body:not(.is-touch) #archive .wrap .more-button a:hover span {
    color: #000;
  }

  body:not(.is-touch) #archive .wrap .link-button a:hover,
  body:not(.is-touch) #archive .wrap .more-button a:hover {
    background-color: #fff;
    border: solid 2px #000;
  }
  body:not(.is-touch) #archive .wrap .link-button a:hover:after,
  body:not(.is-touch) #archive .wrap .more-button a:hover:after {
    left: 100%;
    transition: all 0.25s ease-out 0s;
  }
  body:not(.is-touch) #archive .wrap .link-button:hover:before {
    background-color: #000;
  }
  body:not(.is-touch) #archive .wrap .link-button:hover:after {
    border-top-color: #fff;
    border-right-color: #fff;
  }
  body:not(.is-touch) #archive .wrap .more-button:hover .icon-plus {
    background-color: #000;
  }
  body:not(.is-touch) #archive .wrap .more-button:hover .icon-plus::before,
  body:not(.is-touch) #archive .wrap .more-button:hover .icon-plus::after {
    background-color: #fff;
  }
}

@media only screen and (max-width: 768px) {
  #archive {
    background: linear-gradient(rgba(0, 0, 0, 0) 7.5vw, #e4f5ab 7.5vw, #bddc56 100%), url(/sustainableproducts/shared/images/archive_back_sp.png) center top;
    background-repeat: repeat-x;
    background-size: 100%;
    margin-top: 80px;
    padding-bottom: 67px;
  }

  #archiveTarget {
    top: 50px;
  }

  #archive .area {
    max-width: 450px;
    padding: 105px 24px 0;
  }

  #archive .wrap .sec-title h2 {
    font-size: 2.5em;
  }

  #archive .wrap .sec-title h2 + p {
    margin-top: 20px;
  }

  #archive .wrap > p {
    margin-top: 34px;
    text-align: left;
  }

  #archive .wrap ul {
    margin-top: 33px;
  }

  #archive .wrap ul li + li {
    margin-top: 38px;
  }

  #archive .wrap ul li .archive-date span {
    padding: 16px 24px 14px;
  }

  #archive .wrap ul li h3 {
    padding-top: 25px;
    font-size: 1.5em;
    letter-spacing: 0.04em;
  }

  #archive .wrap ul li .movie-block {
    flex-direction: column;
    margin-top: 22px;
    row-gap: 24px;
  }

  #archive .wrap ul li .movie-block .shanon-tag,
  #archive .wrap ul li .movie-block .shanon-tag div > iframe,
  #archive .wrap ul li .movie-block:not(:has(.shanon-tag)) > div,
  #archive .wrap ul li .movie-block:not(:has(.shanon-tag)) > div > iframe {
    width: 100%;
  }

  #archive .wrap ul li p {
    margin-top: 26px;
    font-size: 1em;
  }

  #archive .wrap ul li a {
    text-decoration: underline;
    font-size: 1em;
    margin-top: 15px;
  }

  #archive .wrap .more-button {
    margin: 75px auto 0;
    height: auto;
  }

  #archive .wrap .more-button a span {
    font-size: 1em;
    padding-right: 23px;
  }

  #archive .wrap .more-button a span::after {
    top: 45%;
  }
}

/*-----------------------------------------------------------
	#global-footer
-----------------------------------------------------------*/
#global-footer {
  position: relative;
  width: 100%;
  height: 100%;
}

#global-footer::before {
  position: absolute;
  width: 100%;
  height: 120px;
  top: -100px;
  left: 0;
  content: "";

  background: linear-gradient(rgba(0, 0, 0, 0) 120px, #fff 120px), url(/sustainableproducts/shared/images/footer_back.png) center top;
  background-repeat: repeat-x;
  background-size: 100% 100%;
}

#global-footer .wrap {
  height: 100px;
}

#global-footer .contact-banner {
  margin: 120px auto;
}

@media only screen and (max-width: 768px) {
  #global-footer::before {
    top: -25px;
    height: 25px;
  }

  #global-footer .wrap {
    height: auto;
  }

  #global-footer .contact-banner {
    max-width: 450px;
    margin: 70px auto 96px;
  }
}

.waves {
  position: absolute;
  top: 50px;
  z-index: 10;
  width: 100%;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}
@media (max-width: 768px) {
  .waves {
    top: 30px;
    height: 50px;
    min-height: 50px;
  }
}

.waves2 {
  position: absolute;
  top: auto;
  bottom: 0px;
  z-index: 10;
  width: 100%;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 130px;
  max-height: 170px;
}
@media (max-width: 768px) {
  .waves2 {
    bottom: 0;
    height: 50px;
    min-height: 50px;
  }
}

.waves3 {
  position: absolute;
  top: 80px;
  z-index: 10;
  width: 100%;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}
@media (max-width: 768px) {
  .waves3 {
    top: 20px;
    height: 50px;
    min-height: 50px;
  }
}

.waves4 {
  position: absolute;
  bottom: 0px;
  z-index: 10;
  width: 100%;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

@media (max-width: 768px) {
  .waves4 {
    bottom: 0px;
    height: 40px;
    min-height: 40px;
  }
}

.waves5 {
  position: absolute;
  top: 80px;
  z-index: 10;
  width: 100%;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 120px;
  max-height: 170px;
}
@media (max-width: 768px) {
  .waves5 {
    top: 20px;
    height: 60px;
    min-height: 60px;
  }
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/*-----------------------------------------------------------
	archive-page上書き
-----------------------------------------------------------*/
.chikuhot-archive #top {
  height: 500px;
}

.chikuhot-archive #top .area {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chikuhot-archive #top .area .wrap {
  padding: 21px 0 120px;
  opacity: 1;
}

.chikuhot-archive #top .area h2 {
  font-size: 3.75em;
  text-align: center;
}

.chikuhot-archive #top .wrap .sub-title {
  margin-top: 9px;
  font-size: 1em;
  text-align: center;
}

.chikuhot-archive #top .wrap .sub-title + p {
  margin: 30px auto 0;
  text-align: center;
}

.chikuhot-archive #archive {
  margin-top: -161px;
}

.chikuhot-archive #archive .area {
  padding: 255px 20px 120px;
}

.chikuhot-archive #archive .archive-sort .archive-title {
  font-size: 1.3125em;
  font-weight: 500;
  text-align: center;
}

.chikuhot-archive #archive .archive-sort .archive-title span {
  position: relative;
}

.chikuhot-archive #archive .archive-sort .archive-title span::before {
  position: absolute;
  top: 54%;
  left: -34px;
  width: 32px;
  height: 32px;
  background: url(/sustainableproducts/shared/images/icon_sort.svg) center center / cover no-repeat;
  content: "";
  transform: translateY(-50%);
}

.chikuhot-archive #archive .archive-sort .archive-block:first-of-type {
  margin: 16px 0 0;
  border-top: 1px solid #000;
}

.chikuhot-archive #archive .archive-sort .archive-block:last-of-type {
  border-bottom: 1px solid #000;
  padding: 0 0 20px;
}

.chikuhot-archive #archive .archive-sort .archive-block + .archive-block {
  margin: 24px 0 0;
}

.chikuhot-archive #archive .archive-sort .archive-block p {
  font-size: 1em;
  font-weight: 700;
}

.chikuhot-archive #archive .archive-sort .archive-block p + ul {
  margin-top: 12px;
}

.chikuhot-archive #archive .archive-sort .archive-block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 6px;
  margin: 20px 0 0;
}

.chikuhot-archive #archive .archive-sort .archive-block ul li {
  width: calc(100% / 6 - 5px);
}

.chikuhot-archive #archive .archive-sort .archive-block ul li + li {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.chikuhot-archive #archive .archive-sort .archive-block ul li input[type="radio"] {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.chikuhot-archive #archive .archive-sort .archive-block ul li input[type="radio"] + label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 13px 15px;
  border-radius: 999px;
  border: 1px solid #e72c0f;
  font-weight: 700;
  color: #e72c0f;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chikuhot-archive #archive .archive-sort .archive-block ul li input[type="radio"]:checked + label {
  color: #fff;
  background-color: #e72c0f;
}

.chikuhot-archive #archive .wrap ul {
  margin-top: 64px;
}

.chikuhot-archive #archive .wrap ul li.is-hide + li {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

@media only screen and (min-width: 769px) {
  body:not(.is-touch) .chikuhot-archive #archive .archive-sort .archive-block ul li:hover input[type="radio"] + label {
    color: #fff;
    background-color: #e72c0f;
  }
}

@media only screen and (max-width: 768px) {
  .chikuhot-archive #top {
    height: 437px;
  }

  .chikuhot-archive #top .area .wrap {
    margin: 3px 0 0;
    padding: 0 20px;
  }

  .chikuhot-archive #top .area h2 {
    font-size: 2.5em;
  }

  .chikuhot-archive #top .wrap .sub-title {
    margin-top: 10px;
  }

  .chikuhot-archive #archive {
    margin-top: -142px;
  }

  .chikuhot-archive #archive .area {
    padding: 120px 20px 0;
  }

  .chikuhot-archive #archive .archive-sort .archive-title {
    font-size: 1.3125em;
    text-align: center;
  }

  .chikuhot-archive #archive .archive-sort .archive-block:first-of-type {
    margin: 20px 0 0;
  }

  .chikuhot-archive #archive .archive-sort .archive-block ul {
    margin-top: 23px;
    gap: 8px 4px;
  }

  .chikuhot-archive #archive .archive-sort .archive-block p + ul {
    margin-top: 10px;
  }

  .chikuhot-archive #archive .archive-sort .archive-block ul li {
    width: calc(100% / 3 - 3px);
  }

  .chikuhot-archive #archive .wrap ul {
    margin-top: 80px;
  }

  .chikuhot-archive #archive .archive-sort .archive-block ul li input[type="radio"] + label {
    padding: 12px 15px;
  }
}
