/* Google Fonts の読み込み */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;800&display=swap');

/* ベース設定 */
:root {
    --primary-color: #a88e72;
    --secondary-color: #f8f5f2;
    --text-primary: #585858;
    --text-secondary: #787878;
    --border-color: rgba(168, 142, 114, 0.2);
    --font-base: 'Shippori Mincho', serif;
    --max-width: 1200px;
    --content-width: 1200px;
    --white: #ffffff;
    --bg-light: #fbf9f8;
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* リセット */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-base);
    color: var(--text-primary);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* FVセクション */
.c-visual {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.c-visual__inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-visual__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.c-visual__title {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-weight: 600;
}

/* パンくず */
.c-breadcrumb {
    background: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.c-breadcrumb__list {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    list-style: none;
}

.c-breadcrumb__item {
    color: var(--text-secondary);
    font-size: 14px;
}

.c-breadcrumb__item::after {
    content: ">";
    margin: 0 10px;
    color: var(--text-secondary);
}

.c-breadcrumb__item:last-child::after {
    display: none;
}

.c-breadcrumb__item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.c-breadcrumb__item a:hover {
    color: var(--primary-color);
}

/* メインレイアウト */
.main {
    padding: 60px 0;
    background: var(--white);
}

.l-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* セクション */
.c-section {
    margin-bottom: 80px;
    position: relative;
}

.c-section:last-child {
    margin-bottom: 0;
}

/* セクション見出し */
.c-head {
    text-align: center;
    margin-bottom: 40px;
}

.c-head__text,
.c-head__title {
    font-family: var(--font-base);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    position: relative;
    display: inline-block;
}

.c-head__title {
    font-size: 1.5rem;
}

/* 眼球構造図 */
.c-eye-diagram {
    text-align: center;
    margin: 30px 0;
}

.c-eye-diagram__img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
}

/* 疾患リスト */
.c-disease-list {
    margin: 40px 0;
}

.c-disease-list h3 {
    font-family: var(--font-base);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
}

.c-disease-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.c-disease-item {
    display: block;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.c-disease-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 142, 114, 0.15);
}

.c-disease-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 142, 114, 0.1), transparent);
    transition: left 0.7s ease;
}

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

.c-disease-name {
    display: block;
    font-family: var(--font-base);
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.c-disease-summary {
    display: block;
    font-family: var(--font-base);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.c-disease-item:hover .c-disease-name {
    color: var(--primary-color);
}

.c-disease-item:hover .c-disease-summary {
    color: var(--primary-color);
}

/* 2カラム情報レイアウト - 外側の枠を削除 */
.c-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin: 40px 0;
    background: var(--white);
    /* border: 1px solid var(--border-color); - 削除 */
    /* border-radius: var(--border-radius); - 削除 */
    padding: 20px;
    /* 大幅に縮小 */
    /* box-shadow: var(--box-shadow); - 削除 */
}

.c-info__col--image {
    position: relative;
}

.c-info__thumb {
    width: 100%;
}

.c-info__pic {
    line-height: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.c-info__pic img {
    width: 100%;
    height: auto;
    display: block;
    /* transition: transform 0.3s ease; - ホバー効果のため削除 */
}

/* 画像のホバー効果を削除 */
/* .c-info:hover .c-info__pic img {
    transform: scale(1.03);
} */

.c-info__col--des {
    padding-left: 20px;
}

.c-info__content {
    font-family: var(--font-base);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.c-info__content p {
    margin-bottom: 1.5em;
}

.c-info__content p:last-child {
    margin-bottom: 0;
}

.c-info__content h4 {
    font-family: var(--font-base);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.c-info__content h4:first-child {
    margin-top: 0;
}

.c-info__content h5 {
    font-family: var(--font-base);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 25px 0 10px;
    font-weight: 600;
}

.c-info__content ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.c-info__content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    line-height: 1.8;
}

.c-info__content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.c-info__content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* コンテンツ専用レイアウト - 外側の枠を軽減 */
.c-info__content--reservation {
    max-width: 100%;
    margin: 0 auto;
}

.c-reservation-group {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    font-family: var(--font-base);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    /* box-shadow: var(--box-shadow); - 削除 */
}

.c-reservation-group h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.c-reservation-group p {
    margin-bottom: 1.5em;
}

.c-reservation-group p:last-child {
    margin-bottom: 0;
}

/* 糖尿病ステージ */
.c-disease-stages {
    background: rgba(168, 142, 114, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin: 20px 0;
}

.c-disease-stages ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.c-disease-stages li {
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.c-disease-stages li:hover {
    background: var(--primary-color);
    color: var(--white);
}

.c-disease-stages li::before {
    display: none;
}

/* 糖尿病黄斑浮腫の画像 */
.c-diabetic-images {
    text-align: center;
    margin: 30px 0;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.c-diabetic-image-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.c-diabetic-images img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.c-diabetic-images p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: left;
}

/* 加齢黄斑変性の画像グリッド */
.c-amd-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.c-amd-image {
    text-align: center;
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.c-amd-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.c-amd-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

/* 参考文献 */
.c-reference {
    background: rgba(168, 142, 114, 0.05);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

.c-reference h5 {
    font-family: var(--font-base);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 15px;
    font-weight: 600;
}

.c-reference ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.c-reference li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
}

.c-reference li:last-child {
    margin-bottom: 0;
}

.c-reference li::before {
    display: none;
}

/* 症例紹介 - 外側の枠を軽減 */
.c-case {
    background: var(--bg-light);
    padding: 30px;
    /* 縮小 */
    border-radius: var(--border-radius);
    margin-bottom: 60px;
    border: 1px solid var(--border-color);
    /* box-shadow: var(--box-shadow); - 削除 */
    transition: all 0.3s ease;
}

.c-case:hover {
    border-color: var(--primary-color);
    /* box-shadow: 0 8px 30px rgba(168, 142, 114, 0.15); - 削除 */
}

.c-case:last-child {
    margin-bottom: 0;
}

.c-case__header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 25px;
}

.c-case__title {
    font-family: var(--font-base);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 15px;
}

.c-case__subtitle {
    font-family: var(--font-base);
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.c-case__content {
    font-family: var(--font-base);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.c-case__content h4 {
    font-family: var(--font-base);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.c-case__content h4:first-child {
    margin-top: 0;
}

.c-case__content h5 {
    font-family: var(--font-base);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-weight: 600;
}

.c-case__content p {
    margin-bottom: 1.5em;
}

.c-case__content p:last-child {
    margin-bottom: 0;
}

.c-case__link {
    text-align: center;
    margin: 20px 0;
}

/* ボタン */
.c-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-base);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.c-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.c-btn:hover {
    background: #b39a81;
    border-color: #b39a81;
    box-shadow: 0 4px 15px rgba(168, 142, 114, 0.3);
    transform: translateY(-2px);
}

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

/* 症例データ - 外側の枠を軽減 */
.c-case__data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.c-case__data-item {
    background: var(--white);
    padding: 20px;
    /* 縮小 */
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    /* box-shadow: 0 2px 10px rgba(168, 142, 114, 0.1); - 削除 */
}

.c-case__data-item h5 {
    font-family: var(--font-base);
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 15px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.c-case__data-item p {
    text-align: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.c-case__image {
    text-align: center;
    line-height: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.c-case__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 費用表示 */
.c-case__cost {
    background: rgba(168, 142, 114, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    margin-top: 30px;
}

.c-case__cost h4 {
    font-family: var(--font-base);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0 0 10px;
    font-weight: 600;
}

.c-case__cost p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

/* 注意書きボックス - 外側の枠を軽減 */
.c-notice-box {
    background: rgba(168, 142, 114, 0.08);
    /* border: 1px solid var(--border-color); - 削除 */
    border-radius: var(--border-radius);
    padding: 20px;
    /* 縮小 */
    margin-top: 60px;
}

.c-notice-box h4 {
    font-family: var(--font-base);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0 0 15px;
    font-weight: 600;
}

.c-notice-box p {
    font-family: var(--font-base);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.c-head,
.c-info__col--image,
.c-info__col--des,
.c-disease-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.c-head.is-inview,
.c-info__col--image.is-inview,
.c-info__col--des.is-inview,
.c-disease-item.is-inview {
    opacity: 1;
}

/* スマホ表示時のみ改行を適用するユーティリティクラス */
.sp-br {
    display: none;
}

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

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .l-inner {
        padding: 0 30px;
    }

    .c-info {
        gap: 30px;
        padding: 15px;
        /* 縮小 */
    }

    .c-info__col--des {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .c-visual {
        height: 58vh;
    }

    .c-visual__title {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .l-inner {
        padding: 0 20px;
    }

    .main {
        padding: 40px 0;
    }

    .c-section {
        margin-bottom: 60px;
    }

    .c-head {
        margin-bottom: 30px;
    }

    .c-head__text,
    .c-head__title {
        font-size: 1.5rem;
    }

    .c-disease-list h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .c-disease-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .c-disease-item {
        padding: 15px;
    }

    .c-disease-name {
        font-size: 1rem;
    }

    .c-disease-summary {
        font-size: 0.9rem;
    }

    .c-info {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 15px;
        /* 縮小 */
    }

    .c-info__content {
        font-size: 1rem;
    }

    .c-info__content h4 {
        font-size: 1.2rem;
        margin: 25px 0 12px;
    }

    .c-info__content h5 {
        font-size: 1.1rem;
        margin: 20px 0 8px;
    }

    .c-reservation-group {
        padding: 20px;
        font-size: 1rem;
    }

    .c-disease-stages ul {
        gap: 10px;
    }

    .c-disease-stages li {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .c-diabetic-image-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .c-amd-images {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .c-case {
        padding: 20px;
        /* 縮小 */
        margin-bottom: 40px;
    }

    .c-case__header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .c-case__title {
        font-size: 1.3rem;
    }

    .c-case__subtitle {
        font-size: 1rem;
    }

    .c-case__content {
        font-size: 1rem;
    }

    .c-case__content h4 {
        font-size: 1.2rem;
        margin: 30px 0 15px;
    }

    .c-case__content h5 {
        font-size: 1.1rem;
        margin: 25px 0 12px;
    }

    .c-case__data {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .c-case__data-item {
        padding: 15px;
        /* 縮小 */
    }

    .c-case__data-item h5 {
        font-size: 1rem;
    }

    .c-case__data-item p {
        font-size: 0.9rem;
    }

    .c-reference {
        padding: 15px;
    }

    .c-reference h5 {
        font-size: 1rem;
    }

    .c-reference li {
        font-size: 0.9rem;
    }

    .c-notice-box {
        padding: 15px;
        /* 縮小 */
        margin-top: 40px;
    }

    .c-notice-box h4 {
        font-size: 1.1rem;
    }

    .c-notice-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .c-visual {
        height: 33vh;
    }

    .c-visual__title {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .l-inner {
        padding: 0 15px;
    }

    .main {
        padding: 30px 0;
    }

    .c-section {
        margin-bottom: 40px;
    }

    .c-head {
        margin-bottom: 25px;
    }

    .c-head__text,
    .c-head__title {
        font-size: 1.3rem;
    }

    .c-disease-list h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .c-disease-item {
        padding: 12px;
    }

    .c-disease-name {
        font-size: 0.95rem;
    }

    .c-disease-summary {
        font-size: 0.85rem;
    }

    .c-info {
        padding: 10px;
        /* 縮小 */
    }

    .c-info__content {
        font-size: 0.95rem;
    }

    .c-info__content h4 {
        font-size: 1.1rem;
        margin: 20px 0 10px;
    }

    .c-info__content h5 {
        font-size: 1rem;
        margin: 15px 0 6px;
    }

    .c-reservation-group {
        padding: 15px;
        font-size: 0.95rem;
    }

    .c-disease-stages {
        padding: 15px;
    }

    .c-disease-stages li {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .c-amd-images {
        padding: 12px;
    }

    .c-amd-image {
        padding: 12px;
    }

    .c-case {
        padding: 15px;
        /* 縮小 */
        margin-bottom: 30px;
    }

    .c-case__header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .c-case__title {
        font-size: 1.2rem;
    }

    .c-case__subtitle {
        font-size: 0.95rem;
    }

    .c-case__content {
        font-size: 0.95rem;
    }

    .c-case__content h4 {
        font-size: 1.1rem;
        margin: 25px 0 12px;
    }

    .c-case__content h5 {
        font-size: 1rem;
        margin: 20px 0 10px;
    }

    .c-case__data-item {
        padding: 12px;
        /* 縮小 */
    }

    .c-case__data-item h5 {
        font-size: 0.95rem;
    }

    .c-case__data-item p {
        font-size: 0.85rem;
    }

    .c-case__cost {
        padding: 15px;
        margin-top: 25px;
    }

    .c-case__cost h4 {
        font-size: 1.1rem;
    }

    .c-case__cost p {
        font-size: 1rem;
    }

    .c-reference {
        padding: 12px;
    }

    .c-reference h5 {
        font-size: 0.95rem;
    }

    .c-reference li {
        font-size: 0.85rem;
    }

    .c-notice-box {
        padding: 12px;
        /* 縮小 */
        margin-top: 30px;
    }

    .c-notice-box h4 {
        font-size: 1rem;
    }

    .c-notice-box p {
        font-size: 0.85rem;
    }

    .c-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* 印刷用スタイル */
@media print {

    .c-visual,
    .c-breadcrumb,
    .c-btn {
        display: none;
    }

    .c-case {
        background: var(--white);
        box-shadow: none;
        border: 1px solid var(--border-color);
        page-break-inside: avoid;
        margin-bottom: 30px;
    }

    .c-info {
        grid-template-columns: 1fr;
    }

    .c-case__data {
        grid-template-columns: 1fr;
    }
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* フォーカス状態 */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ハイコントラストモード */
@media (forced-colors: active) {

    .c-disease-item,
    .c-case,
    .c-reference,
    .c-notice-box,
    .c-info {
        border: 1px solid currentColor;
    }

    .c-btn {
        border: 2px solid currentColor;
    }
}