.header_navLink .nav-script {
    font-weight: bold;
    font-size: 1.05em;
    letter-spacing: 0.5px;
    text-shadow: none;
    filter: brightness(1.15);
}
/* スクロールで上にスライド表示 */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 3s cubic-bezier(.77,0,.18,1), transform 1s cubic-bezier(.77,0,.18,1);
}
.slide-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* --- 企業情報テーブル --- */
.company-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 800px;
    margin: 2.8rem auto 2.2rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(44,95,127,0.06);
    border: 1.2px solid #b0b8c6;
    padding: 2.2rem 2.5rem 2rem 2.5rem;
}
/* 円の上にラベルを重ねる */
.company-info-label-overlay {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2em;
    height: 3.2em;
    min-width: 3.2em;
    min-height: 3.2em;
    border-radius: 50%;
    background: linear-gradient(135deg,#fffbe6 60%,#ffe9b3 100%);
    box-shadow: 0 2px 8px rgba(212,175,55,0.08);
    z-index: 1;
    margin-right: 1.2em;
}
/* 円内のラベル配置 */
.company-info-label-overlay-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    line-height: 1.1;
    color: #1a2332;
    font-size: 1.13em;
    font-weight: 600;
    pointer-events: none;
}
/* 英語ラベル（円内） */
.company-info-label-overlay-inner .company-info-en-small {
    font-size: 0.65em;
    color: #d4af37;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 0.1em;
    display: block;
    white-space: nowrap;
}
/* 日本語ラベル（円内） */
.company-info-label-overlay-inner .company-info-jp {
    color: #2C5F7F;
    font-size: 1.13em;
    font-weight: 700;
    display: block;
    margin-top: 0.1em;
    text-align: left;
    padding-left: 20px;
    width: 300px;
}
/* 英語ラベル（円外/旧デザイン用） */
.company-info-en-small {
    display: block;
    font-family: 'EB Garamond', 'Garamond', 'Times New Roman', serif;
    font-size: 0.68em;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 0.1em;
    line-height: 1.1;
    white-space: nowrap;
}
/* 2列レイアウト用セル */
.company-info-label-cell {
    display: flex;
    align-items: center;
    min-width: 0;
}
.company-info-value-cell {
    min-width: 0;
}
.company-info-item:last-child {
    margin-bottom: 0;
}
/* 日本語ラベル（円外/旧デザイン用） */
.company-info-label {
    color: #2C5F7F;
    font-size: 1.13em;
    letter-spacing: 0.01em;
    font-weight: 700;
    min-width: 20em;
}
.company-info-value {
    color: #4C4948;
    font-size: 1.05em;
    font-weight: 500;
    line-height: 1.7;
    word-break: break-word;
}
/* 新デザイン company-info-item */
.company-info-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(44,95,127,0.10);
    padding: 1.2rem 1.5rem;
    transition: box-shadow 0.2s;
    border-left: 6px solid #d4af37;
    gap: 0 150px;
}
.company-info-item:hover {
    box-shadow: 0 8px 32px rgba(44,95,127,0.16);
    background: #fcfcf7;
}
.company-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4em;
    height: 2.4em;
    min-width: 2.4em;
    min-height: 2.4em;
    border-radius: 50%;
    background: linear-gradient(135deg,#fffbe6 60%,#ffe9b3 100%);
    font-size: 1.2em;
    color: #d4af37;
    box-shadow: 0 2px 8px rgba(212,175,55,0.08);
    margin-right: 1em;
}
@media (max-width: 900px) {
    .company-info-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 0.5rem;
        gap: 0.5rem 0;
    }
    .company-info-label-cell {
        margin-bottom: 0.5rem;
    }
}
@media (max-width: 600px) {
    .company-info-item {
        padding: 1.1rem 1rem;
    }
}
/* 事業紹介 service-card アニメーション */
.service-card {
    opacity: 0;
    transform: scale(0.1);
    transition: opacity 1.5s cubic-bezier(0.4,0,0.2,1), transform 1.5s cubic-bezier(0.4,0,0.2,1);
}
.service-card.fadein-left {
    opacity: 1;
    transform: scale(1);
     transition: opacity 1.8s ease, transform 1.8s ease;
}

.ideal-item {
    opacity: 0;
    transform: translateY(-30px) translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.ideal-item.fadein-left {
    opacity: 1;
    transform: translateY(0) translateX(0);
}
/* アクセス情報のテキスト色を統一 */
.business-access-info .detail-item span {
    color: #1a2332 !important;
}
/* Google Mapで見るボタンのアイコンは白色 */
.business-map-link .fa,
.business-map-link .fas,
.business-map-link .far,
.business-map-link .fal,
.business-map-link .fab,
.business-map-link .fa-solid,
.business-map-link .fa-regular,
.business-map-link .fa-light,
.business-map-link .fa-duotone,
.business-map-link .fa-brands {
    color: #fff !important;
}
/* ボタン内のFontAwesomeアイコンは白色で統一 */
.business-btn .fa,
.business-btn .fas,
.business-btn .far,
.business-btn .fal,
.business-btn .fab,
.business-btn .fa-solid,
.business-btn .fa-regular,
.business-btn .fa-light,
.business-btn .fa-duotone,
.business-btn .fa-brands {
    color: #fff !important;
}
/* すべてのFontAwesomeアイコンをゴールドに統一 */
.fa, .fas, .far, .fal, .fab, .fad, .fa-solid, .fa-regular, .fa-light, .fa-duotone, .fa-brands {
    color: #CECE00 !important;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
	margin: 0;
	padding: 0;
	background-color: #4C4948;
}
.body {
        background-image: linear-gradient(180deg, rgba(255,243,207,0.20), rgba(255,247,230,0.05)), url("../images/bg-home.svg");
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        background-attachment: fixed;
}

body {
	overflow-y: hidden;
}

body.scrollable {
	overflow-y: auto;
}
.start {
    background: #4C4948;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9000;
    overflow: hidden;
}

.start p {
    margin-bottom: 20px;
    display: none;
}

.skip-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.95em;
    font-weight: 700;
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.1em;
}

@keyframes blink {
    0%, 50% { opacity: 0.8; }
    51%, 100% { opacity: 0.4; }
}
.imglogo {
    width: 12.5em;
    transition: transform 0.8s ease-in-out;
    transform: rotate(-90deg);
}

.imglogo.rotate {
    transform: rotate(0deg);
}

/* 扉が開くアニメーション用のコンテナ */
.expanding-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow: hidden;
    perspective: 1000px;
}

/* 中央からの光のエフェクト */
.expanding-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.9) 30%, 
        rgba(255,255,255,1) 40%, 
        rgba(255,255,255,1) 50%, 
        rgba(255,255,255,1) 60%, 
        rgba(255,255,255,0.9) 70%, 
        rgba(255,255,255,0) 100%);
    transform: translateX(-50%);
    animation: lightExpand 1.8s cubic-bezier(0.25, 0.1, 0.1, 1) forwards;
    z-index: 10001;
}

/* 左の扉 */
.expanding-circle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #4C4948;
    transform-origin: left center;
    animation: doorOpenLeft 1.8s cubic-bezier(0.25, 0.1, 0.1, 1) forwards;
    z-index: 10002;
}

/* 右の扉 */
.door-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #4C4948;
    transform-origin: right center;
    animation: doorOpenRight 1.8s cubic-bezier(0.25, 0.1, 0.1, 1) forwards;
    z-index: 10002;
}

@keyframes doorOpenLeft {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(-90deg);
    }
}

@keyframes doorOpenRight {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(90deg);
    }
}

@keyframes scrollDrop {
    0% {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

@keyframes lightExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    30% {
        width: 8px;
        opacity: 0.9;
    }
    70% {
        width: 60px;
        opacity: 0.6;
    }
    100% {
        width: 100vw;
        opacity: 0.1;
    }
}



#toptop{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 9999;
}

#toptop p {
    margin: 0;
    position: relative;
}

.animoji {
    position: absolute;
    left: 50%;
    top: calc(100% + 20px);
    transform: translateX(-50%) translateY(30px);
    font-size: 2.5em;
    color: #CECE00;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInAndOut 1.8s ease-out forwards;
}

@keyframes fadeInAndOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    25% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    75% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
}

.randomAnime {
    color: #fff;
    font-weight: bold;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

/* 文字装飾 */
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');

body
{
	font-family: 'Lato', sans-serif;
	font-size: 16px;
    background-color: #fff;
}

.animate span {
	display: inline-block;
}

/* zestアニメーション削除 */

/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: none;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: height 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    height: 70px;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-direction: row;
    background: none;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header.scrolled .header_nav {
    margin-top: 0;
    /* 中央から拡大する見た目にするため基点を中央に変更 */
    transform-origin: center center;
    position: absolute;
    left: aout;
    right: 10px;
    top: 50%;
    /* 中央に寄せてから垂直中央へ移動、拡大縮小は transform で行う */
    transform: translateY(-50%) scale(1);
    max-width: calc(100vw - 200px);
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

.header.scrolled .header_navList {
    gap: 1rem;
    justify-content: flex-end;
}

.header.scrolled .header_navLink {
    padding: 0.3rem 0.5rem;
    min-width: 60px;
}

.header.scrolled .header_navLink span:first-child {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.header.scrolled .header_navLink span:nth-child(2) {
    font-size: 0.7rem;
}

.header.scrolled .header_navLink span:last-child {
    font-size: 0.6rem;
    margin-top: 0.05rem;
    font-family: 'Lato', sans-serif;
}

.header_siteTitle {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header_siteTitle.isBig {
    transform: scale(1);
}

.header_siteTitle.isSmall {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0) scale(0.7);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}



.logoimg {
    max-width: 230px;
    height: auto;
}

.logoimg2 {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    max-width: 100px;
    height: auto;
    z-index: 200;
}

.logoimg2.isup {
    display: block;
    max-width: 120px;
}

.line1 {
    color: #4C4948;
    font-weight: 800;
    font-size: 2.5rem;
    font-family: 'Noto Serif JP', 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', serif;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.4), 0 0 8px rgba(255, 255, 255, 0.25);
    -webkit-text-stroke: 0.1px rgba(206, 206, 0, 0.25);
    margin: auto;
    width: fit-content;
}

.line2 {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #444;
}

/* ナビゲーション */
.header_nav {
    border-top: none;
    margin-top: 1rem;
    background: linear-gradient(to bottom, rgba(15, 39, 53, 0) 0%, rgba(15, 39, 53, 0.9) 100%);
    backdrop-filter: blur(15px);
    border-radius: 0;
    padding: 1.2rem 0;
    border: none;
    box-shadow: 0 -8px 24px -6px rgba(44,95,127,0.18), 0 8px 24px -4px rgba(0,0,0,0.25), 0 8px 16px -8px #d4af37;
    border-bottom: 4px solid #d4af37;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}


.box1 {
    display: flex;
    gap: 2rem;
}

.header_navList {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
}

.header_navListItem {
    position: relative;
}

.header_navLink {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    min-width: 100px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.header_navLink:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.header_navLink span:first-child {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
}

.header_navLink span:nth-child(2) {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Noto Serif JP', 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', serif;
}

.header_navLink span:last-child {
    font-size: 0.7rem;
    margin-top: 0.15rem;
}

/* 「私たちについて」到達時（.on-about）のナビ配色 */
.header.scrolled.on-about .header_navLink {
    background: #ffffff;
    color: #222222;
    text-shadow: none;
    border-color: rgba(212, 175, 55, 0.35);
}

/* 英語テキスト（nav-script）は影だけ消して色は共通スタイルを使用 */
.header.scrolled.on-about .header_navLink .nav-script {
    text-shadow: none;
    filter: none;
}

/* 日本語テキスト（2番目の span）は黒系に */
.header.scrolled.on-about .header_navLink span:nth-child(2) {
    color: #222222;
}

/* ドロップダウンメニュー */
.has-child ul {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(26, 74, 102, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 8px;
    padding: 0.8rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    z-index: 9999;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.has-child:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-child li a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    display: block;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    font-family: 'Lato', sans-serif;
}

.has-child li a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    transform: translateX(3px);
}

/* ヘッダーバー時（scrolled）のサブリンクは白系背景に */
.header.scrolled .has-child ul {
    background: rgba(255, 255, 255, 0.77);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    min-width: 150px;
    padding: 0.6rem 0.6rem;
}

.header.scrolled .has-child li a {
    color: #1a2332;
    padding: 0.4rem 0.6rem;
    white-space: nowrap;
}

.header.scrolled .has-child li a:hover {
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
}

/* メインビジュアル */
.imgArea {
    height: 150vh;
    background: linear-gradient(rgba(76, 73, 72, 0.1), rgba(206, 206, 0, 0.1)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding-top: 20px;
}

.over {
    box-sizing: border-box;
    white-space: nowrap;
    display: inline-block;
    font-weight: bold;
    line-height: 1rem;
    opacity: 0;
    color: transparent;
    margin-bottom: 3rem;
}
.show {
    animation: blur 1.5s ease-in forwards;
    -webkit-animation: blur 1.5s ease-in forwards;
    text-shadow    :
        2px  2px 1px rgba(153, 153, 153, 0.30),
        -2px  2px 1px rgba(153, 153, 153, 0.30),
        2px -2px 1px rgba(153, 153, 153, 0.30),
        -2px -2px 1px rgba(153, 153, 153, 0.30),
        2px  0px 1px rgba(153, 153, 153, 0.30),
        0px  2px 1px rgba(153, 153, 153, 0.30),
        -2px  0px 1px rgba(153, 153, 153, 0.30),
        0px -2px 1px rgba(153, 153, 153, 0.30);
}
.over span:nth-child(1) {
    font-size: 3.5vw;
    animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
}
.over span:nth-child(2) {
    font-size: 3.5vw;
    animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
}
.over span:nth-child(3) {
    font-size: 3.5vw;
    animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
}
.over span:nth-child(5) {
    width: 100%;
    color: #4C4948;
    display: block;
    text-align: right;
    font-size: 2.0vw;
    padding-top: 20px;
    animation-delay: 0.55s;
    -webkit-animation-delay: 0.55s;
}
.colorin {
    opacity: 0;
    color: #007BFF;
    text-shadow:
    0 0 4px  rgba(255,255,255,0.3),
    0 0 10px rgba(255,255,255,0.25),
    0 0 18px rgba(255,255,255,0.2),
    0 0 24px rgba(255,255,255,0.15);
}
.colorin1 {
    opacity: 0;
    color: #d4af37;
    -webkit-text-stroke: 1.5px rgba(206, 206, 0, 0.2);
    text-shadow:
    0 0 4px  rgba(155, 155, 0, 0.4),
    0 0 10px rgba(155, 155, 0, 0.35),
    0 0 18px rgba(155, 155, 0, 0.3),
    0 0 24px rgba(155, 155, 0, 0.25);
}

/* 物流ページ専用：BLUE CEILING だけ少し大きく */
.logistics-hero #makeImg span:nth-child(2),
.logistics-hero #makeImg span:nth-child(3) {
    font-size: 3.9vw;
}

/* キャッチコピーのアニメーションとスクロールを促す表示 */
@keyframes blur {
    0%    {text-shadow:  0 0 100px #e6e6e6; opacity:0;}
    5%    {text-shadow:  0 0 90px #e6e6e6;}
    15%   {opacity: 0.5;}
    50%   {text-shadow:  0 0 0px #fff;}
    65%   {text-shadow:  0 0 0px #fff;}
    70%   {text-shadow:  0 0 0px #fff;opacity:0.8;color: #fff;}
    95%   {opacity:0.9;color: #fff;}
    100%  {opacity:1;color: #fff;}
}
@-webkit-keyframes blur {
    0%    {text-shadow:  0 0 100px #e6e6e6; opacity:0;}
    5%    {text-shadow:  0 0 90px #e6e6e6;}
    15%   {opacity: 0.5;}
    50%   {text-shadow:  0 0 0px #fff;}
    65%   {text-shadow:  0 0 0px #fff;}
    70%   {text-shadow:  0 0 0px #fff;opacity:0.8;color: #fff;}
    95%   {opacity:0.9;color: #fff;}
    100%  {opacity:1;color: #fff;}
}
.colorin1.changed {
    animation: blurGold 2s ease-in forwards;
    -webkit-animation: blurGold 2s ease-in forwards;
}

.colorin.changed {
    animation: blurBlue 2s ease-in forwards;
    -webkit-animation: blurBlue 2s ease-in forwards;
}

@keyframes blurGold {
    0%    {text-shadow:  0 0 100px #CECE00; opacity:0;}
    5%    {text-shadow:  0 0 90px #CECE00;}
    15%   {opacity: 0.35;}
    63%   {text-shadow:  0 0 0px #CECE00;}
    65%   {opacity:0.6;color: #CECE00;}
    70%   {opacity:0.8;color: #CECE00;}
    95%   {opacity:0.9;color: #CECE00;}
    100%  {opacity:1;color: #CECE00;}
}
@-webkit-keyframes blurGold {
    0%    {text-shadow:  0 0 100px #CECE00; opacity:0;}
    5%    {text-shadow:  0 0 90px #CECE00;}
    15%   {opacity: 0.35;}
    63%   {text-shadow:  0 0 0px #CECE00;}
    65%   {opacity:0.6;color: #CECE00;}
    70%   {opacity:0.8;color: #CECE00;}
    95%   {opacity:0.9;color: #CECE00;}
    100%  {opacity:1;color: #CECE00;}
}

@keyframes blurBlue {
    0%    {text-shadow:  0 0 100px blue; opacity:0;}
    5%    {text-shadow:  0 0 90px blue;}
    15%   {opacity: 0.35;}
    63%   {text-shadow:  0 0 0px blue;}
    65%   {opacity:0.6;color: blue;}
    70%   {opacity:0.8;color: blue;}
    95%   {opacity:0.9;color: blue;}
    100%  {opacity:1;color: blue;}
}
@-webkit-keyframes blurBlue {
    0%    {text-shadow:  0 0 100px blue; opacity:0;}
    5%    {text-shadow:  0 0 90px blue;}
    15%   {opacity: 0.35;}
    63%   {text-shadow:  0 0 0px blue;}
    65%   {opacity:0.6;color: blue;}
    70%   {opacity:0.8;color: blue;}
    95%   {opacity:0.9;color: blue;}
    100%  {opacity:1;color: blue;}
}

@keyframes scrollDrop {
    0% {
        transform: translateX(-50%) translateY(-100px);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.scrolldown1 {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(26, 74, 102);
    font-size: 1rem;
    font-family: 'EB Garamond', serif;
    opacity: 0;
    animation: fadeInScroll 1s ease-out 1s both;
    transition: opacity 0.3s ease;
}

.header.scrolled ~ * .scrolldown1 {
    opacity: 0 !important;
}

.scrolldown1 span {
    display: block;
    margin-bottom: 10px;
    font-family: 'EB Garamond', serif;
}

.scrolldown1::after {
    content: '＞';
    display: block;
    text-align: center;
    font-size: 1.5rem;
    transform: rotate(90deg);
    animation: arrowBounce 1.5s ease-in-out infinite 2s;
}

@keyframes fadeInScroll {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: rotate(90deg) translateX(0);
        opacity: 1;
    }
    50% {
        transform: rotate(90deg) translateX(8px);
        opacity: 0.7;
    }
}

/* セクション共通 */
.section01, .padjigyou {
    padding: 80px 0;
    max-width: 1200px;
    margin: 80px auto 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
}

.section02 {
    padding: 80px 0;
    max-width: 80%;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.heading-06 {
    position: relative;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    color: #fff;
    width: fit-content;
    margin: auto;
}
.heading-06 span {
    position: relative;
    z-index: 2;
}
.heading-06::before {
    content: attr(data-word);
    position: absolute;
    top: 0;
    left: 7.25rem;
    transform: translateX(-50%);
    color: #CECE00;
    font-size: 20px;
    font-style: italic;
    font-family: 'EB Garamond', serif;
    z-index: 10;
}

.heading-07 {
    position: relative;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    color: #fff;
    width: fit-content;
    margin: auto;
}
.heading-07 span {
    position: relative;
    z-index: 2;
}
.heading-07::before {
    content: attr(data-word);
    position: absolute;
    top: 0;
    left: 52.5%;
    transform: translateX(-50%);
    color: #CECE00;
    text-align: left;
    font-size: 20px;
    font-style: italic;
    font-family: 'EB Garamond', serif;
    z-index: 10;
}

.heading-08 {
    position: relative;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    color: #fff;
    width: fit-content;
    margin: auto;
}
.heading-08 span {
    position: relative;
    z-index: 2;
}
.heading-08::before {
    content: attr(data-word);
    position: absolute;
    top: 0;
    left: 27.5%;
    transform: translateX(-50%);
    color: #CECE00;
    text-align: left;
    font-size: 20px;
    font-style: italic;
    font-family: 'EB Garamond', serif;
    z-index: 10;
}

.heading-09 {
    position: relative;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    color: #fff;
    width: fit-content;
    margin: auto;
}
.heading-09 span {
    position: relative;
    z-index: 2;
}
.heading-09::before {
    content: attr(data-word);
    position: absolute;
    top: 0;
    left: 37.5%;
    transform: translateX(-50%);
    color: #CECE00;
    text-align: left;
    font-size: 20px;
    font-style: italic;
    font-family: 'EB Garamond', serif;
    z-index: 10;
}

.heading-10 {
    position: relative;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    color: #fff;
    width: fit-content;
    margin: auto;
}
.heading-10 span {
    position: relative;
    z-index: 2;
}
.heading-10::before {
    content: attr(data-word);
    position: absolute;
    top: 0;
    left: 45%;
    transform: translateX(-50%);
    color: #CECE00;
    text-align: left;
    font-size: 20px;
    font-style: italic;
    font-family: 'EB Garamond', serif;
    z-index: 10;
}

.section-bullet {
    margin: 0px 0.5em;
    color: #2C5F7F;
    text-shadow: white 1.5px 1.5px 2px;
}
.section-bullet::before {
    content: "";
    position: absolute;
    width: 2rem;
    height: 4.5rem;
    top: -30%;
    left: -10%;
    transform: skewX(-35deg);
    z-index: -2;
    background: linear-gradient(90deg, #5b707c, white); 
}

/* About Us セクション */
.bg {
    background: 
        radial-gradient(circle at 20% 20%, rgba(206, 206, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(206, 206, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(206, 206, 0, 0.03) 0%, transparent 30%),
        linear-gradient(135deg, 
            rgba(248, 249, 250, 0.95) 0%, 
            rgba(240, 242, 245, 0.98) 30%, 
            rgba(248, 249, 250, 0.95) 70%, 
            rgba(233, 236, 239, 0.98) 100%);
    padding: 80px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(206, 206, 0, 0.01) 2px,
            rgba(206, 206, 0, 0.01) 4px
        );
    animation: subtleMove 20s linear infinite;
    z-index: 1;
}

.bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, 
            rgba(206, 206, 0, 0.02) 0%, 
            transparent 70%);
    z-index: 2;
}

@keyframes subtleMove {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.aboutbox {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(206, 206, 0, 0.1),
        0 2px 16px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(206, 206, 0, 0.1);
    padding: 3rem 2rem;
}

.aboutbox h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.aboutbox h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #4C4948;
}

.aboutbox p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.blurTrigger {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 事業紹介セクション */
.servicebox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.box3, .box4, .box5 {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* 物流事業部門 - brand_logo背景 */
.box3 {
    background-image: url('images/brand_logo.png');
    background-size: 250px;
    background-position: 90% 50%;
    background-repeat: no-repeat;
    background-color: #fff;
    position: relative;
}

.box3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('images/brand_logo.png');
    background-size: 200px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}



/* 業務請負部門 - ZESTロゴ背景 */
.box4 {
    background-color: #fff;
    position: relative;
}

.box4::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('images/ZEST_LogoMark_transparent.png');
    background-size: 180px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}



/* CyAC事業部門 - C4LanとCyACロゴ背景 */
.box5 {
    background-color: #fff;
    position: relative;
}

.box5::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 50%;
    background-image: url('images/C4Lan_logo.png');
    background-size: 150px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.box5::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 50%;
    background-image: url('images/CyAC_logo.png');
    background-size: 150px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}



/* コンテンツを背景ロゴの上に表示 */
.box3 h1, .box3 h3, .box3 p, .box3 div,
.box4 h1, .box4 h3, .box4 p, .box4 div,
.box5 h1, .box5 h3, .box5 p, .box5 div {
    position: relative;
    z-index: 2;
}

/* 上部グラデーションライン */
.box3 .gradation::after, .box4 .gradation::after, .box5 .gradation::after {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #CECE00, #4C4948);
    z-index: 3;
}

.box3:hover, .box4:hover, .box5:hover {
    transform: translateY(-10px);
}

.gradation {
    font-size: 1.8rem;
    color: #4C4948;
    margin-bottom: 1rem;
}

.bumon h3 {
    color: #CECE00;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.bumon p {
    line-height: 1.8;
    color: #666;
}

/* 企業情報 */
.companybox {
    max-width: 800px;
    margin: 0 auto;
}

.company_info {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.company_info td {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.company_label {
    background: #f8f9fa;
    font-weight: bold;
    color: #4C4948;
    width: 30%;
    border-right: 1px solid #eee;
}

.company_value {
    color: #555;
    line-height: 1.6;
}

/* お問い合わせ */
.contactbox {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact_btn {
    display: inline-block;
    background: linear-gradient(135deg, #CECE00, #4C4948);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 1rem;
}

.contact_btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(206, 206, 0, 0.4);
}

.contact_tel {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4C4948;
    margin: 1rem 0;
}

/* アクセス */
.accessbox {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
}

/* 業務請負部門ページ */
.outsourcing-section {
    margin-top: 60px;
}

.outsourcing-container {
    max-width: 1000px;
    margin: 8vw auto 6vw auto;
    padding: 0 2rem;
}

.outsourcing-hero {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
}

.outsourcing-hero h2 {
    font-size: 2rem;
    color: #4C4948;
    margin-bottom: 1rem;
}

.outsourcing-hero p {
    color: #555;
    line-height: 1.8;
}

.outsourcing-summary-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.outsourcing-summary-card h3 {
    color: #CECE00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.outsourcing-summary-card p {
    line-height: 1.8;
    color: #555;
}

.outsourcing-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.outsourcing-service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.outsourcing-service-card h4 {
    color: #4C4948;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.outsourcing-service-card p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.outsourcing-service-card ul {
    color: #666;
    font-size: 0.9rem;
    padding-left: 1.2rem;
}

.outsourcing-strengths {
    background: rgba(248, 249, 250, 0.9);
    padding: 3rem 2rem;
    border-radius: 14px;
    margin-bottom: 3rem;
}

.outsourcing-strengths h3 {
    color: #4C4948;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.outsourcing-strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.outsourcing-strength-card {
    text-align: center;
}

.outsourcing-strength-icon {
    display: block;
    font-size: 2.4rem;
    color: #CECE00;
    margin-bottom: 0.75rem;
}

.outsourcing-strength-card h4 {
    color: #4C4948;
    margin-bottom: 0.5rem;
}

.outsourcing-strength-card p {
    color: #666;
    font-size: 0.9rem;
}

.outsourcing-contact {
    text-align: center;
    margin-top: 3rem;
}

.access-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.access1 {
    flex: 1;
    background: transparent;
    padding: 2rem 1rem 2rem 2rem;
}

.access-map {
    flex: 1;
    background: transparent;
    padding: 2rem 1rem 2rem 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 10px;
    margin-left: 10px;
    width: calc(100% - 40px);
}

@media (max-width: 768px) {
    .access-container {
        flex-direction: column;
        gap: 1rem;
    }
}

.access_tel {
    font-size: 1.1rem;
    color: #4C4948;
    margin: 0.5rem 0;
}

.maplink {
    display: inline-flex;
    align-items: center;
    background: #CECE00;
    color: #4C4948;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.maplink:hover {
    background: #4C4948;
    color: #CECE00;
}

/* ニュース */
.topsita {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 80px;
}

.newstext {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.newstext h1 {
    font-size: 2.5rem;
    color: #4C4948;
    margin-bottom: 2rem;
    position: relative;
}

.newstext h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #CECE00;
}

.newstext p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin: 1rem 0;
}

/* フッター */
footer {
    background: #4C4948;
    color: #fff;
    position: relative;
}

.waves {
    width: 100%;
    height: 100px;
    margin-top: -3px;
}

.footer {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer_contents {
    padding-top: 3rem;
    padding-bottom: 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    justify-items: center;
    align-items: start;
}

.footer_access h1 {
    font-size: 1.8rem;
    color: #CECE00;
    margin-bottom: 1rem;
}

.footer_access h2 {
    font-size: 1.2rem;
    color: #CECE00;
    margin: 2rem 0 1rem;
}

.footer_access {
    margin-right: 5vw;
}
.footer_access2 {
    margin-left: 8vw;
}

.footer_tel {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

#footer_kome {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
    color: #fff;
    margin: 0;
}

.cp_link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 0.5rem 0;
}

.cp_link:hover {
    color: #CECE00;
}

.square {
    width: 10px;
    height: 10px;
    background: #CECE00;
    display: inline-block;
    margin-left: 5px;
}

/* サイトマップ */
.point {
    font-size: 1.2rem;
    font-weight: bold;
    color: #CECE00;
    margin-bottom: 1rem;
}

.map_link {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.map_link:hover {
    color: #CECE00;
}

.map_link1 {
    color: #CECE00;
    font-weight: bold;
    margin: 1rem 0 0.5rem;
}

.chevron::before {
    content: '▶';
    margin-right: 0.5rem;
    color: #CECE00;
}

.chevron1::before {
    content: '■';
    margin-right: 0.5rem;
    color: #CECE00;
}

.chevron2::before {
    content: '└';
    margin-right: 0.5rem;
    color: #CECE00;
}

/* ページトップボタン */
#page_top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #CECE00;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

#page_top:hover {
    background: #4C4948;
    transform: scale(1.1);
}

#page_top::before {
    content: '▲';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #4C4948;
    font-size: 1.2rem;
    font-weight: bold;
}

#page_top:hover::before {
    color: #CECE00;
}

/* スマートフォン対応 */
.sp-menu {
    display: none;
}

/* レスポンシブ対応は別途 response.css で定義 */

/* アニメーション用クラス */
.Loadanime {
    animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* Garamondナビゲーション */
.nav-script {
    font-family: 'EB Garamond', 'Garamond', 'Times New Roman', serif;
    font-weight: 500;
    font-size: 1.1em;
    color: #d4af37;
    margin-right: 0.5rem;
    display: inline-block;
    letter-spacing: 0.5px;
    text-shadow: none;
}

/* ナビゲーション日本語部分の明朝体スタイル */
.header_navLink span:nth-child(2),
.sp-menu__link {
    font-family: 'Noto Serif JP', 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', serif;
}

/* モバイルナビゲーション内の日本語テキストのみに明朝体適用 */
.sp-menu__link:not(.nav-script) {
    font-family: 'Noto Serif JP', 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', serif;
}

/* Google Fonts EB Garamond の読み込み */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* 明朝体フォント（Noto Serif JP）の読み込み */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');

/* ビジネス向けデザイン - 高級感のある配色 */

/* NEWS - 高級感のあるデザイン */
.business-news-section {
    background: linear-gradient(135deg, #f5f6f8 0%, #ebebeb 100%);
    padding: 100px 0;
    margin-top: 80px;
}

.news-container {
    margin-top: 3rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
    border: 1px solid rgba(26, 35, 50, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(26, 35, 50, 0.2);
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
}

.news-date {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #d4af37;
    font-weight: 600;
}

.news-date i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.news-title {
    color: #1a2332;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.news-description {
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1.1rem;
}

.news-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.tag-important {
    background: linear-gradient(135deg, #c9a96e 0%, #d4af37 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* 私たちについて - 高級感のあるデザイン */
.business-about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
}

.about-main-title {
    color: #4C4948;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: 1px;
    font-family: 'Noto Serif JP', 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(76, 73, 72, 0.2);
}

.zest-highlight {
    color: #CECE00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(206, 206, 0, 0.2);
}

.about-main-subtitle {
    color: #4a4a4a;
    font-size: 1.2rem;
    line-height: 1.7;
}

.about-content {
    display: grid;
    gap: 4rem;
}

.about-philosophy {
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-bottom: 1.5vw;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.1s cubic-bezier(0.4,0,0.2,1), transform 1.1s cubic-bezier(0.4,0,0.2,1);
}
.about-philosophy.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.philosophy-card {
    background: white;
    padding: 10rem 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.12);
    border: 1px solid rgba(26, 35, 50, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    margin-top: 5vw;
}

.philosophy-card:hover {
    transform: translateY(-8px);
}

.philosophy-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

/* 感謝の心カード用の円形写真アイコン */
.philosophy-photo-wrap {
    position: absolute;
    top: -35%;
    left: 50%;
    width: 100%;
    height: 60%;
    transform: translateX(-50%) translateY(20%) rotate(-18deg);
    border-radius: 60% 60% 50% 50% / 70% 70% 50% 50%;
    overflow: hidden;
}

.philosophy-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60% 60% 50% 50% / 70% 70% 50% 50%;
    box-shadow: 0 0 16px 12px rgba(255, 255, 255, 0.85) inset;
    pointer-events: none;
}

.philosophy-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(18deg);
    filter: grayscale(30%) blur(0.5px) brightness(1.02);
}

.philosophy-card h3 {
    color: #1a2332;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

/* 感謝の心 見出しだけアイコンと同じゴールドに */
.philosophy-card--gratitude h3 {
    border-bottom: #CECE00 2px solid;
    padding-bottom: 2px;
}

/* 挑戦の精神 見出しにもゴールドの下線 */
.philosophy-card--challenge h3 {
    border-bottom: #CECE00 2px solid;
    padding-bottom: 2px;
}

/* 創造力 見出しにもゴールドの下線 */
.philosophy-card--creativity h3 {
    border-bottom: #CECE00 2px solid;
    padding-bottom: 2px;
}

.philosophy-card p {
    color: #4a4a4a;
    line-height: 1.6;
}

.ideal-person {
    background: white;
    padding: 1rem;
}

.ideal-title {
    color: #1a2332;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
}

.ideal-list {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.ideal-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f5f6f8 0%, #ebebeb 100%);
    border-radius: 12px;
    border: 1px solid rgba(26, 35, 50, 0.08);
    min-width: 600px;
    width: 600px;
    margin: auto;
    padding-left: 3vw;
}

.ideal-item i {
    color: #d4af37;
    font-size: 1.3rem;
    margin-right: 2rem;
    width: 25px;
}

.ideal-item span {
    color: #1a2332;
    font-weight: 500;
    line-height: 1.6;
}

.ideal-conclusion {
    color: #1a2332;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* 事業紹介 - 高級感のあるデザイン */
.business-services-section {
    background: linear-gradient(135deg, #f5f6f8 0%, #ebebeb 100%);
    padding: 100px 0;
}

/* 物流事業部 詳細ページ */
.logistics-section {
    margin-top: 60px;
}

.logistics-container {
    max-width: 1000px;
    margin: 10vw auto 0 auto;
}

.logistics-hero {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 10rem;
}

.logistics-brand-logo {
    display: inline-block;
    width: 40%;
    height: auto;
    margin-bottom: 0;
}

.logistics-hero h2 {
    font-size: 2rem;
    color: #4C4948;
    margin: 1.5rem 0;
}

.logistics-sky-image {
    position: absolute;
    width: 100vw;
    max-width: none;
    height: auto;
    top: -7vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.9;
}

.logistics-truck-image {
    position: absolute;
    width: 30vw;
    height: auto;
    top: 10vh;
    right: -15vw;
    opacity: 0;
    transform: translateX(10vw) scale(0.9);
    z-index: 1;
}
.logistics-truck1-image {
    display: block;
    position: static;
    width: 40vw;
    margin: 13% 0 0 35%;
    height: auto;
    opacity: 0;
    transform: translateX(10vw) scale(0.9);
}

.logistics-truck1-image.logistics-truck-appear {
    opacity: 0.9;
    transform: translateX(0) scale(1);
}

.logistics-truck-image.logistics-truck-appear {
    opacity: 0.9;
    transform: translateX(0) scale(1);
}

@keyframes logisticsTruckIn {
    0% {
        opacity: 0;
        transform: translateX(10vw) scale(0.9);
    }
    100% {
        opacity: 0.9;
        transform: translateX(0) scale(1);
    }
}

.logistics-hero p {
    color: #555;
    line-height: 1.8;
}

.logistics-summary-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 6.2rem;
}

.logistics-summary-card h3 {
    color: #CECE00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.logistics-summary-card p {
    line-height: 1.8;
    color: #555;
}

.logistics-summary-card .logistics-brand-logo {
    position: absolute;
    right: 2rem;
    bottom: 1.5rem;
    width: 28%;
}

.logistics-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 0.5rem;
}

.logistics-service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}

.logistics-service-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.logistics-service-card h4 {
    color: #4C4948;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.logistics-service-card p {
    line-height: 1.6;
    color: #666;
}

.logistics-map-image {
    width: 70%;
    position: absolute;
    top: -2.5vh;
    left: -5vw;
}

.logistics-strengths {
    background: rgb(248, 249, 250, 0.85);
    padding: 3rem 2rem;
    border-radius: 14px;
    margin-top: -10rem;
    z-index: 2;
}

.logistics-strengths h3 {
    color: #4C4948;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.logistics-strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.logistics-strength-card {
    text-align: center;
}

.logistics-strength-icon {
    font-size: 2.4rem;
    color: #d4af37;
    margin-bottom: 0.75rem;
}

.logistics-strength-card h4 {
    color: #4C4948;
    margin: 0.75rem 0;
}

.logistics-strength-card p {
    color: #666;
    font-size: 0.9rem;
}

.logistics-contact-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(26, 35, 50, 0.15);
    border: 1px solid rgba(26, 35, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-header {
    background: linear-gradient(135deg, #1a2332 0%, #2b3a4a 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.service-icon {
    font-size: 2rem;
    margin-right: 0.8rem;
    color: #d4af37;
    vertical-align: middle;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.service-content {
    padding: 2.5rem 2rem;
}

.service-subtitle {
    color: #1a2332;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-description {
    margin-bottom: 2rem;
}

.service-description p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f5f6f8 0%, #ebebeb 100%);
    border-radius: 12px;
    border: 1px solid rgba(26, 35, 50, 0.08);
    text-align: center;
}

.feature-item i {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-item span {
    color: #1a2332;
    font-size: 0.9rem;
    font-weight: 500;
}

/* About Us - 高級感のあるデザイン */
.business-about {
    background: linear-gradient(135deg, #f5f6f8 0%, #ebebeb 100%);
    padding: 100px 0;
    margin-top: 80px;
}

.business-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(26, 35, 50, 0.15);
    border: 1px solid rgba(26, 35, 50, 0.08);
    padding: 4rem 3rem;
}

/* 企業情報セクションでは白い箱感を弱めて背景写真を見せる */
.business-info-section .business-container {
    background: rgba(255, 255, 255, 0.0);
    box-shadow: none;
    border: none;
    padding: 3rem 3rem;
}

.business-header {
    text-align: center;
    margin-bottom: 3rem;
}

.business-title {
    font-size: 2.8rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.business-subtitle {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.business-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(26, 35, 50, 0.12);
    border: 1px solid rgba(26, 35, 50, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 35, 50, 0.18);
}

.value-card .value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    color: #1a2332;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 1rem;
}

.business-mission {
    margin-top: 4rem;
    text-align: center;
}

.business-mission h3 {
    color: #1a2332;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.mission-content {
    background: linear-gradient(135deg, #ebebeb 0%, #f5f6f8 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(26, 35, 50, 0.08);
}

.mission-text {
    color: #1a2332;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* 企業情報 - ビジネス向け */
.business-info-section {
    background-color: #f8f9fa;
    /* 上部（見出し付近）はベタ塗り、中間に写真、その下半分を白にフェード */
    background-image:
        /* 上部: 見出し周りのベタ塗り */
        linear-gradient(to bottom,
            #f8f9fa 0px,
            #f8f9fa 190px,
            rgba(248, 249, 250, 0) 220px),
        /* 下部: 写真を白へフェードアウト */
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 50%,
            rgba(255, 255, 255, 0.7) 80%,
            #ffffff 100%),
        /* 中央の背景画像 */
        url('../images/warehouse.png');
    background-size: auto, auto, cover;
    background-position: top, top, center;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.business-heading {
    color: #2C5F7F !important;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.business-heading i {
    margin-right: 1rem;
    color: #4A90E2;
}

.business-company-container {
    max-width: 1000px;
    margin: 0 auto;
}

.company-intro {
    text-align: center;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.55);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(44, 95, 127, 0.25);
}

.company-intro h2 {
    color: #2C5F7F;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: #e4e4e4 1px 1px 2px;
}

.company-intro p {
    color: #1a2332;
    font-size: 1.1rem;
    line-height: 1.6;
}

.business-table {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44, 95, 127, 0.13);
    border: none;
    margin-bottom: 2rem;
    font-size: 1.08rem;
    transition: box-shadow 0.3s;
}

.business-table tr {
    transition: background 0.2s;
}
.business-table tr:hover {
    background: rgba(44, 95, 127, 0.07);
}


.business-table .company_label {
    background: linear-gradient(90deg,#fff 60%, #fcfbcc 80%, #ffde96 100%);
    color: #1a2332;
    font-weight: 700;
    padding: 2.5rem 2rem;
    border-right: 4px solid #d4af37;
    font-size: 1.08em;
    letter-spacing: 0.03em;
    box-shadow: 2px 0 8px rgba(44,95,127,0.04);
    text-shadow: 0 1px 2px rgba(44,95,127,0.10);
    vertical-align: middle;
}

.business-table .company_label i {
    margin-right: 0.7rem;
    font-size: 1.1em;
    vertical-align: middle;
    color: #d4af37;
}

.business-table .company_value {
    background: #ffffff;
    color: #4C4948;
    padding: 1.5rem 2rem;
    font-weight: 500;
    border-left: 1px solid #e0e7ef;
    font-size: 1.05em;
    letter-spacing: 0.01em;
    vertical-align: middle;
}

/* お問い合わせ - ビジネス向け */
.business-contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.business-contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-intro h2 {
    color: #1a2332;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-intro p {
    color: #1a2332;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}


.contact-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
    background: linear-gradient(180deg, white 0%, white 98%, rgb(212, 175, 55, 0.75) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(44, 95, 127, 0.1);
    border: 1px solid rgba(44, 95, 127, 0.1);
}
.contact-card.fadein-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    color: #1a2332;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.business-btn {
    background: linear-gradient(135deg, #4A90E2 0%, #2C5F7F 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.business-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.contact-hours {
    color: #1a2332;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.confirmation {
    display: block;
    width: fit-content; /* 中身のコンテンツ幅に合わせる */
    margin: 0 auto;     /* フォーム内で中央寄せ */
}

/* アクセス - ビジネス向け */
.business-access-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-bottom: 100px;
}

.business-access-container {
    max-width: 1200px;
    margin: 0 auto;
}

.access-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.access-intro h2 {
    color: #1a2332;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.access-intro p {
    color: #1a2332;
    font-size: 1.1rem;
    line-height: 1.6;
}

.business-access-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 1.5rem;
    align-items: start;
}

.business-access-info {
    flex: none;
}

.office-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(44, 95, 127, 0.1);
    border: 1px solid rgba(44, 95, 127, 0.1);
}

.office-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8f4fd;
}

.office-header i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-right: 0.8rem;
}

.office-header h3 {
    color: #1a2332;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

.office-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
}

.detail-item i {
    width: 20px;
    color: #d4af37;
    margin-right: 1rem;
}

.detail-item span {
    color: #1a2332;
    font-weight: 500;
}

.map-link-container {
    text-align: center;
}

.business-map-link {
    background: linear-gradient(135deg, #4A90E2 0%, #2C5F7F 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.business-map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.business-map-link i {
    margin-right: 0.5rem;
}

.business-access-map {
    flex: none;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(44, 95, 127, 0.1);
    margin: 0 auto;
}

/* フッター - ビジネス向け */
.business-footer {
    background: linear-gradient(135deg, #2C5F7F 0%, #1a4a66 100%);
    color: white;
    padding: 50px 0 30px 0;
    position: relative;
}

.business-footer-container {
    margin: 0 auto;
    padding: 0 2rem;
}

.business-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding: 4rem 0 2rem;
}

.business-footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo-section h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-logo-section i {
    color: #CECE00;
    margin-right: 0.5rem;
}

.footer-tagline {
    color: #b8d4e3;
    font-size: 1rem;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #e8f4fd;
}

.contact-item i {
    width: 20px;
    color: #CECE00;
    margin-right: 1rem;
}

.footer-group h2 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-group i {
    color: #CECE00;
    margin-right: 1rem;
    gap: 0.8rem;
}

.group-link {
    display: block;
    color: #b8d4e3;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 0.8rem;
}

.group-link:hover {
    color: white;
}

.business-sitemap h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.business-sitemap i {
    color: #4A90E2;
    margin-right: 0.5rem;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.sitemap-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sitemap-parent {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.sitemap-link, .sitemap-child {
    color: #b8d4e3;
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.sitemap-link:hover, .sitemap-child:hover {
    color: white;
}

.sitemap-link i, .sitemap-child i {
    width: 16px;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(184, 212, 227, 0.2);
    padding: 2rem 0 5rem 0;
    text-align: center;
}

.footer-bottom #footer_kome {
    color: #b8d4e3;
    font-size: 0.9rem;
    position: relative;
    transform: none;
    left: auto;
    bottom: auto;
}

/* レスポンシブデザイン - ビジネス */
@media (max-width: 1024px) {
    .business-access-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .business-footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .business-title {
        font-size: 2.2rem;
    }
    
    .business-values {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
    
    .about-philosophy {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .philosophy-card {
        margin-top: 2rem;
        padding: 5rem 0.5rem 2.5rem;
    }

    .philosophy-photo-wrap {
        top: -30%;
        height: 55%;
    }

    .about-main-title {
        font-size: 2rem;
        line-height: 1.4;
    }

    .business-container {
        padding: 2.5rem 1.5rem;
        border-radius: 16px;
    }
}

/* About Us - ビジネス向け */
.business-about {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
    padding: 100px 0;
    margin-top: 80px;
}

.business-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(44, 95, 127, 0.1);
    border: 1px solid rgba(44, 95, 127, 0.1);
    padding: 4rem 3rem;
}

.business-header {
    text-align: center;
    margin-bottom: 3rem;
}

.business-title {
    font-size: 2.8rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.business-subtitle {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.business-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(26, 35, 50, 0.12);
    border: 1px solid rgba(26, 35, 50, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 35, 50, 0.18);
}

.value-card .value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    color: #1a2332;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #4a4a4a;
    line-height: 1.6;
    font-size: 1rem;
}

.business-mission {
    margin-top: 4rem;
    text-align: center;
}

.business-mission h3 {
    color: #1a2332;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.mission-content {
    background: linear-gradient(135deg, #ebebeb 0%, #f5f6f8 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(26, 35, 50, 0.08);
}

.mission-text {
    color: #1a2332;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* レスポンシブデザイン - 高級感 */
@media (max-width: 1024px) {
    .business-access-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .business-footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .business-title {
        font-size: 2.2rem;
    }
    
    .business-values {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
    
    .about-philosophy {
        grid-template-columns: 1fr;
    }
    
    .about-main-title {
        font-size: 2rem;
    }
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
}

.detail-item i {
    width: 20px;
    color: #4A90E2;
    margin-right: 1rem;
}

.detail-item span {
    color: #2C5F7F;
    font-weight: 500;
}

.map-link-container {
    text-align: center;
}

.business-map-link {
    background: linear-gradient(135deg, #4A90E2 0%, #2C5F7F 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.business-map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.business-map-link i {
    margin-right: 0.5rem;
}

/* フッター - ビジネス向け */
.business-footer {
    background: linear-gradient(135deg, #2C5F7F 0%, #1a4a66 100%);
    color: white;
    position: relative;
}

.business-footer-container {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
    padding: 0;
}

.business-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0 2rem;
}

.business-footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo-section h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-logo-section i {
    color: #4A90E2;
    margin-right: 0.5rem;
}

.footer-tagline {
    color: #b8d4e3;
    font-size: 1rem;
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #e8f4fd;
}

.contact-item i {
    width: 20px;
    color: #4A90E2;
    margin-right: 1rem;
}

.footer-group h2 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-group i {
    color: #4A90E2;
    margin-right: 0.5rem;
}

.group-link {
    color: #b8d4e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.group-link:hover {
    color: white;
}

.business-sitemap h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.business-sitemap i {
    color: #4A90E2;
    margin-right: 0.5rem;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.sitemap-column {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sitemap-parent {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.sitemap-link, .sitemap-child {
    color: #b8d4e3;
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.sitemap-link:hover, .sitemap-child:hover {
    color: white;
}

.sitemap-link i, .sitemap-child i {
    width: 16px;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(184, 212, 227, 0.2);
    padding-top: 0.2rem;
    padding-bottom: 0;
    text-align: center;
}

.footer-bottom #footer_kome {
    color: #b8d4e3;
    font-size: 0.9rem;
    position: relative;
    transform: none;
    left: auto;
    bottom: auto;
}

/* レスポンシブデザイン - ビジネス */
@media (max-width: 1024px) {
    .business-access-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .business-footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .business-title {
        font-size: 2.2rem;
    }
    
    .business-values {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
}