/*!
Template:rishun
Theme Name: rishun_child
Theme URI: https://rishuntrading.co.jp
Description: Rishun is a very simple & easy to customize theme which is based on the Bootstrap. It is also very friendly with custom post types and custom taxonomies. When you add a new one, the breadcrumbs will be adjusted and posts will look beautifully without editing or adding a template files.
Author: RishunTrading Limited.
Author URI: https://rishuntrading.co.jp
Version: 1.0.0
Requires at least: 1.0
Tested up to: 1.0.0
Requires PHP: 5.6.0
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks

License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Rishun WordPress theme, Copyright (C) 2022 RishunTrading Limited.
Rishun WordPress theme is licensed under the GPL.
Update Author:RishunTrading Limited
Update Author URI:https://rishuntrading.co.jp/
Version:1.0.0
*/
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
    --main-black: #121212;
    --rich-black: #050505;
    --logo-yellow: #f8d100;
    --logo-blue: #0070f3;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-gray-light: #e8e8e8;
}

/*==========================================================*/
/* 全体設定 (Dark Mode & Base)
/*==========================================================*/
body {
    background-color: var(--main-black);
    color: var(--text-white);
    overflow-x: hidden;
}

body,
p {
    font-size: 17px;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
}

body a {
    color: var(--text-white);
    text-decoration: none;
    transition: 0.3s;
}

body a:hover {
    color: var(--logo-yellow);
}

.nodata {
    color: #ff0000;
}

img {
    width: 100%;
    height: auto;
}

.entry-body img {
    display: unset;
    width: auto;
    height: auto;
    max-width: 100%;
}

@media print {
    #mobile-menu {
        display: none !important;
    }
}

.site-header {
    background: #fff;
    position: relative;
    z-index: 1000;
    height: 70px;
}

.site-header-wrap {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/*body.scrolled .site-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1400px;
    height: 70px;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}*/
.site-header-logo {
    margin: 0;
    line-height: 0;
}

.site-header-logo a img {
    width: 180px;
    padding: 10px 0;
    transition: all 0.4s ease;
}

.site-header-menu li a,  .site-header-menu>li>.menu-trigger{
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding: 10px 7px;
    color: #333;
    transition: color 0.3s ease;
}
.site-header-menu>li>.menu-trigger:before{
    content:none;
}
.site-header-menu li a:hover{
    color: var(--logo-blue);
}

.menu-contact a {
    background: var(--logo-blue) !important;
    border-radius: 4px;
    margin-left: 15px;
    color: #fff !important;
}

.menu-contact a:hover {
    background: #333 !important;
    color: #fff !important;
}

@media(min-width:1200px) {
    .site-header-menu li a,  .site-header-menu>li>.menu-trigger{
        padding: 10px;
        font-size: 15px;
    }
}

/*==========================================================*/
/* Mobile Navigation
/*==========================================================*/
.mobile-navi-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    background: var(--logo-blue);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 112, 243, 0.3);
}

.mobile-navi-btn.mobile-navi-open {
    background: var(--logo-blue);
}

.mobile-navi-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transform-origin: center;   /* for iPhone */
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-navi-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-navi-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);   /* for iPhone */
}

.mobile-navi-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-slide {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 9998;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 40px 20px;
}

.mobile-menu-slide.active {
    right: 0;
}

.site-mobile-nav {
    width:100%;
    padding: 20px 10px 40px 10px;
    max-height: 80vh;
    overflow-y: auto;
}

.site-mobile-nav>div {
    background: transparent;
    padding:0;
}

.site-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
}
.site-mobile-menu>li.srv-small>a{
    font-size: 17px;
}
.mobile-menu-slide .site-mobile-menu>li{
    opacity: 0;
    transform: translateY(20px);
    margin: 20px 0px;
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu-slide .site-mobile-menu>li:first-of-type{
    margin-top:0;
}
.mobile-menu-slide.active .site-mobile-menu>li {
    opacity: 1;
    transform: translateY(0);
}
/* submenu */

/* Stagger indices for animation */
.site-mobile-menu>li:nth-child(1) {
    transition-delay: 0.1s;
}

.site-mobile-menu>li:nth-child(2) {
    transition-delay: 0.2s;
}

.site-mobile-menu>li:nth-child(3) {
    transition-delay: 0.3s;
}

.site-mobile-menu>li:nth-child(4) {
    transition-delay: 0.4s;
}

.site-mobile-menu>li:nth-child(5) {
    transition-delay: 0.5s;
}

.site-mobile-menu>li:nth-child(6) {
    transition-delay: 0.6s;
}

.site-mobile-menu>li:nth-child(7) {
    transition-delay: 0.7s;
}

.site-mobile-menu>li:nth-child(8) {
    transition-delay: 0.8s;
}

.site-mobile-menu>li:nth-child(9) {
    transition-delay: 0.9s;
}

.site-mobile-menu>li:nth-child(10) {
    transition-delay: 1s;
}

.site-mobile-menu>li a, .site-mobile-menu>li>button.menu-trigger {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: block;
}

.site-mobile-menu>li a:hover, .site-mobile-menu>li button:hover, .site-mobile-menu ul.sub-menu>li>a:hover{
    color: var(--logo-yellow);
}

body.no-scroll {
    overflow: hidden;
}

@media(min-width:992px) {
    .mobile-navi-btn {
        display: none;
    }
}

/* Hero Section */
.hero-sec {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-color: var(--rich-black);
    display: flex;
    align-items: center;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-sec .contains-frm {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    padding-left: 20px;
    max-width: 900px;
}

.hero-sub {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.3em;
    color: var(--logo-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--text-white);
    min-height: 2.4em;
}

.hero-title::after {
    content: "|";
    display: inline-block;
    color: var(--logo-blue);
    margin-left: 5px;
    animation: cursor-blink 0.8s infinite;
    font-weight: 300;
}

@keyframes cursor-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


.hero-scroll-invite {
    position: absolute;
    bottom: 40px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--logo-yellow), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--text-white);
    animation: scroll-move 2s infinite linear;
}

@keyframes scroll-move {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(333%);
    }
}

@media(min-width:768px) {
    .hero-title {
        font-size: 45px;
    }
}

@media(min-width:992px) {
    .hero-title {
        font-size: 64px;
    }
}

/* Value Section */
.value-sec {
    padding: 60px 0;
    position: relative;
    background-color: var(--main-black);
}

.value-sec .contains-frm {
    position: relative;
}

/* Scroll-linked Bands */
.value-bands {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.band {
    position: absolute;
    height: 12vh;
    width: 200%;
    opacity: 0.3;
    will-change: transform;
}

.band-yellow {
    background: var(--logo-yellow);
}

.band-blue {
    background: var(--logo-blue);
}

.band-1 {
    top: 7%;
    left: 0;
}

.band-2 {
    top: 28%;
    left: 0;
}

.band-3 {
    top: 50%;
    left: 0;
}

.band-4 {
    top: 72%;
    left: 0;
}

.band-5 {
    top: 90%;
    left: 0;
}

/* Obi-Reveal Styles */
.reveal-container {
    padding: 20px 0;
}

.reveal-item {
    display: inline-block;
    position: relative;
    opacity: 0;
    margin-bottom: 15px;
    padding: 0 10px;
    overflow: hidden;
    vertical-align: top;
    line-height: 1.6;
}

.value-desc .reveal-item {
    font-size: 18px;
    color: #fff;
    display: block;
    width: fit-content;
    margin: 0 0 10px;
}

.reveal-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    background-color: var(--logo-yellow);
    z-index: 2;
}

.reveal-item.show {
    opacity: 1;
    animation: obi-text-show 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reveal-item.show:before {
    animation: obi-band-intro 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Sequential Delays (Staggered for premium "breathing room") */
.reveal-item:nth-child(1),
.reveal-item.show:nth-child(1):before {
    animation-delay: 0.2s;
}

.value-desc .reveal-item:nth-child(1),
.value-desc .reveal-item.show:nth-child(1):before {
    animation-delay: 0.7s;
}

.value-desc .reveal-item:nth-child(2),
.value-desc .reveal-item.show:nth-child(2):before {
    animation-delay: 1.2s;
}

.value-desc .reveal-item:nth-child(3),
.value-desc .reveal-item.show:nth-child(3):before {
    animation-delay: 1.7s;
}

.value-desc .reveal-item:nth-child(4),
.value-desc .reveal-item.show:nth-child(4):before {
    animation-delay: 2.2s;
}

.value-desc .reveal-item:nth-child(5),
.value-desc .reveal-item.show:nth-child(5):before {
    animation-delay: 2.7s;
}

@keyframes obi-band-intro {
    0% {
        left: 0%;
        right: 100%;
    }

    50% {
        left: 0%;
        right: 0%;
    }

    100% {
        left: 100%;
        right: 0%;
    }
}

@keyframes obi-text-show {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    49% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--logo-blue);
    margin: 0 15px;
}

.label-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--logo-blue);
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 40px;
}

.value-desc .desc-text {
    font-size: 18px;
    line-height: 2;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
}

/* Piece Elements */
.piece-element {
    position: absolute;
    opacity: 0.2;
    z-index: 0;
}

.piece-triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--logo-yellow);
    top: 20%;
    right: -50px;
    transform: rotate(30deg);
}

.piece-square {
    width: 150px;
    height: 150px;
    border: 2px solid var(--logo-blue);
    bottom: -75px;
    left: 5%;
    transform: rotate(15deg);
}

@media(min-width:768px) {
    .value-desc .reveal-item {
        margin: 0 auto 10px;
    }
}

/* Feature Section */
.feature-sec {
    padding: 100px 0;
    background-color: var(--rich-black);
    position: relative;
    overflow: hidden;
}

.feature-block {
    margin-bottom: 120px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.block-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: -20px;
}

.block-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 4px;
    background: var(--logo-yellow);
}

.block-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray-light);
}

/* Visuals */
.block-visual {
    position: relative;
    padding: 40px;
}

.isometric-graphic {
    width: 100%;
    position: relative;
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.isometric-graphic:hover {
    transform: translateY(-10px);
}

.isometric-graphic img {
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Claim Rate Card */
.claim-rate-card {
    background: linear-gradient(135deg, #111, #222);
    padding: 60px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.claim-label {
    display: block;
    font-size: 20px;
    color: var(--logo-yellow);
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}

.claim-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.claim-value small {
    font-size: 30px;
}

.claim-note {
    color: var(--text-gray-light);
    margin: 0;
}

@media(min-width:600px) {
    .claim-rate-card {
        padding: 60px 40px;
    }

    .claim-value {
        font-size: 80px;
    }
}

/* Solutions Section */
.solutions-sec {
    padding: 60px 0;
    background-color: #121212;
    position: relative;
    z-index: 1;
}

/* Service Grid */
.service-grid {
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    height: 100%;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
    border-color: var(--logo-blue);
}

.card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 50px;
    font-weight: bold;
    color: var(--logo-blue);
    opacity: 0.5;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 32px;
    color: var(--logo-yellow);
    margin-bottom: 25px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-white);
}

.card-lead {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--logo-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.card-desc {
    line-height: 1.7;
    color: var(--text-gray-light);
    margin: 0;
}

/* Diagram Area */
.plus-alpha-area {
    margin-top: 100px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 80px 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.diagram-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--logo-blue);
    opacity: 0.8;
}

.diagram-canvas-wrap {
    height: 350px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.optimization-diagram {
    width: 100%;
    height: 100%;
    position: relative;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--logo-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px var(--logo-blue);
}

.hub-center i {
    font-size: 30px;
    color: white;
}

.hub-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--logo-blue);
    border-radius: 50%;
    animation: hub-pulse 2s infinite ease-out;
    z-index: -1;
}

@keyframes hub-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.footer-msg {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: var(--text-gray-light);
}

.text-highlight {
    color: var(--logo-yellow);
    font-weight: 700;
}

/* Dynamic Particle Style (created by JS) */
.diag-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.diag-particle.optimized {
    background: var(--logo-yellow);
    box-shadow: 0 0 8px var(--logo-yellow);
    width: 4px;
    height: 4px;
}

/* Case Study Section */
.cases-sec {
    padding: 60px 0;
    background-color: var(--rich-black);
}

.case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    height: 100%;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.case-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--logo-yellow);
}

.case-cat {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--logo-yellow);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.case-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--text-white);
}

.case-solution p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray-light);
    margin: 0;
}

/* Company Philosophy Section */
.philosophy-sec {
    padding: 60px 0;
    background-color: var(--main-black);
    position: relative;
    overflow: hidden;
}

.parallax-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Outfit', sans-serif;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.philosophy-mission {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.mission-statement-en {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--logo-blue);
    letter-spacing: 0.3em;
    opacity: 0.8;
}

.ceo-message {
    position: relative;
    z-index: 1;
}

.message-inner {
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid var(--logo-blue);
    padding: 50px 30px;
    backdrop-filter: blur(10px);
}

.ceo-name {
    font-size: 16px;
    margin-bottom: 30px;
    color: var(--text-white);
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.ceo-title {
    white-space: nowrap;
}

.ceo-name-group {
    display: flex;
    flex-direction: column;
}

.ceo-name .name {
    font-size: 24px;
    font-weight: 700;
}

.ceo-name small {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    opacity: 0.5;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

.message-vision {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--text-white);
}

@media(min-width:768px) {
    .message-inner {
        padding: 50px;
    }
}

@media(min-width:992px) {
    .ceo_sec .reveal-item {
        display: flex;
    }
}

@media(min-width:1300px) {
    .ceo-name-group {
        flex-direction: row;
        align-items: baseline;
        gap: 10px;
    }

    .ceo-name small {
        margin-top: 0;
    }
}

/* Recruitment Section */
.recruit-sec {
    padding: 60px 0;
    background-color: var(--rich-black);
}

.recruit-panel {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .recruit-panel {
        padding: 50px 25px;
        height: auto;
        min-height: 350px;
    }
}


.panel-ideal {
    background-image: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.4));
    background-color: #1a1a1a;
}

.panel-day {
    background-image: linear-gradient(to right, rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.4));
    background-color: #151515;
}

.recruit-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--logo-blue);
    transform: scaleY(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom;
}

.recruit-panel:hover::before {
    transform: scaleY(1);
}

.panel-content {
    position: relative;
    z-index: 2;
    max-width: 440px;
}

.panel-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--logo-blue);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.panel-lead {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.panel-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray-light);
    margin-bottom: 30px;
}

.recruit-btn {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-decoration: none;
}

.recruit-btn:hover {
    background: var(--text-white);
    color: var(--main-black);
    border-color: var(--text-white);
}

/* News Section */
.news-sec {
    padding: 60px 0;
    background-color: var(--main-black);
}

.view-all {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--logo-blue);
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: var(--text-white);
}

/* アーカイブ：カテゴリフィルター */
.archive-cat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.archive-cat-list li a {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
}

.archive-cat-list li a:hover {
    color: var(--text-white);
    border-color: var(--logo-blue);
}

.archive-cat-list li.is-active a {
    color: #fff;
    background: var(--logo-blue);
    border-color: var(--logo-blue);
    pointer-events: none;
}

/* アーカイブ：タグフィルター */
.archive-tag-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.archive-tag-list li a {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}

.archive-tag-list li a:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
}

.archive-tag-list li.is-active a {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.current-cat-h2{
    font-size:20px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin:3rem 0 2rem;
}

.news-list {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.news-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.news-link {
    display: flex;
    align-items: center;
    padding: 30px 0;
    text-decoration: none;
    position: relative;
}

.news-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--logo-blue);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-link:hover::after {
    width: 100%;
}

.news-date {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    width: 120px;
}

.news-cat {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--main-black);
    background: var(--logo-blue);
    padding: 2px 8px;
    margin-right: 30px;
    letter-spacing: 0.1em;
    text-align:center;
    display: inline-block;
}

.news-title {
    font-size: clamp(15px, 2vw, 17px);
    font-weight: 400;
    color: var(--text-white);
    margin: 0;
    transition: transform 0.3s ease;
}

.news-link:hover .news-title {
    transform: translateX(10px);
}

@media (max-width: 767.98px) {
    .news-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-date {
        margin-bottom: 10px;
    }

    .news-cat {
        margin-bottom: 15px;
    }
}
@media(min-width:768px){
    .current-cat-h2{
        font-size:24px;
    }
    .news-item .news-title{
        width:calc(100% - 220px);
    }
    .news-cat{
        width: 70px;
    }
}
@media(min-width:992px){
    .current-cat-h2{
        font-size:26px;
    }
}

/*===== Contact CTA Section ====*/
.contact-cta {
    padding: 60px 0;
    background-color: var(--rich-black);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-lead {
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-desc {
    color: var(--text-gray-light);
    font-size: 16px;
    line-height: 1.8;
}

.btn-main-yellow {
    text-align: center;
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    background: var(--logo-yellow);
    color: var(--main-black);
    padding: 20px 30px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(235, 185, 77, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-main-yellow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(235, 185, 77, 0.5);
    background: #f0c970;
    color: #fff;
}

@media(max-width:499px) {
    .contact-cta .btn-main-yellow {
        width: 100%;
    }
}
@media(min-width:992px){
    .contact-cta .reveal-container{
        display:flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    .contact-cta .section-title{
        margin-right: 10px;
    }
    .contact-cta .section-title,.contact-cta .contact-lead{
        margin-bottom:0!important;
    }
}

/*==========================================================*/
/* Concept page
/*==========================================================*/
.page-concept .reveal-item {
    display: block;
}

.concept-sec-ttl {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
}

.concept-sec-ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 4px;
    background: var(--logo-yellow);
}

.concept-lead-box {
    padding: 40px 0;
}

.concept-lead-main {
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.concept-lead-sub {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray-light);
}

.reason-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    margin-bottom: 20px;
    height: 100%;
}

.reason-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--logo-blue);
    opacity: 0.6;
    display: block;
    margin-bottom: 10px;
}

.reason-ttl {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--logo-yellow);
}

.reason-text {
    line-height: 1.8;
    color: var(--text-gray-light);
}

.eng-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    padding: 40px 20px;
    margin-top: 40px;
    border-top: 2px solid var(--logo-blue);
}

.eng-ttl {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .concept-sec-ttl {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .concept-lead-box {
        padding: 80px 0;
    }

    .eng-box {
        padding: 60px;
    }

    .eng-text {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media(min-width:1200px) {
    .reason-card {
        padding: 45px;
    }
}

/*==========================================================*/
/* Service page
/*==========================================================*/
.service-content-area {
    color: var(--text-white);
}

.service-sec-ttl {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.service-sec-ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1em;
    bottom: 0.1em;
    width: 4px;
    background: var(--logo-yellow);
}

.service-lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray-light);
    margin-bottom: 40px;
}

.service-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    height: 100%;
    border-radius: 4px;
    transition: border-color 0.4s ease;
}

.service-feature-card:hover {
    border-color: var(--logo-blue);
}

.service-card-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--logo-blue);
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}

.service-card-ttl {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.service-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.delivery-type-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.delivery-type-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    font-size: 0.9rem;
    border-left: 2px solid var(--logo-blue);
}

@media (min-width: 768px) {
    .service-sec-ttl {
        font-size: 1.75rem;
        padding: 0 10px;
        display: table;
        margin-left: auto;
        margin-right: auto;
    }

    .service-feature-card {
        padding: 35px;
    }
}

/*==========================================================*/
/* Company page
/*==========================================================*/
.info-sec-ttl {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
}

.info-sec-ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    bottom: 0.2em;
    width: 4px;
    background: var(--logo-yellow);
}

.mvv-item {
    margin-bottom: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

.mvv-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--logo-blue);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 5px;
}

.mvv-ttl {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mvv-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray-light);
}

.ceo-img-wrap {
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ceo-img-wrap img {
    height: auto;
    display: block;
    filter: saturate(90%);
}

.ceo-message-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px 20px;
    border-radius: 4px;
}

.ceo-message-text {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.ceo-signature {
    display: flex;
    justify-content: flex-end;
}

.ceo_sec .ceoname {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}

.profile-table {
    width: 100%;
}

.profile-table tr {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-table th {
    color: var(--logo-blue);
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-align: left;
}

.profile-table td {
    color: var(--text-gray-light);
    font-size: 1rem;
    line-height: 1.6;
}

.map-wrap {
    line-height: 0;
    width: 100%;
}

@media (min-width: 992px) {
    .info-sec-ttl {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .mvv-item {
        padding-left: 30px;
    }

    .mvv-ttl {
        font-size: 1.4rem;
    }

    .ceo-img-wrap {
        margin-bottom: 0;
    }

    .ceo-message-box {
        padding: 50px 40px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .ceo-message-text {
        font-size: 1.05rem;
        line-height: 2;
    }

    .profile-table tr {
        flex-direction: row;
        padding: 25px 0;
    }

    .profile-table th {
        width: 25%;
        margin-bottom: 0;
    }

    .profile-table td {
        width: 75%;
    }
}

/*==========================================================*/
/* Page header
/*==========================================================*/
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: var(--rich-black);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-header.is-show::before {
    width: 0;
}

.page-header-ttl .jp,
.page-header-ttl .en {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    transition: all 1s 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-header-ttl .jp {
    margin-bottom: 10px;
}

.page-header-ttl .en {
    letter-spacing: 2px;
    font-weight: 400;
    color: var(--logo-yellow);
    transition-delay: .7s;
}

.page-header.is-show .page-header-ttl .jp,
.page-header.is-show .page-header-ttl .en {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.breadSection .breadcrumb span,
.breadSection .breadcrumb a {
    color: #fff;
}

@media(max-width:499px) {
    .food-logistics-pgheader .page-header-ttl .jp,.storage-fulfillment-pgheader .page-header-ttl .jp {
        font-size: 20px;
    }
}

/*==========================================================*/
/* Footer
/*==========================================================*/
.site-beforefooter {
    background: var(--rich-black);
}

.site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footerwidget {
    margin-bottom: 2rem;
}

.footer-logo img {
    width: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-addr {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
}

.site-footer-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.site-footer-menu li {
    width: 100%;
    margin-bottom: 5px;
    padding: 5px;
}

.site-footer-menu a {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.site-footer-menu a:hover {
    color: var(--logo-blue);
}

.footer-hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin: 50px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: #888;
    letter-spacing: 0.05em;
}

@media(max-width:767px) {
    .site-footer-menu li.menu-pri {
        width: 100%;
    }
}

@media(min-width:768px) {
    .site-footer-menu li {
        width: 50%;
    }
}

@media(min-width:992px) {
    .site-footer-wrap .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .footerwidget {
        width: 280px;
    }

    .site-footer-nav {
        width: calc(100% - 300px);
        margin-bottom: 2rem;
    }

    .copyright {
        width: 100%;
    }
}

@media(min-width:1200px) {
    .footerwidget{
        width:250px;
    }
    .site-footer-nav{
        width:calc(100% - 270px);        
    }
    .site-footer-menu li {
        width: calc(100% / 3);
    }
}

/*==========================================================*/
/* Animations
/*==========================================================*/
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-fade.is-active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Settings (Mobile-First) */
@media (min-width: 768px) {
    .hero-title {
        margin-bottom: 50px;
    }
}

@media (min-width: 992px) {
    .site-header-nav {
        display: block;
    }

    .feature-block {
        display: flex;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .contains-frm {
        max-width: 1140px;
        margin: 0 auto;
    }
}

@media (min-width: 1400px) {
    .contains-frm {
        max-width: 1320px;
    }
}

/*==========================================================*/
/* モバイル固定CTAバー
/*==========================================================*/
/* mobile-fixed-cta */
.mobile-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9997;
    padding: 10px 15px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-fixed-cta.is-show {
    transform: translateY(0);
}

/* cta-inner */
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* cta-item（共通リセット） */
.cta-item {
    text-decoration: none;
}

.cta-item:hover {
    text-decoration: none;
}

/* cta-tel（電話リンク） */
.cta-tel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 12px;
    min-width: 140px;
    padding: 12px 15px;
    background-color: var(--logo-blue);
    border-radius: 4px;
}

.cta-tel:hover {
    color: #fff;
}

.cta-tel i {
    font-size: 18px;
    color: #fff;
}

.cta-tel .tel-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* cta-btn（お問い合わせボタン） */
.cta-btn {
    flex: 1;
    background-color: var(--logo-yellow);
    color: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    transition: opacity 0.3s;
    box-shadow: 0 4px 15px rgba(248, 209, 0, 0.2);
}

.cta-btn:hover {
    color: #050505;
}

.cta-btn:active {
    opacity: 0.8;
}

/* PC・タブレットでは非表示 */
@media (min-width: 768px) {
    .mobile-fixed-cta {
        display: none;
    }
}

/*==========================================================*/
/*---- Food Logistics Service page ----*/
/*==========================================================*/

/* food_essence_sec */
.svc-food-essence-sec {
    padding: 60px 0;
    background-color: var(--main-black);
}
.svc-food-essence-sub {
    font-size: 15px;
    color: var(--logo-yellow);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
    line-height: 1.8;
}

.svc-food-essence-body p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray-light);
    margin-bottom: 10px;
}
@media(min-width:400px) and (max-width:575px){    
    .svc-food-essence-sec .section-title .br1{
        display: none;
    }
}
@media(min-width:768px) {
    .svc-food-essence-sec {
        padding: 80px 0;
    }

    .svc-food-essence-sub {
        font-size: 16px;
    }
}
@media(min-width:768px) and (max-width:1199px){    
    .svc-food-essence-sec .section-title .br1{
        display: none;
    }
}

/* food_pain_sec */
.svc-food-pain-sec {
    padding: 60px 0;
    background-color: var(--rich-black);
}

.svc-food-pain-img img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.svc-food-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-food-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray-light);
}

.svc-food-checklist li:last-child {
    border-bottom: none;
}

.svc-food-checklist li i {
    color: var(--logo-blue);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

@media(min-width:768px) {
    .svc-food-pain-sec {
        padding: 80px 0;
    }
}

/* food_feature_sec */
.svc-food-feature-sec {
    padding: 60px 0;
    background-color: var(--main-black);
}

.svc-food-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--logo-blue);
    padding: 35px 30px;
    height: 100%;
    border-radius: 4px;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-food-card:hover {
    border-left-color: var(--logo-yellow);
}

.svc-food-card-num {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--logo-blue);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 15px;
}

.svc-food-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.svc-food-card-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray-light);
    margin: 0;
}

@media(min-width:768px) {
    .svc-food-feature-sec {
        padding: 80px 0;
    }
}

/* food_usecase_sec */
.svc-food-usecase-sec {
    padding: 60px 0;
    background-color: var(--rich-black);
}

.svc-food-usecase-item {
    text-align: center;
}

.svc-food-usecase-img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.svc-food-usecase-img img {
    object-fit: cover;
    aspect-ratio: 3/2;
}

.svc-food-usecase-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

@media(min-width:768px) {
    .svc-food-usecase-sec {
        padding: 80px 0;
    }

    .svc-food-usecase-label {
        font-size: 16px;
    }
}

/* food_reason_sec */
.svc-food-reason-sec {
    padding: 60px 0;
    background-color: var(--main-black);
}

.svc-food-reason-list {
    max-width: 700px;
}

.svc-food-reason-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-food-reason-item:last-child {
    border-bottom: none;
}

.svc-food-reason-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0, 112, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-food-reason-icon i {
    font-size: 20px;
    color: var(--logo-blue);
}

.svc-food-reason-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

@media(min-width:768px) {
    .svc-food-reason-sec {
        padding: 80px 0;
    }

    .svc-food-reason-title {
        font-size: 18px;
    }
}

/* food_stats_sec */
.svc-food-stats-sec {
    padding: 60px 0;
    background-color: var(--rich-black);
}

.svc-food-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    height: 100%;
}

.svc-food-stat-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.svc-food-stat-value strong {
    font-size: 48px;
    color: var(--logo-yellow);
}

.svc-food-stat-value small {
    font-size: 24px;
}

.svc-food-stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 0.05em;
}

@media(min-width:768px) {
    .svc-food-stats-sec {
        padding: 80px 0;
    }
    .svc-food-stat-value strong {
        font-size: 30px;
    }
    .svc-food-stat-card{
        padding:40px 10px;
    }
}
@media(min-width:992px) {
    .svc-food-stat-value strong {
        font-size: 50px;
    }
}
@media(min-width:1200px) {
    .svc-food-stat-value strong {
        font-size: 60px;
    }
}
/*==========================================================*/
/*---- Logistics Operations BPO Service page ----*/
/*==========================================================*/

/* bpo_essence_sec */
.svc-bpo-essence-sec {
    padding: 60px 0;
    background-color: var(--main-black);
}

.svc-bpo-essence-body {
    max-width: 800px;
    position: relative;
    padding-left: 20px;
}

.svc-bpo-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--logo-blue), transparent);
}

.svc-bpo-essence-body p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray-light);
    margin-bottom: 10px;
}

@media(min-width:768px) {
    .svc-bpo-essence-sec {
        padding: 80px 0;
    }

    .svc-bpo-essence-body {
        padding-left: 25px;
    }
}

/* bpo_pain_sec */
.svc-bpo-pain-sec {
    padding: 60px 0;
    background-color: var(--rich-black);
}

.svc-bpo-pain-img {
    aspect-ratio: 2/1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.svc-bpo-pain-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(117, 43, 79, 0.4);
}

.svc-bpo-pain-img img {
    height: 100%;
    object-fit: cover;
}

.svc-bpo-pain-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-bpo-pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-bpo-pain-list li:last-child {
    border-bottom: none;
}

.svc-bpo-pain-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(0, 112, 243, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-bpo-pain-icon i {
    font-size: 18px;
    color: var(--logo-blue);
}

.svc-bpo-pain-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 5px;
}

.svc-bpo-pain-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

@media(min-width:768px) {
    .svc-bpo-pain-sec {
        padding: 80px 0;
    }
}

@media(min-width:992px) {
    .svc-bpo-pain-img {
        aspect-ratio: 4/3;
    }
}

/* bpo_scope_sec（タイムライン） */
.svc-bpo-scope-sec {
    padding: 60px 0;
    background-color: var(--main-black);
}

.svc-bpo-timeline {
    position: relative;
    max-width: 650px;
    padding-left: 50px;
    margin-top: 40px;
}

.svc-bpo-timeline-line {
    position: absolute;
    top: 0;
    left: 15px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--logo-blue), rgba(0, 112, 243, 0.1));
}

/* ステップ */
.svc-bpo-step {
    position: relative;
    padding-bottom: 40px;
}

.svc-bpo-step:last-of-type {
    padding-bottom: 0;
}

.svc-bpo-step-marker {
    position: absolute;
    left: -50px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--logo-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.svc-bpo-step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.svc-bpo-step-content {
    padding-top: 2px;
}

.svc-bpo-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 8px;
}

.svc-bpo-step-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray-light);
    margin: 0;
}

.svc-bpo-scope-caption {
    margin-top: 40px;
    font-size: 15px;
    font-weight: 700;
    color: var(--logo-yellow);
    letter-spacing: 0.03em;
}

.svc-bpo-scope-caption i {
    margin-right: 8px;
    opacity: 0.6;
}

@media(min-width:768px) {
    .svc-bpo-scope-sec {
        padding: 80px 0;
    }

    .svc-bpo-step-title {
        font-size: 20px;
    }
}

@media(min-width:992px) {
    .svc-bpo-timeline {
        max-width: 100%;
        padding-left: 65px;
    }

    .svc-bpo-timeline-line {
        left: 20px;
    }

    .svc-bpo-step {
        padding-bottom: 50px;
    }

    .svc-bpo-step-marker {
        left: -65px;
        width: 40px;
        height: 40px;
    }

    .svc-bpo-step-num {
        font-size: 14px;
    }

    .svc-bpo-step-title {
        font-size: 22px;
    }

    .svc-bpo-step-desc {
        font-size: 16px;
    }
}

/* bpo_merit_sec */
.svc-bpo-merit-sec {
    padding: 60px 0;
    background-color: var(--rich-black);
}
.svc-bpo-merit-sec .section-title br{
    display: none;
}
.svc-bpo-merit-card {
    text-align: center;
    padding: 35px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    height: 100%;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-bpo-merit-card:hover {
    border-color: var(--logo-blue);
}

.svc-bpo-merit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(0, 112, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-bpo-merit-icon i {
    font-size: 24px;
    color: var(--logo-blue);
}

.svc-bpo-merit-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.5;
}
@media(min-width:430px) and (max-width:991px){
    .svc-bpo-merit-sec .section-title br{
        display: inline;
    }
}
@media(min-width:768px) {
    .svc-bpo-merit-sec {
        padding: 80px 0;
    }
}

/* bpo_operation_sec */
.svc-bpo-operation-sec {
    padding: 60px 0;
    background-color: var(--main-black);
}

.svc-bpo-diagram {
    margin-bottom: 0;
}

.svc-bpo-diagram img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ボイスカード */
.svc-bpo-voice-card {
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--text-gray);
    border-radius: 4px;
    height: 100%;
}

.svc-bpo-voice-client {
    border-left-color: var(--logo-yellow);
}

.svc-bpo-voice-hub {
    border-left-color: var(--logo-blue);
}

.svc-bpo-voice-driver {
    border-left-color: #34d399;
}

.svc-bpo-voice-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.svc-bpo-voice-client .svc-bpo-voice-label {
    color: var(--logo-yellow);
}

.svc-bpo-voice-hub .svc-bpo-voice-label {
    color: var(--logo-blue);
}

.svc-bpo-voice-driver .svc-bpo-voice-label {
    color: #34d399;
}

.svc-bpo-voice-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.6;
    margin: 0;
}

.svc-bpo-voice-sub {
    font-size: 14px;
    color: var(--text-gray);
    margin: 10px 0 0;
    letter-spacing: 0.03em;
}

@media(min-width:768px) {
    .svc-bpo-operation-sec {
        padding: 80px 0;
    }
}

@media(min-width:992px) {
    .svc-bpo-operation-sec .row {
        flex-direction: row-reverse;
    }
}

/* ダイアグラムキャプション */
.svc-bpo-diagram-caption {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray-light);
    padding-left: 18px;
    border-left: 3px solid var(--logo-blue);
}

/* bpo_voice_sec（クライアントの声） */
.svc-bpo-voice-sec {
    padding: 60px 0;
    background-color: var(--rich-black);
}

.svc-bpo-cv-card {
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.svc-bpo-cv-quote {
    margin-bottom: 18px;
}

.svc-bpo-cv-quote i {
    font-size: 22px;
    color: var(--logo-blue);
    opacity: 0.4;
}

.svc-bpo-cv-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
    color: var(--text-white);
    margin: 0 0 25px;
    flex-grow: 1;
}

.svc-bpo-cv-client {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-bpo-cv-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(0, 112, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-bpo-cv-avatar i {
    font-size: 16px;
    color: var(--logo-blue);
}

.svc-bpo-cv-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-gray-light);
    letter-spacing: 0.03em;
}

@media(min-width:768px) {
    .svc-bpo-voice-sec {
        padding: 80px 0;
    }

    .svc-bpo-cv-card {
        padding: 35px 30px;
    }
}

/*==========================================================*/
/*---- Trading Results Detail page ----*/
/*==========================================================*/

/* res-detail-sec */
.res-detail-sec {
    padding: 60px 0;
    background-color: var(--main-black);
}

/* カード全体 */
.res-detail-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 50px;
}

.res-detail-card:last-child {
    margin-bottom: 0;
}

/* ヘッダー */
.res-detail-header {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.res-detail-cat {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--logo-yellow);
    background: rgba(248, 209, 0, 0.1);
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.res-detail-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.5;
}

/* 取引先概要 */
.res-detail-overview {
    margin-top: 18px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    border-left: 3px solid var(--logo-blue);
}

.res-detail-overview-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--logo-blue);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.res-detail-overview-label i {
    margin-right: 5px;
}

.res-detail-overview p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray-light);
    margin: 0;
}

/* 3カラム比較グリッド */
.res-detail-grid {
    display: flex;
    flex-direction: column;
}

.res-detail-col {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.res-detail-col:last-child {
    border-bottom: none;
}

/* カラムヘッダー */
.res-detail-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 700;
}

.res-detail-col-header i {
    font-size: 18px;
    flex-shrink: 0;
}

/* 課題カラム（グレー） */
.res-detail-issue {
    border-top: 3px solid rgba(255, 255, 255, 0.15);
}

.res-detail-issue .res-detail-col-header {
    color: var(--text-gray);
}

.res-detail-issue .res-detail-col-header i {
    color: rgba(255, 255, 255, 0.3);
}

/* 対応カラム（ブルー） */
.res-detail-action {
    border-top: 3px solid var(--logo-blue);
}

.res-detail-action .res-detail-col-header {
    color: var(--logo-blue);
}

.res-detail-action .res-detail-col-header i {
    color: var(--logo-blue);
}

/* 効果カラム（イエロー） */
.res-detail-effect {
    border-top: 3px solid var(--logo-yellow);
}

.res-detail-effect .res-detail-col-header {
    color: var(--logo-yellow);
}

.res-detail-effect .res-detail-col-header i {
    color: var(--logo-yellow);
}

/* リスト */
.res-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.res-detail-list li {
    position: relative;
    padding-left: 18px;
    padding-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray-light);
}

.res-detail-list li:last-child {
    padding-bottom: 0;
}

.res-detail-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.res-detail-issue .res-detail-list li::before {
    background: rgba(255, 255, 255, 0.2);
}

.res-detail-action .res-detail-list li::before {
    background: var(--logo-blue);
    opacity: 0.5;
}

.res-detail-effect .res-detail-list li::before {
    background: var(--logo-yellow);
    opacity: 0.5;
}

/* クライアントボイス */
.res-detail-voice {
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.res-detail-voice i {
    font-size: 18px;
    color: var(--logo-blue);
    opacity: 0.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.res-detail-voice-text {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--text-white);
    margin: 0;
    font-style: italic;
}

/* レスポンシブ：タブレット以上 */
@media(min-width:768px) {
    .res-detail-sec {
        padding: 80px 0;
    }

    .res-detail-header {
        padding: 35px 35px;
    }

    .res-detail-title {
        font-size: 20px;
    }

    .res-detail-col {
        padding: 30px 35px;
    }

    .res-detail-voice {
        padding: 30px 35px;
    }
}

/* レスポンシブ：PC 3カラム */
@media(min-width:992px) {
    .res-detail-grid {
        flex-direction: row;
    }

    .res-detail-col {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    .res-detail-col:last-child {
        border-right: none;
    }
}

/*==========================================================*/
/*---- Storage & Fulfillment Service page ----*/
/*==========================================================*/

/* storage_essence_sec */
.svc-storage-essence-sec {
    padding: 60px 0;
    background-color: var(--main-black);
}

.svc-storage-essence-body {
    max-width: 800px;
    position: relative;
    padding-left: 20px;
}

.svc-storage-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--logo-blue), transparent);
}

.svc-storage-essence-body p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray-light);
    margin: 0;
}

@media(min-width:768px) {
    .svc-storage-essence-sec {
        padding: 80px 0;
    }

    .svc-storage-essence-body {
        padding-left: 25px;
    }
}

/* storage_pain_sec */
.svc-storage-pain-sec {
    padding: 60px 0;
    background-color: var(--rich-black);
}

.svc-storage-pain-card {
    text-align: center;
    padding: 30px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    height: 100%;
}

.svc-storage-pain-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    background: rgba(0, 112, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-storage-pain-icon i {
    font-size: 22px;
    color: var(--logo-blue);
}

.svc-storage-pain-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
    line-height: 1.5;
}

@media(min-width:768px) {
    .svc-storage-pain-sec {
        padding: 80px 0;
    }
}

/* storage_flow_sec（プロセスフロー） */
.svc-storage-flow-sec {
    padding: 60px 0;
    background-color: var(--main-black);
}

.svc-storage-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.svc-storage-flow-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    width: 100%;
    max-width: 280px;
    position: relative;
}

.svc-storage-flow-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--logo-blue);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    opacity: 0.7;
}

.svc-storage-flow-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: rgba(0, 112, 243, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-storage-flow-icon i {
    font-size: 20px;
    color: var(--logo-blue);
}

.svc-storage-flow-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 8px;
}

.svc-storage-flow-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* モバイルでは矢印を下向きに */
.svc-storage-flow-arrow {
    color: var(--logo-blue);
    font-size: 18px;
    opacity: 0.4;
    padding: 10px 0;
}
.svc-storage-flow-arrow i{
    display:block;
    transform: rotate(90deg);
}

@media(min-width:500px) {
    .svc-storage-flow {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
    }
    .svc-storage-flow-item {
        width: 48%;
    }
}
@media(min-width:500px) and (max-width:991px){
    .svc-storage-flow{
        column-gap: 3%;
    }
    .svc-storage-flow-arrow{
        display: none;
    }
    .svc-storage-flow-item {
        margin-bottom: 20px;
    }
}

@media(min-width:768px) {
    .svc-storage-flow-sec {
        padding: 80px 0;
    }
    .svc-storage-flow-item {
        width: 30%;
    }
}
@media(min-width:992px){
    .svc-storage-flow{
        flex-wrap: nowrap;
        gap: 0;
    }
    .svc-storage-flow-item {
        flex: 1;
        width: 100%;
        max-width: none;
    }
    .svc-storage-flow-arrow {
        display: flex;
        align-items: center;
        padding: 0 8px;
    }
    .svc-storage-flow-arrow i{
        transform: rotate(0deg);
    }
}

/* storage_strength_sec */
.svc-storage-strength-sec {
    padding: 60px 0;
    background-color: var(--rich-black);
}

.svc-storage-strength-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 35px 25px;
}

.svc-storage-strength-sub {
    font-size: 17px;
    font-weight: 700;
    color: var(--logo-blue);
    margin-bottom: 25px;
    line-height: 1.5;
}

.svc-storage-strength-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.svc-storage-strength-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray-light);
}

.svc-storage-strength-list li i {
    color: var(--logo-blue);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* 料金バッジ */
.svc-storage-pricing {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(248, 209, 0, 0.08);
    border: 1px solid rgba(248, 209, 0, 0.25);
    border-radius: 8px;
}

.svc-storage-pricing-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--logo-yellow);
    background: rgba(248, 209, 0, 0.15);
    padding: 4px 12px;
    border-radius: 3px;
}

.svc-storage-pricing-value {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
}

.svc-storage-pricing-value strong {
    font-size: 32px;
    color: var(--logo-yellow);
}

@media(min-width:768px) {
    .svc-storage-strength-sec {
        padding: 80px 0;
    }

    .svc-storage-strength-box {
        padding: 45px 40px;
    }

    .svc-storage-pricing-value strong {
        font-size: 38px;
    }
}

/* storage_case_sec */
.svc-storage-case-sec {
    padding: 60px 0;
    background-color: var(--main-black);
}

.svc-storage-case-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.svc-storage-case-img {
    height: 100%;
}

.svc-storage-case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-storage-case-body {
    padding: 30px 25px;
}

.svc-storage-case-attr {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--logo-yellow);
    background: rgba(248, 209, 0, 0.1);
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 15px;
}

.svc-storage-case-overview {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray-light);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-storage-case-section {
    margin-bottom: 20px;
}

.svc-storage-case-label {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-storage-label-issue {
    color: var(--text-gray);
}

.svc-storage-label-action {
    color: var(--logo-blue);
}

.svc-storage-label-effect {
    color: var(--logo-yellow);
}

.svc-storage-case-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-storage-case-section ul li {
    position: relative;
    padding-left: 16px;
    padding-bottom: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray-light);
}

.svc-storage-case-section ul li:last-child {
    padding-bottom: 0;
}

.svc-storage-case-section ul li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.svc-storage-label-action+ul li::before {
    background: var(--logo-blue);
    opacity: 0.5;
}

.svc-storage-label-effect+ul li::before {
    background: var(--logo-yellow);
    opacity: 0.5;
}

.svc-storage-case-voice {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.svc-storage-case-voice i {
    font-size: 16px;
    color: var(--logo-blue);
    opacity: 0.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.svc-storage-case-voice p {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--text-white);
    margin: 0;
    font-style: italic;
}

@media(min-width:768px) {
    .svc-storage-case-sec {
        padding: 80px 0;
    }

    .svc-storage-case-body {
        padding: 35px;
    }
}

@media(min-width:992px) {
    .svc-storage-case-img {
        min-height: 500px;
    }
}

/*==========================================================*/
/*---- Contact Page ----*/
/*==========================================================*/

/* リードセクション */
.pg-contact-lead-sec {
    padding: 60px 0 40px;
    background-color: var(--rich-black);
}

.pg-contact-lead-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pg-contact-lead-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray-light);
    margin: 0 0 5px;
}

.pg-contact-lead-text p:last-child {
    margin-bottom: 0;
}

/* フォームセクション */
.pg-contact-form-sec {
    padding: 0 0 80px;
    background-color: var(--rich-black);
}

.pg-contact-form-area {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

/* フィールド共通 */
.pg-contact-field {
    margin-bottom: 28px;
}

/* ラベル */
.pg-contact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

/* 必須・任意バッジ */
.pg-contact-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.pg-contact-required {
    color: #fff;
    background: #d63031;
}

.pg-contact-optional {
    color: var(--text-gray);
    background: rgba(255, 255, 255, 0.08);
}

/* ラベル補足 */
.pg-contact-note {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin: -5px 0 10px;
}

/* 入力欄 */
.pg-contact-input {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-white);
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.pg-contact-input::placeholder {
    color: #555;
}

.pg-contact-input:focus {
    border-color: var(--logo-blue);
    box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.15);
}

/* テキストエリア */
.pg-contact-textarea {
    resize: vertical;
    min-height: 160px;
}

/* 同意エリア */
.pg-contact-consent {
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pg-contact-consent-text {
    font-size: 14px;
    color: var(--text-gray-light);
    margin: 0 0 12px;
    line-height: 1.6;
}

.pg-contact-consent-text a {
    color: var(--logo-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pg-contact-consent-text a:hover {
    opacity: 0.8;
}

/* カスタムチェックボックス（CF7互換） */
.pg-contact-checkbox-label {
    display: block;
    cursor: pointer;
}

.pg-contact-checkbox-label .wpcf7-list-item {
    margin-left: 0;
}

/* CF7 wpcf7-list-item 内の label を横並びに */
.pg-contact-checkbox-label .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* チェックボックス本体 */
.pg-contact-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: var(--logo-blue);
    cursor: pointer;
}

/* 「確認しました」テキスト */
.pg-contact-checkbox-label .wpcf7-list-item-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
}

/* 送信ボタン */
.pg-contact-submit-wrap {
    text-align: center;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pg-contact-submit {
    display: inline-block;
    padding: 16px 60px;
    font-size: 16px;
    font-weight: 700;
    color: var(--main-black);
    background: var(--logo-yellow);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.08em;
    transition: opacity 0.3s, transform 0.3s;
}

.pg-contact-submit:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.pg-contact-submit:active {
    transform: translateY(0);
}

/* CF7 バリデーションメッセージ対応 */
.pg-contact-field .wpcf7-not-valid-tip {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #d63031;
}

.pg-contact-form-area .wpcf7-response-output {
    margin: 25px 0 0;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

/* CF7 入力欄を同じスタイルに */
.pg-contact-field .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance) {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-white);
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.pg-contact-field .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):focus {
    border-color: var(--logo-blue);
    box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.15);
}

/* レスポンシブ */
@media(min-width:768px) {
    .pg-contact-lead-sec {
        padding: 80px 0 50px;
    }

    .pg-contact-form-area {
        padding: 50px 45px;
    }

    .pg-contact-lead-text p {
        font-size: 16px;
    }
}

/*==========================================================*/
/*---- Privacy Policy page ----*/
/*==========================================================*/

.pri_sec {
    padding: 60px 0;
    background-color: var(--rich-black);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

/* リード文 */
.privacy-lead {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-gray-light);
    margin: 0 0 50px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* 各章ブロック */
.privacy-item {
    margin-bottom: 40px;
}

.privacy-item:last-of-type {
    margin-bottom: 50px;
}

/* 章見出し */
.privacy-head {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 15px;
    padding-left: 15px;
    border-left: 3px solid var(--logo-blue);
    line-height: 1.4;
}

/* 本文 */
.privacy-item p,
.privacy-contact p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-gray-light);
    margin: 0 0 12px;
}

.privacy-item p:last-child,
.privacy-contact p:last-child {
    margin-bottom: 0;
}

/* リスト */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

.privacy-list li {
    position: relative;
    padding-left: 18px;
    padding-bottom: 10px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray-light);
}

.privacy-list li:last-child {
    padding-bottom: 0;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--logo-blue);
    opacity: 0.5;
}

/* お問い合わせブロック */
.privacy-contact {
    margin-top: 50px;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.privacy-contact .privacy-head {
    margin-bottom: 12px;
}

/* リンク */
.privacy-content a {
    color: #5cb8ff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s;
}

.privacy-content a:hover {
    opacity: 0.7;
}

@media(min-width:768px) {
    .pri_sec {
        padding: 80px 0;
    }

    .privacy-head {
        font-size: 20px;
    }

    .privacy-contact {
        padding: 35px 35px;
    }
}

/*==========================================================*/
/*---- Single Post Detail ----*/
/*==========================================================*/

/* ヘッダー */
.entry-header {
    margin-bottom: 30px;
}

/* メタ情報（カテゴリ・タグ） */
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

/* カテゴリラベル */
.entry-meta-cat {
    display: inline-block;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--logo-blue);
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.3s;
    letter-spacing: 0.03em;
}

.entry-meta-cat:hover {
    color: #fff;
    opacity: 0.75;
}

/* タグラベル */
.entry-meta-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.03em;
}

.entry-meta-tag:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
}

/* サムネイル画像 */
.entry-thumbnail {
    margin-bottom: 35px;
    text-align: center;
}

.entry-thumbnail img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 6px;
}

/* レスポンシブ */
@media(min-width:768px) {
    .entry-header {
        margin-bottom: 35px;
    }

    .entry-thumbnail {
        margin-bottom: 45px;
    }
}

/* 記事タイトル */
.entry-post-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-white);
    margin: 0;
}

@media(min-width:768px) {
    .entry-post-title {
        font-size: 32px;
    }
}

/* お知らせ一覧へ戻るボタン */
.entry-back-btn {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.entry-back-btn a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-gray-light);
    text-decoration: none;
    transition: color 0.3s;
    padding: 10px 20px;
}

.entry-back-btn a:hover {
    color: var(--logo-yellow);
}

.entry-back-btn a i {
    transition: transform 0.3s;
}

.entry-back-btn a:hover i {
    transform: translateX(-5px);
}
.ul-pochi{
    padding-left:20px;
}