/* 全体のスタイルリセットとベースのスタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: #8b0000; /* 深い赤色 */
    transition: color 0.3s ease;
}

a:hover {
    color: #d64141; /* 明るい赤色 */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ヘッダースタイル */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #5a3921; /* 茶色系 */
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 25px;
}

.desktop-nav ul li a {
    font-weight: 500;
    padding: 10px 0;
    color: #5a3921; /* 茶色系 */
    position: relative;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8b0000; /* 深い赤色 */
    transition: width 0.3s ease;
}

.desktop-nav ul li a:hover::after,
.desktop-nav ul li a.active::after {
    width: 100%;
}

.language-toggle {
    padding: 8px 15px;
    background-color: #8b0000; /* 深い赤色 */
    color: #fff !important;
    border: 1px solid #8b0000;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    background-color: #d64141; /* 明るい赤色 */
    color: #fff !important;
}

/* デスクトップナビ内の.language-toggleに対する追加指定 */
.desktop-nav ul li a.language-toggle {
    color: #fff !important;
}

.desktop-nav ul li a.language-toggle:hover {
    color: #fff !important;
}


/* モバイルメニュー */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #5a3921;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    background-color: rgba(255, 255, 255, 0.98);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav ul li {
    margin: 15px 0;
}

.mobile-nav ul li a {
    font-size: 1.2rem;
    padding: 10px;
    display: block;
    color: #5a3921;
}

/* ヒーローセクション */
.hero {
    height: 80vh;
    min-height: 500px;
    background-image: url('kashi-work.jpg');
/*    background-image: url('/api/placeholder/1920/1080'); */
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-content {
    color: #fff;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8b0000; /* 深い赤色 */
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: #d64141; /* 明るい赤色 */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.2);
}

/* セクションのスタイル */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #5a3921; /* 茶色系 */
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8b0000; /* 深い赤色 */
    margin: 15px auto 0;
}

/* クイックリンクセクション */
.quick-links {
    background-color: #f9f9f9;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-link-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    color: #333;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.1);
}

.quick-link-icon {
    font-size: 2.5rem;
    color: #8b0000; /* 深い赤色 */
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #5a3921; /* 茶色系 */
}

/* 事務所概要セクション */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content p {
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* お問い合わせセクション */
.contact-section {
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8b0000; /* 深い赤色 */
    margin-right: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #8b0000; /* 深い赤色 */
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #8b0000; /* 深い赤色 */
    color: #fff;
    transform: translateY(-3px);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* フッター */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #fff;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ddd;
}

.footer-links ul li a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
}

/* アコーディオンコンテンツ用スタイル */
.accordion {
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background-color: #fff;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(139, 0, 0, 0.05);
}

.accordion-title {
    font-weight: 600;
    color: #5a3921; /* 茶色系 */
}

.accordion-icon {
    font-size: 0.8rem;
    color: #8b0000; /* 深い赤色 */
    transition: transform 0.3s ease;
}

.accordion-content {
    background-color: #fff;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-content-inner {
    padding: 20px;
}

.accordion.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion.active .accordion-content {
    max-height: 500px;
}


/* サービスページ用の追加スタイル */
/* ページヘッダー */
.page-header {
    background-color: #f5f5f5;
    padding: 80px 0 30px;
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #5a3921;
    margin-bottom: 10px;
}

.breadcrumb {
    color: #777;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #8b0000;
}

/* サービス紹介セクション */
.services-intro {
    padding: 60px 0;
    text-align: center;
}

.services-intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* サービスリスト */
.services-list {
    padding: 30px 0 80px;
    background-color: #f9f9f9;
}

.service-item {
    display: flex;
    margin-bottom: 80px;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
    padding: 40px;
}

.service-image {
    flex: 1;
    min-height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(139, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: #8b0000;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #5a3921;
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #8b0000;
    color: #8b0000;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #8b0000;
    color: #fff;
}

/* 料金セクション */
.fee-section {
    padding: 80px 0;
}

.fee-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.fee-content {
    margin-bottom: 40px;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.fee-table th, .fee-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.fee-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #5a3921;
}

.fee-table tr:hover {
    background-color: #f9f9f9;
}

.note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.fee-notes {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

.fee-notes h3 {
    color: #5a3921;
    margin-bottom: 15px;
}

.fee-notes ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.fee-notes ul li {
    margin-bottom: 10px;
}

.fee-notes .btn {
    margin-top: 10px;
}

/* CTA Section */
.cta-section {
    background-color: #5a3921;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-section .btn {
    background-color: #fff;
    color: #8b0000;
}

.cta-section .btn:hover {
    background-color: #8b0000;
    color: #fff;
    border: 1px solid #fff;
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
    .service-item, .service-item.reverse {
        flex-direction: column;
    }
    
    .service-content {
        order: 1;
        padding: 30px;
    }
    
    .service-image {
        order: 2;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}


/* サービス料金セクション用のスタイル */
.service-fees {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.fee-list {
    list-style: none;
    padding: 0;
}

.fee-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
}

.fee-list li:last-child {
    border-bottom: none;
}

/* アコーディオンのスタイル調整 */
.service-fees .accordion {
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #fff;
}

.service-fees .accordion-header {
    padding: 12px 15px;
}

.service-fees .accordion-title {
    font-size: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .service-fees {
        order: 2;
        width: 100%;
    }
}


/* サービス料金セクション用のスタイル */
.service-fees {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

/* アコーディオンのスタイル調整 */
.service-fees .accordion {
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-fees .accordion-header {
    padding: 12px 15px;
}

.service-fees .accordion-title {
    font-size: 1rem;
}

.service-fees .accordion-content-inner {
    padding: 20;
}

/* 料金テーブルのスタイル */
.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.fee-table th, .fee-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.fee-table th {
    background-color: #f8f8f8;
    width: 30%;
    text-align: left;
    font-weight: 600;
    color: #5a3921;
}

.fee-table tr:last-child th,
.fee-table tr:last-child td {
    border-bottom: none;
}

.centered-notice {
    text-align: center;
    padding: 15px;
    color: #666;
    font-style: italic;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .service-fees {
        order: 2;
        width: 100%;
    }
    
    .fee-table th, .fee-table td {
        padding: 8px 10px;
    }
    
    .fee-table th {
        width: 40%;
    }
}

@media (max-width: 576px) {
    .fee-table th, .fee-table td {
        display: block;
        width: 100%;
    }
    
    .fee-table th {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .fee-table td {
        padding-top: 5px;
    }
    
    .fee-table tr:last-child td {
        border-bottom: 1px solid #eee;
    }
}


/* アコーディオンアイコンのスタイル */
.accordion-icon {
    font-size: 1.2rem;
    color: #8b0000; /* 深い赤色 */
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* アコーディオンが開いているときのアイコン表示 */
.accordion.active .accordion-icon {
    content: "－";
}

/* JavaScriptで切り替える */
.accordion-icon.plus:before {
    content: "＋";
}

.accordion-icon.minus:before {
    content: "－";
}

/* レスポンシブ画像スタイル */
.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 事務所情報と弁理士情報のレイアウト調整 */
.office-info, .patent-attorney {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.office-img, .attorney-img {
    flex: 0 0 50%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.office-text, .attorney-text {
    flex: 0 0 50%;
    padding: 30px;
    background-color: #fff;
}

/* アコーディオンコンテナスタイル */
.attorney-accordion-container {
    margin-top: 20px;
    width: 100%;
}

.attorney-text .accordion {
    margin-bottom: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .office-info, .patent-attorney, .service-item.reverse {
        flex-direction: column;
    }
    
    .office-img, .attorney-img,
    .office-text, .attorney-text {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .office-img, .attorney-img {
        order: -1; /* 画像を上に配置 */
    }
}


/* 弁理士部分のテキストマージン */
.attorney-text p, .office-text p {
    margin: 20px 20px 20px 20px;
    line-height: 1.8;
}

/* テーブル内のマージン */
.fee-table td, .fee-table th {
    padding: 15px 25px;
}

/* ツールチップのスタイル */
.tooltip-trigger {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #8b0000;
    color: white; /* すでに白色になっていますが、明示的に指定 */
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    cursor: pointer;
    font-size: 12px;
    margin-left: 5px;
}

.tooltip-trigger a {
    color: white; /* リンクを白色に設定 */
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.tooltip-content {
    visibility: hidden;
    width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -125px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    line-height: 1.4;
}

.tooltip-content::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip-trigger:hover .tooltip-content,
.tooltip-trigger:focus .tooltip-content,
.tooltip-trigger:active .tooltip-content {
    visibility: visible;
    opacity: 1;
}

/* 写真ギャラリーのスタイル */
.photo-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.gallery-item {
    margin-bottom: 15px;
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

@media (max-width: 992px) {
    .photo-gallery {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gallery-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* レスポンシブ対応のための追加スタイル */
@media (max-width: 768px) {
    .tooltip-content {
        width: 200px;
        margin-left: -100px;
    }
}

/* 事務所写真用のスタイル */
.office-photo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.office-photo img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .office-photo {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}




/* お問い合わせフォームのスタイル */
.contact-form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
    color: #5a3921;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #5a3921;
}

.required {
    color: #8b0000;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b0000;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #8b0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d64141;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(139, 0, 0, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 20px;
    }
}
