/* color option */
.clr-blue {
    color: var(--clr-blue);
}
.clr-white {
    color: #ffffff;
}
.clr-black {
    color: var(--clr-black);
}
/* background-color option */
.bg-clr-blue {
    background-color: var(--clr-blue);
}
.bg-clr-white {
    background-color: #ffffff;
}
.bg-clr-black {
    background-color: var(--clr-black);
}
/* border option */
.border-blue {
    border-color: var(--clr-blue);
}
.border-1 {
    border-width: 1px;
    border-style: solid;
}
/* heading tag */
h1, h2 {
    font-size: 5.2rem;
    font-weight: 900;
    margin-top: 0;
}
h1 span.font-ja, h2 span.font-ja {
    font-size: 0.6em;
}

.overflow-hidden {
    overflow: hidden;
}
.overflow-auto {
    overflow: auto;
}
.overflow-x-hidden {
    overflow-x: hidden;
}
.overflow-y-hidden {
    overflow-y: hidden;
}
.overflow-x-auto {
    overflow-x: auto;
}
.overflow-y-auto {
    overflow-y: auto;
}
.overflow-auto {
    overflow: auto;
}
.float-left {
    float: left;
}
.float-right {
    float: right;
}
/* display */
.inline-block {
    display: inline-block;
}
.block {
    display:block;
}
.flex {
    display: flex;
}
.flex-wrap {
    flex-wrap: wrap;
}
.justify-between {
    justify-content: space-between;
}

/* container  */

.container {
    padding: 0 22rem;
}
.o-container {
    padding: 0 20rem;
}
.i-container {
    padding: 0 42rem;
}
.h-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}
.half-container {
    padding-left: 22rem;
}

.y-center {
    align-items: center;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
/* margin */
.ml-auto {
    margin-left: auto;
}
.mr-0 {
    margin-right: 0;
}
.mx-auto {
    margin-inline: auto auto;
    width: fit-content;
}

/* font */
.font-ja {
    font-family: var(--font-ja) !important;
}
.font-en {
    font-family: var(--font-en) !important;
}
/* font weight */
.weight-100 {
    font-weight: 100 !important;
}
.weight-200 {
    font-weight: 200 !important;
}
.weight-300 {
    font-weight: 300 !important;
}
.weight-400 {
    font-weight: 400 !important;
}
.weight-500 {
    font-weight: 500 !important;
}
.weight-500 {
    font-weight: 500 !important;
}
.weight-600 {
    font-weight: 600 !important;
}
.weight-700 {
    font-weight: 700 !important;
}
.weight-800 {
    font-weight: 800 !important;
}
.weight-900 {
    font-weight: 900 !important;
}


/* subtitle */
.subtitle {
    font-size: 2rem;
    font-weight:400;
    display: inline-block;
}
.subtitle:after {
    position: absolute;
    content: "";
    left: 120%;
    top: 50%;
    height: 1px;
    width: 10rem;
    background-color: var(--clr-black);
}


/* width */
.w-fit {
    width: fit-content;
}
.w-full {
    width: 100%;
}

/* animation */
@keyframes rotate {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.href-underline {
    text-decoration: underline;
}
.href-more {
    padding: 0 4rem;
}
.href-more:hover .btn-svg-wrapper {
    background-color: #fff;
}
.href-more [id="firstArr"] {
    transition: 0.3s all ease-in-out;
}
.href-more svg:not([id="firstArr"]) {
    transition: 0.3s all ease-in-out;
}
.href-more:hover [id="firstArr"] {
    transform: translate(0);
}
.href-more:hover svg:not([id="firstArr"]) {
    transform: translate(100%);
    position: absolute;
    left: 100%;
}
.btn-svg-wrapper {
    width: 5rem;
    aspect-ratio: 1 / 1;
    background-color: var(--clr-blue);
    border: 1px solid var(--clr-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.3s all ease-in-out;

}
.btn-svg-wrapper svg {
    width: 2rem;
    vertical-align: bottom;
}
.btn-svg-wrapper svg[id="firstArr"] {
    transform: translate(-100%);
} 

.btn-more {
    column-gap: 1rem;
}
.btn-more .btn-txt {
    font-size: 2rem;
}
.btn-txt:after {
    content: "";
    position: absolute;
    top: 120%;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-black);
    transition: 0.3s all ease-in-out;
}
.href-more:hover .btn-txt:after {
    width: 100%;
}


.href-back {

    padding: 0 4rem;
    margin-top: 10rem;
}
.href-back:hover .btn-svg-wrapper {
    background-color: #fff;
}
.href-back [id="firstArr"] {
    transition: 0.3s all ease-in-out;
}
.href-back svg:not([id="firstArr"]) {
    transition: 0.3s all ease-in-out;
}

.href-back:hover .btn-svg-wrapper svg[id="firstArr"] {
    transform: translate(-190%);
    
}
.btn-svg-wrapper {
    width: 5rem;
    aspect-ratio: 1 / 1;
    background-color: var(--clr-blue);
    border: 1px solid var(--clr-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.3s all ease-in-out;

}
.btn-svg-wrapper svg {
    width: 2rem;
    vertical-align: bottom;
}
.href-back .btn-svg-wrapper svg[id="firstArr"] {
    transform: translate(0);
    z-index: 2;
} 

.btn-back {
    column-gap: 1rem;
}
.btn-back .btn-txt {
    font-size: 2rem;
}
.btn-txt:after {
    content: "";
    position: absolute;
    top: 120%;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--clr-black);
    transition: 0.3s all ease-in-out;
}
.href-back:hover .btn-txt:after {
    width: 100%;
}




.btn-view-all {
    position: relative;
    border: 1px solid var(--clr-blue);
    border-radius: 6rem;
    padding: 2rem 2rem;
    width: 20rem;
    display: inline-block;
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    overflow: hidden;
}
.btn-view-all:hover {
    color: #ffffff;
}
.btn-view-all::before,.btn-view-all::after {
    content: "";
    position: absolute;
    left: 20%;
    top: 50%;
    width: 0.6rem;
    aspect-ratio: 1/1;
    border-radius: 50%;
    transform-origin: center center;
    transition: 0.3s all ease-in-out;
}
.btn-view-all::before {
    background-color: var(--clr-blue);
    z-index: -1;
}
.btn-view-all:hover::before {
    transform: scale(100);
    
}
.btn-view-all::after {
    transform: scale(0);
    background-color: #fff;
}
.btn-view-all:hover::after {
    transform: scale(1);
}
.text-center {
    text-align: center;
}


/* Fullscreen loader styling */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: transform 1s ease-out; /* Apply ease-out transition */
}

/* Hide main content initially */
#content {
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
}

/* Video styling */
#loadingVideo {
    max-width: 100%;
    max-height: 100%;
    width: 400px;
}

/* Slide-up effect for loader */
.slide-up {
    transform: translateY(-100%);
}

/* .animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
  } */



  /* cursor*/
  .pointer {
    position: relative;
    z-index: 99999999999999999999999999999;
  }
.cursor {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid var(--clr-blue);
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  transform: translate(calc(-50% + 15px), -50%);
}

.cursor2 {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: var(--clr-blue);
  opacity: .3;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width .3s, height .3s, opacity .3s;
}

.pointer .hover {
  background-color: transparent;
  opacity: 0;
  
}

.cursorinnerhover {
  width: 50px;
  height: 50px;
  opacity: .5;
}

/* end cursor */


.fadeUp .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    font-size: inherit;
}
.pc-hide {
    display: none;
}
.blue-point {
    width: 1.2rem;
    aspect-ratio: 1/1;
    background-color: var(--clr-blue);
    border-radius: 50%;
}
.navigation {
    position: static;
    width: fit-content;
    aspect-ratio: 2 / 1;
    border-bottom-right-radius: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 3.2rem;
    filter: drop-shadow(6px 0px 5px var(--clr-grey));
    backdrop-filter: blur(3px);
    
    column-gap: 2rem;
}
 .navigation .href-more:first-child {
    transform: scaleX(-1);
}
 .navigation .href-more {
    padding: 0 0rem;
}
.navigation .btn-svg-wrapper {
    width: 6.4rem;
}
.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
}
.larger {
    font-size: 2.2em;
    
    font-weight: 900;
}
.largest-number {
    font-size: 3em;
    font-weight: 900;
    font-family: var(--font-en);

}
@media screen and (max-width: 1356px) {
    .half-container {
        padding-left: 10rem;
    }
}
@media screen and (max-width: 1024px) {
    .i-container {
        padding: 0 30rem;
    }
}
@media screen and (max-width: 768px) {
    .container {
        padding: 0 4rem;
    }
    .h-container {
        padding: 0 2rem;
    }
    img[alt="site-logo"] {
        width: 80px;
    }
    .pointer {
        display: none;
    }
    .i-container {
        padding: 0 4rem;
    }
        .half-container {
            padding-left: 4rem;
            padding-right: 4rem;
        }
}
@media screen and (max-width: 426px) {
    .container {
        padding: 0 1.5rem;
    }
    h2 {
        font-size: 24px;
        font-weight: 900;
    }
    .pc-hide {
        display: block;
    }
    .navigation {
        width: fit-content;
        left: unset;
        top: 4rem;
        background-color: transparent;
        padding-inline: 0;
        backdrop-filter: blur(0px);
        flex-direction: column;
        row-gap: 2rem;
        right: 1rem;
    }
    .table-wrapper {
        width: 100%;
        overflow-x: auto;
    }
    .half-container {
        padding: 0 1.5rem;
    }
}

/* contact */

.contact-link {
    background-image: url(../images/contact_link_bg.png);
    background-size: cover;
    position: relative;
    max-width: 94%;
    padding: 16rem 14rem 16rem 22rem;
    color: #fff;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 3.2rem;
    z-index: 1;
    
}
.contact-link h4 {
    font-size: 6.4rem;
    margin: 0 0;
}
.contact-link h4 small {
    font-size: 0.4em;
    font-weight: 400;
}
.contact-link:hover {
    opacity: 1;
}
.circle-1 {
    stroke-dasharray: 565;
    animation: 2s draw infinite;
  }
  [alt="next_arrow"] {
    width: 4rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: rightMove;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  }
  
  @keyframes rightMove {
    0% {
        left: 50%;
        opacity: 1;
    }
    100% {
        left: 70%;
        opacity: 0;
    }
    
  }
  [alt="contact_logo"] {
    transform: perspective(207px) rotateX(0deg) rotateY(-11deg) translate(-50%, -50%);
    filter: drop-shadow(3px 1px 2px var(--clr-grey));
    position: absolute;
    left: 44%;
    top: 45%;
    width: 65rem;
    z-index: 0;
    opacity: 0.3;
}
  @keyframes draw {
      0% {stroke-dashoffset: 565;}
      100% {stroke-dashoffset: 0;}
  }
  @media screen and (max-width: 768px) {

    .contact-link {
        max-width: unset;
        width: 100%;
        padding: 14rem 8rem;
        border-top-left-radius: 3.2rem;
    }
    .contact-link h4 {
        font-size: 5.6rem;
        margin: 0 0;
    }
  }
  @media screen and (max-width: 426px) {
    [alt="contact_logo"] {
        left: 20%;
        width: 50%;
    }
    .contact-link h4 {
        font-size: 4.3rem;
    }
  }

  /* faq  */

  .faq-lists {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    font-size: 1.8rem;
}

.faq-question {
    padding: 18px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    background-color: #f8f8f8;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #eaeaea;
}

.faq-answer {
    padding: 15px;
    display: none;
    border-top: 1px solid #ddd;
}

.icon {
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}
.common-transition {
    transition: all 0.3s ease-in-out;
}



.sec-rec-cont {
    display: flex;
    flex-wrap: wrap;
    aspect-ratio: 3.6/1;
    padding: 0 0 !important;
}
.rec-wrapper {
    width: 50%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    
    display: inline-block;
    padding: 8rem 0;
}
.rec-wrapper h3 {
    position: relative;
    font-size: 3rem !important;
    text-align: center!important;
    margin-bottom: 5rem;
}
.rec-wrapper h3 span.font-ja{
    font-size: inherit !important;
    font-weight: inherit !important;
}
.rec-wrapper h3 + p {
    text-align: center;
    font-size: 1.8rem !important;
    line-height: 2;
}
.rec-wrapper .href-more {
    color: #fff !important;
}
.rec-wrapper .btn-txt:after {
    background-color: #fff !important;
}
.rec-wrapper h3 span.font-en {
    font-size: 1.8em !important;
}
.rec-wrapper h3:after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background-image: url("../images/icon-plus-white.svg");
}
.sec-rec-cont .rec-wrapper:first-child {
    background-image: linear-gradient(#0000007a, #0000003d), url("../images/company/company.jpg");
}
.sec-rec-cont .rec-wrapper:nth-child(2){
    background-image: linear-gradient(#0000007a, #0000003d), url("../images/contact/contact.jpeg");
}
@media screen and (max-width: 768px) {
    

    .rec-wrapper {
        width: 100%;
        height: unset;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        color: #fff;
        /* display: flex; */
        display: inline-block;
        padding: 8rem 0;
        aspect-ratio: 3 / 1;
    }
}

/* パンくずリスト（第32-3）：フッター直上に控えめに表示 */
.breadcrumbs {
    padding: 1.6rem 0;
    border-top: 1px solid #ececec;
    background: #fafafa;
    font-size: 1.2rem;
    line-height: 1.6;
}
.breadcrumbs .container {
    width: min(92%, 1200px);
    margin: 0 auto;
}
.breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0;
    color: #777;
}
.breadcrumbs ol li {
    display: inline-flex;
    align-items: center;
}
.breadcrumbs ol li:not(:last-child)::after {
    content: "›";
    margin: 0 0.8rem;
    color: #bbb;
}
.breadcrumbs ol li a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumbs ol li a:hover {
    color: #000;
    text-decoration: underline;
}
.breadcrumbs ol li:last-child {
    color: #999;
}

/* ECコンサル サービスメニュー表（第9-9） */
.sec-service-menu{padding:6rem 0;}
.sec-service-menu .container{width:min(92%,1000px);margin:0 auto;}
.service-menu-table{margin:3rem 0;border-top:1px solid #ddd;}
.smt-row{display:grid;grid-template-columns:1.2fr 2fr 1.2fr;border-bottom:1px solid #ddd;}
.smt-row>div{padding:1.4rem 1.2rem;font-size:1.4rem;}
.smt-head{background:#f5f7f8;font-weight:700;}
.smt-c1{font-weight:600;}
@media(max-width:768px){.smt-row{grid-template-columns:1fr;}.smt-row>div{padding:0.8rem 1.2rem;}.smt-head{display:none;}.smt-c1{background:#f5f7f8;}}

/* 動画・ビジュアル制作 できること一覧（第8-9） */
.can-do-lists{list-style:none;margin:2rem 0 0;padding:0;display:flex;flex-wrap:wrap;gap:1rem;}
.can-do-lists li{background:#f5f7f8;border-radius:4rem;padding:0.8rem 1.8rem;font-size:1.4rem;}

/* EC通販事業 特徴一覧（第10-10） */
.ec-feature-lists{margin:2rem 0 0;padding-left:1.8rem;}
.ec-feature-lists li{font-size:1.4rem;line-height:2;}

/* リユース事業 特徴一覧（第11-8） */
.reuse-feature-lists{margin:2rem 0 0;padding-left:1.8rem;}
.reuse-feature-lists li{font-size:1.4rem;line-height:2;}

/* 実績ページ / GOOD CYCLE FES / 数字で見るANEW（第30・31・34-2） */
#worksPage, #goodCycleFesPage { padding: 12rem 0 6rem; }
.sec-works-bio, .sec-gcf-bio { margin-bottom: 4rem; }
.works-lead, .gcf-lead { font-size: 1.5rem; line-height: 2.2; margin-top: 2rem; }
.sec-works-numbers { background:#f5f7f8; padding: 5rem 0; margin: 4rem 0; }
.numbers-lists { list-style:none; margin:3rem 0 0; padding:0; display:flex; flex-wrap:wrap; justify-content:center; gap:2rem 4rem; }
.numbers-lists li { text-align:center; }
.numbers-lists .num { display:block; font-size:4rem; font-weight:900; color:var(--clr-blue); line-height:1.1; }
.numbers-lists .num small { font-size:1.4rem; font-weight:500; margin-left:0.3rem; }
.numbers-lists .num-label { font-size:1.4rem; color:#555; }
.numbers-note { font-size:1.2rem; color:#888; margin-top:2rem; }
.works-lists { list-style:none; margin:3rem 0 0; padding:0; display:grid; grid-template-columns:repeat(2,1fr); gap:2.5rem; }
.works-card { border:1px solid #e5e5e5; border-radius:1rem; padding:3rem; height:100%; transition:box-shadow .3s; }
.works-card:hover { box-shadow:0 6px 24px rgba(0,0,0,.08); }
.works-tag { display:inline-block; font-size:1.2rem; letter-spacing:.08em; color:var(--clr-blue); border:1px solid var(--clr-blue); border-radius:3rem; padding:.3rem 1.4rem; margin-bottom:1.4rem; }
.works-card h4 { font-size:2rem; margin:0 0 1rem; }
.works-metric { font-weight:700; margin:0 0 1rem; }
.works-comment { font-size:1.4rem; line-height:1.9; color:#555; }
.works-link { display:inline-block; margin-top:1.6rem; font-size:1.3rem; letter-spacing:.06em; color:var(--clr-blue); }
.sec-works-media, .sec-gcf-links { padding:5rem 0; }
.works-media-note, .works-media-lists, .gcf-link-lists { margin-top:2rem; }
.works-media-lists { list-style:none; padding:0; display:flex; flex-wrap:wrap; justify-content:center; gap:1.5rem; }
.works-media-lists li { background:#f5f7f8; padding:1.2rem 2.4rem; border-radius:.6rem; font-size:1.4rem; }
.gcf-link-lists { list-style:none; padding:0; max-width:520px; margin:3rem auto; }
.gcf-link-lists li { border-bottom:1px solid #eee; }
.gcf-link-lists li a { display:block; padding:1.4rem 0; font-size:1.5rem; }
.sec-works-cta, .sec-gcf-links .text-center { margin-top:3rem; text-align:center; }
.sec-works-cta p { margin-bottom:2rem; }
.company-numbers { background:#f5f7f8; padding:5rem 0; }
@media(max-width:768px){
  .works-lists{grid-template-columns:1fr;}
  .numbers-lists{gap:2rem;}
  .numbers-lists .num{font-size:3rem;}
  #worksPage,#goodCycleFesPage{padding:9rem 0 4rem;}
}
/* 第33-2：関連事業セクション（各事業ページ下部） */
.sec-related-business { padding: 6rem 0; }
.sec-related-business h4 { text-align: center; margin-bottom: 3rem; line-height: 1.4; }
.sec-related-business h4 .font-en { font-size: 2.4rem; letter-spacing: .1em; color: #1ea366; }
.sec-related-business h4 .font-ja { font-size: 1.4rem; color: #333; }
.related-business-lists { list-style: none; padding: 0; margin: 0 auto; max-width: 900px; display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; }
.related-business-lists li { flex: 0 1 auto; }
.related-business-lists a { display: block; padding: 1rem 1.8rem; border: 1px solid #1ea366; border-radius: 999px; color: #1ea366; font-size: 1.3rem; text-decoration: none; transition: all .25s ease; }
.related-business-lists a:hover { background: #1ea366; color: #fff; }
@media screen and (max-width: 768px) {
  .sec-related-business { padding: 4rem 0; }
  .related-business-lists { gap: .8rem; }
  .related-business-lists a { padding: .8rem 1.4rem; font-size: 1.2rem; }
}

/* 第34-1：TOP 5事業アイコン図解 */
.sec-biz-map { padding: 7rem 0; }
.sec-biz-map .biz-map-head { text-align: center; margin-bottom: 4rem; line-height: 1.4; }
.sec-biz-map .biz-map-head .font-en { font-size: 2.8rem; letter-spacing: .1em; color: #1ea366; display: block; }
.sec-biz-map .biz-map-head .font-ja { font-size: 1.5rem; color: #333; }
.biz-map-lists { list-style: none; padding: 0; margin: 0 auto; max-width: 1100px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.biz-map-lists li a { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; padding: 2rem 1rem; border: 1px solid #e2e8e5; border-radius: 12px; text-decoration: none; color: #333; background: #fff; transition: all .25s ease; height: 100%; }
.biz-map-lists li a:hover { border-color: #1ea366; box-shadow: 0 8px 24px rgba(30,163,102,.12); transform: translateY(-4px); }
.biz-map-icon { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #eefaf3; }
.biz-map-icon svg { width: 34px; height: 34px; stroke: #1ea366; fill: none; stroke-width: 1.6; }
.biz-map-label-en { font-size: 1.1rem; letter-spacing: .08em; color: #1ea366; font-weight: 700; }
.biz-map-label-ja { font-size: 1.25rem; line-height: 1.4; }
@media screen and (max-width: 900px) {
  .biz-map-lists { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 480px) {
  .biz-map-lists { grid-template-columns: 1fr; }
  .sec-biz-map { padding: 4.5rem 0; }
}

/* 第34-2：TOP 数字で見るANEW */
.sec-top-numbers { padding: 7rem 0; background: #f5faf7; }
.sec-top-numbers .top-numbers-head { text-align: center; margin-bottom: 4rem; line-height: 1.4; }
.sec-top-numbers .top-numbers-head .font-en { font-size: 2.8rem; letter-spacing: .1em; color: #1ea366; display: block; }
.sec-top-numbers .top-numbers-head .font-ja { font-size: 1.5rem; color: #333; }
.top-numbers-lists { list-style: none; padding: 0; margin: 0 auto; max-width: 1150px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; }
.top-numbers-lists li { text-align: center; }
.top-numbers-lists .num { font-size: 3.4rem; font-weight: 900; color: #1ea366; line-height: 1.1; font-family: sans-serif; }
.top-numbers-lists .num small { font-size: 1.6rem; font-weight: 700; margin-left: .2rem; }
.top-numbers-lists .num-label { font-size: 1.3rem; color: #333; margin-top: .8rem; }
@media screen and (max-width: 768px) {
  .top-numbers-lists { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .sec-top-numbers { padding: 4.5rem 0; }
  .top-numbers-lists .num { font-size: 2.8rem; }
}

/* 第31：TOP GOOD CYCLE FES 導線バナー */
.sec-gcf-top { padding: 4rem 0 7rem; }
.gcf-top-link { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .8rem; text-align: center; max-width: 1000px; margin: 0 auto; padding: 4rem 2rem; border-radius: 16px; text-decoration: none; color: #fff; background: linear-gradient(120deg, #1ea366 0%, #14855a 100%); transition: all .25s ease; }
.gcf-top-link:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30,163,102,.28); }
.gcf-top-en { font-size: 2.6rem; letter-spacing: .12em; font-weight: 700; }
.gcf-top-ja { font-size: 1.4rem; opacity: .95; }
.gcf-top-more { margin-top: 1.2rem; font-size: 1.2rem; padding: .7rem 2rem; border: 1px solid rgba(255,255,255,.8); border-radius: 999px; }
@media screen and (max-width: 768px) {
  .sec-gcf-top { padding: 3rem 0 5rem; }
  .gcf-top-link { padding: 3rem 1.5rem; }
  .gcf-top-en { font-size: 2rem; }
  .gcf-top-ja { font-size: 1.2rem; }
}

/* 第34-3：採用ページ カルチャー・社員の声 */
.sec-recruit-culture, .sec-recruit-voice { padding: 6rem 0; }
.sec-recruit-voice { background: #f5faf7; }
.rec-sec-head { text-align: center; margin-bottom: 3.5rem; line-height: 1.4; }
.rec-sec-head .font-en { display: block; font-size: 2.6rem; letter-spacing: .12em; color: #1ea366; font-weight: 700; }
.rec-sec-head .font-ja { font-size: 1.4rem; color: #333; }
.culture-lists { list-style: none; padding: 0; margin: 0 auto; max-width: 1000px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.culture-lists li { background: #fff; border: 1px solid #e2e8e5; border-radius: 12px; padding: 2.4rem; }
.culture-lists h5 { font-size: 1.7rem; color: #1ea366; margin-bottom: 1rem; }
.culture-lists p { font-size: 1.35rem; line-height: 1.9; color: #444; }
.rec-voice-note { text-align: center; font-size: 1.2rem; color: #888; margin-bottom: 2.5rem; }
.voice-lists { list-style: none; padding: 0; margin: 0 auto; max-width: 1000px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.voice-lists li { background: #fff; border-radius: 12px; padding: 2.4rem; box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.voice-lists .voice-role { display: inline-block; font-size: 1.2rem; color: #1ea366; font-weight: 700; border-bottom: 2px solid #1ea366; padding-bottom: .4rem; margin-bottom: 1.4rem; }
.voice-lists .voice-quote { font-size: 1.35rem; line-height: 1.95; color: #444; }
@media screen and (max-width: 900px) {
  .voice-lists { grid-template-columns: 1fr; }
}
@media screen and (max-width: 768px) {
  .sec-recruit-culture, .sec-recruit-voice { padding: 4rem 0; }
  .culture-lists { grid-template-columns: 1fr; gap: 1.5rem; }
  .culture-lists li, .voice-lists li { padding: 2rem; }
}

/* fadeUp エントランス表示：各文字はCSSで opacity:0 / translateY(20px)。
   IntersectionObserver（style.js末尾）がビューポート進入時に
   インラインで opacity:1 / translateY(0) を設定し、下記トランジションで滑らかに表示する。
   ※インラインstyleでの表示のため、CSSアニメーションが描画保留になる環境でも確実に表示される。 */
.fadeUp .letter {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* 第33-3（不具合修正）：width/height属性の付与により画像の高さが固定され縦長に伸びる不具合の対策。
   幅はCSSで制御し、高さは縦横比に従う。個別に height/object-fit を指定した画像（サムネイル等）はそちらが優先。 */
img {
  height: auto;
  max-width: 100%;
}

/* 第B-6：スマホメニューのSERVICE配下サブ項目 */
.sp-global-menu-lists .sp-sub a { padding-left: 2em; font-size: .92em; opacity: .9; }

/* 第B-17：NEWS絞り込み0件時の案内 */
.news-no-result { padding: 4rem 0; font-size: 1.5rem; color: #555; text-align: center; }

/* プライバシーポリシー 制定日・改定日 */
.privacy-date { margin-top: 3rem; font-size: 1.3rem; line-height: 2; color: #555; text-align: right; }

/* ECコンサル サービスメニュー：要相談CTA */
.smt-cta { color: #1ea366; font-weight: 700; text-decoration: underline; }
.smt-cta:hover { opacity: .8; }
.smt-note { max-width: 780px; margin: 2rem auto; font-size: 1.3rem; line-height: 1.9; color: #555; }

/* /works/ メディア掲載リスト */
.works-media-lists { list-style: none; padding: 0; margin: 2.5rem auto; max-width: 900px; display: grid; gap: 1rem; }
.works-media-lists li a { display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1.2rem; padding: 1.4rem 1.8rem; border: 1px solid #e2e8e5; border-radius: 8px; text-decoration: none; color: #333; transition: all .2s ease; }
.works-media-lists li a:hover { border-color: #1ea366; background: #f6fbf8; }
.works-media-lists .wm-name { font-weight: 700; font-size: 1.45rem; color: #1ea366; }
.works-media-lists .wm-desc { font-size: 1.25rem; color: #666; }

/* 0-2 item7：TOP NEWSカテゴリタブ */
.news-cat-tabs { list-style:none; display:flex; flex-wrap:wrap; gap:.6rem 1rem; padding:0; margin:0 0 2rem; }
.news-cat-tabs li a { display:inline-block; padding:.4rem 1.2rem; border:1px solid #d9e2dd; border-radius:999px; font-size:1.25rem; color:#1e633e; text-decoration:none; transition:all .2s ease; }
.news-cat-tabs li a:hover { background:#1ea366; color:#fff; border-color:#1ea366; }
