@charset "UTF-8";

/* =========================================================================
   Base variables & resets
   ========================================================================= */
:root {
    --color-yellow: #FFE55C;
    --color-black: #1A1A1A;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-gray: #555555;
    --color-bg-light: #FAFAFA;
    --color-bg-cream: #FFFDF5;

    --radius-huge: 40px;
    --radius-btn: 50px;

    --font-base: 'Noto Sans JP', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-bg-cream);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* =========================================================================
   Decorations
   ========================================================================= */
.marker {
    background: linear-gradient(transparent 60%, var(--color-yellow) 60%);
    font-weight: 900;
}

.marker-strong {
    background: linear-gradient(transparent 50%, var(--color-yellow) 50%);
    font-weight: 900;
}

.marker-banner {
    background: linear-gradient(transparent 70%, var(--color-yellow) 70%);
    font-weight: 900;
    display: inline-block;
    padding-bottom: 5px;
}

.highlight-black {
    background-color: var(--color-black);
    color: var(--color-yellow);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.text-underline {
    background: linear-gradient(transparent 70%, var(--color-yellow) 70%);
    font-weight: 900;
}

/* =========================================================================
   Header & Sticky Nav (Menu under banner)
   ========================================================================= */
.header {
    background: var(--color-white);
    position: relative;
    z-index: 1000;
    border-bottom: 2px solid #eaeaea;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: block;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.btn-top {
    background: var(--color-black);
    color: var(--color-white);
    padding: 8px 24px;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 14px;
}

.sticky-nav {
    position: sticky;
    top: 0;
    background: var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.sticky-nav-list {
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    justify-content: center;
}

.sticky-nav-list li {
    flex: 1;
    border-right: 1px solid #eee;
}

.sticky-nav-list li:first-child {
    border-left: 1px solid #eee;
}

.sticky-nav-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    font-weight: 900;
    color: var(--color-black);
    font-size: 15px;
    transition: 0.3s;
    background: var(--color-white);
}

.sticky-nav-list li a:hover {
    background: #f8f8f8;
    color: #e60012;
}

.nav-icon {
    color: #e60012;
    margin-right: 8px;
    font-size: 18px;
}

/* =========================================================================
   トップバナー領域
   ========================================================================= */
.top-banner {
    position: relative;
    width: 100%;
    background-color: #f8f8f8;
    display: flex;
    overflow: hidden;
}

.banner-bg {
    width: 100%;
}

.banner-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.banner-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.banner-text {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-copy {
    color: var(--color-black);
    letter-spacing: -2px;
    margin-bottom: 0px;
    line-height: 1.3;
}

.marker-banner {
    font-size: 60px;
    background: linear-gradient(transparent 70%, var(--color-yellow) 70%);
    font-weight: 900;
    display: inline-block;
}

.main-copy-large {
    font-size: 110px;
    font-weight: 900;
    display: inline-block;
    letter-spacing: -2px;
}



/* =========================================================================
   導入事例・動画
   ========================================================================= */
.cm-section {
    background-color: #FAFAFA;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}


.cm-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
}

.cm-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
    display: inline-block;
    background: var(--color-white);
    padding: 10px 40px;
    border-radius: 40px;
    border: 2px solid var(--color-yellow);
}

.cm-grid {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.cm-grid::-webkit-scrollbar {
    height: 8px;
}

.cm-grid::-webkit-scrollbar-track {
    background: transparent;
}

.cm-grid::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.cm-box {
    width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--color-white);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: block;
    text-decoration: none;
    color: var(--color-black);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cm-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.cm-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.cm-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}

.cm-box:hover .cm-thumb img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 3px solid var(--color-white);
    transition: 0.3s;
}

.cm-thumb:hover .play-btn {
    background: #e60012;
    transform: translate(-50%, -50%) scale(1.1);
}

.cm-desc {
    font-weight: 700;
    font-size: 18px;
}

/* =========================================================================
   安心のサポート体制
   ========================================================================= */
.five-circles-section {
    background-color: #FFF8E1;
    padding: 60px 0 0;
    text-align: center;
    position: relative;
}

.circle-title-area {
    margin-bottom: 50px;
    z-index: 100;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-sec-title {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 8px 36px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.circle-sec-subtitle {
    font-size: 55px;
    font-weight: 900;
    color: var(--color-black);
    line-height: 1.4;
}

.circle-cluster {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 830px;
    margin: 0 auto;
    overflow: hidden;
}

.center-person-robot {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(calc(-50% - 30px));
    width: 100%;
    max-width: 500px;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 50;
    pointer-events: none;
}

.center-person-robot img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.circle-item {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    text-decoration: none;
    z-index: 20;
    border: 2px solid transparent;
}

.circle-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-yellow);
}

.c-img-wrapper {
    margin-bottom: 10px;
}

.c-emoji {
    font-size: 60px;
}

.c-text {
    font-weight: 900;
    font-size: 20px;
    text-align: center;
    line-height: 1.4;
    margin-top: 10px;
}

.c-arrow {
    position: absolute;
    bottom: 35px;
    left: 50%;
    margin-left: -7px;
    width: 14px;
    height: 14px;
    background: transparent;
    border-right: 3px solid var(--color-black);
    border-bottom: 3px solid var(--color-black);
    transform: rotate(45deg);
    transition: transform 0.2s, border-color 0.2s;
}

.circle-item:hover .c-arrow {
    transform: rotate(45deg) translate(3px, 3px);
    border-color: var(--color-yellow);
}

.pos-top {
    top: 0px;
    left: 50%;
    margin-left: -125px;
}

.pos-left-top {
    top: 120px;
    left: 50%;
    margin-left: -390px;
}

.pos-right-top {
    top: 120px;
    left: 50%;
    margin-left: 140px;
}

.pos-left-bottom {
    top: 410px;
    left: 50%;
    margin-left: -350px;
    z-index: 10;
}

.pos-right-bottom {
    top: 410px;
    left: 50%;
    margin-left: 100px;
    z-index: 10;
}

@media (max-width: 900px) {
    .circle-cluster {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 30px;
        padding-bottom: 200px;
    }

    .circle-item {
        position: static;
        margin-left: 0 !important;
    }

    .center-person-robot {
        max-width: 300px;
    }
}

/* =========================================================================
   メインコンテンツ
   ========================================================================= */
.page-wrapper {
    background: linear-gradient(to bottom, #FFF8E1 0%, var(--color-yellow) 100px);
    padding: 60px 20px 80px;
}

.points-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.point-card {
    background: var(--color-white);
    border-radius: var(--radius-huge);
    padding: 60px 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.point-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .point-content {
        flex-direction: row;
    }

    .point-card.reverse .point-content {
        flex-direction: row-reverse;
    }
}

.point-text {
    flex: 1;
}

.point-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.point-image img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
}

.ib {
    display: inline-block;
}


.point-label {
    display: inline-block;
    font-size: 18px;
    font-weight: 900;
    color: var(--color-black);
    background: var(--color-yellow);
    padding: 5px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.point-label span {
    font-size: 24px;
}

.point-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 10px;
}

.title-flex {
    display: flex;
    align-items: flex-start;
}

.title-flex.justify-center {
    justify-content: center;
}

.title-icon {
    margin-right: 10px;
}

.custom-icon {
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.custom-icon .icon-stroke {
    stroke: var(--color-black);
}

.title-icon .custom-icon {
    width: 56px;
    height: 56px;
}

.c-img-wrapper .custom-icon {
    width: 100px;
    height: 100px;
}

.point-summary {
    font-size: 20px;
    font-weight: 800;
    color: #e60012;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px dotted #ccc;
}

.point-detail {
    font-size: 18px;
    line-height: 1.8;
}

.point-list {
    list-style: none;
    margin-bottom: 20px;
}

.point-list li {
    padding-left: 20px;
    margin-bottom: 12px;
    position: relative;
    font-weight: 700;
}

.point-list li::before {
    content: "✔";
    color: #e60012;
    position: absolute;
    left: 0;
    top: 0;
}

.center-aligned {
    text-align: center;
}

.center-aligned .point-label {
    margin: 0 auto 20px;
}

.showroom-content {
    margin-top: 30px;
}

.showroom-desc {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: left;
    font-weight: 700;
}

.showroom-image-wide {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

/* =========================================================================
   Contact & Footer
   ========================================================================= */
.contact-area {
    background: var(--color-yellow);
    color: var(--color-black);
    padding: 80px 20px;
    text-align: center;
}

.contact-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-black);
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-contact-primary,
.btn-contact-secondary {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 900;
    border-radius: var(--radius-btn);
    transition: 0.3s;
    text-decoration: none;
}

.btn-contact-primary {
    background: #e60012;
    color: var(--color-white);
}

.btn-contact-primary:hover {
    background: #cc0010;
}

.contact-tel-text {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 700;
}

.contact-tel-text a {
    color: var(--color-black);
    text-decoration: underline;
}

.btn-contact-secondary {
    background: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-black);
}

.btn-contact-secondary:hover {
    background: #f0f0f0;
}

.footer {
    background: #fff;
    color: #333;
    padding: 60px 20px 30px;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.footer-info {
    margin-bottom: 40px;
    line-height: 1.8;
}

.company-name {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 5px;
}

.tel {
    font-weight: 700;
    font-size: 20px;
    margin-top: 10px;
}

.copyright {
    font-size: 13px;
    color: #666;
}

/* ========================================================
   全国の販売ネットワーク
======================================================== */
.network-section {
    padding: 80px 20px;
    background: var(--color-white);
    text-align: center;
}

.network-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.network-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-black);
}

.network-desc {
    font-size: 16px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 600px) {
    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (min-width: 900px) {
    .logo-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.logo-item {
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s, box-shadow 0.2s;
}

.logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.dummy-logo {
    color: #b0b0b0;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

@media (max-width: 767px) {

    .five-circles-section,
    .network-section {
        display: none !important;
    }

    .sticky-nav-list li:nth-child(1),
    .sticky-nav-list li:nth-child(3) {
        display: none;
    }
}