@charset "UTF-8";

/* ==========================================================================
   Foundation (基本設定・変数)
   ========================================================================== */
:root {
    /* Colors */
    --clr-primary: #001e62;
    --clr-secondary: #009fe8;
    --clr-accent: #ffcc00;
    --clr-text: #333333;
    --clr-white: #ffffff;
    --clr-black: #000000;
    --clr-border: #dddddd;
    --clr-overlay: rgba(0, 0, 0, 0.8);
    --clr-promise-bg: #f0fbfb;

    /* Security Specific Colors */
    --clr-confidentiality: #1D98C9;
    --clr-integrity: #CB4040;
    --clr-availability: #2EC871;

    /* Layout */
    --container-width: 1100px;
    --sidebar-width: 200px;
    --header-breakpoint: 1180px;
    --mobile-breakpoint: 768px;
    --mobile-max: 430px;

    /* Z-index / Transition */
    --z-header: 100;
    --z-modal: 2000;
    --transition: 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: var(--clr-text);
    line-height: 1.6;
    background-color: var(--clr-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity var(--transition);
}

a:hover {
    opacity: 0.7;
}

/* ==========================================================================
   Lists (リスト全般の設定)
   ========================================================================== */
ul:not(.c-breadcrumb__list):not(.p-header__nav-list):not(.p-side-nav__list):not(.p-footer__nav-list):not(.Btab-table ul) {
    list-style: none;
    padding: 0;
    margin: 0;
}

li:not(.c-breadcrumb__item):not(.p-header__nav-item):not(.p-side-nav__item):not(.p-footer__nav-item):not(.Btab-table li) {
    position: relative;
    padding-left: 1.5em;
    text-indent: 0;
    line-height: 1.8;
}

li:not(.c-breadcrumb__item):not(.p-header__nav-item):not(.p-side-nav__item):not(.p-footer__nav-item):not(.Btab-table li)::before {
    content: "・";
    position: absolute;
    left: 0;
    width: 1.5em;
    text-align: center;
}

.p-info-box__list li::before {
    position: static;
}

/* ==========================================================================
   Breadcrumb (パンくずリスト)
   ========================================================================== */
.c-breadcrumb {
    padding: 0 0 10px;
}

.c-breadcrumb__list,
.c-breadcrumb__list li {
    display: flex;
    align-items: center;
    list-style: none !important;
    padding: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
    margin: 0 !important;
    gap: 12px;
    color: #666666;
}

.c-breadcrumb__item {
    font-size: clamp(10px, 2.5vw, 10px);
}

.c-breadcrumb__item::before,
.c-breadcrumb__list li::before {
    display: none !important;
}

.c-breadcrumb__separator {
    font-size: clamp(10px, 2.5vw, 10px);
    display: flex;
    align-items: center;
    font-family: sans-serif;
    opacity: 0.8;
}

.c-breadcrumb__item a:hover {
    color: var(--clr-secondary);
    opacity: 1;
}

.c-breadcrumb__item i {
    font-size: 1.2em;
}

/* ==========================================================================
   Layout (l-*)
   ========================================================================== */
.l-container {
    max-width: var(--container-width);
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

.l-header {
    width: 100%;
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
    position: sticky;
    top: 0;
    z-index: var(--z-header);
}

.l-header .l-container {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
}

@media screen and (min-width: 1181px) {
    .l-header .l-container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.l-main {
    padding-top: 40px;
    padding-bottom: 60px;
}

.l-main__inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.l-content {
    flex: 1;
    min-width: 0;
}

.l-sidebar {
    width: var(--sidebar-width);
    flex-shrink: 0;
}

.l-footer {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .l-main__inner {
        flex-direction: column;
        align-items: stretch;
    }
    .l-content {
        width: 100%;
        max-width: 100%;
    }
    .l-sidebar {
        width: 100%;
    }
    .c-breadcrumb {
        padding-top: 10px;
    }
}

/* ==========================================================================
   Component (c-*)
   ========================================================================== */
.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    white-space: nowrap;
    gap: 10px;
}

.c-btn--primary {
    background: linear-gradient(135deg, #42c5f8 0%, #066df7 100%);
    color: var(--clr-white);
}

.c-btn--primary:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.c-btn--black {
    background-color: var(--clr-black);
    color: var(--clr-white);
}

.c-btn--black::after {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 22px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform var(--transition);
}

.c-btn--black:hover::after {
    transform: translateX(3px);
}

a.c-btn--black:hover {
    opacity: 1;
}

.c-btn-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 30px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    gap: 8px;
    transition: opacity var(--transition);
}

.c-btn-home:hover {
    opacity: 0.7;
    color: #ffffff;
}

.c-btn-home i {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .c-btn-home {
        width: 130px;
        height: 28px;
        font-size: 11px;
    }
}

.c-section-title {
    font-size: 1.5rem;
    color: var(--clr-primary);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.c-section-title::after {
    content: "";
    display: block;
    width: 110px;
    height: 35px;
    background-image: url('../img/icon_security.png');
    background-repeat: repeat-x;
    background-size: contain;
    background-position: center;
}

.c-section-title2 {
    font-size: 1.5rem;
    color: var(--clr-primary);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.c-card {
    border: 1px solid var(--clr-border);
    padding: 25px;
    background: var(--clr-white);
    border-radius: 10px;
    overflow: hidden;
}

.c-hamburger {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    background: none;
    border: none;
    z-index: 1001;
}

.c-hamburger__line {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--clr-primary);
    position: absolute;
    left: 10px;
    transition: var(--transition);
}

.c-hamburger__line--1 { top: 14px; }
.c-hamburger__line--2 { top: 22px; }
.c-hamburger__line--3 { top: 30px; }

.is-active .c-hamburger__line--1 { transform: translateY(8px) rotate(45deg); }
.is-active .c-hamburger__line--2 { opacity: 0; }
.is-active .c-hamburger__line--3 { transform: translateY(-8px) rotate(-45deg); }

.c-badge--red {
    display: inline-block;
    background: linear-gradient(90deg, #f72929 0%, #ba1616 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 20px;
    border-radius: 20px;
}

/* ==========================================================================
   Project (p-*)
   ========================================================================== */

/* --- Header & Navigation --- */
.p-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.p-header__logo {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 12px);
    flex-shrink: 1;
    min-width: 0;
}

.p-header__logo img {
    height: clamp(32px, 8vw, 48px);
    width: auto;
    object-fit: contain;
}

.p-header__logo-text {
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    font-weight: bold;
    color: var(--clr-primary);
    white-space: nowrap;
    line-height: 1.2;
}

.p-header__main-controls {
    display: flex;
    align-items: center;
    gap: 40px;
}

.p-header__nav-list {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    list-style: none;
    margin: 0;
    padding: 0;
}

.p-header__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-header__info-icon {
    width: 55px;
    flex-shrink: 0;
}

.p-header__tel {
    font-size: 2.2rem;
    font-weight: 900;
    color: #222;
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0;
}

.p-header__info-sub {
    font-size: 0.85rem;
    font-weight: bold;
    color: #333;
    margin-top: 4px;
}

@media screen and (max-width: 1180px) {
    .c-hamburger {
        display: block;
        margin-left: auto;
    }
    .p-header__nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: #fff;
        padding: 100px 40px;
        transition: transform 0.4s;
        transform: translateX(100%);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    .p-header__nav.is-active {
        display: block;
        transform: translateX(0);
    }
    .p-header__nav-list {
        flex-direction: column;
        gap: 30px;
        font-size: 1.2rem;
    }
    .p-header__info {
        display: none;
    }
}

@media screen and (max-width: 430px) {
    .p-header__inner { height: 70px; }
    .p-header__logo img { height: 32px; }
    .p-header__logo-text { font-size: 0.8rem; }
    .l-header .l-container { padding-left: 15px; padding-right: 15px; }
}

/* --- Hero Section --- */
.p-hero {
    position: relative;
    width: 100%;
    height: 500px; /* 100vhから、ご希望の固定サイズ（例: 500px）に変更してください */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000000;
}

.p-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom; /* ←【追加】これを指定すると下部が基準になります */
    z-index: 1;
}

@media screen and (max-width: 768px) {
	.p-hero { height: 540px; } /* スマホ時の固定高さを指定 */
    .p-hero__content { padding: 30px 10px; }
    .p-hero__main-wrapper { gap: 10px; }
}

.p-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.p-hero__content {
    background-color: rgba(255, 255, 255, 0.85);
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
    text-align: center;
}

.p-hero__title-sub {
    font-size: clamp(1.125rem, 4vw, 2.25rem);
    font-weight: bold;
    color: #333333;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.p-hero__main-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.p-hero__logo {
    width: clamp(70px, 18vw, 130px);
    height: auto;
    display: block;
}

.p-hero__logo-text {
    font-size: clamp(1rem, 3vw, 1.75rem);
    font-weight: bold;
    color: #001e62;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .p-hero { height: 450px; }
    .p-hero__content { padding: 30px 10px; }
    .p-hero__main-wrapper { gap: 10px; }
}

/* --- CTA Bar --- */
.p-cta-bar {
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.p-cta-bar__inner {
    max-width: 1100px;
    width: 100%;
    height: 120px;
    background: url('../img/bg_04.png') no-repeat center center / cover;
    display: flex;
    align-items: center;
    padding: 0 60px;
    position: relative;
}

.p-cta-bar__text {
    color: var(--clr-white);
    font-weight: bold;
    margin: 0;
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .p-cta-bar__inner { height: 100px; padding: 0 30px; }
}

/* --- Security Visuals --- */
.p-security-visual {
    background: url('../img/bg_02.png') center / cover no-repeat;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.p-security-visual__content { flex: 1; }

.p-security-visual__logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.p-security-visual__logo-group img { height: 40px; width: auto; }
.p-security-visual__logo-sub { font-size: 1.4rem; font-weight: bold; color: var(--clr-primary); white-space: nowrap; }
.p-security-visual__desc { font-size: 1rem; color: #444; line-height: 1.8; margin: 0; }
.p-security-visual__image { width: 25%; flex-shrink: 0; }

@media screen and (max-width: 768px) {
    .p-security-visual { flex-direction: column; text-align: center; }
    .p-security-visual__image { width: 60%; order: -1; }
}

.p-security-intro {
    background: url('../img/bg_03.png') center / cover no-repeat;
    padding: 60px 20px;
    border-radius: 10px;
    color: var(--clr-white);
}

.p-security-intro__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
    gap: 40px;
}

.p-security-intro__content { flex: 1; text-align: left; }
.p-security-intro__text { font-size: 16px; margin: 0; }
.p-security-intro__lead {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    color: var(--clr-secondary);
    margin: 5px 0;
    line-height: 1.2;
}

@media screen and (max-width: 768px) {
    .p-security-intro__inner { flex-direction: column; text-align: center; gap: 20px; }
    .p-security-intro__content { text-align: center; }
}

/* --- Security Items --- */
.p-security-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--clr-border);
    padding: 25px 0;
    gap: 25px;
}

.p-security-item:last-child {
    border-bottom: none;
}

.p-security-item__num {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: bold;
    color: #eee;
    flex-shrink: 0;
    line-height: 1;
}

.p-security-item__num.p-security-item__numb {
    font-weight: bold;
    color: #fff;
}

.p-security-item__body {
    flex: 1;
}

.p-security-item__label {
    font-weight: bold;
    font-size: clamp(1.125rem, 4vw, 1.25rem);
    margin: 0 0 4px;
}

.p-security-item--confidentiality .p-security-item__label { color: var(--clr-confidentiality); }
.p-security-item--integrity .p-security-item__label { color: var(--clr-integrity); }
.p-security-item--availability .p-security-item__label { color: var(--clr-availability); }

.p-security-item__desc {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.p-security-item .c-btn {
    font-size: 14px;
    flex-shrink: 0;
    margin-left: auto;
}

@media screen and (max-width: 980px) {
    .p-security-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 30px 0;
    }
    .p-security-item__num { width: auto; margin: 0 auto; }
    .p-security-item__body { width: 100%; }
    .p-security-item__label { margin-bottom: 8px; }
    .p-security-item .c-btn {
        width: 100%;
        max-width: 320px;
        margin-left: 0;
        margin-top: 5px;
    }
}

@media screen and (max-width: 768px) {
    .p-security-item { align-items: flex-start; gap: 15px; }
    .p-security-item .c-btn { margin-top: 10px; }
}

/* --- Promise Section --- */
.p-promise__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.p-promise__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.p-promise__icon-wrapper {
    width: 130px;
    height: 130px;
    background-color: var(--clr-promise-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.p-promise__icon-wrapper img {
    max-width: 60%;
    max-height: 60%;
}

.p-promise__label {
    display: block;
    width: 100%;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 4px;
}
.p-promise__text {
    display: block;
    width: 100%;
    color: var(--clr-text);
    text-align: left;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: normal;
}

@media screen and (max-width: 980px) {
    .p-promise__list { grid-template-columns: 1fr; gap: 30px; }
}

/* --- News Section --- */
.p-news__title {
    font-size: 1.5rem;
    font-weight: bold;
    border-left: 4px solid var(--clr-secondary);
    padding-left: 15px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.p-news__list { list-style: none; padding: 0; margin: 0; }

.p-news__item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--clr-border);
}

.p-news__date {
    width: 120px;
    flex-shrink: 0;
}

.p-news__link {
    text-decoration: underline;
    font-size: 0.95rem;
}

/* --- Footer --- */
.p-footer__nav {
    background-color: var(--clr-primary);
    padding: 25px 0;
}

.p-footer__nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.p-footer__nav-item {
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--clr-white);
}

.p-footer__nav-item a {
    cursor: pointer;
}

.p-footer__body {
    background-color: var(--clr-white);
    padding: 50px 0;
    text-align: center;
}

.p-footer__legal {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.p-footer__legal-link {
    font-size: 0.9rem;
    text-decoration: none;
    color: var(--clr-text);
}

@media screen and (max-width: 430px) {
.p-footer__nav-list {
    display: flex;
    justify-content: center;
    gap:20px 40px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
.p-footer__legal {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
}

.p-footer__logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.p-footer__logo-privacy { width: 80px; }
.p-footer__logo-corporate { width: 200px; }

.p-footer__copyright {
    background-color: var(--clr-black);
    padding: 15px 0;
    text-align: center;
}

.p-footer__copyright-text {
    font-size: 0.8rem;
    color: var(--clr-white);
    opacity: 0.9;
}

/* --- Sidebar --- */
.p-side-nav__list { list-style: none; padding: 0; margin: 0; }

.p-side-nav__item {
    border: 1px solid var(--clr-border);
    border-bottom: none;
}

.p-side-nav__item:last-child {
    border-bottom: 1px solid var(--clr-border);
}

.p-side-nav__link {
    display: block;
    padding: 15px;
    background: #333;
    color: #fff;
    position: relative;
    font-size: 0.9rem;
}

.p-side-nav__link::after {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.p-side-banner {
    width: 100%;
}

.p-side-banner__link {
    display: block;
    transition: opacity 0.3s ease;
}

.p-side-banner__link:hover {
    opacity: 0.8;
}

.p-side-banner__image {
    width: 100%;
    aspect-ratio: 300 / 250;
    background-color: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid #dddddd;
    font-size: 14px;
    color: #999999;
    font-weight: bold;
}

.p-side-banner__body {
    margin-top: 15px;
    padding: 0 5px;
}

.p-side-banner__text {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Sub-page (サブページ・コンテンツ設定)
   ========================================================================== */
.p-content__h2 {
    border-left: 4px solid var(--clr-secondary);
    padding-left: 15px;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.p-content__h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.p-content__h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.u-marker-yellow {
    background: linear-gradient(transparent 60%, #ffdd00 60%);
    font-weight: bold;
}

.c-special-h3 {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    padding: 12px 20px;
    font-size: 1.1rem;
    border-radius: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

@media screen and (max-width: 430px) {
.p-content__h2 {
    font-size: 1.2rem;
}
.p-content__h3 {
    font-size: 1rem;
}
}

/* アコーディオン設定 */
.js-accordion-trigger {
    cursor: pointer;
    margin-bottom: 0;
    transition: background 0.3s;
}

.js-accordion-trigger::after {
    content: '\f067';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.js-accordion-trigger.is-active::after {
    content: '\f068';
}

.p-accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    border: 1px solid #eee;
    border-top: none;
    background-color: #f9f9f9;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease, margin 0.4s ease;
}

.p-accordion-content.is-open {
    max-height: 1000px;
    opacity: 1;
    padding: 20px;
    margin-bottom: 25px;
}

/* グリッドレイアウト */
.p-content__grid {
    display: grid;
    gap: 20px;
}

.p-content__grid--2 { grid-template-columns: repeat(2, 1fr); }
.p-content__grid--3 { grid-template-columns: repeat(3, 1fr); }

.p-content__grid--auto {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    align-items: center;
}

@media screen and (max-width: 980px) {
    .p-content__grid--2, .p-content__grid--3 { grid-template-columns: 1fr !important; }
    .p-content__grid--2 .p-content__grid-item img,
    .p-content__grid--3 .p-content__grid-item img { width: 100% !important; height: auto; }
}

@media screen and (max-width: 768px) {
    .p-content__grid--auto { grid-template-columns: 1fr !important; text-align: center; justify-items: center; }
    .p-content__grid--auto .p-content__grid-item img { max-width: 150px; width: auto !important; margin-bottom: 10px; }
}



/* メディアユニット */
.p-media-unit {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.p-media-unit__img { width: 30%; flex-shrink: 0; }
.p-media-unit__body { flex: 1; font-size: 15px; line-height: 1.8; }

@media screen and (max-width: 980px) {
    .p-media-unit { flex-direction: column; }
    .p-media-unit__img { width: 100%; }
}

/* インフォボックス */
.p-info-box {
    background-color: #e6f7f7;
    padding: 30px;
    border-radius: 10px;
}

.p-info-box__lead { font-weight: bold; margin-bottom: 15px; font-size: 16px; }
.p-info-box__list { list-style: none; padding: 0; margin: 0; }

.p-info-box__list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 14px;
}

.p-info-box__list li::before { content: "・"; position: absolute; left: 0; }

/* 営業担当コンタクト */
.p-entry-contact { text-align: center; padding: 20px 0; }
.p-entry-contact__text { font-size: clamp(1.1rem, 3vw, 1.35rem); font-weight: bold; line-height: 1.6; margin-bottom: 25px; color: var(--clr-text); }

.p-entry-contact__img {
    margin: 0 auto;
    width: 280px;
    aspect-ratio: 1 / 1;
    background-color: #eef9fe;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.p-entry-contact__img img { width: 100%; height: auto; display: block; }

@media screen and (max-width: 768px) {
    .p-entry-contact__img { width: clamp(180px, 55vw, 240px); }
}

/* アイコン付き見出し */
.p-content__h3--icon1 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-content__h3--icon1::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.p-content__h3--browser::before { background-image: url('../img/icon_browser.png'); }
.p-content__h3--mail::before { background-image: url('../img/icon_mail.png'); }

@media screen and (max-width: 430px) {
    .p-content__h3--icon1::before { width: 40px; height: 40px; }
    .p-content__h3--icon1 { font-size: 1.1rem; }
}

/* ==========================================================================
   Privacy Policy Styles
   ========================================================================== */
.Privacypolicy {
    color: #333;
    line-height: 1.7;
    font-size: 15px;
}

.Privacypolicy .policy-main-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #001e62;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px double #009fe8;
}

.Privacypolicy .policy-lead {
    margin-bottom: 40px;
    background: #f0fbfb;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
}

.Privacypolicy .policy-section {
    margin-bottom: 45px;
}

.Privacypolicy .policy-title {
    font-size: 1.15rem;
    font-weight: bold;
    color: #001e62;
    border-left: 5px solid #009fe8;
    padding: 5px 0 5px 15px;
    margin-bottom: 20px;
    background: #f8f8f8;
}

.Privacypolicy .policy-sub-h4 {
    font-size: 1rem;
    font-weight: bold;
    margin: 25px 0 10px;
    color: #333;
}

.Privacypolicy .policy-text { margin-bottom: 15px; }
.Privacypolicy .policy-link { color: #009fe8; text-decoration: underline; }
.Privacypolicy .policy-link:hover { text-decoration: none; }

.Privacypolicy .policy-list-numbered { margin: 15px 0 20px 25px; list-style: decimal; }
.Privacypolicy .policy-list-numbered li { margin-bottom: 10px; padding-left: 5px; }

.Privacypolicy .policy-list-bullet { margin: 15px 0 20px 25px; list-style: disc; }
.Privacypolicy .policy-list-bullet li { margin-bottom: 8px; }

.Privacypolicy .policy-link-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    display: flex;
    gap: 20px;
}

.Privacypolicy .policy-link-list a { color: #009fe8; font-weight: bold; }

.Privacypolicy .contact-box {
    border: 2px solid #001e62;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
}

.Privacypolicy .contact-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #001e62;
    margin-bottom: 20px;
    text-align: center;
}

.Privacypolicy .contact-info { margin-bottom: 15px; font-size: 14px; }

.Privacypolicy .contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.Privacypolicy .contact-details span { font-weight: bold; }
.Privacypolicy .contact-hours { font-size: 13px; color: #666; }

.Privacypolicy .policy-list-numbered li::before { content: none !important; }
.Privacypolicy .policy-list-numbered li {
    padding-left: 0 !important;
    text-indent: 0 !important;
    list-style-type: decimal !important;
    margin-left: 1.5em;
    line-height: 1.8;
}

.Privacypolicy .policy-list-bullet li::before { content: none !important; }
.Privacypolicy .policy-list-bullet li {
    padding-left: 0 !important;
    text-indent: 0 !important;
    list-style-type: disc !important;
    margin-left: 1.5em;
}

@media screen and (max-width: 768px) {
    .Privacypolicy .policy-link-list { flex-direction: column; gap: 10px; }
    .Privacypolicy .contact-box { padding: 20px; }
}

/* ==========================================================================
   Table Style (Btab-*)
   ========================================================================== */
.Btab-container {
    width: 100%;
    margin: 30px 0;
}

.Btab-table {
    width: 100%;
    border-collapse: collapse;
    line-height: 1.6;
    font-size: clamp(12px, 1.3vw, 15px);
    color: #333;
}

.Btab-table th,
.Btab-table td {
    padding: 10px;
    border: 1px solid #d8d8d8 !important;
    vertical-align: middle;
    text-align: left;
    word-break: break-all;
}

.Btab-header,
.Btab-header-gray {
    background-color: #e3f5f6 !important;
    font-weight: bold;
}

.Btab-header-red {
    background-color: #c00 !important;
    color: #fff !important;
    text-align: center;
    font-weight: bold;
}

.Btab-header-sub {
    background-color: #f2f2f2 !important;
    font-weight: normal;
}

.Btab-table li {
    list-style: none !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
    margin-bottom: 2px;
}

.Btab-table li::before { display: none !important; }

.Btab-container.is-scrollable {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

.Btab-container.is-scrollable .Btab-table {
    width: max-content !important;
    min-width: 100% !important;
}

.Btab-container.is-scrollable th,
.Btab-container.is-scrollable td {
    white-space: nowrap !important;
    word-break: normal !important;
}

.Btab-alert { color: #ff0000; }

@media screen and (max-width: 800px) {
    .Btab-container.is-scrollable {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    .Btab-container.is-scrollable .Btab-table {
        width: max-content !important;
        min-width: 100% !important;
    }
    .Btab-container.is-scrollable th,
    .Btab-container.is-scrollable td {
        white-space: nowrap !important;
        word-break: normal !important;
    }
}

/* ==========================================================================
   Modal & Lightbox
   ========================================================================== */
.c-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
}

.c-modal[aria-hidden="false"] { display: flex; }

.c-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-overlay);
    cursor: pointer;
}

.c-modal__window {
    position: relative;
    background-color: var(--clr-white);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 10px;
    z-index: 1;
    animation: modalIn 0.3s ease-out;
}

.c-modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--clr-text);
}

.c-modal--lightbox .c-modal__window { background: none; padding: 0; max-width: 80vh; }
.c-modal__image { display: block; width: 100%; height: auto; border-radius: 4px; box-shadow: 0 0 20px rgba(0,0,0,0.5); }

.p-dev-preview { padding: 60px 0; background: var(--clr-bg-light); }
.p-dev-preview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.p-dev-preview__grid img {
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 8px;
}
.p-dev-preview__grid img:hover { transform: scale(1.05); }

@keyframes modalIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

h3.help-titleH3{
	padding: 10px 16px;
	margin: 20px 0;
	background: #eef9fe;
	border-bottom: 2px solid #009fe8;
}


/* ==========================================================================
   Utilities
   ========================================================================== */
.Bold { font-weight: bold; }
.main_color { color: var(--clr-primary); }
.sub_color { color: var(--clr-secondary); }

.std10 { font-size: 77%; }
.std11 { font-size: 85%; }
.std12 { font-size: 93%; }
.std13 { font-size: 100%; }
.std14 { font-size: 108%; }
.std15 { font-size: 116%; }
.std16 { font-size: 123.1%; }
.std17 { font-size: 131%; }
.std18 { font-size: 138.5%; }
.std19 { font-size: 146.5%; }
.std20 { font-size: 153.9%; }
.std21 { font-size: 161.6%; }
.std22 { font-size: 167%; }
.std23 { font-size: 174%; }
.std24 { font-size: 182%; }
.std25 { font-size: 189%; }
.std26 { font-size: 197%; }

.u-mb-20 { margin-bottom: 20px !important; }
.u-mb-40 { margin-bottom: 40px !important; }
.u-text-center { text-align: center !important; }
.u-w-full { width: 100% !important; }

.hiddenSp { display: none; }

.itemsTop{ align-items: top !important;}

@media screen and (min-width: 768px) {
    .hiddenSp { display: inline; }
}

@media screen and (max-width: 430px) {
    body { max-width: var(--mobile-max); margin: 0 auto; }
}