/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Custom Properties --------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */

:root {
    /* ------------------------------------- */
    /* Color ------------------------------- */
    /* ------------------------------------- */

	/* Text Color ---------- */
	--text-primary: #333;
	--text-secondary: #FFFFFF;
	--text-tertiary: #FF6B00;
	--text-quaternary: #0099CC;
	--text-quinary: #1A3C6E;
	--text-success: #155724;
	--text-danger: #721C24;

	/* Background Color ---------- */
	--background-primary: #FFF;
	--background-primary80: rgba(255, 255, 255, 0.8);
	--background-primary64: rgba(255, 255, 255, 0.64);
	--background-secondary: #FF6B00;
	--background-tertiary: #0099CC;
	--background-quaternary: #F3F8FC;
	--background-quinary: #E6F4F9;
	--background-senary: #FFE6D9;
	--background-septenary: #1A3C6E;
	--background-success: #D4EDDA;
	--background-danger: #F8D7DA;

	/* Border Color ---------- */
	--border-primary: #DDD;
	--border-secondary: #333;
	--border-tertiary: #FFF;
	--border-quaternary: #0099CC;
	--border-quinary: #AAA;
	--border-success: #C3E6CB;
	--border-danger: #F5C6CB;

	/* transparent Color ---------- */
	--transparent-primary5: rgba(51, 51, 51, 0.05);
	--transparent-primary10: rgba(51, 51, 51, 0.1);
	--transparent-primary15: rgba(51, 51, 51, 0.15);
	--transparent-secondary10: rgba(0, 153, 204, 0.1);
	--transparent-secondary25: rgba(0, 153, 204, 0.25);
	--transparent-secondary35: rgba(0, 153, 204, 0.35);
	--transparent-tertiary25: rgba(255, 107, 0, 0.25);
	--transparent-tertiary35: rgba(255, 107, 0, 0.35);
	--transparent-quaternary25: rgba(255, 255, 255, 0.25);

	/* Gradation Color ---------- */
	--gradation-primary: #0099CC;
	--gradation-secondary: #1A3C6E;

    /* ------------------------------------- */
    /* Font Size --------------------------- */
    /* ------------------------------------- */

    --fontSize-xSmall: 12px;
    --fontSize-small: 14px;
    --fontSize-medium: 16px;
    --fontSize-large: 18px;
    --fontSize-xLarge: 20px;
    --fontSize-2xLarge: 24px;
    --fontSize-3xLarge: 28px;
    --fontSize-4xLarge: 32px;
    --fontSize-5xLarge: 36px;
    --fontSize-6xLarge: 40px;
    --fontSize-7xLarge: 44px;
    --fontSize-8xLarge: 48px;
    --fontSize-9xLarge: 52px;
    --fontSize-10xLarge: 56px;
    --fontSize-11xLarge: 60px;
    --fontSize-12xLarge: 64px;
    --fontSize-13xLarge: 68px;
    --fontSize-14xLarge: 72px;
    --fontSize-15xLarge: 76px;
    --fontSize-16xLarge: 80px;

    /* ------------------------------------- */
    /* Space ------------------------------- */
    /* ------------------------------------- */

    --space-xSmall: 4px;
    --space-small: 8px;
    --space-medium: 12px;
    --space-large: 16px;
    --space-xLarge: 20px;
    --space-2xLarge: 24px;
    --space-3xLarge: 28px;
    --space-4xLarge: 32px;
    --space-5xLarge: 36px;
    --space-6xLarge: 40px;
    --space-7xLarge: 44px;
    --space-8xLarge: 48px;
    --space-9xLarge: 52px;
    --space-10xLarge: 56px;
    --space-11xLarge: 60px;
    --space-12xLarge: 64px;
    --space-13xLarge: 68px;
    --space-14xLarge: 72px;
    --space-15xLarge: 78px;
    --space-16xLarge: 80px;

    /* ------------------------------------- */
    /* Column ------------------------------ */
    /* ------------------------------------- */

    --column-1: repeat(1, 1fr);
    --column-2: repeat(2, 1fr);
    --column-3: repeat(3, 1fr);
    --column-4: repeat(4, 1fr);
    --column-5: repeat(5, 1fr);
    --column-6: repeat(6, 1fr);

}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Reset --------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Base ---------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */

body {
    font-size: var(--fontSize-medium);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--background-quaternary);
}

a {
    color: var(--text-primary);
    text-decoration: none;
}

img {
    object-fit: cover;
}

strong {
    color: var(--text-quaternary);
    font-weight: 700;
}

.container ol,
.container ul {
	padding-left: 24px;
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Parts --------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */

/* ------------------------------------- */
/* Custom Cursor ----------------------- */
/* ------------------------------------- */

.c-customCursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 153, 204, 0.25);
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.3s ease, background 0.3s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.c-customCursor.expanded {
    transform: translate(-50%, -50%) scale(3);
    background: rgba(255, 107, 0, 0.15);
}

@media (max-width: 768px) {
    .c-customCursor {
        display: none;
    }
}

/* ------------------------------------- */
/* Arrow Link -------------------------- */
/* ------------------------------------- */

.c-arrowLink__item {
    position: relative;
    padding-left: var(--space-2xLarge);
}
.c-arrowLink__item:not(:last-child) {
    margin-bottom: var(--space-medium);
}

.c-arrowLink__item i {
    position: absolute;
    left: 0;
    top: 9px;
    font-size: var(--fontSize-small);
    color: var(--text-quaternary);
}

.c-arrowLink__item a {
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-quaternary);
    text-decoration: none;
}

.c-arrowLink__item span {
    margin-left: var(--space-small);
    color: var(--text-primary);
}

/* ------------------------------------- */
/* Table ------------------------------- */
/* ------------------------------------- */

.c-table {
	border-radius: 8px;
    box-shadow: 0 15px 35px var(--transparent-primary10);
    background: var(--background-primary);
    overflow: hidden;
}

.c-table__row {
    display: flex;
    border-bottom: 1px solid var(--border-primary);
}

.c-table__row:last-child {
    border-bottom: none;
}

.c-table__label {
    display: flex;
    align-items: flex-start;
    flex: 0 0 200px;
    padding: var(--space-4xLarge);
    font-weight: 700;
    border-right: 1px solid var(--border-primary);
    color: var(--text-secondary);
    background: var(--background-septenary);
}

.c-table__content {
    flex: 1;
    padding: var(--space-4xLarge);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .c-table__row {
        flex-direction: column;
    }
    
    .c-table__label {
        flex: none;
        border-right: none;
        border-bottom: 1px solid var(--border-primary);
        padding: var(--space-2xLarge);
    }
    
    .c-table__content {
        padding: var(--space-2xLarge);
    }
}

/* ------------------------------------- */
/* Accordion --------------------------- */
/* ------------------------------------- */

.c-accordion__item:not(:last-child) {
    margin-bottom: var(--space-4xLarge);
    border-bottom: 1px solid var(--border-primary);
}

.c-accordion__question,
.c-accordion__answerText {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2xLarge);
}

.c-accordion__question {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: calc(var(--space-medium) * -1);
    padding: var(--space-medium) var(--space-4xLarge) var(--space-medium) var(--space-medium);
    position: relative;
}

.c-accordion__question:hover {
    background: var(--transparent-secondary10);
}

.c-accordion__answer {
    margin-top: var(--space-4xLarge);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin-top 0.3s ease-out;
}

.c-accordion__item.active .c-accordion__answer {
    max-height: 1000px;
    margin-bottom: var(--space-4xLarge);
}

.c-accordion__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: var(--fontSize-3xLarge);
    border-radius: 50%;
    font-weight: 700;
    color: var(--text-secondary);
}

.c-accordion__icon--question {
    background: var(--background-septenary);
}

.c-accordion__icon--answer {
    background: var(--background-tertiary);
}

.c-accordion__text {
    flex: 1;
    padding-top: var(--space-small);
    line-height: 1.8;
}

.c-accordion__question .c-accordion__text {
    font-size: var(--fontSize-2xLarge);
    font-weight: 700;
    color: var(--text-quinary);
}

.c-accordion__answer .c-accordion__text {
    font-size: var(--fontSize-large);
    color: var(--text-primary);
}

.c-accordion__arrow {
    position: absolute;
    right: var(--space-large);
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--fontSize-large);
    color: var(--text-quinary);
    transition: transform 0.3s ease;
}

.c-accordion__item.active .c-accordion__arrow {
    transform: translateY(-50%) rotate(180deg);
}

.c-accordion__image {
    margin-top: var(--space-2xLarge);
}

.c-accordion__image img {
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .c-accordion__question,
    .c-accordion__answerText {
        gap: var(--space-large);
    }

    .c-accordion__question:hover {
        background: none;
    }
    
    .c-accordion__icon {
        width: 50px;
        height: 50px;
        font-size: var(--fontSize-2xLarge);
    }
    
    .c-accordion__question .c-accordion__text {
        font-size: var(--fontSize-large);
    }
    
    .c-accordion__answer .c-accordion__text {
        font-size: var(--fontSize-medium);
    }
    
    .c-accordion__arrow {
        right: var(--space-medium);
        font-size: var(--fontSize-medium);
    }
}

/* ------------------------------------- */
/* Simple Grid ------------------------- */
/* ------------------------------------- */

.l-simpleGrid {
    display: grid;
    grid-template-columns: var(--column-3);
    gap: var(--space-6xLarge);
}

@media (max-width: 992px) {
    .l-simpleGrid {
        grid-template-columns: var(--column-2);
		gap: var(--space-4xLarge);
    }
}

@media (max-width: 768px) {
    .l-simpleGrid {
        grid-template-columns: var(--column-1);
        gap: var(--space-2xLarge);
    }
}

/* ------------------------------------- */
/* Card -------------------------------- */
/* ------------------------------------- */
.c-cardGrid {
    display: grid;
    gap: var(--space-2xLarge);
    grid-template-columns: var(--column-3) !important;
    list-style: none;
}

.c-card {
    position: relative;
    padding: var(--space-4xLarge);
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.c-card.c-card--large {
    padding: var(--space-8xLarge);
}

.c-card--underLine:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0099CC, #1A3C6E);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.c-card--icon i {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .c-cardGrid {
        grid-template-columns: var(--column-1) !important;
    }

    .c-card {
        padding: var(--space-2xLarge);
    }

    .c-card.c-card--large {
        padding: var(--space-2xLarge);
    }
}

/* ------------------------------------- */
/* Image ------------------------------- */
/* ------------------------------------- */

.c-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    box-shadow: 0 20px 40px var(--transparent-primary10);
}

/* ------------------------------------- */
/* Button ------------------------------ */
/* ------------------------------------- */

.c-buttonList {
    display: flex;
    gap: 24px;
}

.c-button {
    display: inline-block;
    padding: 16px 36px;
    color: var(--text-secondary);
    background: var(--background-tertiary);
    border-radius: 50px;
    font-weight: 700;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 6px 20px var(--transparent-secondary25);
    border: none;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.c-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--transparent-quaternary25), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.c-button:hover:before {
    left: 100%;
}

.c-button:hover {
    color: var(--text-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--transparent-secondary35);
}

.c-button--primary {
    background: var(--background-secondary);
    box-shadow: 0 6px 20px var(--transparent-tertiary25);
}

.c-button--primary:hover {
    box-shadow: 0 10px 25px var(--transparent-tertiary35);
}

.c-button--outline {
    background: transparent;
    border: 2px solid var(--border-quaternary);
    color: var(--background-tertiary);
    box-shadow: none;
}

.c-button--outline:hover {
    background: var(--background-tertiary);
    color: var(--text-secondary);
    box-shadow: 0 10px 25px rgba(0, 153, 204, 0.25);
}

.c-button--small {
    padding: 8px 24px;
}


@media (max-width: 992px) {    
    .c-buttonList {
        justify-content: center;
    }
}

@media (max-width: 768px) {    
    .c-buttonList {
        display: block;
    }

    .c-buttonList .c-button:not(:last-child) {
        margin-bottom: 12px;
    }

    .c-button {
        width: 100%;
    }
}

/* ------------------------------------- */
/* Icon -------------------------------- */
/* ------------------------------------- */

/* Circle Icon ---------- */
.c-circleIcon i {
    font-size: var(--fontSize-5xLarge);
    background: var(--transparent-secondary10);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon List ---------- */
.c-iconList {
    display: flex;
    flex-direction: column;
    gap: var(--space-4xLarge);
}

.c-iconList__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2xLarge);
}

.c-iconList__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: var(--fontSize-2xLarge);
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--text-quaternary);
    background: var(--transparent-secondary10);
}

/* Icon Card ---------- */
.c-iconCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.c-iconCard__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-small);
    border-radius: 12px;
    box-shadow: 0 10px 20px var(--transparent-primary5);
    background: var(--background-primary);
}

.c-iconCard__icon img {
    max-width: 60%;
    max-height: 60%;
}

.c-iconCard__text {
    font-weight: 500;
}

/* ------------------------------------- */
/* Scroll Down ------------------------- */
/* ------------------------------------- */

.c-scrollDown {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-quaternary);
    font-size: var(--fontSize-small);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.c-scrollDown:hover {
    transform: translateX(-50%) translateY(-5px);
    color: #FF6B00;
}

.c-scrollDown i {
    font-size: 24px;
    margin-top: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ------------------------------------- */
/* Heading ----------------------------- */
/* ------------------------------------- */

/* Heading2 ---------- */
.c-heading2 {
    position: relative;
    width: 100%;
    font-size: var(--fontSize-8xLarge);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-quinary);
    line-height: 1.2;
    display: inline-block;
    position: relative;
}

.c-heading2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--background-tertiary);
    margin: 20px 0;
}

.c-heading2--center {
    text-align: center;
}

.c-heading2--center:after {
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 768px) {    
    .c-heading2 {
        font-size: var(--fontSize-6xLarge);
    }
}

/* Heading3 ---------- */
.c-heading3 {
    font-size: var(--fontSize-4xLarge);
    margin-bottom: 20px;
    color: var(--text-quinary);
    line-height: 1.3;
    font-weight: 700;
}

.c-heading3 .u-highlight:after {
    height: 10px;
}

.c-heading3--underLine {
    position: relative;
    margin-bottom: 32px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--border-primary);
}
.c-heading3--underLine:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--background-tertiary);
}

@media (max-width: 768px) {
    .c-heading3 {
        font-size: var(--fontSize-2xLarge);
    }
}

/* Heading4 ---------- */
.c-heading4 {
    font-size: var(--fontSize-xLarge);
    color: var(--text-quinary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.c-heading4 i {
    margin-right: 10px;
    background: rgba(0, 153, 204, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ------------------------------------- */
/* Title ------------------------------- */
/* ------------------------------------- */

/* Title Label ---------- */
.c-titleLabel {
    margin-bottom: 20px;
    padding: 8px 16px;
    font-weight: 700;
    border-radius: 4px;
    color: var(--text-quaternary);
    background: var(--transparent-secondary25);
}

.c-titleLabel--primary {
    color: var(--text-tertiary);
    background: var(--transparent-tertiary25);
}

/* Category Title ---------- */
.c-categoryTitle__text {
    display: flex;
    align-items: center;
    font-size: var(--fontSize-2xLarge);
    font-weight: 700;
    color: var(--text-quinary);
    margin-bottom: var(--space-2xLarge);
    padding-bottom: var(--space-medium);
    border-bottom: 2px solid var(--background-quinary);
}

.c-categoryTitle__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--transparent-secondary10);
    border-radius: 6px;
    margin-right: var(--space-large);
    color: var(--text-quaternary);
    font-size: var(--fontSize-large);
}

@media (max-width: 768px) {
    .c-categoryTitle__text {
        font-size: var(--fontSize-large);
    }

    .c-categoryTitle__icon {
        width: 35px;
        height: 35px;
        font-size: var(--fontSize-medium);
    }
}

/* ------------------------------------- */
/* Label ------------------------------- */
/* ------------------------------------- */

/* Label ---------- */
.c-labelList {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.c-label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--text-quaternary);
    background: var(--background-quinary);
    text-align: center;
}

.c-label--primary {
    background: var(--background-senary);
    color: var(--text-tertiary);
}

.c-label--secondary {
    color: var(--text-secondary);
    background: var(--background-tertiary);
}

.c-label--category {
    min-width: 120px;
}

.c-label--small {
    padding: 6px 14px;
    font-size: var(--fontSize-small);
}

/* Filter Label ---------- */
.c-filterLabelList .c-label {
    color: var(--text-quaternary);
    background: var(--background-primary);
    box-shadow: 0 2px 8px var(--transparent-secondary10);
	transition: all 0.3s ease;
	cursor: pointer;
}

.c-filterLabelList .c-label:hover {
	opacity: 0.7;
}

.c-filterLabelList .c-label--primary {
    color: var(--text-secondary);
    background: var(--background-tertiary);
    box-shadow: 0 6px 20px var(--transparent-secondary25);
}

/* ------------------------------------- */
/* Fixed Button ------------------------ */
/* ------------------------------------- */

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
	color: var(--text-secondary);
    background: var(--background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.floating-cta-btn:hover {
	color: var(--text-secondary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.4);
}

.floating-cta-btn.phone {
    background: #0099CC;
    box-shadow: 0 5px 15px rgba(0, 153, 204, 0.3);
}

.floating-cta-btn.phone:hover {
    box-shadow: 0 10px 20px rgba(0, 153, 204, 0.4);
}

.floating-cta-btn.top {
    background: white;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.floating-cta-btn.top:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Layouts ------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */

/* ------------------------------------- */
/* Common ------------------------------ */
/* ------------------------------------- */

/* Section ---------- */
.l-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .l-section {
        padding: 64px 0;
        position: relative;
        overflow: hidden;
    }
}

/* Container ---------- */
.l-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.l-container--small {
    max-width: 900px;
}

.l-container--large {
    max-width: 1400px;
}

@media (max-width: 768px) {
    .l-container {
        padding: 0 16px;
    }
}

/* ------------------------------------- */
/* Header ------------------------------ */
/* ------------------------------------- */

.l-header {
    background: rgba(255, 255, 255, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 16px 0;
}

.l-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 12px 0;
}

.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-header__logo {
    font-size: 24px;
    font-weight: bold;
    color: #1A3C6E;
    text-decoration: none;
    display: flex;
    align-items: center;
    z-index: 1001;
}

.l-header__logo img {
    height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.l-header.scrolled .l-header__logo img {
    height: 36px;
}

.l-globalNav__mainMenu {
    display: flex;
    list-style: none;
}

.l-globalNav__mainMenu > li {
    margin-left: 30px;
    position: relative;
}

.l-globalNav a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.l-globalNav__mainMenu > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0099CC;
    transition: width 0.3s ease;
}

.l-globalNav a:hover {
    color: #0099CC;
}

.l-globalNav__mainMenu > li > a:hover:after {
    width: 100%;
}

/* ドロップダウンメニュー */
.l-globalNav__dropdownMenu {
    position: absolute;
    top: 150%;
    left: 0;
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 100;
}

.l-globalNav__dropdownMenu li {
    margin: 0;
    position: relative;
}

.l-globalNav__dropdownMenu a {
    padding: 12px 20px;
    display: block;
    white-space: nowrap;
    font-size: 15px;
}

.l-globalNav__dropdownMenu a:hover {
    background: rgba(0, 153, 204, 0.05);
}

/* ホバー時の表示 */
.l-globalNav__hasDropdown:hover > .l-globalNav__dropdownMenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ドロップダウンを示す矢印 */
.l-globalNav__hasDropdown > a:after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
}

/* ドロップダウンメニューの丸い点を削除 */
.l-globalNav__dropdownMenu li:before,
.l-mobileMenu li:before,
.l-globalNav__dropdownMenu li::marker,
.l-mobileMenu li::marker {
    content: none;
    display: none;
}

/* リスト自体のスタイリングを修正 */
.l-globalNav__dropdownMenu,
.l-mobileMenu ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

/* ヘッダーアクション - 修正部分 */
.l-header__actions {
    display: flex;
    align-items: center;
}

.l-hamburgerMenu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.l-hamburgerMenu:hover {
    transform: scale(1.1);
}

.l-hamburgerMenu i {
	color: var(--text-quinary);
}

/* モバイルメニュー */
.l-mobileMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 1000;
    padding: 100px 40px 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
}

.l-mobileMenu.active {
    right: 0;
}

.l-mobileMenu ul {
    list-style: none;
}

.l-mobileMenu li {
    margin-bottom: 15px;
}

.l-mobileMenu a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.l-mobileMenu a:hover {
    color: #0099CC;
    transform: translateX(10px);
}

.l-mobileMenu .l-globalNav__dropdownMenu {
    position: static;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.l-globalNav__dropdownToggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l-globalNav__dropdownToggle i {
    transition: all 0.3s ease;
}

.l-globalNav__dropdownToggle.active i {
    transform: rotate(180deg);
}

.l-mobileMenu .l-globalNav__dropdownMenu.active {
    max-height: 1000px;
}

.l-header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.l-header__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------------- */
/* Page Hero --------------------------- */
/* ------------------------------------- */

.page-hero {
    background: linear-gradient(135deg, #1A3C6E 0%, #0099CC 100%);
    color: white;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
    background-image: url('https://mendix.buildsystem.jp/wp-content/uploads/2025/04/Tech-pattern-background.webp');
    background-size: cover;
    background-position: center;
}

.page-hero .container {
    position: relative;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
    color: white;
}

.page-hero p {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 146px 0 56px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* ------------------------------------- */
/* Image Grid -------------------------- */
/* ------------------------------------- */

.c-imageGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xLarge);
}

.c-imageGrid__card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--transparent-primary5);
    transition: all 0.3s ease;
}

.c-imageGrid__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--transparent-primary10);
}

.c-imageGrid__image {
    overflow: hidden;
}

.c-imageGrid__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3 / 2;
	object-position: center top;
    transition: transform 0.5s ease;
}

.c-imageGrid__card:hover .c-imageGrid__image img {
    transform: scale(1.05);
}

.c-imageGrid__content {
    padding: var(--space-4xLarge);
}

.c-imageGrid__subText {
    display: block;
    margin-bottom: var(--space-medium);
    font-weight: 500;
    color: var(--text-quaternary);
}

.c-imageGrid__image--withLabel {
    position: relative;
}

.c-imageGrid__label {
    position: absolute;
    top: var(--space-large);
    left: var(--space-large);
    z-index: 2;
    color: var(--text-secondary);
    background: var(--background-tertiary);
}
@media (max-width: 768px) {
    .c-imageGrid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ------------------------------------- */
/* Circle Image Grid ------------------- */
/* ------------------------------------- */

.c-circleImageGrid__card {
    position: relative;
    display: flex;
    border-radius: 6px;
    box-shadow: 0 15px 35px var(--transparent-primary5);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background-color: var(--background-primary);
}

.c-circleImageGrid__card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--transparent-secondary10);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.c-circleImageGrid__card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px var(--transparent-primary10);
}

.c-circleImageGrid__card:hover:before {
    opacity: 1;
}

.c-circleImageGrid__image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: var(--space-4xLarge) auto var(--space-2xLarge);
    border: 5px solid var(--border-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.c-circleImageGrid__card:hover .c-circleImageGrid__image {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--border-quaternary);
}

.c-circleImageGrid__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-circleImageGrid__content {
    padding: 0 var(--fontSize-2xLarge) var(--fontSize-4xLarge);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.c-circleImageGrid__supplement {
    color: var(--text-quinary);
    font-size: var(--fontSize-large);
}

/* ------------------------------------- */
/* Magazine Grid ----------------------- */
/* ------------------------------------- */

.l-magazineGrid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-4xLarge);
}

.l-magazineGrid__item {
    border-radius: 6px;
    box-shadow: 0 20px 40px var(--transparent-primary10);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.l-magazineGrid__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px var(--transparent-primary15);
}

.l-magazineGrid__item img {
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.l-magazineGrid__item:hover img {
    transform: scale(1.1);
}

.l-magazineGrid__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-4xLarge);
    z-index: 1;
    color: var(--text-secondary);
}

.l-magazineGrid__text {
    font-size: var(--fontSize-xLarge);
    margin-bottom: var(--space-2xLarge);
}

.l-magazineGrid__item--main {
    grid-column: span 7;
    grid-row: span 2;
    height: 600px;
}

.l-magazineGrid__item--sub {
    grid-column: span 5;
    height: 285px;
}

.l-magazineGrid__date {
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.l-magazineGrid__date i {
    margin-right: var(--space-small);
}

@media (max-width: 992px) {
    .l-magazineGrid {
        grid-template-columns: 1fr;
    }
    
    .l-magazineGrid__item--main {
        grid-column: span 1;
        height: 300px;
    }
    
    .l-magazineGrid__item--sub {
        grid-column: span 1;
    }
}

/* ------------------------------------- */
/* Feature Grid ------------------------ */
/* ------------------------------------- */

.l-featureGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--space-12xLarge);
    align-items: center;
}

@media (max-width: 992px) {
    .l-featureGrid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 768px) {
    .l-featureGrid {
        grid-gap: var(--space-4xLarge);
    }
}

/* ------------------------------------- */
/* Flow -------------------------------- */
/* ------------------------------------- */

/* Default Flow ---------- */
.l-flow {
    display: flex;
    justify-content: space-between;
    gap: var(--space-2xLarge);
    margin-bottom: var(--space-6xLarge);
    list-style: none;
}

.l-flow__step {
    flex: 1;
    text-align: center;
    position: relative;
}

.l-flow__step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 35px;
    right: calc(-50% + 35px);
    width: calc(100% - 70px);
    height: 2px;
    background: var(--background-tertiary);
    z-index: 1;
}

.l-flow__icon {
    width: 70px;
    height: 70px;
    background: var(--background-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--fontSize-2xLarge);
    margin: 0 auto var(--space-2xLarge);
    position: relative;
    z-index: 2;
}

.l-flow__title {
    font-size: var(--fontSize-large);
    font-weight: 700;
    color: var(--text-quinary);
    margin-bottom: var(--space-small);
}

.l-flow__description {
    font-size: var(--fontSize-medium);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .l-flow {
        flex-direction: column;
        gap: var(--space-16xLarge);
    }
    
    .l-flow__step:not(:last-child):after {
        top: unset;
        right: unset;
        bottom: -87px;
        left: 50%;
        width: 2px;
        height: 48px;
        transform: translateY(-50%);
    }            
}

/* Vertical Flow ---------- */
.l-verticalFlow {
    position: relative;
}

.l-verticalFlow::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--background-tertiary), var(--background-septenary));
    transform: translateX(-50%);
}

.l-verticalFlow__item {
    position: relative;
    display: flex;
    align-items: center;
}

.l-verticalFlow__item:not(:last-child) {
    margin-bottom: var(--space-6xLarge);
}

.l-verticalFlow__content {
    flex: 1;
    margin-left: var(--space-2xLarge);
    padding: var(--space-2xLarge);
    box-shadow: 0 15px 35px var(--transparent-primary5);
    border-radius: 12px;
    background: var(--background-primary);
}

.l-verticalFlow__time {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--background-tertiary);
    color: var(--text-secondary);
    border-radius: 50%;
    font-size: var(--fontSize-large);
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(0, 153, 204, 0.3);
}

.l-verticalFlow__activity {
    margin-bottom: var(--space-small);
    font-size: var(--fontSize-2xLarge);
    font-weight: 700;
    color: var(--text-quinary);
}

.l-verticalFlow__description {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: var(--fontSize-medium);
}

@media (max-width: 992px) {
    .l-verticalFlow__timeline::before {
        left: 30px;
    }

    .l-verticalFlow__content {
        margin-left: 72px;
    }

    .l-verticalFlow__time {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
        font-size: var(--fontSize-medium);
    }
}

@media (max-width: 768px) {
    .l-verticalFlow__content {
        padding: var(--space-large);
    }

    .l-verticalFlow__activity {
        font-size: var(--fontSize-large);
    }
}

/* ------------------------------------- */
/* Carousel ---------------------------- */
/* ------------------------------------- */

.l-carousel {
    position: relative;
    padding-bottom: 50px;
    perspective: 1000px;
    height: 700px; /* 固定高さを設定して内容が見切れないようにする */
}

.l-carousel__list {
    width: 100%;
    height: 600px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.l-carousel__item {
    position: absolute;
    width: 80%;
    max-width: 1000px;
    height: auto;
    min-height: 500px;
    left: 10%;
    top: 50px;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transform-origin: center center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0.5;
    transform: translateZ(-350px) rotateY(0);
    display: flex;
    flex-direction: row;
}

.l-carousel__item.active {
    opacity: 1;
    transform: translateZ(0) rotateY(0);
    z-index: 10;
}

.l-carousel__item.prev {
    opacity: 0.7;
    transform: translateZ(-175px) translateX(-30%) rotateY(25deg);
    z-index: 5;
}

.l-carousel__item.next {
    opacity: 0.7;
    transform: translateZ(-175px) translateX(30%) rotateY(-25deg);
    z-index: 5;
}

.l-carousel__image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.l-carousel__image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);
    z-index: 1;
}

.l-carousel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.l-carousel__item:hover .l-carousel__image img {
    transform: scale(1.1);
}

.l-carousel__content {
    flex: 0 0 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    overflow-y: auto;
}

.l-carousel__nav {
    text-align: center;
}

.l-carousel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
    color: #0099CC;
    font-size: 24px;
}

.l-carousel__btn:hover {
    background: #0099CC;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 153, 204, 0.3);
}

@media (max-width: 768px) {
    .l-carousel {
        padding: 0;
    }

    .l-carousel__nav {
        margin-top: 24px;
    }

    .l-carousel__item {
        width: 90%;
        left: 5%;
        flex-direction: column;
        height: auto;
    }
    
    .l-carousel__image {
        height: 250px;
        flex: 0 0 150px;
    }
    
    .l-carousel__content {
        flex: 1;
        padding: 24px;
    }
}

/* ------------------------------------- */
/* Shape ------------------------------- */
/* ------------------------------------- */

/* Slash Shape ---------- */
.l-slashShape {
    position: absolute;
    width: 35%;
    height: 100%;
    top: 0;
    right: 0;
    background: var(--background-quaternary);
    transform: skewX(-10deg) translateX(10%);
    z-index: 0;
}

/* Circle Shape ---------- */
.l-circleShape {
    position: absolute;
    bottom: -400px;
    right: -400px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: rgba(0, 153, 204, 0.05);
    z-index: 0;
}

/* Move Shape ---------- */
.l-moveShape {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 170%;
    background: linear-gradient(135deg, rgba(0, 153, 204, 0.05) 0%, rgba(26, 60, 110, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(-15deg);
    z-index: 0;
}

/* ------------------------------------- */
/* News --------------------------------- */
/* ------------------------------------- */

.l-news__item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: var(--space-2xLarge) var(--space-4xLarge);
    background: var(--background-primary);
    box-shadow: 0 6px 20px var(--transparent-primary5);
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.l-news__item:not(:last-child) {
    margin-bottom: var(--space-2xLarge);
}

.l-news__item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--transparent-primary10);
}

.l-news__date {
    display: flex;
    align-items: center;
}

.l-news__link {
    color: var(--text-quinary);
    text-decoration: none;
    transition: color 0.3s ease;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .l-news__item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: var(--space-2xLarge);
    }
}

/* ------------------------------------- */
/* CTA --------------------------------- */
/* ------------------------------------- */

.l-cta__title {
    margin-bottom: var(--space-6xLarge);
    font-size: var(--fontSize-6xLarge);
    color: var(--text-secondary);
    text-align: center;
}

.l-cta__text {
    font-size: var(--fontSize-large);
    margin-bottom: var(--space-6xLarge);
    color: var(--text-secondary);
    text-align: center;
}

@media (max-width: 768px) {
	.l-cta__title {
		font-size: var(--fontSize-4xLarge);
		line-height: 1.4;
	}
	
	.l-cta__text {
		font-size: var(--fontSize-medium);
	}
}

/* ------------------------------------- */
/* Footer ------------------------------ */
/* ------------------------------------- */

.l-footer {
    background: #1A3C6E;
    color: white;
    padding: 100px 0 30px;
    position: relative;
}

.l-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #0099CC, #FF6B00);
}

.footer-grid {
    display: grid;
    /* grid-template-columns: 1fr 2fr 1fr; */
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 70px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 100%;
    margin-right: 10px;
}

.footer-company-info {
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-nav {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-nav--title {
    margin-bottom: 25px;
    font-size: 18px;
    color: #0099CC;
    position: relative;
    padding-bottom: 15px;
}

.footer-nav--title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #0099CC;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

/* .footer-nav a:before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    font-size: 14px;
    color: #0099CC;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
} */

.footer-nav a:hover {
    color: white;
    transform: translateX(10px);
}

.footer-nav a:hover:before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

/* .footer-contact a:hover {
    color: #0099CC;
} */

.footer-contact-btn {
    display: block;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact-btn:hover {
    background: #0099CC;
    color: white;
    border-color: #0099CC;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 153, 204, 0.3);
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

.copyright p {
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    color: #0099CC;
    background: rgba(0, 153, 204, 0.1);
}

.social-link:hover {
    background: #0099CC;
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* モバイル対応 */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .l-hamburgerMenu {
        display: block;
    }
    
    .l-globalNav,
    .l-header__actions .c-button {
        display: none;
    }
}

@media (max-width: 768px) {
    .l-header__logo img {
        height: 22px;
        margin-right: 10px;
        transition: all 0.3s ease;
    }
    
    .l-header.scrolled .l-header__logo img {
        height: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-nav {
        /* grid-template-columns: 1fr; */
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px; /* 縦並びの場合は間隔を少し狭く */
        /* 追加：コンテナ自体も左寄せにする場合 */
        justify-content: flex-start;
    }
}

/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/* Utility ------------------------------------------------- */
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */

/* ------------------------------------- */
/* Color ------------------------------- */
/* ------------------------------------- */

.u-textColor--primary { color: var(--text-tertiary) !important; }
.u-textColor--secondary { color: var(--text-secondary) !important; }
.u-textColor--tertiary { color: var(--text-quaternary) !important; }

/* ------------------------------------- */
/* Background Color -------------------- */
/* ------------------------------------- */

.u-background {
    background: var(--background-primary) !important;
}

.u-background--primary {
    background: linear-gradient(135deg, var(--gradation-secondary) 0%, var(--gradation-primary) 100%) !important;
}

.u-background--secondary {
    background: var(--background-quaternary) !important;
}

.u-background--under {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0;
    background: var(--background-quaternary);
}

/* ------------------------------------- */
/* Font size --------------------------- */
/* ------------------------------------- */

.u-fontSize--xSmall { font-size: var(--fontSize-xSmall); } /* 12px; */
.u-fontSize--small { font-size: var(--fontSize-small); } /* 14px; */
.u-fontSize--medium { font-size: var(--fontSize-medium); } /* 16px; */
.u-fontSize--large { font-size: var(--fontSize-large); } /* 18px; */
.u-fontSize--xLarge { font-size: var(--fontSize-xLarge); } /* 20px; */
.u-fontSize--2xLarge { font-size: var(--fontSize-2xLarge); } /* 24px; */
.u-fontSize--3xLarge { font-size: var(--fontSize-3xLarge); } /* 28px; */
.u-fontSize--4xLarge { font-size: var(--fontSize-4xLarge); } /* 32px; */
.u-fontSize--5xLarge { font-size: var(--fontSize-5xLarge); } /* 36px; */
.u-fontSize--6xLarge { font-size: var(--fontSize-6xLarge); } /* 40px; */
.u-fontSize--7xLarge { font-size: var(--fontSize-7xLarge); } /* 44px; */
.u-fontSize--8xLarge { font-size: var(--fontSize-8xLarge); } /* 48px; */
.u-fontSize--9xLarge { font-size: var(--fontSize-9xLarge); } /* 52px; */
.u-fontSize--10xLarge { font-size: var(--fontSize-10xLarge); } /* 56px; */
.u-fontSize--11xLarge { font-size: var(--fontSize-11xLarge); } /* 60px; */
.u-fontSize--12xLarge { font-size: var(--fontSize-12xLarge); } /* 64px; */

/* ------------------------------------- */
/* Flex -------------------------------- */
/* ------------------------------------- */

.u-flex { display: flex !important; }

.u-flex--baseline { align-items: baseline !important; }
.u-flex--top { align-items: flex-start !important; }
.u-flex--center { align-items: center !important; }
.u-flex--middle { justify-content: center !important; }
.u-flex--between { justify-content: space-between !important; }
.u-flex--wrap { flex-wrap: wrap !important; }

/* ------------------------------------- */
/* Grid -------------------------------- */
/* ------------------------------------- */

.u-grid { display: grid; }

.u-gridColumn--pc2-tb2-mb1 { grid-template-columns: repeat(2, 1fr) !important; }

.u-gridColumn--pc3-7-tb1-mb1 { grid-template-columns: 3fr 7fr !important; }

@media (max-width: 768px) {
    .u-gridColumn--pc2-tb2-mb1 { grid-template-columns: repeat(1, 1fr) !important; }

    .u-gridColumn--pc3-7-tb1-mb1 { grid-template-columns: repeat(1, 1fr) !important; }
}

.u-gap--xSmall { gap: var(--space-xSmall);} /* 4px; */
.u-gap--small { gap: var(--space-small); } /* 8px; */
.u-gap--medium { gap: var(--space-medium); } /* 12px; */
.u-gap--large { gap: var(--space-large); } /* 16px; */
.u-gap--xLarge { gap: var(--space-xLarge); } /* 20px; */
.u-gap--2xLarge { gap: var(--space-2xLarge); } /* 24px; */
.u-gap--3xLarge { gap: var(--space-3xLarge); } /* 28px; */
.u-gap--4xLarge { gap: var(--space-4xLarge); } /* 32px; */
.u-gap--5xLarge { gap: var(--space-5xLarge); } /* 36px; */
.u-gap--6xLarge { gap: var(--space-6xLarge); } /* 40px; */
.u-gap--7xLarge { gap: var(--space-7xLarge); } /* 44px; */
.u-gap--8xLarge { gap: var(--space-8xLarge); } /* 48px; */
.u-gap--9xLarge { gap: var(--space-9xLarge); } /* 52px; */
.u-gap--10xLarge { gap: var(--space-10xLarge); } /* 56px; */
.u-gap--11xLarge { gap: var(--space-11xLarge); } /* 60px; */
.u-gap--12xLarge { gap: var(--space-12xLarge); } /* 64px; */
.u-gap--12xLarge { gap: var(--space-13xLarge); } /* 68px; */
.u-gap--12xLarge { gap: var(--space-14xLarge); } /* 72px; */
.u-gap--12xLarge { gap: var(--space-15xLarge); } /* 76px; */
.u-gap--12xLarge { gap: var(--space-16xLarge); } /* 80px; */

/* ------------------------------------- */
/* Width ------------------------------- */
/* ------------------------------------- */

.u-width--200 {
    width: 200px;
}

/* ------------------------------------- */
/* Margin ------------------------------ */
/* ------------------------------------- */

.u-marginRight--large { margin-right: var(--space-large); }

.u-marginBottom--none {
    margin-bottom: 0 !important;
}

.u-marginBottom--small { margin-bottom: var(--space-small) !important; } /* 8px; */
.u-marginBottom--large { margin-bottom: var(--space-large) !important; } /* 16px; */
.u-marginBottom--xLarge { margin-bottom: var(--space-xLarge) !important; } /* 20px; */
.u-marginBottom--2xLarge { margin-bottom: var(--space-2xLarge) !important; } /* 24px; */
.u-marginBottom--4xLarge { margin-bottom: var(--space-4xLarge) !important; } /* 32px; */
.u-marginBottom--6xLarge { margin-bottom: var(--space-6xLarge) !important; } /* 40px; */


/* ------------------------------------- */
/* Padding ----------------------------- */
/* ------------------------------------- */

.u-padding--xSmall { padding: var(--space-xSmall);} /* 4px; */
.u-padding--small { padding: var(--space-small); } /* 8px; */
.u-padding--medium { padding: var(--space-medium); } /* 12px; */
.u-padding--large { padding: var(--space-large); } /* 16px; */
.u-padding--xLarge { padding: var(--space-xLarge); } /* 20px; */
.u-padding--2xLarge { padding: var(--space-2xLarge); } /* 24px; */
.u-padding--3xLarge { padding: var(--space-3xLarge); } /* 28px; */
.u-padding--4xLarge { padding: var(--space-4xLarge); } /* 32px; */
.u-padding--5xLarge { padding: var(--space-5xLarge); } /* 36px; */
.u-padding--6xLarge { padding: var(--space-6xLarge); } /* 40px; */
.u-padding--7xLarge { padding: var(--space-7xLarge); } /* 44px; */
.u-padding--8xLarge { padding: var(--space-8xLarge); } /* 48px; */
.u-padding--9xLarge { padding: var(--space-9xLarge); } /* 52px; */
.u-padding--10xLarge { padding: var(--space-10xLarge); } /* 56px; */
.u-padding--11xLarge { padding: var(--space-11xLarge); } /* 60px; */
.u-padding--12xLarge { padding: var(--space-12xLarge); } /* 64px; */

/* ------------------------------------- */
/* Highlight --------------------------- */
/* ------------------------------------- */

.u-highlight {
    position: relative;
    display: inline-block;
    color: var(--text-quaternary);
}

.u-highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    z-index: -1;
    border-radius: 10px;
    background: var(--transparent-secondary25);
}

/* ------------------------------------- */
/* Overlay --------------------------- */
/* ------------------------------------- */
.u-overlay {
    position: relative;
    height: 100%;
}
.u-overlay:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    z-index: 1;
}

/* ------------------------------------- */
/* List -------------------------------- */
/* ------------------------------------- */

.u-list {
	padding-left: 0 !important;
    list-style: none;
}

/* ------------------------------------- */
/* Text -------------------------------- */
/* ------------------------------------- */

.u-text--right { text-align: right; }
.u-text--center { text-align: center !important; }
.u-text--left { text-align: left !important; }

.u-text--bold { font-weight: 700; }

.u-text--italic { font-style: italic; }

/* ------------------------------------- */
/* Omission ---------------------------- */
/* ------------------------------------- */

.u-omission {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.u-omission--2 { -webkit-line-clamp: 2; }
.u-omission--3 { -webkit-line-clamp: 3; }

/* ------------------------------------- */
/* Display ----------------------------- */
/* ------------------------------------- */

.u-display--desktop {
    display: block;
}

@media (max-width: 992px) {
    .u-display--desktop {
        display: none;
    }
}

/* ------------------------------------- */
/* Hidden ------------------------------ */
/* ------------------------------------- */

.u-hidden--desktop {
    display: none;
}

@media (max-width: 992px) {
    .u-hidden--desktop {
        display: block;
    }
}