@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #000000;
}

input[type=text],
input[type=submit] {
  -webkit-appearance: none;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

html {
  font-size: 625%;
}

body {
  font-size: 0.14em;
  letter-spacing: 0.06em;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

:root {
  --primary-color: #0DB69B;
  --black-color: #262626;
  /* ... 他の色変数 */
}

body {
  background-color: #fff;
  color: #262626;
}

.pc-only {
  display: none;
}
@media screen and (min-width: 769px) {
  .pc-only {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.inview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

header {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 9999;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  header {
    height: 100px;
    padding: 0 0 0 20px;
    background-color: #fff;
  }
}
header h1 img {
  width: 180px;
  height: auto;
}
@media screen and (min-width: 769px) {
  header h1 img {
    width: 316px;
  }
}
header > div {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) {
  header > div {
    display: none;
  }
}
header > div .sp-menu {
  position: relative;
  z-index: 10001;
}
header > div .sp-menu p {
  font-size: 0.1rem;
  font-weight: 700;
}
header > div .sp-menu > span {
  display: block;
  height: 1px;
  background-color: #26479D;
  margin: 4px auto;
  transition: all 0.3s ease;
}
header > div .sp-menu > span:nth-child(1) {
  width: 23px;
}
header > div .sp-menu > span:nth-child(2) {
  width: 19px;
}
header > div .sp-menu > span:nth-child(3) {
  width: 15px;
}
header > div .sp-menu.active > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header > div .sp-menu.active > span:nth-child(2) {
  opacity: 0;
}
header > div .sp-menu.active > span:nth-child(3) {
  width: 23px;
  transform: translateY(-3px) rotate(-45deg);
}
header > div .menu-open {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background-color: var(--primary-color);
  padding: 16px 20px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  transition: 0.5s;
}
header > div .menu-open:before {
  position: fixed;
  top: 0;
  left: calc(-100vw + 280px);
  content: "";
  display: block;
  width: calc(100vw - 280px);
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  filter: blur(10px);
  transition: 0.5s;
}
header > div .menu-open.is-open {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
}
header > div .menu-open.is-open:before {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
}
header > div .menu-open h2 {
  font-size: 0.2rem;
  margin-bottom: 32px;
}
@media screen and (min-width: 769px) {
  header > div .menu-open h2 {
    display: none;
  }
}
header > div .menu-open .header-tel {
  margin-left: -20px;
}
header > div .menu-open .header-tel img {
  width: 280px;
}
header > div .menu-open > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
header > div .menu-open > ul > li > a, header > div .menu-open > ul > li h3 {
  font-size: 0.12rem;
  text-decoration: none;
  color: #fff;
  position: relative;
  display: block;
  padding: 14px 0;
}
header > div .menu-open > ul > li > a:before, header > div .menu-open > ul > li h3:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(-45deg) translate(0px, -7px);
}
header > div .menu-open > ul > li > a > span, header > div .menu-open > ul > li h3 > span {
  display: block;
  font-size: 0.14rem;
}
header > div .menu-open > ul > li h3:before {
  transform: rotate(45deg) translate(-7px, -5px);
}
header > div .menu-open > ul > li > ul li {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
header > div .menu-open > ul > li > ul li > a, header > div .menu-open > ul > li > ul li h3 {
  font-size: 0.14rem;
  text-decoration: none;
  color: #fff;
  position: relative;
  display: block;
  padding: 14px 0 14px 1em;
}
header > div .menu-open > ul > li > ul li > a:before, header > div .menu-open > ul > li > ul li h3:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(-45deg) translate(0px, -7px);
}
header .pc-menu {
  position: relative;
}
header .pc-menu > ul {
  display: flex;
  gap: 40px;
}
header .pc-menu > ul > li > a, header .pc-menu > ul > li > h3 {
  color: #262626;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  font-size: 0.1rem;
  cursor: pointer;
  position: relative;
}
header .pc-menu > ul > li > a > span, header .pc-menu > ul > li > h3 > span {
  font-size: 0.14rem;
}
header .pc-menu > ul > li > a:after, header .pc-menu > ul > li > h3:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #262626;
  bottom: 30px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
header .pc-menu > ul > li > a:hover::after, header .pc-menu > ul > li > h3:hover::after {
  transform: scale(1, 1);
}
header .pc-menu > ul > li > a.header-tel:after, header .pc-menu > ul > li > h3.header-tel:after {
  display: none;
}
header .pc-menu > ul > li > ul {
  display: none;
  position: fixed;
  left: 0;
  top: 100px;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  padding: 20px 0;
}
header .pc-menu > ul > li > ul.show {
  display: flex;
  gap: 24px;
}
header .pc-menu > ul > li > ul li a {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  color: #262626;
  font-size: 0.14rem;
  gap: 10px;
}
header .pc-menu > ul > li > ul li a figure {
  width: 200px;
}
header .pc-menu > ul > li > ul li a figure img {
  width: 100%;
  height: auto;
}
header.white {
  background: none;
}
header.white h1 img {
  filter: brightness(1000);
}
header.white .sp-menu {
  filter: brightness(1000);
}
header.white .pc-menu > ul > li > a, header.white .pc-menu > ul > li > h3 {
  color: #fff;
}
header.white .pc-menu > ul > li > a:after, header.white .pc-menu > ul > li > h3:after {
  background: #fff;
}

.bread {
  padding: 1em 24px;
}
.bread ul {
  list-style: none;
}
.bread li {
  display: inline;
}
.bread li a {
  color: inherit;
  text-decoration: none;
}
.bread li + li:before {
  content: ">";
  margin: 0.5em;
}

footer {
  background-color: var(--primary-color);
}
footer .container {
  padding: 40px 24px;
}
@media screen and (min-width: 769px) {
  footer .container {
    padding: 60px 10vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
footer .container .footer-left {
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  footer .container .footer-left {
    margin: 0;
  }
}
footer .container .footer-left h1 a img {
  filter: brightness(1000);
}
footer .container .footer-center {
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  footer .container .footer-center {
    margin: 0;
  }
}
footer .container .footer-center ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .container .footer-center ul li a {
  color: #fff;
  position: relative;
}
footer .container .footer-center ul li a:after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -4px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
footer .container .footer-center ul li a:hover::after {
  transform: scale(1, 1);
}
footer .container .footer-right h2 {
  font-size: 0.18rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  footer .container .footer-right h2 {
    font-size: 0.24rem;
  }
}
footer .container .footer-right .footer-tel {
  margin-bottom: 24px;
  display: inline-block;
}
footer .container .footer-right .footer-mail {
  border: 1px solid #fff;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}
footer .container .footer-right .footer-mail span {
  color: #fff;
  transition: 0.3s;
}
footer .container .footer-right .footer-mail svg {
  transition: 0.3s;
}
footer .container .footer-right .footer-mail svg path {
  transition: 0.3s;
}
footer .container .footer-right .footer-mail:hover {
  background-color: #fff;
}
footer .container .footer-right .footer-mail:hover span {
  color: var(--primary-color);
}
footer .container .footer-right .footer-mail:hover svg path {
  fill: var(--primary-color);
}
footer .copy-right {
  background-color: #fff;
  font-size: 0.1rem;
  color: #262626;
  text-align: center;
  padding: 8px;
}

#top {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-background {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
}

.top-content h1 {
  font-size: 0.42rem;
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  text-align: center;
  text-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .top-content h1 {
    font-size: 0.72rem;
  }
}
.top-content h1 span {
  font-size: 0.16rem;
  font-weight: 400;
  text-shadow: var(--shadow-light);
  display: block;
}

.top-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: var(--shadow-light);
}

.scroll-icon {
  display: inline-block;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-icon img {
  width: 60px;
}
@media screen and (min-width: 769px) {
  .scroll-icon img {
    width: 100px;
  }
}

.scroll-btn:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

#home-aboutus {
  background-image: url(../images/aboutus-bg.svg);
  background-size: auto 60px;
  background-repeat: no-repeat;
  background-position: left top;
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #home-aboutus {
    padding: 160px 10vw;
    background-size: auto 120px;
    background-position: left 10vw top;
  }
}
#home-aboutus h2 {
  font-size: 0.21rem;
  font-weight: bold;
  margin-bottom: 2em;
}
@media screen and (min-width: 769px) {
  #home-aboutus h2 {
    font-size: 0.32rem;
  }
}
#home-aboutus ul {
  display: flex;
  flex-direction: column;
  gap: 8vw;
}
@media screen and (min-width: 769px) {
  #home-aboutus ul {
    flex-direction: row;
    align-items: start;
  }
}
#home-aboutus ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#home-aboutus ul li h3 {
  font-size: 0.18rem;
  font-weight: bold;
}

#home-cando {
  background-color: #EDEDED;
  background-image: url(../images/cando-bg.svg);
  background-size: auto 60px;
  background-repeat: no-repeat;
  background-position: left top;
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #home-cando {
    padding: 160px 10vw;
    background-size: auto 120px;
    background-position: left 10vw top;
  }
}
#home-cando h2 {
  font-size: 0.21rem;
  font-weight: bold;
  margin-bottom: 2em;
}
@media screen and (min-width: 769px) {
  #home-cando h2 {
    font-size: 0.32rem;
  }
}
#home-cando .service-item {
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #home-cando .service-item {
    display: flex;
    align-items: start;
    flex-direction: row-reverse;
    margin-bottom: 120px;
  }
}
#home-cando .service-item .service-content {
  background-color: #fff;
  padding: 20px;
  position: relative;
  z-index: 1;
  text-align: right;
}
@media screen and (min-width: 769px) {
  #home-cando .service-item .service-content {
    width: 50%;
    padding: 32px;
  }
}
#home-cando .service-item .service-content h3 {
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 1em;
  text-align: left;
}
@media screen and (min-width: 769px) {
  #home-cando .service-item .service-content h3 {
    font-size: 0.24rem;
  }
}
#home-cando .service-item .service-content p {
  text-align: left;
}
@media screen and (min-width: 769px) {
  #home-cando .service-item .service-content p {
    font-size: 0.16rem;
  }
}
#home-cando .service-item .service-content a {
  font-size: 0.16rem;
  font-weight: bold;
  background-image: url(../images/link-arrow.svg);
  background-repeat: no-repeat;
  background-position: right center;
  padding: 4px 32px 4px 0;
  margin-top: 1.5em;
  display: inline-block;
  transition: 0.3s;
}
#home-cando .service-item .service-content a:hover {
  padding-right: 37px;
  transform: translate(5px, 0);
}
#home-cando .service-item .service-image {
  transform: translate(20px, -20px);
}
@media screen and (min-width: 769px) {
  #home-cando .service-item .service-image {
    width: 50%;
    transform: translate(20px, 60px);
  }
}
#home-cando .service-item .service-image img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  #home-cando .service-item:nth-child(2n) {
    flex-direction: row;
  }
}
#home-cando .service-item:nth-child(2n) .service-image {
  transform: translate(-20px, -20px);
}
@media screen and (min-width: 769px) {
  #home-cando .service-item:nth-child(2n) .service-image {
    transform: translate(-20px, 60px);
  }
}
#home-cando .service-item:nth-child(2n) .service-image img {
  width: 100%;
  height: auto;
}

#home-eco-smile {
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #home-eco-smile {
    padding: 120px 10vw;
  }
}
#home-eco-smile:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}
#home-eco-smile > div:first-child {
  margin-bottom: 2em;
  width: 100%;
  text-align: center;
}
#home-eco-smile h2 {
  font-size: 0.28rem;
  font-weight: bold;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #home-eco-smile h2 {
    font-size: 0.38rem;
    gap: 12px;
  }
}
#home-eco-smile h2 span {
  font-size: 0.16rem;
  font-weight: 500;
  opacity: 0.9;
}
@media screen and (min-width: 769px) {
  #home-eco-smile h2 span {
    font-size: 0.18rem;
  }
}
#home-eco-smile > div p {
  font-size: 0.16rem;
  margin-bottom: 0;
  line-height: 1.6;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #home-eco-smile > div p {
    font-size: 0.18rem;
  }
}
#home-eco-smile .eco-smile-content {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
}
@media screen and (min-width: 769px) {
  #home-eco-smile .eco-smile-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
    padding: 40px;
    max-width: 480px;
  }
}
@media screen and (min-width: 769px) {
  #home-eco-smile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  #home-eco-smile > div {
    grid-column: 1/-1;
  }
  #home-eco-smile .eco-smile-content {
    grid-column: auto;
  }
}
#home-eco-smile .eco-smile-text {
  width: 100%;
}
@media screen and (min-width: 769px) {
  #home-eco-smile .eco-smile-text {
    width: 100%;
  }
}
#home-eco-smile .eco-smile-text h3 {
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: #2E7D32;
}
@media screen and (min-width: 769px) {
  #home-eco-smile .eco-smile-text h3 {
    font-size: 0.24rem;
  }
}
#home-eco-smile .eco-smile-text h4 {
  font-size: 0.14rem;
  font-weight: 500;
  margin-bottom: 1em;
  color: #333;
}
@media screen and (min-width: 769px) {
  #home-eco-smile .eco-smile-text h4 {
    font-size: 0.16rem;
  }
}
#home-eco-smile .eco-smile-features {
  margin-bottom: 1em;
}
#home-eco-smile .eco-smile-features ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
}
@media screen and (min-width: 769px) {
  #home-eco-smile .eco-smile-features ul {
    gap: 16px;
  }
}
#home-eco-smile .eco-smile-features ul li {
  background: #E8F5E9;
  padding: 12px 0;
  border-radius: 8px;
  font-size: 0.12rem;
  font-weight: 500;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
  transition: transform 0.3s ease;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (min-width: 769px) {
  #home-eco-smile .eco-smile-features ul li {
    font-size: 0.16rem;
    padding: 16px 0;
    height: 210px;
  }
}
#home-eco-smile .eco-smile-features ul li:hover {
  transform: translateY(-2px);
  background: #C8E6C9;
}
#home-eco-smile .eco-smile-info {
  background: #F5F5F5;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #E0E0E0;
}
#home-eco-smile .eco-smile-info p {
  margin-bottom: 8px;
  font-size: 0.14rem;
  color: #333;
}
@media screen and (min-width: 769px) {
  #home-eco-smile .eco-smile-info p {
    font-size: 0.16rem;
  }
}
#home-eco-smile .eco-smile-info p:last-child {
  margin-bottom: 0;
}
#home-eco-smile .eco-smile-info p strong {
  font-weight: 600;
  color: #2E7D32;
}
#home-eco-smile .eco-smile-btn {
  display: inline-block;
  background: #fff;
  color: #2E7D32;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.16rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 769px) {
  #home-eco-smile .eco-smile-btn {
    padding: 18px 40px;
    font-size: 0.18rem;
  }
}
#home-eco-smile .eco-smile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: #f8f8f8;
}
#home-eco-smile .eco-smile-image {
  margin-top: 40px;
  width: 100%;
}
@media screen and (min-width: 769px) {
  #home-eco-smile .eco-smile-image {
    margin-top: 0;
    width: 100%;
  }
}
#home-eco-smile .eco-smile-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
#home-eco-smile .eco-smile-image img:hover {
  transform: scale(1.02);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
#home-sustainable {
  background-image: url(../images/top-sustinable.jpg);
  background-size: cover;
  padding: 64px 24px;
  position: relative;
}
@media screen and (min-width: 769px) {
  #home-sustainable {
    padding: 160px 10vw;
  }
}
#home-sustainable:before {
  background-image: url(../images/sustina-text.svg);
  background-size: auto 60px;
  background-repeat: no-repeat;
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}
@media screen and (min-width: 769px) {
  #home-sustainable:before {
    background-size: auto 120px;
    background-position: left 10vw top;
    height: 120px;
  }
}
#home-sustainable h2 {
  font-size: 0.21rem;
  font-weight: bold;
  margin-bottom: 2em;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #home-sustainable h2 {
    font-size: 0.32rem;
  }
}
#home-sustainable p {
  color: #fff;
}
@media screen and (min-width: 769px) {
  #home-sustainable p {
    font-size: 0.16rem;
  }
}
#home-sustainable a {
  font-size: 0.14rem;
  font-weight: bold;
  background-image: url(../images/link-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: right 4em center;
  padding: 1em 6.5em 1em 4em;
  margin-top: 1.5em;
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #home-sustainable a {
    margin-top: 4.5em;
  }
}
#home-sustainable a:hover {
  background-position: right 3.5em center;
}

#home-company {
  background-image: url(../images/company-bg.svg);
  background-size: auto 60px;
  background-repeat: no-repeat;
  background-position: left top;
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #home-company {
    padding: 160px 10vw;
    background-size: auto 120px;
    background-position: left 10vw top;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) {
  #home-company > div {
    width: 36%;
  }
}
#home-company > div h2 {
  font-size: 0.21rem;
  font-weight: bold;
  margin-bottom: 2em;
}
@media screen and (min-width: 769px) {
  #home-company > div h2 {
    font-size: 0.32rem;
  }
}
@media screen and (min-width: 769px) {
  #home-company > div p {
    font-size: 0.16rem;
  }
}
#home-company figure {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  #home-company figure {
    width: 60%;
    margin: 0;
  }
}
#home-company figure img {
  width: 100%;
  height: auto;
}

#single {
  padding: 24px;
  max-width: 800px;
  margin: 0 auto;
}
#single h1 {
  font-size: 0.24rem;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #single h1 {
    font-size: 0.32rem;
  }
}
#single dl dt {
  margin-bottom: 1em;
}
#single dl dt img {
  width: 100%;
  height: auto;
}
#single dl dd .data {
  margin-bottom: 1em;
}
#single dl dd .data data {
  font-size: 0.12rem;
  border: 1px solid #000;
  padding: 0.4em 1em;
}
#single dl dd .data span {
  background-color: #00B2FF;
  border: 1px solid #00B2FF;
  color: #fff;
  font-size: 0.12rem;
  padding: 0.4em 1em;
}
#single dl dd article {
  line-height: 2em;
}
@media screen and (min-width: 769px) {
  #single dl dd article {
    font-size: 0.16rem;
  }
}

#informations > div > h2 {
  text-align: center;
  background: linear-gradient(-45deg, rgba(255, 242, 0, 0.85) 20%, rgba(0, 178, 255, 0.85) 80%);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.24rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #informations > div > h2 {
    font-size: 0.4rem;
    height: 200px;
  }
}

.information_archive {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .information_archive {
    max-width: 1320px;
    padding: 60px 40px;
    margin: auto;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
}
.information_archive a {
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 769px) {
  .information_archive a {
    width: 30%;
  }
}
.information_archive a dl dt {
  width: 100%;
  position: relative;
}
.information_archive a dl dt img {
  width: 100%;
  height: auto;
  border-radius: 7px 7px 0 0;
}
.information_archive a dl dt .category {
  height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 5px;
  font-size: 0.12rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  position: absolute;
  right: 8px;
  bottom: -15px;
  z-index: 2;
}
.information_archive a dl dd {
  background-color: #fff;
  padding: 8px 20px 40px 20px;
  border-radius: 0 0 7px 7px;
  position: relative;
}
.information_archive a dl dd data {
  font-size: 0.1rem;
  color: #9F9F9F;
}
.information_archive a dl dd h3 {
  font-size: 0.16rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.information_archive a dl dd p {
  font-size: 0.12rem;
  margin-bottom: 8px;
  letter-spacing: 0;
}
.information_archive a dl dd .info span {
  font-size: 0.12rem;
  font-weight: 700;
  display: block;
}
.information_archive a dl dd > span {
  position: absolute;
  z-index: 999;
  left: 50%;
  transform: translateX(-50%);
  bottom: -32px;
  width: 300px;
  height: 62px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.16rem;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s;
}
.information_archive a dl dd > span:hover {
  background-color: #fff;
}
.information_archive a dl dd > span img {
  width: 20px;
  height: auto;
}

#sustainability-page #sustainability-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
#sustainability-page #sustainability-hero .hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}
#sustainability-page #sustainability-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sustainability-page #sustainability-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#sustainability-page #sustainability-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#sustainability-page #sustainability-hero .hero-content h1 {
  font-size: 0.32rem;
  color: #fff;
  font-family: "noto Serif JP";
  font-weight: 100;
  text-align: center;
  text-shadow: var(--shadow-medium);
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-hero .hero-content h1 {
    font-size: 0.44rem;
  }
}
#sustainability-page #sustainability-hero .hero-content p {
  font-size: 0.12rem;
  color: #fff;
  text-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-hero .hero-content p {
    font-size: 0.16rem;
  }
}
#sustainability-page .breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
#sustainability-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#sustainability-page section {
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #sustainability-page section {
    padding: 160px 10vw;
  }
}
#sustainability-page section h2 {
  font-size: 0.21rem;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #sustainability-page section h2 {
    font-size: 0.32rem;
  }
}
#sustainability-page section#sustainability-hero {
  padding: 0;
}
#sustainability-page #environmental-policy {
  background: #fff;
}
#sustainability-page #environmental-policy .policy-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-policy .policy-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-policy .policy-content .policy-text {
    width: 50%;
  }
}
#sustainability-page #environmental-policy .policy-content .policy-text h3 {
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-policy .policy-content .policy-text h3 {
    font-size: 0.24rem;
  }
}
#sustainability-page #environmental-policy .policy-content .policy-text p {
  margin-bottom: 2em;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-policy .policy-content .policy-text p {
    font-size: 0.16rem;
  }
}
#sustainability-page #environmental-policy .policy-content .policy-text ul {
  list-style: none;
  padding: 0;
}
#sustainability-page #environmental-policy .policy-content .policy-text ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1em;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-policy .policy-content .policy-text ul li {
    font-size: 0.16rem;
  }
}
#sustainability-page #environmental-policy .policy-content .policy-text ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-policy .policy-content .policy-image {
    width: 50%;
  }
}
#sustainability-page #environmental-policy .policy-content .policy-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#sustainability-page #sustainability-initiatives {
  background-color: #EDEDED;
}
#sustainability-page #sustainability-initiatives .initiatives-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-initiatives .initiatives-grid {
    flex-direction: row;
    align-items: start;
    flex-wrap: wrap;
  }
}
#sustainability-page #sustainability-initiatives .initiative-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: white;
  padding: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-initiatives .initiative-item {
    width: calc(50% - 20px);
    padding: 32px;
  }
}
#sustainability-page #sustainability-initiatives .initiative-item .initiative-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-initiatives .initiative-item .initiative-icon {
    width: 60px;
    height: 60px;
  }
}
#sustainability-page #sustainability-initiatives .initiative-item .initiative-icon .icon {
  width: 70px;
  height: 70px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-initiatives .initiative-item .initiative-icon .icon {
    width: 90px;
    height: 90px;
  }
}
#sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-recycle .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-recycle .icon:before {
  content: "♻";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-recycle .icon:before {
    font-size: 64px;
  }
}
#sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-carbon .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-carbon .icon:before {
  content: "🌱";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-carbon .icon:before {
    font-size: 64px;
  }
}
#sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-community .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-community .icon:before {
  content: "🤝";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-community .icon:before {
    font-size: 64px;
  }
}
#sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-education .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-education .icon:before {
  content: "📚";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-initiatives .initiative-item .initiative-icon.icon-education .icon:before {
    font-size: 64px;
  }
}
#sustainability-page #sustainability-initiatives .initiative-item h3 {
  font-size: 0.18rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-initiatives .initiative-item h3 {
    font-size: 0.24rem;
  }
}
#sustainability-page #sustainability-initiatives .initiative-item p {
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-initiatives .initiative-item p {
    font-size: 0.16rem;
  }
}
#sustainability-page #recycling-achievements {
  background: #fff;
}
#sustainability-page #recycling-achievements .achievements-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #recycling-achievements .achievements-content {
    flex-direction: row;
    align-items: start;
  }
}
#sustainability-page #recycling-achievements .achievement-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #recycling-achievements .achievement-stats {
    width: 100%;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
  }
}
#sustainability-page #recycling-achievements .stat-item {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}
@media screen and (min-width: 769px) {
  #sustainability-page #recycling-achievements .stat-item {
    padding: 30px 20px;
    flex: 1;
  }
}
#sustainability-page #recycling-achievements .stat-item .stat-number {
  font-size: 0.32rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #sustainability-page #recycling-achievements .stat-item .stat-number {
    font-size: 0.44rem;
  }
}
#sustainability-page #recycling-achievements .stat-item .stat-number span {
  font-size: 0.24rem;
}
@media screen and (min-width: 769px) {
  #sustainability-page #recycling-achievements .stat-item .stat-number span {
    font-size: 0.32rem;
  }
}
#sustainability-page #recycling-achievements .stat-item .stat-label {
  font-size: 0.16rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #sustainability-page #recycling-achievements .stat-item .stat-label {
    font-size: 0.18rem;
  }
}
#sustainability-page #recycling-achievements .stat-item .stat-description {
  font-size: 0.14rem;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  #sustainability-page #recycling-achievements .stat-item .stat-description {
    font-size: 0.16rem;
  }
}
#sustainability-page #environmental-certifications {
  background-color: #EDEDED;
}
#sustainability-page #environmental-certifications .certifications-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-certifications .certifications-grid {
    flex-direction: row;
    align-items: start;
  }
}
#sustainability-page #environmental-certifications .certification-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: white;
  padding: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-certifications .certification-item {
    width: 33.333%;
    padding: 32px;
  }
}
#sustainability-page #environmental-certifications .certification-item .certification-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-certifications .certification-item .certification-icon {
    width: 60px;
    height: 60px;
  }
}
#sustainability-page #environmental-certifications .certification-item .certification-icon .icon {
  width: 70px;
  height: 70px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-certifications .certification-item .certification-icon .icon {
    width: 90px;
    height: 90px;
  }
}
#sustainability-page #environmental-certifications .certification-item .certification-icon.icon-iso .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#sustainability-page #environmental-certifications .certification-item .certification-icon.icon-iso .icon:before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: var(--primary-color);
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-certifications .certification-item .certification-icon.icon-iso .icon:before {
    font-size: 64px;
  }
}
#sustainability-page #environmental-certifications .certification-item .certification-icon.icon-green .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#sustainability-page #environmental-certifications .certification-item .certification-icon.icon-green .icon:before {
  content: "🌿";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-certifications .certification-item .certification-icon.icon-green .icon:before {
    font-size: 64px;
  }
}
#sustainability-page #environmental-certifications .certification-item .certification-icon.icon-award .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#sustainability-page #environmental-certifications .certification-item .certification-icon.icon-award .icon:before {
  content: "🏆";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-certifications .certification-item .certification-icon.icon-award .icon:before {
    font-size: 64px;
  }
}
#sustainability-page #environmental-certifications .certification-item h3 {
  font-size: 0.18rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-certifications .certification-item h3 {
    font-size: 0.24rem;
  }
}
#sustainability-page #environmental-certifications .certification-item p {
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #sustainability-page #environmental-certifications .certification-item p {
    font-size: 0.16rem;
  }
}
#sustainability-page #future-initiatives {
  background: #fff;
}
#sustainability-page #future-initiatives .future-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #sustainability-page #future-initiatives .future-content {
    flex-direction: row;
    align-items: start;
  }
}
@media screen and (min-width: 769px) {
  #sustainability-page #future-initiatives .future-text {
    width: 50%;
  }
}
#sustainability-page #future-initiatives .future-text h3 {
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #sustainability-page #future-initiatives .future-text h3 {
    font-size: 0.24rem;
  }
}
#sustainability-page #future-initiatives .future-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2em;
}
#sustainability-page #future-initiatives .future-text ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #sustainability-page #future-initiatives .future-text ul li {
    font-size: 0.16rem;
  }
}
#sustainability-page #future-initiatives .future-text ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
#sustainability-page #future-initiatives .future-text p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #sustainability-page #future-initiatives .future-text p {
    font-size: 0.16rem;
  }
}
@media screen and (min-width: 769px) {
  #sustainability-page #future-initiatives .future-image {
    width: 50%;
  }
}
#sustainability-page #future-initiatives .future-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#sustainability-page #sustainability-cta {
  background-image: url(../images/top-sustinable.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
#sustainability-page #sustainability-cta:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#sustainability-page #sustainability-cta h2 {
  color: #fff;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
#sustainability-page #sustainability-cta p {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-cta p {
    font-size: 0.16rem;
  }
}
#sustainability-page #sustainability-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-cta .cta-buttons {
    flex-direction: row;
    gap: 40px;
  }
}
#sustainability-page #sustainability-cta .btn-primary, #sustainability-page #sustainability-cta .btn-secondary {
  font-size: 0.14rem;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  #sustainability-page #sustainability-cta .btn-primary, #sustainability-page #sustainability-cta .btn-secondary {
    font-size: 0.16rem;
    padding: 1em 3em;
  }
}
#sustainability-page #sustainability-cta .btn-primary {
  background: #fff;
  color: var(--primary-color);
}
#sustainability-page #sustainability-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
#sustainability-page #sustainability-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
#sustainability-page #sustainability-cta .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

#company-page #company-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
#company-page #company-hero .hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}
#company-page #company-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#company-page #company-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#company-page #company-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#company-page #company-hero .hero-content h1 {
  font-size: 0.32rem;
  color: #fff;
  font-family: "noto Serif JP";
  font-weight: 100;
  text-align: center;
  text-shadow: var(--shadow-medium);
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #company-page #company-hero .hero-content h1 {
    font-size: 0.44rem;
  }
}
#company-page #company-hero .hero-content p {
  font-size: 0.12rem;
  color: #fff;
  text-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #company-page #company-hero .hero-content p {
    font-size: 0.16rem;
  }
}
#company-page .breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
#company-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#company-page section {
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #company-page section {
    padding: 160px 10vw;
  }
}
#company-page section h2 {
  font-size: 0.21rem;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #company-page section h2 {
    font-size: 0.32rem;
  }
}
#company-page section#company-hero {
  padding: 0;
}
#company-page #company-message {
  background: #fff;
}
#company-page #company-message .message-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #company-page #company-message .message-content {
    flex-direction: row;
    align-items: start;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #company-page #company-message .message-text {
    width: 60%;
    margin: 0 auto;
  }
}
#company-page #company-message .message-text p {
  margin-bottom: 1.5em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #company-page #company-message .message-text p {
    font-size: 0.16rem;
  }
}
#company-page #company-message .message-text .signature {
  margin-top: 2em;
  text-align: right;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #company-page #company-message .message-text .signature {
    font-size: 0.16rem;
  }
}
#company-page #company-info {
  background-color: #EDEDED;
}
#company-page #company-info .info-content {
  max-width: 800px;
  margin: 0 auto;
}
#company-page #company-info .info-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
#company-page #company-info .info-table table {
  width: 100%;
  border-collapse: collapse;
}
#company-page #company-info .info-table table th, #company-page #company-info .info-table table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
@media screen and (min-width: 769px) {
  #company-page #company-info .info-table table th, #company-page #company-info .info-table table td {
    padding: 30px;
  }
}
#company-page #company-info .info-table table th {
  background: white;
  color: #333;
  font-weight: bold;
  width: 25%;
  border-top: 3px solid var(--primary-color);
}
@media screen and (min-width: 769px) {
  #company-page #company-info .info-table table th {
    font-size: 0.16rem;
  }
}
@media screen and (min-width: 769px) {
  #company-page #company-info .info-table table td {
    font-size: 0.16rem;
  }
}
#company-page #company-info .info-table table tr:last-child th,
#company-page #company-info .info-table table tr:last-child td {
  border-bottom: none;
}
#company-page #company-info .info-table .business-items .business-item {
  margin-bottom: 1.5em;
}
#company-page #company-info .info-table .business-items .business-item:last-child {
  margin-bottom: 0;
}
#company-page #company-info .info-table .business-items .business-item h4 {
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #company-page #company-info .info-table .business-items .business-item h4 {
    font-size: 0.16rem;
  }
}
#company-page #company-info .info-table .business-items .business-item ul {
  list-style: none;
  padding-left: 1em;
}
#company-page #company-info .info-table .business-items .business-item ul li {
  position: relative;
  margin-bottom: 0.3em;
}
@media screen and (min-width: 769px) {
  #company-page #company-info .info-table .business-items .business-item ul li {
    font-size: 0.16rem;
  }
}
#company-page #company-info .info-table .business-items .business-item ul li:before {
  content: "•";
  position: absolute;
  left: -1em;
  color: var(--primary-color);
}
#company-page #company-info .info-table .license-list {
  list-style: none;
  padding: 0;
}
#company-page #company-info .info-table .license-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #company-page #company-info .info-table .license-list li {
    font-size: 0.16rem;
  }
}
#company-page #company-info .info-table .license-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
#company-page #company-access {
  background: #fff;
}
#company-page #company-access .access-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #company-page #company-access .access-content {
    flex-direction: row;
    align-items: start;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #company-page #company-access .access-info {
    width: 40%;
  }
}
#company-page #company-access .access-info .address-info {
  margin-bottom: 2em;
}
#company-page #company-access .access-info .address-info h3 {
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #company-page #company-access .access-info .address-info h3 {
    font-size: 0.24rem;
  }
}
#company-page #company-access .access-info .address-info .address {
  font-size: 0.16rem;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #company-page #company-access .access-info .address-info .address {
    font-size: 0.18rem;
  }
}
#company-page #company-access .access-info .address-info .tel {
  font-size: 0.18rem;
  font-weight: bold;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #company-page #company-access .access-info .address-info .tel {
    font-size: 0.2rem;
  }
}
#company-page #company-access .access-info .access-details,
#company-page #company-access .access-info .business-hours {
  margin-bottom: 2em;
}
#company-page #company-access .access-info .access-details h4,
#company-page #company-access .access-info .business-hours h4 {
  font-size: 0.16rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: #333;
}
@media screen and (min-width: 769px) {
  #company-page #company-access .access-info .access-details h4,
  #company-page #company-access .access-info .business-hours h4 {
    font-size: 0.18rem;
  }
}
#company-page #company-access .access-info .access-details ul,
#company-page #company-access .access-info .business-hours ul {
  list-style: none;
  padding: 0;
}
#company-page #company-access .access-info .access-details ul li,
#company-page #company-access .access-info .business-hours ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #company-page #company-access .access-info .access-details ul li,
  #company-page #company-access .access-info .business-hours ul li {
    font-size: 0.16rem;
  }
}
#company-page #company-access .access-info .access-details ul li:before,
#company-page #company-access .access-info .business-hours ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}
#company-page #company-access .access-info .access-details p,
#company-page #company-access .access-info .business-hours p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #company-page #company-access .access-info .access-details p,
  #company-page #company-access .access-info .business-hours p {
    font-size: 0.16rem;
  }
}
@media screen and (min-width: 769px) {
  #company-page #company-access .access-map {
    width: 60%;
  }
}
#company-page #company-access .access-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#company-page #company-cta {
  background-image: url(../images/top-sustinable.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
#company-page #company-cta:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#company-page #company-cta h2 {
  color: #fff;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
#company-page #company-cta p {
  margin-bottom: 1.5em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #company-page #company-cta p {
    font-size: 0.16rem;
  }
}
#company-page #company-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #company-page #company-cta .cta-buttons {
    flex-direction: row;
    gap: 40px;
  }
}
#company-page #company-cta .btn-primary, #company-page #company-cta .btn-secondary {
  font-size: 0.14rem;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  #company-page #company-cta .btn-primary, #company-page #company-cta .btn-secondary {
    font-size: 0.16rem;
    padding: 1em 3em;
  }
}
#company-page #company-cta .btn-primary {
  background: #fff;
  color: var(--primary-color);
}
#company-page #company-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
#company-page #company-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
#company-page #company-cta .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}
@media screen and (max-width: 768px) {
  #company-page .info-table table th, #company-page .info-table table td {
    display: block;
    width: 100%;
  }
  #company-page .info-table table th {
    width: 100%;
  }
}

#aboutus-page #aboutus-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
#aboutus-page #aboutus-hero .hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}
#aboutus-page #aboutus-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#aboutus-page #aboutus-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#aboutus-page #aboutus-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#aboutus-page #aboutus-hero .hero-content h1 {
  font-size: 0.32rem;
  color: #fff;
  font-family: "noto Serif JP";
  font-weight: 100;
  text-align: center;
  text-shadow: var(--shadow-medium);
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-hero .hero-content h1 {
    font-size: 0.44rem;
  }
}
#aboutus-page #aboutus-hero .hero-content p {
  font-size: 0.12rem;
  color: #fff;
  text-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-hero .hero-content p {
    font-size: 0.16rem;
  }
}
#aboutus-page .breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
#aboutus-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#aboutus-page section {
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #aboutus-page section {
    padding: 160px 10vw;
  }
}
#aboutus-page section h2 {
  font-size: 0.21rem;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #aboutus-page section h2 {
    font-size: 0.32rem;
  }
}
#aboutus-page section#aboutus-hero {
  padding: 0;
}
#aboutus-page #aboutus-mission {
  background: #fff;
}
#aboutus-page #aboutus-mission .mission-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-mission .mission-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-mission .mission-text {
    width: 60%;
  }
}
#aboutus-page #aboutus-mission .mission-text p {
  margin-bottom: 1.5em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-mission .mission-text p {
    font-size: 0.16rem;
  }
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-mission .mission-image {
    width: 40%;
  }
}
#aboutus-page #aboutus-mission .mission-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#aboutus-page #aboutus-philosophy {
  background-color: #EDEDED;
}
#aboutus-page #aboutus-philosophy .philosophy-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-philosophy .philosophy-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
#aboutus-page #aboutus-philosophy .philosophy-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-philosophy .philosophy-item {
    width: calc(33.333% - 20px);
    padding: 40px 30px;
  }
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon {
    width: 60px;
    height: 60px;
  }
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon .icon {
  width: 70px;
  height: 70px;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon .icon {
    width: 90px;
    height: 90px;
  }
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon.icon-environment .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon.icon-environment .icon:before {
  content: "🌍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon.icon-compliance .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon.icon-compliance .icon:before {
  content: "📋";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon.icon-trust .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon.icon-trust .icon:before {
  content: "🤝";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon.icon-contribution .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon.icon-contribution .icon:before {
  content: "🌟";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon.icon-workplace .icon {
  background: white;
  border-radius: 50%;
  position: relative;
}
#aboutus-page #aboutus-philosophy .philosophy-item .philosophy-icon.icon-workplace .icon:before {
  content: "👥";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
}
#aboutus-page #aboutus-philosophy .philosophy-item h3 {
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-philosophy .philosophy-item h3 {
    font-size: 0.2rem;
  }
}
#aboutus-page #aboutus-philosophy .philosophy-item p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-philosophy .philosophy-item p {
    font-size: 0.16rem;
  }
}
#aboutus-page #aboutus-history {
  background: #fff;
}
#aboutus-page #aboutus-history .history-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
#aboutus-page #aboutus-history .history-timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #aboutus-page #aboutus-history .history-timeline:before {
    left: 20px;
  }
}
#aboutus-page #aboutus-history .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #aboutus-page #aboutus-history .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }
}
#aboutus-page #aboutus-history .timeline-item:last-child {
  margin-bottom: 0;
}
#aboutus-page #aboutus-history .timeline-item .timeline-year {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.16rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-history .timeline-item .timeline-year {
    width: 120px;
    text-align: center;
    margin-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  #aboutus-page #aboutus-history .timeline-item .timeline-year {
    margin-bottom: 15px;
  }
}
#aboutus-page #aboutus-history .timeline-item .timeline-year:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid var(--primary-color);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #aboutus-page #aboutus-history .timeline-item .timeline-year:before {
    display: none;
  }
}
#aboutus-page #aboutus-history .timeline-item .timeline-content {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-history .timeline-item .timeline-content {
    margin-left: 20px;
  }
}
#aboutus-page #aboutus-history .timeline-item .timeline-content h4 {
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-history .timeline-item .timeline-content h4 {
    font-size: 0.2rem;
  }
}
#aboutus-page #aboutus-history .timeline-item .timeline-content p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-history .timeline-item .timeline-content p {
    font-size: 0.16rem;
  }
}
#aboutus-page #aboutus-strengths {
  background-color: #EDEDED;
}
#aboutus-page #aboutus-strengths .strengths-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-strengths .strengths-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-strengths .strengths-text {
    width: 60%;
  }
}
#aboutus-page #aboutus-strengths .strengths-text .strength-item {
  margin-bottom: 2em;
}
#aboutus-page #aboutus-strengths .strengths-text .strength-item:last-child {
  margin-bottom: 0;
}
#aboutus-page #aboutus-strengths .strengths-text .strength-item h3 {
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-strengths .strengths-text .strength-item h3 {
    font-size: 0.2rem;
  }
}
#aboutus-page #aboutus-strengths .strengths-text .strength-item p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-strengths .strengths-text .strength-item p {
    font-size: 0.16rem;
  }
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-strengths .strengths-image {
    width: 40%;
  }
}
#aboutus-page #aboutus-strengths .strengths-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#aboutus-page #aboutus-team {
  background: #fff;
}
#aboutus-page #aboutus-team .team-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
#aboutus-page #aboutus-team .team-content p {
  margin-bottom: 3em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-team .team-content p {
    font-size: 0.16rem;
  }
}
#aboutus-page #aboutus-team .team-content .team-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-team .team-content .team-stats {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
}
#aboutus-page #aboutus-team .team-content .team-stat {
  text-align: center;
}
#aboutus-page #aboutus-team .team-content .team-stat .stat-number {
  font-size: 0.32rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-team .team-content .team-stat .stat-number {
    font-size: 0.44rem;
  }
}
#aboutus-page #aboutus-team .team-content .team-stat .stat-label {
  font-size: 0.16rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-team .team-content .team-stat .stat-label {
    font-size: 0.18rem;
  }
}
#aboutus-page #aboutus-cta {
  background-image: url(../images/top-sustinable.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
#aboutus-page #aboutus-cta:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#aboutus-page #aboutus-cta h2 {
  color: #fff;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
#aboutus-page #aboutus-cta p {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-cta p {
    font-size: 0.16rem;
  }
}
#aboutus-page #aboutus-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-cta .cta-buttons {
    flex-direction: row;
    gap: 40px;
  }
}
#aboutus-page #aboutus-cta .btn-primary, #aboutus-page #aboutus-cta .btn-secondary {
  font-size: 0.14rem;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  #aboutus-page #aboutus-cta .btn-primary, #aboutus-page #aboutus-cta .btn-secondary {
    font-size: 0.16rem;
    padding: 1em 3em;
  }
}
#aboutus-page #aboutus-cta .btn-primary {
  background: #fff;
  color: var(--primary-color);
}
#aboutus-page #aboutus-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
#aboutus-page #aboutus-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
#aboutus-page #aboutus-cta .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

#services-page #services-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
#services-page #services-hero .hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}
#services-page #services-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#services-page #services-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#services-page #services-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#services-page #services-hero .hero-content h1 {
  font-size: 0.32rem;
  color: #fff;
  font-family: "noto Serif JP";
  font-weight: 100;
  text-align: center;
  text-shadow: var(--shadow-medium);
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #services-page #services-hero .hero-content h1 {
    font-size: 0.44rem;
  }
}
#services-page #services-hero .hero-content p {
  font-size: 0.12rem;
  color: #fff;
  text-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #services-page #services-hero .hero-content p {
    font-size: 0.16rem;
  }
}
#services-page .breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
#services-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#services-page section {
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #services-page section {
    padding: 160px 10vw;
  }
}
#services-page section h2 {
  font-size: 0.21rem;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #services-page section h2 {
    font-size: 0.32rem;
  }
}
#services-page section#services-hero {
  padding: 0;
}
#services-page #services-overview {
  background: #fff;
}
#services-page #services-overview .overview-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
#services-page #services-overview .overview-content p {
  margin-bottom: 3em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #services-page #services-overview .overview-content p {
    font-size: 0.16rem;
  }
}
#services-page #services-overview .overview-content .overview-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  #services-page #services-overview .overview-content .overview-stats {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
}
#services-page #services-overview .overview-content .stat-item {
  text-align: center;
}
#services-page #services-overview .overview-content .stat-item .stat-number {
  font-size: 0.32rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #services-page #services-overview .overview-content .stat-item .stat-number {
    font-size: 0.44rem;
  }
}
#services-page #services-overview .overview-content .stat-item .stat-label {
  font-size: 0.16rem;
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #services-page #services-overview .overview-content .stat-item .stat-label {
    font-size: 0.18rem;
  }
}
#services-page #services-list {
  background-color: #EDEDED;
}
#services-page #services-list .services-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #services-page #services-list .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
#services-page #services-list .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 769px) {
  #services-page #services-list .service-card {
    width: calc(33.333% - 20px);
    padding: 50px 30px;
  }
}
#services-page #services-list .service-card:hover {
  transform: translateY(-5px);
}
#services-page #services-list .service-card .service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  #services-page #services-list .service-card .service-icon {
    width: 100px;
    height: 100px;
  }
}
#services-page #services-list .service-card .service-icon .icon {
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 769px) {
  #services-page #services-list .service-card .service-icon .icon {
    width: 60px;
    height: 60px;
  }
}
#services-page #services-list .service-card .service-icon.icon-paper .icon:before {
  content: "📄";
  font-size: 64px;
}
#services-page #services-list .service-card .service-icon.icon-metal .icon:before {
  content: "🔧";
  font-size: 64px;
}
#services-page #services-list .service-card .service-icon.icon-plastic .icon:before {
  content: "♻";
  font-size: 64px;
}
#services-page #services-list .service-card .service-icon.icon-document .icon:before {
  content: "🔒";
  font-size: 64px;
}
#services-page #services-list .service-card .service-icon.icon-waste .icon:before {
  content: "🚛";
  font-size: 64px;
}
#services-page #services-list .service-card h3 {
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #services-page #services-list .service-card h3 {
    font-size: 0.2rem;
  }
}
#services-page #services-list .service-card p {
  margin-bottom: 2em;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #services-page #services-list .service-card p {
    font-size: 0.16rem;
  }
}
#services-page #services-list .service-card .service-link {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}
@media screen and (min-width: 769px) {
  #services-page #services-list .service-card .service-link {
    font-size: 0.16rem;
    padding: 15px 30px;
  }
}
#services-page #services-list .service-card .service-link:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
}
#services-page #services-cta {
  background-image: url(../images/top-sustinable.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
#services-page #services-cta:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#services-page #services-cta h2 {
  color: #fff;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
#services-page #services-cta p {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #services-page #services-cta p {
    font-size: 0.16rem;
  }
}
#services-page #services-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #services-page #services-cta .cta-buttons {
    flex-direction: row;
    gap: 40px;
  }
}
#services-page #services-cta .btn-primary, #services-page #services-cta .btn-secondary {
  font-size: 0.14rem;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  #services-page #services-cta .btn-primary, #services-page #services-cta .btn-secondary {
    font-size: 0.16rem;
    padding: 1em 3em;
  }
}
#services-page #services-cta .btn-primary {
  background: #fff;
  color: var(--primary-color);
}
#services-page #services-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
#services-page #services-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
#services-page #services-cta .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

#paper-recycling-page #paper-recycling-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
#paper-recycling-page #paper-recycling-hero .hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}
#paper-recycling-page #paper-recycling-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#paper-recycling-page #paper-recycling-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#paper-recycling-page #paper-recycling-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#paper-recycling-page #paper-recycling-hero .hero-content h1 {
  font-size: 0.32rem;
  color: #fff;
  font-family: "noto Serif JP";
  font-weight: 100;
  text-align: center;
  text-shadow: var(--shadow-medium);
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #paper-recycling-hero .hero-content h1 {
    font-size: 0.44rem;
  }
}
#paper-recycling-page #paper-recycling-hero .hero-content p {
  font-size: 0.12rem;
  color: #fff;
  text-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #paper-recycling-hero .hero-content p {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #paper-recycling-hero .hero-content .hero-services {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 2em;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #paper-recycling-hero .hero-content .hero-services {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 40px;
    justify-content: center;
  }
}
#paper-recycling-page #paper-recycling-hero .hero-content .hero-services .hero-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  width: calc(50% - 10px);
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #paper-recycling-hero .hero-content .hero-services .hero-service-item {
    flex-direction: row;
    gap: 15px;
    width: auto;
  }
}
#paper-recycling-page #paper-recycling-hero .hero-content .hero-services .hero-service-item .hero-icon {
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #paper-recycling-hero .hero-content .hero-services .hero-service-item .hero-icon {
    width: 32px;
    height: 32px;
  }
}
#paper-recycling-page #paper-recycling-hero .hero-content .hero-services .hero-service-item span {
  font-size: 0.14rem;
  font-weight: bold;
  text-shadow: var(--shadow-light);
  text-align: center;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #paper-recycling-hero .hero-content .hero-services .hero-service-item span {
    font-size: 0.16rem;
    text-align: left;
  }
}
#paper-recycling-page .breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
#paper-recycling-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#paper-recycling-page section {
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page section {
    padding: 160px 10vw;
  }
}
#paper-recycling-page section h2 {
  font-size: 0.21rem;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page section h2 {
    font-size: 0.32rem;
  }
}
#paper-recycling-page section#paper-recycling-hero {
  padding: 0;
}
#paper-recycling-page #corporate-service {
  background: #fff;
}
#paper-recycling-page #corporate-service .service-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text {
    width: 60%;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text p {
  margin-bottom: 1.5em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text p {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text .service-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text .service-features {
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item {
    width: 50%;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item h4 {
  font-size: 0.16rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item h4 {
    font-size: 0.18rem;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item ul {
  list-style: none;
  padding: 0;
}
#paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item ul li {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-image {
    width: 40%;
  }
}
#paper-recycling-page #corporate-service .service-content .service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#paper-recycling-page #corporate-service {
  background: #fff;
}
#paper-recycling-page #corporate-service .service-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text {
    width: 60%;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text p {
  margin-bottom: 1.5em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text p {
    font-size: 16px;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text .service-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text .service-features {
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item {
    width: 50%;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item h4 {
    font-size: 18px;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item ul {
  list-style: none;
  padding: 0;
}
#paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item ul li {
    font-size: 16px;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text .service-features .feature-item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
#paper-recycling-page #corporate-service .service-content .service-text .service-cta {
  margin-top: 2em;
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}
#paper-recycling-page #corporate-service .service-content .service-text .service-cta p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text .service-cta p {
    font-size: 18px;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text .service-cta .btn-secondary {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-text .service-cta .btn-secondary {
    font-size: 16px;
    padding: 15px 30px;
  }
}
#paper-recycling-page #corporate-service .service-content .service-text .service-cta .btn-secondary:hover {
  background: #1a5f1a;
  transform: translateY(-2px);
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #corporate-service .service-content .service-image {
    width: 40%;
  }
}
#paper-recycling-page #corporate-service .service-content .service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#paper-recycling-page #community-service {
  background-color: #EDEDED;
}
#paper-recycling-page #community-service .service-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #community-service .service-content {
    flex-direction: row-reverse;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #community-service .service-content .service-text {
    width: 60%;
  }
}
#paper-recycling-page #community-service .service-content .service-text p {
  margin-bottom: 1.5em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #community-service .service-content .service-text p {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #community-service .service-content .service-text .notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  padding: 20px;
  border-radius: 8px;
  margin: 2em 0;
}
#paper-recycling-page #community-service .service-content .service-text .notice p {
  margin: 0;
  color: #856404;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #community-service .service-content .service-text .notice p {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #community-service .service-content .service-text .service-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #community-service .service-content .service-text .service-features {
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #community-service .service-content .service-text .service-features .feature-item {
    width: 50%;
  }
}
#paper-recycling-page #community-service .service-content .service-text .service-features .feature-item h4 {
  font-size: 0.16rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #community-service .service-content .service-text .service-features .feature-item h4 {
    font-size: 0.18rem;
  }
}
#paper-recycling-page #community-service .service-content .service-text .service-features .feature-item ul {
  list-style: none;
  padding: 0;
}
#paper-recycling-page #community-service .service-content .service-text .service-features .feature-item ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #community-service .service-content .service-text .service-features .feature-item ul li {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #community-service .service-content .service-text .service-features .feature-item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #community-service .service-content .service-image {
    width: 40%;
  }
}
#paper-recycling-page #community-service .service-content .service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#paper-recycling-page #individual-service {
  background-color: #FFF;
}
#paper-recycling-page #individual-service .service-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #individual-service .service-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #individual-service .service-content .service-text {
    width: 60%;
  }
}
#paper-recycling-page #individual-service .service-content .service-text p {
  margin-bottom: 1.5em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #individual-service .service-content .service-text p {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #individual-service .service-content .service-text .service-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #individual-service .service-content .service-text .service-features {
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #individual-service .service-content .service-text .service-features .feature-item {
    width: 50%;
  }
}
#paper-recycling-page #individual-service .service-content .service-text .service-features .feature-item h4 {
  font-size: 0.16rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #individual-service .service-content .service-text .service-features .feature-item h4 {
    font-size: 0.18rem;
  }
}
#paper-recycling-page #individual-service .service-content .service-text .service-features .feature-item ul {
  list-style: none;
  padding: 0;
}
#paper-recycling-page #individual-service .service-content .service-text .service-features .feature-item ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #individual-service .service-content .service-text .service-features .feature-item ul li {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #individual-service .service-content .service-text .service-features .feature-item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #individual-service .service-content .service-image {
    width: 40%;
  }
}
#paper-recycling-page #individual-service .service-content .service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#paper-recycling-page #office-access {
  background: #EDEDED;
}
#paper-recycling-page #office-access .access-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #office-access .access-content {
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #office-access .access-content .access-info {
    width: 40%;
  }
}
#paper-recycling-page #office-access .access-content .access-info h3 {
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #office-access .access-content .access-info h3 {
    font-size: 0.2rem;
  }
}
#paper-recycling-page #office-access .access-content .access-info .office-details {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 2em;
}
#paper-recycling-page #office-access .access-content .access-info .office-details p {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #office-access .access-content .access-info .office-details p {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #office-access .access-content .access-info .office-details p:last-child {
  margin-bottom: 0;
}
#paper-recycling-page #office-access .access-content .access-info .access-button .btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #office-access .access-content .access-info .access-button .btn-primary {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #office-access .access-content .access-info .access-button .btn-primary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #office-access .access-content .access-map {
    width: 60%;
  }
}
#paper-recycling-page #office-access .access-content .access-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#paper-recycling-page #privacy-policy {
  background: #EDEDED;
}
#paper-recycling-page #privacy-policy .policy-content {
  max-width: 1000px;
  margin: 0 auto;
}
#paper-recycling-page #privacy-policy .policy-content p {
  text-align: center;
  margin-bottom: 3em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #privacy-policy .policy-content p {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #privacy-policy .policy-content .policy-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#paper-recycling-page #privacy-policy .policy-content .policy-items .policy-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}
#paper-recycling-page #privacy-policy .policy-content .policy-items .policy-item h3 {
  font-size: 0.18rem;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #privacy-policy .policy-content .policy-items .policy-item h3 {
    font-size: 0.2rem;
  }
}
#paper-recycling-page #privacy-policy .policy-content .policy-items .policy-item p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #privacy-policy .policy-content .policy-items .policy-item p {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #paper-recycling-cta {
  background-image: url(../images/top-sustinable.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
#paper-recycling-page #paper-recycling-cta:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#paper-recycling-page #paper-recycling-cta h2 {
  color: #fff;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
#paper-recycling-page #paper-recycling-cta p {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #paper-recycling-cta p {
    font-size: 0.16rem;
  }
}
#paper-recycling-page #paper-recycling-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #paper-recycling-cta .cta-buttons {
    flex-direction: row;
    gap: 40px;
  }
}
#paper-recycling-page #paper-recycling-cta .btn-primary, #paper-recycling-page #paper-recycling-cta .btn-secondary {
  font-size: 0.14rem;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  #paper-recycling-page #paper-recycling-cta .btn-primary, #paper-recycling-page #paper-recycling-cta .btn-secondary {
    font-size: 0.16rem;
    padding: 1em 3em;
  }
}
#paper-recycling-page #paper-recycling-cta .btn-primary {
  background: #fff;
  color: var(--primary-color);
}
#paper-recycling-page #paper-recycling-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
#paper-recycling-page #paper-recycling-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
#paper-recycling-page #paper-recycling-cta .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

#metal-trading-page #metal-trading-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
#metal-trading-page #metal-trading-hero .hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}
#metal-trading-page #metal-trading-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#metal-trading-page #metal-trading-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#metal-trading-page #metal-trading-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#metal-trading-page #metal-trading-hero .hero-content h1 {
  font-size: 32px;
  color: #fff;
  font-family: "noto Serif JP";
  font-weight: 100;
  text-align: center;
  text-shadow: var(--shadow-medium);
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-hero .hero-content h1 {
    font-size: 44px;
  }
}
#metal-trading-page #metal-trading-hero .hero-content p {
  font-size: 12px;
  color: #fff;
  text-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-hero .hero-content p {
    font-size: 16px;
  }
}
#metal-trading-page .breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
#metal-trading-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#metal-trading-page section {
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #metal-trading-page section {
    padding: 160px 10vw;
  }
}
#metal-trading-page section h2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #metal-trading-page section h2 {
    font-size: 32px;
  }
}
#metal-trading-page section#metal-trading-hero {
  padding: 0;
}
#metal-trading-page #metal-types {
  background: #fff;
}
#metal-trading-page #metal-types .metal-types-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-types .metal-types-grid {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}
#metal-trading-page #metal-types .metal-types-grid .metal-type-item {
  text-align: center;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-types .metal-types-grid .metal-type-item {
    flex: 1;
    max-width: 200px;
  }
}
#metal-trading-page #metal-types .metal-types-grid .metal-type-item .metal-image {
  margin-bottom: 1em;
}
#metal-trading-page #metal-types .metal-types-grid .metal-type-item .metal-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-types .metal-types-grid .metal-type-item .metal-image img {
    height: 180px;
  }
}
#metal-trading-page #metal-types .metal-types-grid .metal-type-item h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-types .metal-types-grid .metal-type-item h3 {
    font-size: 20px;
  }
}
#metal-trading-page #metal-trading-details {
  background-color: #EDEDED;
}
#metal-trading-page #metal-trading-details .details-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-details .details-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-details .details-content .details-images {
    width: 40%;
  }
}
#metal-trading-page #metal-trading-details .details-content .details-images .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-details .details-content .details-images .image-grid {
    gap: 20px;
  }
}
#metal-trading-page #metal-trading-details .details-content .details-images .image-grid .image-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-details .details-content .details-images .image-grid .image-item img {
    height: 140px;
  }
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-details .details-content .details-text {
    width: 60%;
  }
}
#metal-trading-page #metal-trading-details .details-content .details-text p {
  margin-bottom: 1.5em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-details .details-content .details-text p {
    font-size: 16px;
  }
}
#metal-trading-page #metal-trading-office {
  background: #fff;
}
#metal-trading-page #metal-trading-office .office-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-office .office-content {
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-office .office-content .office-info {
    width: 40%;
  }
}
#metal-trading-page #metal-trading-office .office-content .office-info h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-office .office-content .office-info h3 {
    font-size: 20px;
  }
}
#metal-trading-page #metal-trading-office .office-content .office-info .office-details {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 2em;
}
#metal-trading-page #metal-trading-office .office-content .office-info .office-details p {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-office .office-content .office-info .office-details p {
    font-size: 16px;
  }
}
#metal-trading-page #metal-trading-office .office-content .office-info .office-details p:last-child {
  margin-bottom: 0;
}
#metal-trading-page #metal-trading-office .office-content .office-info .access-button .btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-office .office-content .office-info .access-button .btn-primary {
    font-size: 16px;
  }
}
#metal-trading-page #metal-trading-office .office-content .office-info .access-button .btn-primary:hover {
  background: #f8f9fa;
  color: var(--primary-color);
  transform: translateY(-2px);
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-office .office-content .office-image {
    width: 60%;
  }
}
#metal-trading-page #metal-trading-office .office-content .office-image iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#metal-trading-page #metal-trading-cta {
  background-image: url(../images/top-sustinable.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
#metal-trading-page #metal-trading-cta:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#metal-trading-page #metal-trading-cta h2 {
  color: #fff;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
#metal-trading-page #metal-trading-cta p {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-cta p {
    font-size: 16px;
  }
}
#metal-trading-page #metal-trading-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-cta .cta-buttons {
    flex-direction: row;
    gap: 40px;
  }
}
#metal-trading-page #metal-trading-cta .btn-primary, #metal-trading-page #metal-trading-cta .btn-secondary {
  font-size: 14px;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  #metal-trading-page #metal-trading-cta .btn-primary, #metal-trading-page #metal-trading-cta .btn-secondary {
    font-size: 16px;
    padding: 1em 3em;
  }
}
#metal-trading-page #metal-trading-cta .btn-primary {
  background: #fff;
  color: var(--primary-color);
}
#metal-trading-page #metal-trading-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
#metal-trading-page #metal-trading-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
#metal-trading-page #metal-trading-cta .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

#confidential-documents-page #confidential-documents-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
#confidential-documents-page #confidential-documents-hero .hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}
#confidential-documents-page #confidential-documents-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#confidential-documents-page #confidential-documents-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#confidential-documents-page #confidential-documents-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#confidential-documents-page #confidential-documents-hero .hero-content h1 {
  font-size: 32px;
  color: #fff;
  font-family: "noto Serif JP";
  font-weight: 100;
  text-align: center;
  text-shadow: var(--shadow-medium);
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-hero .hero-content h1 {
    font-size: 44px;
  }
}
#confidential-documents-page #confidential-documents-hero .hero-content p {
  font-size: 12px;
  color: #fff;
  text-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-hero .hero-content p {
    font-size: 16px;
  }
}
#confidential-documents-page .breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
#confidential-documents-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#confidential-documents-page section {
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page section {
    padding: 160px 10vw;
  }
}
#confidential-documents-page section h2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page section h2 {
    font-size: 32px;
  }
}
#confidential-documents-page section#confidential-documents-hero {
  padding: 0;
}
#confidential-documents-page #confidential-documents-overview {
  background: #fff;
}
#confidential-documents-page #confidential-documents-overview .overview-content {
  max-width: 1000px;
  margin: 0 auto;
}
#confidential-documents-page #confidential-documents-overview .overview-content p {
  text-align: center;
  margin-bottom: 3em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-overview .overview-content p {
    font-size: 16px;
  }
}
#confidential-documents-page #confidential-documents-overview .overview-content .overview-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-overview .overview-content .overview-features {
    flex-direction: row;
    gap: 40px;
  }
}
#confidential-documents-page #confidential-documents-overview .overview-content .overview-features .feature-item {
  text-align: center;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-overview .overview-content .overview-features .feature-item {
    flex: 1;
  }
}
#confidential-documents-page #confidential-documents-overview .overview-content .overview-features .feature-item .feature-icon {
  font-size: 48px;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-overview .overview-content .overview-features .feature-item .feature-icon {
    font-size: 64px;
  }
}
#confidential-documents-page #confidential-documents-overview .overview-content .overview-features .feature-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-overview .overview-content .overview-features .feature-item h3 {
    font-size: 20px;
  }
}
#confidential-documents-page #confidential-documents-overview .overview-content .overview-features .feature-item p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-overview .overview-content .overview-features .feature-item p {
    font-size: 16px;
  }
}
#confidential-documents-page #confidential-documents-items {
  background-color: #EDEDED;
}
#confidential-documents-page #confidential-documents-items .items-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-items .items-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
#confidential-documents-page #confidential-documents-items .items-grid .item-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-medium);
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-items .items-grid .item-card {
    width: calc(33.333% - 20px);
    padding: 40px 30px;
  }
}
#confidential-documents-page #confidential-documents-items .items-grid .item-card .item-icon {
  font-size: 48px;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-items .items-grid .item-card .item-icon {
    font-size: 64px;
  }
}
#confidential-documents-page #confidential-documents-items .items-grid .item-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-items .items-grid .item-card h3 {
    font-size: 20px;
  }
}
#confidential-documents-page #confidential-documents-items .items-grid .item-card p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-items .items-grid .item-card p {
    font-size: 16px;
  }
}
#confidential-documents-page #confidential-documents-process {
  background: #fff;
}
#confidential-documents-page #confidential-documents-process .process-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-process .process-steps {
    flex-direction: row;
    gap: 30px;
  }
}
#confidential-documents-page #confidential-documents-process .process-steps .step {
  text-align: center;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-process .process-steps .step {
    flex: 1;
  }
}
#confidential-documents-page #confidential-documents-process .process-steps .step .step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 1em;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-process .process-steps .step .step-number {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
}
#confidential-documents-page #confidential-documents-process .process-steps .step h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-process .process-steps .step h3 {
    font-size: 20px;
  }
}
#confidential-documents-page #confidential-documents-process .process-steps .step p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-process .process-steps .step p {
    font-size: 16px;
  }
}
#confidential-documents-page #confidential-documents-pricing {
  background-color: #EDEDED;
}
#confidential-documents-page #confidential-documents-pricing .pricing-content {
  max-width: 800px;
  margin: 0 auto;
}
#confidential-documents-page #confidential-documents-pricing .pricing-content p {
  text-align: center;
  margin-bottom: 3em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-pricing .pricing-content p {
    font-size: 16px;
  }
}
#confidential-documents-page #confidential-documents-pricing .pricing-content .pricing-factors .factor {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}
#confidential-documents-page #confidential-documents-pricing .pricing-content .pricing-factors .factor h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
  text-align: center;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-pricing .pricing-content .pricing-factors .factor h3 {
    font-size: 20px;
  }
}
#confidential-documents-page #confidential-documents-pricing .pricing-content .pricing-factors .factor ul {
  list-style: none;
  padding: 0;
}
#confidential-documents-page #confidential-documents-pricing .pricing-content .pricing-factors .factor ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.8em;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-pricing .pricing-content .pricing-factors .factor ul li {
    font-size: 16px;
  }
}
#confidential-documents-page #confidential-documents-pricing .pricing-content .pricing-factors .factor ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2em;
}
#confidential-documents-page #confidential-documents-faq {
  background: #fff;
}
#confidential-documents-page #confidential-documents-faq .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
#confidential-documents-page #confidential-documents-faq .faq-list .faq-item {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-color);
}
#confidential-documents-page #confidential-documents-faq .faq-list .faq-item h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-faq .faq-list .faq-item h3 {
    font-size: 18px;
  }
}
#confidential-documents-page #confidential-documents-faq .faq-list .faq-item p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-faq .faq-list .faq-item p {
    font-size: 16px;
  }
}
#confidential-documents-page #confidential-documents-cta {
  background-image: url(../images/top-sustinable.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
#confidential-documents-page #confidential-documents-cta:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#confidential-documents-page #confidential-documents-cta h2 {
  color: #fff;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
#confidential-documents-page #confidential-documents-cta p {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-cta p {
    font-size: 16px;
  }
}
#confidential-documents-page #confidential-documents-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-cta .cta-buttons {
    flex-direction: row;
    gap: 40px;
  }
}
#confidential-documents-page #confidential-documents-cta .btn-primary, #confidential-documents-page #confidential-documents-cta .btn-secondary {
  font-size: 14px;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  #confidential-documents-page #confidential-documents-cta .btn-primary, #confidential-documents-page #confidential-documents-cta .btn-secondary {
    font-size: 16px;
    padding: 1em 3em;
  }
}
#confidential-documents-page #confidential-documents-cta .btn-primary {
  background: #fff;
  color: var(--primary-color);
}
#confidential-documents-page #confidential-documents-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
#confidential-documents-page #confidential-documents-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
#confidential-documents-page #confidential-documents-cta .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

#plastic-recycling-page #plastic-recycling-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
#plastic-recycling-page #plastic-recycling-hero .hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}
#plastic-recycling-page #plastic-recycling-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#plastic-recycling-page #plastic-recycling-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#plastic-recycling-page #plastic-recycling-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#plastic-recycling-page #plastic-recycling-hero .hero-content h1 {
  font-size: 32px;
  color: #fff;
  font-family: "noto Serif JP";
  font-weight: 100;
  text-align: center;
  text-shadow: var(--shadow-medium);
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-hero .hero-content h1 {
    font-size: 44px;
  }
}
#plastic-recycling-page #plastic-recycling-hero .hero-content p {
  font-size: 12px;
  color: #fff;
  text-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-hero .hero-content p {
    font-size: 16px;
  }
}
#plastic-recycling-page .breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
#plastic-recycling-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#plastic-recycling-page section {
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page section {
    padding: 160px 10vw;
  }
}
#plastic-recycling-page section h2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page section h2 {
    font-size: 32px;
  }
}
#plastic-recycling-page section#plastic-recycling-hero {
  padding: 0;
}
#plastic-recycling-page #plastic-types {
  background: #fff;
}
#plastic-recycling-page #plastic-types .plastic-types-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-types .plastic-types-grid {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}
#plastic-recycling-page #plastic-types .plastic-types-grid .plastic-type-item {
  text-align: center;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-types .plastic-types-grid .plastic-type-item {
    flex: 1;
    max-width: 200px;
  }
}
#plastic-recycling-page #plastic-types .plastic-types-grid .plastic-type-item .plastic-image {
  margin-bottom: 1em;
}
#plastic-recycling-page #plastic-types .plastic-types-grid .plastic-type-item .plastic-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-types .plastic-types-grid .plastic-type-item .plastic-image img {
    height: 180px;
  }
}
#plastic-recycling-page #plastic-types .plastic-types-grid .plastic-type-item h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-types .plastic-types-grid .plastic-type-item h3 {
    font-size: 20px;
  }
}
#plastic-recycling-page #plastic-recycling-details {
  background-color: #EDEDED;
}
#plastic-recycling-page #plastic-recycling-details .details-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-details .details-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-details .details-content .details-text {
    width: 60%;
  }
}
#plastic-recycling-page #plastic-recycling-details .details-content .details-text p {
  margin-bottom: 1.5em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-details .details-content .details-text p {
    font-size: 16px;
  }
}
#plastic-recycling-page #plastic-recycling-details .details-content .details-text .recycling-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-details .details-content .details-text .recycling-features {
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-details .details-content .details-text .recycling-features .feature-item {
    width: 50%;
  }
}
#plastic-recycling-page #plastic-recycling-details .details-content .details-text .recycling-features .feature-item h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-details .details-content .details-text .recycling-features .feature-item h4 {
    font-size: 18px;
  }
}
#plastic-recycling-page #plastic-recycling-details .details-content .details-text .recycling-features .feature-item ul {
  list-style: none;
  padding: 0;
}
#plastic-recycling-page #plastic-recycling-details .details-content .details-text .recycling-features .feature-item ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-details .details-content .details-text .recycling-features .feature-item ul li {
    font-size: 16px;
  }
}
#plastic-recycling-page #plastic-recycling-details .details-content .details-text .recycling-features .feature-item ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-details .details-content .details-images {
    width: 40%;
  }
}
#plastic-recycling-page #plastic-recycling-details .details-content .details-images .image-single img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-details .details-content .details-images .image-single img {
    height: 350px;
  }
}
#plastic-recycling-page #plastic-recycling-office {
  background: #fff;
}
#plastic-recycling-page #plastic-recycling-office .office-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-office .office-content {
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-office .office-content .office-info {
    width: 40%;
  }
}
#plastic-recycling-page #plastic-recycling-office .office-content .office-info h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-office .office-content .office-info h3 {
    font-size: 20px;
  }
}
#plastic-recycling-page #plastic-recycling-office .office-content .office-info .office-details {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 2em;
}
#plastic-recycling-page #plastic-recycling-office .office-content .office-info .office-details p {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-office .office-content .office-info .office-details p {
    font-size: 16px;
  }
}
#plastic-recycling-page #plastic-recycling-office .office-content .office-info .office-details p:last-child {
  margin-bottom: 0;
}
#plastic-recycling-page #plastic-recycling-office .office-content .office-info .access-button .btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-office .office-content .office-info .access-button .btn-primary {
    font-size: 16px;
  }
}
#plastic-recycling-page #plastic-recycling-office .office-content .office-info .access-button .btn-primary:hover {
  background: #f8f9fa;
  color: var(--primary-color);
  transform: translateY(-2px);
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-office .office-content .office-image {
    width: 60%;
  }
}
#plastic-recycling-page #plastic-recycling-office .office-content .office-image iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#plastic-recycling-page #plastic-recycling-cta {
  background-image: url(../images/top-sustinable.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
#plastic-recycling-page #plastic-recycling-cta:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#plastic-recycling-page #plastic-recycling-cta h2 {
  color: #fff;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
#plastic-recycling-page #plastic-recycling-cta p {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-cta p {
    font-size: 16px;
  }
}
#plastic-recycling-page #plastic-recycling-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-cta .cta-buttons {
    flex-direction: row;
    gap: 40px;
  }
}
#plastic-recycling-page #plastic-recycling-cta .btn-primary, #plastic-recycling-page #plastic-recycling-cta .btn-secondary {
  font-size: 14px;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  #plastic-recycling-page #plastic-recycling-cta .btn-primary, #plastic-recycling-page #plastic-recycling-cta .btn-secondary {
    font-size: 16px;
    padding: 1em 3em;
  }
}
#plastic-recycling-page #plastic-recycling-cta .btn-primary {
  background: #fff;
  color: var(--primary-color);
}
#plastic-recycling-page #plastic-recycling-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
#plastic-recycling-page #plastic-recycling-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
#plastic-recycling-page #plastic-recycling-cta .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

#industrial-waste-page #industrial-waste-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
#industrial-waste-page #industrial-waste-hero .hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}
#industrial-waste-page #industrial-waste-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#industrial-waste-page #industrial-waste-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#industrial-waste-page #industrial-waste-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#industrial-waste-page #industrial-waste-hero .hero-content h1 {
  font-size: 32px;
  color: #fff;
  font-family: "noto Serif JP";
  font-weight: 100;
  text-align: center;
  text-shadow: var(--shadow-medium);
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-hero .hero-content h1 {
    font-size: 44px;
  }
}
#industrial-waste-page #industrial-waste-hero .hero-content p {
  font-size: 12px;
  color: #fff;
  text-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-hero .hero-content p {
    font-size: 16px;
  }
}
#industrial-waste-page .breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
#industrial-waste-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#industrial-waste-page section {
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page section {
    padding: 160px 10vw;
  }
}
#industrial-waste-page section h2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page section h2 {
    font-size: 32px;
  }
}
#industrial-waste-page section#industrial-waste-hero {
  padding: 0;
}
#industrial-waste-page #industrial-waste-overview {
  background: #fff;
}
#industrial-waste-page #industrial-waste-overview .overview-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-overview .overview-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-overview .overview-content .overview-text {
    width: 60%;
    margin: 0 auto;
  }
}
#industrial-waste-page #industrial-waste-overview .overview-content .overview-text p {
  margin-bottom: 1.5em;
  line-height: 1.7;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-overview .overview-content .overview-text p {
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-overview .overview-content .overview-image {
    width: 40%;
  }
}
#industrial-waste-page #industrial-waste-overview .overview-content .overview-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-overview .overview-content .overview-image img {
    height: 350px;
  }
}
#industrial-waste-page #waste-types {
  background-color: #EDEDED;
}
#industrial-waste-page #waste-types .waste-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #waste-types .waste-types-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}
#industrial-waste-page #waste-types .waste-types-grid .waste-type-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: 0.3s;
}
#industrial-waste-page #waste-types .waste-types-grid .waste-type-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}
#industrial-waste-page #waste-types .waste-types-grid .waste-type-item .waste-icon {
  font-size: 48px;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #waste-types .waste-types-grid .waste-type-item .waste-icon {
    font-size: 64px;
  }
}
#industrial-waste-page #waste-types .waste-types-grid .waste-type-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #waste-types .waste-types-grid .waste-type-item h3 {
    font-size: 20px;
  }
}
#industrial-waste-page #waste-types .waste-types-grid .waste-type-item p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #waste-types .waste-types-grid .waste-type-item p {
    font-size: 16px;
  }
}
#industrial-waste-page #collection-process {
  background: #fff;
}
#industrial-waste-page #collection-process .process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #collection-process .process-steps {
    gap: 40px;
  }
}
#industrial-waste-page #collection-process .process-steps .step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #collection-process .process-steps .step-item {
    gap: 30px;
  }
}
#industrial-waste-page #collection-process .process-steps .step-item .step-number {
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #collection-process .process-steps .step-item .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
#industrial-waste-page #collection-process .process-steps .step-item .step-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #collection-process .process-steps .step-item .step-content h3 {
    font-size: 20px;
  }
}
#industrial-waste-page #collection-process .process-steps .step-item .step-content p {
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #collection-process .process-steps .step-item .step-content p {
    font-size: 16px;
  }
}
#industrial-waste-page #licenses {
  background-color: #EDEDED;
}
#industrial-waste-page #licenses .licenses-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #licenses .licenses-content {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
}
#industrial-waste-page #licenses .licenses-content .license-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #licenses .licenses-content .license-item {
    width: calc(50% - 20px);
  }
}
#industrial-waste-page #licenses .licenses-content .license-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #licenses .licenses-content .license-item h3 {
    font-size: 20px;
  }
}
#industrial-waste-page #licenses .licenses-content .license-item p {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #licenses .licenses-content .license-item p {
    font-size: 16px;
  }
}
#industrial-waste-page #licenses .licenses-content .license-item p:last-child {
  margin-bottom: 0;
}
#industrial-waste-page #industrial-waste-office {
  background: #fff;
}
#industrial-waste-page #industrial-waste-office .office-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-office .office-content {
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-office .office-content .office-info {
    width: 40%;
  }
}
#industrial-waste-page #industrial-waste-office .office-content .office-info h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-office .office-content .office-info h3 {
    font-size: 20px;
  }
}
#industrial-waste-page #industrial-waste-office .office-content .office-info .office-details {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 2em;
}
#industrial-waste-page #industrial-waste-office .office-content .office-info .office-details p {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-office .office-content .office-info .office-details p {
    font-size: 16px;
  }
}
#industrial-waste-page #industrial-waste-office .office-content .office-info .office-details p:last-child {
  margin-bottom: 0;
}
#industrial-waste-page #industrial-waste-office .office-content .office-info .access-button .btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-office .office-content .office-info .access-button .btn-primary {
    font-size: 16px;
  }
}
#industrial-waste-page #industrial-waste-office .office-content .office-info .access-button .btn-primary:hover {
  background: #f8f9fa;
  color: var(--primary-color);
  transform: translateY(-2px);
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-office .office-content .office-image {
    width: 60%;
  }
}
#industrial-waste-page #industrial-waste-office .office-content .office-image iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
#industrial-waste-page #industrial-waste-cta {
  background-image: url(../images/top-sustinable.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
#industrial-waste-page #industrial-waste-cta:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#industrial-waste-page #industrial-waste-cta h2 {
  color: #fff;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
#industrial-waste-page #industrial-waste-cta p {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-cta p {
    font-size: 16px;
  }
}
#industrial-waste-page #industrial-waste-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-cta .cta-buttons {
    flex-direction: row;
    gap: 40px;
  }
}
#industrial-waste-page #industrial-waste-cta .btn-primary, #industrial-waste-page #industrial-waste-cta .btn-secondary {
  font-size: 14px;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  #industrial-waste-page #industrial-waste-cta .btn-primary, #industrial-waste-page #industrial-waste-cta .btn-secondary {
    font-size: 16px;
    padding: 1em 3em;
  }
}
#industrial-waste-page #industrial-waste-cta .btn-primary {
  background: #fff;
  color: var(--primary-color);
}
#industrial-waste-page #industrial-waste-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
#industrial-waste-page #industrial-waste-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
#industrial-waste-page #industrial-waste-cta .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

#contact-page #contact-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
#contact-page #contact-hero .hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}
#contact-page #contact-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#contact-page #contact-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#contact-page #contact-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#contact-page #contact-hero .hero-content h1 {
  font-size: 32px;
  color: #fff;
  font-family: "noto Serif JP";
  font-weight: 100;
  text-align: center;
  text-shadow: var(--shadow-medium);
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-hero .hero-content h1 {
    font-size: 44px;
  }
}
#contact-page #contact-hero .hero-content p {
  font-size: 12px;
  color: #fff;
  text-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #contact-page #contact-hero .hero-content p {
    font-size: 16px;
  }
}
#contact-page .breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
#contact-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
#contact-page section {
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #contact-page section {
    padding: 160px 10vw;
  }
}
#contact-page section h2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #contact-page section h2 {
    font-size: 32px;
  }
}
#contact-page section#contact-hero {
  padding: 0;
}
#contact-page #contact-form {
  background: #fff;
}
#contact-page #contact-form .contact-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content {
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content .contact-info {
    width: 40%;
  }
}
#contact-page #contact-form .contact-content .contact-info h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content .contact-info h3 {
    font-size: 20px;
  }
}
#contact-page #contact-form .contact-content .contact-info .phone-info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 2em;
}
#contact-page #contact-form .contact-content .contact-info .phone-info .phone-number {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1em;
}
#contact-page #contact-form .contact-content .contact-info .phone-info .phone-number .phone-icon {
  font-size: 24px;
}
#contact-page #contact-form .contact-content .contact-info .phone-info .phone-number a {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content .contact-info .phone-info .phone-number a {
    font-size: 28px;
  }
}
#contact-page #contact-form .contact-content .contact-info .phone-info .phone-number a:hover {
  text-decoration: underline;
}
#contact-page #contact-form .contact-content .contact-info .phone-info p {
  margin: 0;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content .contact-info .phone-info p {
    font-size: 16px;
  }
}
#contact-page #contact-form .contact-content .contact-info .office-info h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content .contact-info .office-info h4 {
    font-size: 18px;
  }
}
#contact-page #contact-form .contact-content .contact-info .office-info p {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content .contact-info .office-info p {
    font-size: 16px;
  }
}
#contact-page #contact-form .contact-content .contact-info .office-info .btn-secondary {
  display: inline-block;
  margin-top: 1em;
  padding: 12px 24px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content .contact-info .office-info .btn-secondary {
    font-size: 16px;
    padding: 15px 30px;
  }
}
#contact-page #contact-form .contact-content .contact-info .office-info .btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content .form-container {
    width: 60%;
  }
}
#contact-page #contact-form .contact-content .form-container .wpcf7 {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}
#contact-page #contact-form .contact-content .form-container .wpcf7 p {
  margin: 0;
  padding: 0;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 br {
  display: none;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form label {
    font-size: 16px;
  }
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
  margin-bottom: 20px;
  display: block;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=text],
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=email],
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=tel],
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap textarea,
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: 0.3s;
  box-sizing: border-box;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=text]:focus,
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=email]:focus,
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=tel]:focus,
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap textarea:focus,
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(34, 95, 34, 0.1);
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap textarea {
  min-height: 120px;
  resize: vertical;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 14px;
  margin-top: 5px;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  margin: 8px 0;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  margin-right: 8px;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-checkbox .wpcf7-list-item label {
  display: inline;
  font-weight: normal;
  color: #333;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  margin: 0;
  width: auto;
  height: auto;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: inline;
  font-weight: normal;
  color: #333;
  margin: 0;
  padding: 0;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
    font-size: 16px;
  }
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: 0.3s;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label a:hover {
  color: #1a5f1a;
  text-decoration: none;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-submit {
  background: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-submit {
    width: auto;
    padding: 15px 40px;
  }
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-submit:hover {
  background: #1a5f1a;
  transform: translateY(-2px);
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
#contact-page #contact-form .contact-content .form-container .wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-validation-errors {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
#contact-page #contact-faq {
  background-color: #EDEDED;
}
#contact-page #contact-faq .faq-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-faq .faq-content {
    gap: 40px;
  }
}
#contact-page #contact-faq .faq-content .faq-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}
#contact-page #contact-faq .faq-content .faq-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #contact-page #contact-faq .faq-content .faq-item h3 {
    font-size: 20px;
  }
}
#contact-page #contact-faq .faq-content .faq-item p {
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-faq .faq-content .faq-item p {
    font-size: 16px;
  }
}
#contact-page #contact-access {
  background: #fff;
}
#contact-page #contact-access .access-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-access .access-content {
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 769px) {
  #contact-page #contact-access .access-content .access-info {
    width: 40%;
  }
}
#contact-page #contact-access .access-content .access-info h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #contact-page #contact-access .access-content .access-info h3 {
    font-size: 20px;
  }
}
#contact-page #contact-access .access-content .access-info .office-details {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 2em;
}
#contact-page #contact-access .access-content .access-info .office-details p {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-access .access-content .access-info .office-details p {
    font-size: 16px;
  }
}
#contact-page #contact-access .access-content .access-info .office-details p:last-child {
  margin-bottom: 0;
}
#contact-page #contact-access .access-content .access-info .access-button .btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #contact-page #contact-access .access-content .access-info .access-button .btn-primary {
    font-size: 16px;
  }
}
#contact-page #contact-access .access-content .access-info .access-button .btn-primary:hover {
  background: #f8f9fa;
  color: var(--primary-color);
  transform: translateY(-2px);
}
@media screen and (min-width: 769px) {
  #contact-page #contact-access .access-content .access-map {
    width: 60%;
  }
}
#contact-page #contact-access .access-content .access-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}

.privacycheck {
  display: block !important;
  font-size: inherit !important;
  margin-bottom: 0 !important;
  font-weight: normal !important;
  color: #262626 !important;
}
.privacycheck .wpcf7-form-control-wrap {
  display: inline-block !important;
}

.privacy-policy-link {
  color: var(--primary-color) !important;
  text-decoration: underline !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}
.privacy-policy-link:hover {
  color: #1a5f1a !important;
  text-decoration: none !important;
  opacity: 0.8 !important;
}
.privacy-policy-link:visited {
  color: var(--primary-color) !important;
}
.privacy-policy-link:active {
  color: #1a5f1a !important;
}

#privacy-policy-page #privacy-policy-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
#privacy-policy-page #privacy-policy-hero .hero-background {
  position: relative;
  width: 100%;
  height: 100%;
}
#privacy-policy-page #privacy-policy-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#privacy-policy-page #privacy-policy-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
#privacy-policy-page #privacy-policy-hero .hero-content {
  text-align: center;
  color: var(--white);
  z-index: 3;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#privacy-policy-page #privacy-policy-hero .hero-content h1 {
  font-size: 32px;
  color: #fff;
  font-family: "noto Serif JP";
  font-weight: 100;
  text-align: center;
  text-shadow: var(--shadow-medium);
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-hero .hero-content h1 {
    font-size: 44px;
  }
}
#privacy-policy-page #privacy-policy-hero .hero-content p {
  font-size: 12px;
  color: #fff;
  text-shadow: var(--shadow-light);
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-hero .hero-content p {
    font-size: 16px;
  }
}
#privacy-policy-page .breadcrumb-container {
  background: #f8f9fa;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}
#privacy-policy-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#privacy-policy-page section {
  padding: 64px 24px;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page section {
    padding: 160px 10vw;
  }
}
#privacy-policy-page section h2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 2em;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page section h2 {
    font-size: 32px;
  }
}
#privacy-policy-page section#privacy-policy-hero {
  padding: 0;
}
#privacy-policy-page #privacy-policy-content {
  background: #fff;
}
#privacy-policy-page #privacy-policy-content .policy-content {
  max-width: 800px;
  margin: 0 auto;
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-intro {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 3em;
  border-left: 4px solid var(--primary-color);
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-intro p {
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-content .policy-content .policy-intro p {
    font-size: 16px;
  }
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 3em;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-content .policy-content .policy-items {
    gap: 40px;
  }
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-items .policy-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  border: 1px solid #e9ecef;
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-items .policy-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-content .policy-content .policy-items .policy-item h3 {
    font-size: 20px;
  }
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-items .policy-item p {
  line-height: 1.7;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-content .policy-content .policy-items .policy-item p {
    font-size: 16px;
  }
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-details h2 {
  text-align: left;
  margin-bottom: 2em;
  color: var(--primary-color);
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section {
  margin-bottom: 3em;
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: var(--primary-color);
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section h3 {
    font-size: 20px;
  }
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section p {
  line-height: 1.7;
  margin-bottom: 1em;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section p {
    font-size: 16px;
  }
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1em;
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section ul li {
    font-size: 16px;
  }
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section .contact-info {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section .contact-info p {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section .contact-info p {
    font-size: 16px;
  }
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-details .detail-section .contact-info p:last-child {
  margin-bottom: 0;
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-update {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 3em;
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-update p {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-content .policy-content .policy-update p {
    font-size: 16px;
  }
}
#privacy-policy-page #privacy-policy-content .policy-content .policy-update p:last-child {
  margin-bottom: 0;
}
#privacy-policy-page #privacy-policy-cta {
  background-image: url(../images/top-sustinable.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}
#privacy-policy-page #privacy-policy-cta:before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#privacy-policy-page #privacy-policy-cta h2 {
  color: #fff;
  margin-bottom: 1em;
  position: relative;
  z-index: 1;
}
#privacy-policy-page #privacy-policy-cta p {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-cta p {
    font-size: 16px;
  }
}
#privacy-policy-page #privacy-policy-cta .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-cta .cta-buttons {
    flex-direction: row;
    gap: 40px;
  }
}
#privacy-policy-page #privacy-policy-cta .btn-primary, #privacy-policy-page #privacy-policy-cta .btn-secondary {
  font-size: 14px;
  font-weight: bold;
  padding: 1em 2em;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  #privacy-policy-page #privacy-policy-cta .btn-primary, #privacy-policy-page #privacy-policy-cta .btn-secondary {
    font-size: 16px;
    padding: 1em 3em;
  }
}
#privacy-policy-page #privacy-policy-cta .btn-primary {
  background: #fff;
  color: var(--primary-color);
}
#privacy-policy-page #privacy-policy-cta .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}
#privacy-policy-page #privacy-policy-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
#privacy-policy-page #privacy-policy-cta .btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
