:root {
    --color-primary: #556b2f;           
    --color-primary-light: #6b8238;     
    --color-primary-dark: #3d4f21;      
    --color-secondary: #f0f2ed;         
    --color-text: #333333;              
    --color-text-light: #666666;        
    --color-bg: #ffffff;                
    --color-bg-light: #f8faf9;          
    --color-bg-dark: #2a3f35;           
    --color-border: #e5ebe7;            
    --color-accent: #f4a460;            
    --font-family-base: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --font-size-xlarge: 24px;
    --font-size-xxlarge: 32px;
    --font-size-hero: 40px;
    --line-height-base: 1.8;
    --line-height-heading: 1.5;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    --spacing-xxl: 120px;
    --breakpoint-mobile: 768px;
    --breakpoint-tablet: 1024px;
    --transition-duration: 0.4s;
    --transition-timing: cubic-bezier(.4, .4, 0, 1);
    --transition-base: all var(--transition-duration) var(--transition-timing);
    --transition-fast: 0.3s cubic-bezier(.4, .4, 0, 1);
    --transition-slow: 0.6s cubic-bezier(.4, .4, 0, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(85, 107, 47, 0.08);
    --shadow-md: 0 4px 16px rgba(85, 107, 47, 0.12);
    --shadow-lg: 0 8px 24px rgba(85, 107, 47, 0.16);
    --container-max-width: 1200px;
}
body {
    font-family: var(--font-family-base);
    font-size: 1rem;
    color: var(--color-text);
    line-height: var(--line-height-base);
    background-color: var(--color-bg);
}
h1, h2, h3, h4, h5, h6 {
    line-height: var(--line-height-heading);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}
h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.02em;
}
h2 {
    font-size: 2rem;
    padding-bottom: var(--spacing-sm);
    display: inline-block;
}
h3 {
    font-size: 1.5rem;
}
h4, h5, h6 {
    font-size: 1.125rem;
}
p {
    margin-bottom: var(--spacing-md);
}
ul, ol {
    margin-bottom: var(--spacing-md);
}
.container {
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}
.section {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}
.section-alt {
    background-color: var(--color-bg-light);
}
.hero {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-secondary) 0%, #ffffff 100%);
    text-align: center;
}
.hero h1 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-xxl { margin-top: var(--spacing-xxl); }
.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-xxl { margin-bottom: var(--spacing-xxl); }
.pt-xs { padding-top: var(--spacing-xs); }
.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }
.pt-xxl { padding-top: var(--spacing-xxl); }
.pb-xs { padding-bottom: var(--spacing-xs); }
.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }
.pb-xxl { padding-bottom: var(--spacing-xxl); }
.header {
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}
.header-logo {
    margin: 0;
}
.header-logo h1 {
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin: 0;
}
.header-logo h1 a {
    display: block;
    transition: var(--transition-base);
}
.header-logo h1 a:hover {
    opacity: 0.7;
}
.header-menu-toggle {
    display: none;
    width: 32px;
    height: 28px;
    position: relative;
    cursor: pointer;
}
.header-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    position: absolute;
    left: 0;
    transition: var(--transition-base);
    border-radius: 2px;
}
.header-menu-toggle span:nth-child(1) {
    top: 0;
}
.header-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.header-menu-toggle span:nth-child(3) {
    bottom: 0;
}
.header-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.header-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.header-menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}
.header-nav {
    display: flex;
}
.header-nav-list {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-end;
}
.header-nav-link {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    transition: var(--transition-base);
    position: relative;
    padding: 0;
    line-height: var(--line-height-heading);
}
.header-nav-link:hover {
    color: var(--color-primary);
}
.header-nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition-base);
}
.header-nav-link:hover::after {
    width: 100%;
}
.header-nav-link.active {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}
.header-nav-link.active::after {
    width: 100%;
}
@media (max-width: 767px) {
    .header-menu-toggle {
        display: block;
    }
    .header-logo h1 {
        font-size: var(--font-size-base);
    }
    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--color-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        backdrop-filter: blur(10px);
    }
    .header-nav.active {
        max-height: 400px;
    }
    .header-nav-list {
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-md) 0;
    }
    .header-nav-item {
        width: 100%;
        text-align: center;
    }
    .header-nav-link {
        display: block;
        padding: var(--spacing-md);
    }
    .header-nav-link::after {
        display: none;
    }
}
.footer {
    background-color: var(--color-bg-dark);
    color: #ffffff;
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}
.footer-section h3 {
    font-size: var(--font-size-small);
    color: #ffffff;
    margin-bottom: var(--spacing-xs);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: var(--spacing-xs);
}
.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: var(--font-size-small);
}
.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.footer-company-info p {
    margin-bottom: var(--spacing-xs);
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}
.footer-contact-tel {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
}
.footer-contact-email {
    color: rgba(255, 255, 255, 0.85);
}
.footer-copyright {
    text-align: center;
    padding-top: var(--spacing-xs);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}
.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.5;
}
.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}
.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.btn-primary:active {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}
.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.btn-secondary:active {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-1px);
}
.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-large);
}
.btn-sm {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-small);
}
.btn-block {
    display: block;
    width: 100%;
}
.card {
    background-color: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid var(--color-border);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--color-primary);
}
.card-header {
    padding: var(--spacing-md);
    background-color: var(--color-secondary);
    border-bottom: 1px solid var(--color-border);
}
.card-header h3 {
    margin-bottom: 0;
    font-size: var(--font-size-large);
}
.card-body {
    padding: var(--spacing-md);
}
.card-body p:last-child {
    margin-bottom: 0;
}
.card-footer {
    padding: var(--spacing-md);
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
}
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}
@media (min-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .card-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    h1 {
        font-size: 1.75rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    .hero {
        padding-top: var(--spacing-xl);
        padding-bottom: var(--spacing-lg);
    }
}
@media (min-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.375rem;
    }
    .container {
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
    }
}
@media (min-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
}
.hero-access {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #ffffff 100%);
    text-align: center;
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
}
.section-title {
    margin-bottom: var(--spacing-sm);
}
.section-description {
    color: var(--color-text-light);
    font-size: var(--font-size-large);
    margin-bottom: 0;
}
.access-content {
    background-color: var(--color-bg);
}
.access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}
.access-map h3 {
    margin-bottom: var(--spacing-md);
}
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-container iframe {
    display: block;
}
.access-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}
.info-block {
    background-color: var(--color-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
}
.info-block h3 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--color-primary);
}
.access-list {
    list-style: none;
    padding: 0;
}
.access-list li {
    padding: var(--spacing-xs) 0;
    line-height: 1.8;
}
.access-list .access-icon {
    display: inline-block;
    min-width: 48px;
    font-size: 15px;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
    margin-right: var(--spacing-xs);
}
.hours-table {
    width: 100%;
    border-collapse: collapse;
}
.hours-table th,
.hours-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.hours-table th {
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    width: 30%;
}
.hours-table tr:last-child th,
.hours-table tr:last-child td {
    border-bottom: none;
}
.contact-highlight {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #ffffff 100%);
    border: 2px solid var(--color-primary);
}
.contact-tel {
    margin-bottom: var(--spacing-sm);
}
.contact-tel a {
    font-size: var(--font-size-xlarge);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}
.contact-tel a .material-icons {
    font-size: 28px;
    color: var(--color-text);
}
.contact-tel a:hover {
    color: var(--color-primary-light);
}
.contact-email {
    margin-bottom: 0;
}
.contact-email a {
    font-size: var(--font-size-base);
    color: var(--color-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}
.contact-email a .material-icons {
    font-size: 22px;
    color: var(--color-text);
}
.contact-email a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}
@media (min-width: 768px) {
    .access-grid {
        grid-template-columns: 1fr 1fr;
    }
    .access-map {
        grid-column: span 2;
    }
    .access-info {
        grid-column: span 2;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .info-block {
        flex: 1 1 calc(50% - var(--spacing-md));
    }
    .contact-highlight {
        flex: 1 1 100%;
    }
}
@media (min-width: 1024px) {
    .access-grid {
        grid-template-columns: 1.2fr 1fr;
    }
    .access-map {
        grid-column: 1;
    }
    .access-info {
        grid-column: 2;
        flex-direction: column;
    }
    .info-block {
        flex: 1 1 auto;
    }
}
@media (min-width: 1024px) {
    .fixed-tel {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background-color: var(--color-primary);
        color: #ffffff;
        padding: var(--spacing-sm) var(--spacing-xs);
        border-radius: var(--radius-sm) 0 0 var(--radius-sm);
        box-shadow: var(--shadow-md);
        z-index: 999;
        font-weight: var(--font-weight-medium);
        font-size: 13px;
        transition: var(--transition-base);
    }
    .fixed-tel:hover {
        background-color: var(--color-primary-light);
        transform: translateY(-50%) translateX(-4px);
    }
    .fixed-tel a {
        color: #ffffff;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .fixed-tel .material-icons {
        font-size: 20px;
    }
    .fixed-tel .tel-text {
        writing-mode: vertical-rl;
        text-orientation: upright;
        letter-spacing: 0.05em;
    }
}
@media (max-width: 1023px) {
    .fixed-tel {
        display: none;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.animate-fadeIn {
    animation: fadeIn var(--transition-slow) var(--transition-timing);
}
.animate-slideInUp {
    animation: slideInUp var(--transition-slow) var(--transition-timing);
}
.animate-slideInLeft {
    animation: slideInLeft var(--transition-slow) var(--transition-timing);
}
.animate-slideInRight {
    animation: slideInRight var(--transition-slow) var(--transition-timing);
}
.section {
    animation: slideInUp 1s cubic-bezier(.4, .4, 0, 1);
}
.card {
    animation: slideInUp 0.8s cubic-bezier(.4, .4, 0, 1);
    opacity: 0;
    animation-fill-mode: forwards;
}
.card:nth-child(1) {
    animation-delay: 0.1s;
}
.card:nth-child(2) {
    animation-delay: 0.2s;
}
.card:nth-child(3) {
    animation-delay: 0.3s;
}
.card:nth-child(4) {
    animation-delay: 0.4s;
}
.card:nth-child(5) {
    animation-delay: 0.5s;
}
.card:nth-child(6) {
    animation-delay: 0.6s;
}
a, button {
    transition: all var(--transition-fast);
}
a:hover, button:hover {
    transform: translateY(-3px);
}
.btn {
    transition: all var(--transition-base);
}
.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(85, 107, 47, 0.25);
}
.card {
    transition: all var(--transition-base);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(85, 107, 47, 0.2);
}
.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-fast), left var(--transition-fast);
}
.header-nav-link:hover::after {
    width: 100%;
    left: 0;
}
:root {
    --lp-secondary-color: #8b7355;
    --lp-accent-color: #c9a882;
}
.page-lp a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.page-lp a:hover {
    opacity: 0.7;
    transform: none;
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}
.main-header.visible {
    transform: translateY(0);
}
.main-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    max-width: 1400px;
    margin: 0 auto;
}
.main-header .header-logo h1 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0;
}
.main-header .logo-en {
    margin-left: 8px;
    font-family: 'Times New Roman', serif;
    font-style: italic;
    color: var(--lp-secondary-color);
    font-size: 0.8em;
}
.main-header .header-nav {
    display: flex;
    gap: 32px;
}
.main-header .header-nav a {
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
    padding-bottom: 4px;
}
.main-header .header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--lp-secondary-color);
    transition: width 0.3s ease;
}
.main-header .header-nav a:hover::after {
    width: 100%;
}
.font-size-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    color: var(--color-primary);
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.font-size-toggle:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.font-size-toggle .material-icons {
    font-size: 18px;
}
.font-size-toggle .toggle-label {
    font-weight: 500;
}
html.font-enlarged .font-size-toggle {
    background-color: var(--color-primary);
    color: #fff;
}
html.font-enlarged {
    font-size: 18px; 
}
html.font-enlarged .pricing-detail-table td {
    font-size: 18px;
}
html.font-enlarged .pricing-detail-table .price-cell {
    font-size: 20px;
}
html.font-enlarged .pricing-detail-table .table-section-header td {
    font-size: 18px;
}
html.font-enlarged .pricing-notes-list li {
    font-size: 17px;
}
html.font-enlarged .pricing-note-text {
    font-size: 17px;
}
html.font-enlarged .pricing-notes-box .pricing-note-text {
    font-size: 17px;
}
html.font-enlarged .tax-note {
    font-size: 16px;
}
html.font-enlarged .discount-note {
    font-size: 17px;
}
html.font-enlarged .footer-copyright {
    font-size: 15px;
}
html.font-enlarged .access-list .access-icon {
    font-size: 17px;
}
html.font-enlarged .font-size-toggle {
    font-size: 15px;
}
html.font-enlarged .font-size-toggle .material-icons {
    font-size: 20px;
}
html.font-enlarged .tab-button {
    font-size: 18px;
}
html.font-enlarged .mobile-nav a {
    font-size: 17px;
}
html.font-enlarged .font-size-toggle-mobile {
    font-size: 17px;
}
html.font-enlarged .basic-pricing-table-title {
    font-size: 22px;
}
html.font-enlarged .gallery-hours {
    font-size: 20px;
}
html.font-enlarged .pricing-notes-box h4 {
    font-size: 20px;
}
html.font-enlarged .pricing-notes-box .pricing-note-text {
    font-size: 18px;
}
html.font-enlarged .parking-overview h3,
html.font-enlarged .parking-pricing h3 {
    font-size: 22px;
}
html.font-enlarged .parking-features ul li {
    font-size: 16px;
}
html.font-enlarged .tax-note {
    font-size: 16px;
}
@media (max-width: 768px) {
    .font-size-toggle {
        padding: 4px 8px;
        font-size: 13px;
    }
    .font-size-toggle .material-icons {
        font-size: 16px;
    }
    .font-size-toggle .toggle-label {
        display: none;
    }
    html.font-enlarged {
        font-size: 17px; 
    }
    html.font-enlarged .font-size-toggle .material-icons {
        font-size: 18px;
    }
}
.hero-lp {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    padding: 80px 24px;
}
.vertical-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 40px;
}
.menu-item {
    writing-mode: vertical-rl;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    padding: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.menu-item:hover,
.menu-item.active {
    color: var(--lp-secondary-color);
    transform: translateX(-4px);
}
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.hero-logo {
    margin-bottom: 60px;
}
.logo-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    color: var(--lp-secondary-color);
}
.logo-icon--symbol{
    width: 100px;
    height: 100px;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
}
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 400;
}
.title-ja {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
}
.title-name {
    font-size: 2rem;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin: 8px 0;
}
.title-en {
    font-family: 'Times New Roman', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--lp-secondary-color);
    font-weight: 300;
}
.title-en__sml{
    font-size: 1.5rem;
}
.hero-text {
    margin-top: 20px;
}
.hero-message {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--color-text);
    letter-spacing: 0.1em;
    margin-bottom: 0;
}
.scroll-indicator {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--color-text-light);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-text-light), transparent);
    animation: scrollLineAnim 2s infinite;
}
@keyframes scrollLineAnim {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}
.section-lp {
    padding: 100px 0;
}
.section-title-lp {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 16px;
    border-bottom: none;
    display: block;
}
.section-title-lp::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--lp-secondary-color);
}
.features-section {
    background-color: #f5f5f5;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.feature-item {
    text-align: center;
    padding: 40px 24px;
    background-color: var(--color-bg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.feature-item.featured {
    border: 2px solid var(--color-primary);
    position: relative;
}
.feature-item.featured::before {
    content: 'おすすめ';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.85rem;
    padding: 4px 14px;
    border-radius: 12px;
}
.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--lp-secondary-color);
    font-weight: 500;
}
.feature-item p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0;
}
.services-list {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.services-list h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    text-align: center;
}
.services-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 0;
}
.services-list li {
    padding: 12px 16px;
    background-color: var(--color-bg);
    border-radius: 4px;
    color: var(--color-text-light);
    position: relative;
    padding-left: 32px;
}
.services-list li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--lp-secondary-color);
    border-radius: 50%;
}
.support-section {
    background-color: var(--color-bg);
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.support-item {
    text-align: center;
    padding: 32px 24px;
}
.support-item .support-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.support-item h3 {
    font-size: 1.2rem;
    color: var(--lp-secondary-color);
    margin-bottom: 16px;
    font-weight: 500;
}
.support-item p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0;
}
.cases-section {
    background-color: #f5f5f5;
}
.case-item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}
.case-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.case-label {
    display: inline-block;
    font-size: 0.85rem;
    padding: 4px 14px;
    background-color: var(--lp-secondary-color);
    color: #fff;
    border-radius: 4px;
    margin-bottom: 12px;
}
.case-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-weight: 500;
}
.case-description {
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 0;
}
.case-point {
    margin-top: 16px;
    padding: 16px;
    background-color: var(--color-bg);
    border-radius: 4px;
    border-left: 3px solid var(--color-primary);
}
.case-point strong {
    color: var(--color-primary);
}
.representative-section {
    background-color: var(--color-bg);
}
.representative-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}
.representative-photo {
    text-align: center;
}
.representative-photo img {
    width: 100%;
    max-width: 280px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.representative-photo .photo-placeholder {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3/4;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
}
.representative-info h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 500;
}
.representative-info .name-reading {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}
.representative-info .position {
    font-size: 1rem;
    color: var(--lp-secondary-color);
    margin-bottom: 24px;
}
.representative-info .profile-section {
    margin-bottom: 24px;
}
.representative-info .profile-section h4 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}
.representative-info .profile-section p,
.representative-info .profile-section ul {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0;
}
.representative-info .profile-section ul {
    list-style: none;
}
.representative-info .profile-section li {
    padding: 4px 0;
    position: relative;
    padding-left: 16px;
}
.representative-info .profile-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background-color: var(--lp-secondary-color);
    border-radius: 50%;
}
.representative-info .qualification-lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}
@media (min-width: 768px) {
    .representative-info .qualification-lists {
        grid-template-columns: 1fr 1fr;
        gap: 12px 28px;
    }
}
.contact-section-lp {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2d6347 100%);
    color: var(--color-bg);
    padding: 80px 0;
}
.contact-section-lp .section-title-lp {
    color: var(--color-bg);
    margin-bottom: 32px;
}
.contact-section-lp .section-title-lp::after {
    background-color: var(--lp-accent-color);
}
.contact-text-lp {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
}
.contact-info-lp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}
.contact-method-lp {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.contact-method-lp:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}
.contact-method-lp h3 {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: var(--lp-accent-color);
    font-weight: 500;
    letter-spacing: 0.05em;
}
.phone-number-lp {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}
.phone-number-lp a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.contact-hours-lp {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.email-lp {
    font-size: 1.1rem;
    margin-bottom: 0;
}
.email-lp a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    word-break: break-all;
}
.contact-link-lp {
    margin-top: 32px;
    text-align: center;
}
.contact-link-lp a {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--color-bg);
    color: var(--color-primary);
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.contact-link-lp a:hover {
    opacity: 1;
    background-color: var(--lp-accent-color);
    color: #fff;
    transform: none;
}
@media (max-width: 1024px) {
    .vertical-menu {
        gap: 16px;
    }
    .menu-item {
        font-size: 0.9rem;
    }
    .representative-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .representative-photo {
        order: -1;
    }
}
.mobile-menu-toggle {
    display: none;
    width: 28px;
    height: 20px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}
.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}
.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}
.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}
.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    flex-direction: column;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.mobile-nav.active {
    display: flex;
    max-height: 200px;
    opacity: 1;
}
.mobile-nav a {
    display: block;
    padding: 12px 16px;
    color: var(--color-text);
    font-size: 15px;
    text-align: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.mobile-nav a:hover {
    background-color: var(--color-secondary);
}
.font-size-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    color: var(--color-primary);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}
.font-size-toggle-mobile:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.font-size-toggle-mobile .material-icons {
    font-size: 20px;
}
html.font-enlarged .font-size-toggle-mobile {
    background-color: var(--color-primary);
    color: #fff;
}
@media (max-width: 768px) {
    .vertical-menu {
        display: none;
    }
    .main-header .header-nav {
        display: none;
    }
    .main-header .header-container {
        justify-content: space-between;
        padding: 12px 24px;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .mobile-nav {
        display: flex;
        max-height: 0;
        padding: 0 24px;
        opacity: 0;
    }
    .mobile-nav.active {
        max-height: 200px;
        padding: 16px 24px;
        opacity: 1;
    }
    .hero-lp {
        min-height: 80vh;
        padding: 60px 24px;
    }
    .logo-icon {
        width: 80px;
        height: 80px;
    }
    .title-name {
        font-size: 1.8rem;
    }
    .title-en {
        font-size: 1.5rem;
    }
    .hero-message {
        font-size: 1.1rem;
    }
    .section-lp {
        padding: 60px 0;
    }
    .section-title-lp {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .support-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-info-lp {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
    }
    .contact-method-lp {
        padding: 24px 20px;
    }
    .phone-number-lp {
        font-size: 1.4rem;
    }
    .email-lp {
        font-size: 1rem;
    }
    .representative-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-section-lp {
        padding: 60px 0;
    }
}
@media (max-width: 480px) {
    .title-name {
        font-size: 1.5rem;
    }
    .title-en {
        font-size: 1.2rem;
    }
    .hero-message {
        font-size: 1rem;
    }
    .section-title-lp {
        font-size: 1.3rem;
    }
    .services-list ul {
        grid-template-columns: 1fr;
    }
}
.hero-access-lp {
    min-height: 70vh;
}
.access-info-section {
    background-color: #f5f5f5;
}
.access-grid-lp {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.access-map-lp {
    width: 100%;
}
.map-container-lp {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.map-container-lp iframe {
    display: block;
    width: 100%;
}
.access-details-lp {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.access-detail-item {
    background-color: var(--color-bg);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.access-detail-item h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
    font-weight: 500;
}
.access-detail-item p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0;
}
.access-method-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.access-method-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    color: var(--color-text-light);
    line-height: 1.6;
}
.access-method-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.method-label {
    display: inline-block;
    min-width: 60px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-right: 12px;
}
.hours-table-lp {
    width: 100%;
    border-collapse: collapse;
}
.hours-table-lp th,
.hours-table-lp td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}
.hours-table-lp th {
    font-weight: 500;
    color: var(--color-primary);
    width: 100px;
}
.hours-table-lp td {
    color: var(--color-text-light);
}
.hours-table-lp tr:last-child th,
.hours-table-lp tr:last-child td {
    border-bottom: none;
}
@media (min-width: 768px) {
    .access-grid-lp {
        grid-template-columns: 1fr 1fr;
    }
    .access-map-lp {
        grid-column: span 2;
    }
    .access-details-lp {
        grid-column: span 2;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .access-detail-item {
        flex: 1 1 calc(50% - 16px);
    }
}
@media (min-width: 1024px) {
    .access-grid-lp {
        grid-template-columns: 1.3fr 1fr;
        gap: 48px;
    }
    .access-map-lp {
        grid-column: 1;
    }
    .access-details-lp {
        grid-column: 2;
        flex-direction: column;
    }
    .access-detail-item {
        flex: 1 1 auto;
    }
}
@media (max-width: 768px) {
    .hero-access-lp {
        min-height: 60vh;
    }
}
.pricing-section {
    background-color: var(--color-bg);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.pricing-card {
    background-color: var(--color-bg);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}
.pricing-card.recommended {
    border: 2px solid var(--color-primary);
}
.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: #fff;
    font-size: 0.85rem;
    padding: 4px 16px;
    border-radius: 0 0 8px 8px;
}
.pricing-header {
    padding: 32px 24px 24px;
    text-align: center;
    background-color: #f9f9f9;
}
.pricing-card.recommended .pricing-header {
    background-color: rgba(85, 107, 47, 0.05);
}
.pricing-header h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 500;
}
.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}
.pricing-body {
    padding: 24px;
}
.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--color-text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 24px;
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--lp-secondary-color);
    border-radius: 50%;
}
.pricing-footer {
    padding: 16px 24px 24px;
    text-align: center;
}
.pricing-note {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}
.argo-section {
    background-color: #f5f5f5;
}
.argo-content {
    max-width: 1000px;
    margin: 0 auto;
}
.argo-description {
    text-align: center;
    margin-bottom: 40px;
}
.argo-description p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.argo-description p:last-child {
    margin-bottom: 0;
}
.argo-note {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.8;
}
.argo-benefits {
    background-color: var(--color-bg);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.argo-benefits h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    text-align: center;
    font-weight: 500;
}
.argo-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}
.argo-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-light);
    font-size: 1rem;
}
.argo-benefits-row {
    display: flex;
    gap: 24px;
}
.argo-benefits-row .argo-benefits {
    flex: 1;
}
.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-icon .material-icons {
    font-size: 20px;
    color: var(--color-primary);
}
.other-services-section {
    background-color: var(--color-bg);
}
.other-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.other-service-item {
    text-align: center;
    padding: 32px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.other-services-detail-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 32px auto 0;
    padding: 12px 24px;
    background: none;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    color: var(--color-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.other-services-detail-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.other-service-item:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}
.other-service-item .material-icons {
    font-size: 40px;
    color: var(--lp-secondary-color);
    margin-bottom: 16px;
}
.other-service-item h3 {
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 500;
}
.other-service-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .other-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .pricing-card.recommended {
        order: -1;
    }
    .argo-benefits ul {
        grid-template-columns: 1fr;
    }
    .argo-benefits-row {
        flex-direction: column;
    }
    .other-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .other-service-item {
        padding: 24px 16px;
    }
    .other-service-item .material-icons {
        font-size: 32px;
    }
}
@media (max-width: 480px) {
    .other-services-grid {
        grid-template-columns: 1fr;
    }
}
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    margin: auto;
    animation: fadeIn 0.3s cubic-bezier(.4, .4, 0, 1);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: color 0.3s ease;
}
.modal-close:hover {
    color: var(--color-primary);
}
.modal-content h3 {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--lp-secondary-color);
}
.modal-pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.modal-pricing-table td {
    padding: 10px 8px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: var(--color-text);
}
.modal-pricing-table tr:last-child td {
    border-bottom: none;
}
.modal-pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--lp-secondary-color);
    white-space: nowrap;
}
.modal-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}
.modal-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}
.modal-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}
.modal-section h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 10px;
}
.modal-section p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.8;
}
.tab-navigation {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 60px;
    z-index: 100;
}
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}
.tab-button {
    flex: 1;
    padding: 16px 32px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(.4, .4, 0, 1);
}
.tab-button:hover {
    color: var(--lp-secondary-color);
    background-color: rgba(85, 107, 47, 0.05);
}
.tab-button.active {
    color: var(--lp-secondary-color);
    border-bottom-color: var(--lp-secondary-color);
    font-weight: 600;
}
.tab-content {
    display: none;
    animation: fadeIn 0.4s cubic-bezier(.4, .4, 0, 1);
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .tab-navigation {
        top: 50px;
    }
    .tab-button {
        padding: 14px 24px;
        font-size: 15px;
    }
}
.gallery-section {
    background-color: #f5f5f5;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.gallery-hours {
    text-align: center;
    margin-top: 32px;
    font-size: 18px;
    font-weight: 600;
    color: var(--lp-secondary-color);
    letter-spacing: 0.05em;
}
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.03);
}
.gallery-single {
    max-width: 800px;
    margin: 0 auto;
}
.gallery-item-single {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(.4, .4, 0, 1);
}
.gallery-item-single:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}
.gallery-item-single img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(.4, .4, 0, 1);
}
.gallery-item-single:hover img {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .gallery-single {
        max-width: 100%;
    }
    .gallery-item-single {
        border-radius: 8px;
    }
}
.basic-pricing-section {
    background-color: var(--color-bg);
}
.pricing-category-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--lp-primary-color);
    margin: 48px 0 32px;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
}
.pricing-category-title:first-of-type {
    margin-top: 0;
}
.pricing-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--lp-secondary-color);
}
.basic-pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}
.basic-pricing-table {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.basic-pricing-table:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.basic-pricing-table-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--lp-secondary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--lp-secondary-color);
}
.pricing-detail-table {
    width: 100%;
    border-collapse: collapse;
}
.pricing-detail-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
}
.pricing-detail-table tr:last-child td {
    border-bottom: none;
}
.pricing-detail-table .price-cell {
    text-align: right;
    font-weight: 600;
    color: var(--lp-secondary-color);
    font-size: 17px;
}
.pricing-detail-table .table-section-header td {
    padding: 10px 8px;
    font-size: 16px;
    color: var(--lp-secondary-color);
}
.pricing-detail-table .table-section-header:first-child td {
    padding-top: 0;
}
.pricing-note-text {
    text-align: center;
    margin-top: 32px;
    font-size: 15px;
    color: #666;
}
.pricing-note-text__bottom{
    margin-top: -16px !important;
}
.pricing-detail-table .plan-detail {
    font-size: 15px;
    color: #666;
    font-weight: normal;
}
.pricing-notes-box {
    background-color: #f9f9f9;
    border-left: 4px solid var(--lp-secondary-color);
    border-radius: 8px;
    padding: 24px 28px;
    margin-top: 40px;
    margin-bottom: 24px;
}
.pricing-notes-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--lp-secondary-color);
    margin-bottom: 16px;
}
.pricing-notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-notes-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 15px;
    color: #333;
}
.pricing-notes-list li::before {
    content: "\2022 ";
    position: absolute;
    left: 0;
    color: var(--lp-secondary-color);
    font-weight: bold;
    font-size: 18px;
}
.pricing-notes-box .pricing-note-text {
    text-align: left;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
    font-size: 16px;
}
@media (max-width: 768px) {
    .pricing-notes-box {
        padding: 20px 20px;
        margin-top: 32px;
    }
    .pricing-notes-box h4 {
        font-size: 17px;
    }
    .pricing-notes-list li {
        font-size: 14px;
    }
}
.parking-section {
    background-color: #fff;
}
.parking-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}
.parking-overview h3,
.parking-pricing h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--lp-secondary-color);
    margin-top: 32px;
    margin-bottom: 16px;
}
.parking-overview h3:first-child,
.parking-pricing h3:first-child {
    margin-top: 0;
}
.parking-location {
    line-height: 1.8;
    color: #333;
}
.parking-features {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2;
}
.parking-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}
.parking-features li::before {
    content: "\2022 ";
    position: absolute;
    left: 0;
    color: var(--lp-secondary-color);
    font-weight: bold;
}
.parking-features ul {
    margin-top: 8px;
    padding-left: 20px;
}
.parking-features ul li {
    font-size: 14px;
    color: #666;
}
.parking-pricing .pricing-detail-table {
    margin-bottom: 16px;
}
.parking-pricing .pricing-note-text {
    text-align: left;
    margin-top: 8px;
    margin-bottom: 24px;
}
.tax-note {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: normal;
}
.discount-note {
    display: block;
    font-size: 15px;
    color: var(--lp-secondary-color);
    font-weight: 600;
    margin-top: 4px;
}
@media (max-width: 1024px) {
    .parking-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .basic-pricing-tables {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .basic-pricing-table {
        padding: 20px;
    }
}
.company-section {
    background-color: var(--color-bg);
}
.company-info-table {
    max-width: 800px;
    margin: 0 auto;
}
.info-list {
    margin: 0;
}
.info-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    border-bottom: 1px solid #e0e0e0;
}
.info-row:last-child {
    border-bottom: none;
}
.info-row dt {
    padding: 20px 24px;
    background-color: #f9f9f9;
    font-weight: 500;
    color: var(--color-primary);
    font-size: 0.95rem;
}
.info-row dd {
    padding: 20px 24px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0;
}
.info-row dd a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-row dd a:hover {
    color: var(--color-primary);
}
.section-lead {
    text-align: center;
    color: var(--color-text-light);
    max-width: 700px;
    margin: -30px auto 50px;
    line-height: 1.8;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background-color: var(--color-bg);
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.service-card h3 {
    font-size: 1.1rem;
    color: var(--lp-secondary-color);
    margin-bottom: 12px;
    font-weight: 500;
}
.service-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0;
}
.history-section {
    background-color: #f5f5f5;
}
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-primary);
}
.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-year {
    width: 80px;
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-primary);
    text-align: right;
    padding-top: 4px;
}
.timeline-content {
    flex: 1;
    padding-left: 40px;
    position: relative;
}
.timeline-content::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 8px;
    width: 16px;
    height: 16px;
    background-color: var(--color-primary);
    border-radius: 50%;
    border: 3px solid #f5f5f5;
}
.timeline-content h3 {
    font-size: 1.1rem;
    color: var(--lp-secondary-color);
    margin-bottom: 8px;
    font-weight: 500;
}
.timeline-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .info-row {
        grid-template-columns: 1fr;
    }
    .info-row dt {
        padding: 12px 16px;
    }
    .info-row dd {
        padding: 12px 16px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-card {
        padding: 24px 20px;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        flex-direction: column;
        gap: 8px;
        padding-left: 50px;
    }
    .timeline-year {
        width: auto;
        text-align: left;
    }
    .timeline-content {
        padding-left: 0;
    }
    .timeline-content::before {
        left: -42px;
        top: -30px;
    }
    .section-lead {
        margin: -20px auto 40px;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
