/* リセット & 基本設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dfdfdf;  /* 薄緑をプライマリカラーに */
    --secondary-color: #c1c1c1;  /* 少し濃いめの緑 */
    --light-color: #f1f1f1;  /* とても薄い緑 */
    --dark-color: #a7a7a7;  /* アクセント用の濃い緑 */
    --d-color: #484848;  /* アクセント用の濃い緑 */
    --text-color: #797979;  /* テキストカラーを濃い緑に */
    --text-light: #979797;  /* 明るい緑色 */
    --white: #fff;
    --transition: all 0.3s ease;
    --kiiro: #F1F8E9;  /* 薄い黄緑に変更 */
    /* シンプルなフォントファミリーに変更 */
    --main-font:  'Shippori Mincho', serif;
}

body {
    font-family: var(--main-font);
    color: rgb(162, 162, 162);
    background: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}

.logo,
.section-title,
.about-text h3,
.special-text h3,
.container-content h3,
.line-contact-text h3,
.footer-logo {
    font-family: var(--main-font);
    font-weight: 400;
}

nav a,
.btn-special,
.btn-line-contact,
.tab-btn,
.client-name {
    font-family: var(--main-font);
    font-weight: 500;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ヘッダー */
.header {
    position: fixed;
    width: 100%;
    background: #ffffff;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
}

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

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

.logo {
    font-size: 15px;
    font-weight: 700;
    color:#3b3b3b;
    letter-spacing: 1px;
    padding-top: 12px;
}

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

.nav li {
    margin-left: 30px;
}

.nav a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a.active {
    color: var(--secondary-color);
}


/* ロゴコンテナのスタイル */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ロゴ画像のスタイル */
.logo-image {
    width: 60px; /* 適切なサイズに調整 */
    height: 60px; /* 適切なサイズに調整 */
    object-fit: contain;
    border-radius: 5px; /* 必要に応じて */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {

    .logo {
    font-size: 12px;
}

    .logo-container {
        gap: 10px;
    }
    
    .logo-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 8px;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
}




.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ソーシャルアイコン */
.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: auto;
    padding-left: 30px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon img {
    width: 100%;
    height: 100%;
    transition: var(--transition);
    border-radius: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .social-icons {
        position: absolute;
        top: 15px;
        right: 80px;
        padding-left: 0;
        margin-right: 0;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        padding-top: 18px;
    }
    
    .social-icon img {
        width: 30px;
        height: 30px;
        border-radius: 7px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        right: 65px;
        gap: 10px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        padding-top: 20px;
    }
    
    .social-icon img {
        width: 25px;
        height: 25px;
        border-radius: 5px;
    }
}

/* ヒーロー画像 */
.hero-bottom-image {
    padding: 0;
    padding-top: 80px;
    margin: 0;
}

.hero-bottom-image .container {
    padding: 0;
    max-width: 100%;
}

.responsive-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* セクション共通スタイル */
.okoe-section {
    padding: 100px 50px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    color: var(--d-color);
}

.section-title span {
    color: #b9a11a;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 20px auto;
}

.bg-gray {
    background: var(--light-color);
}

/* ポートフォリオスライダー */
.slider-section{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

.slider-triple {
    position: relative;
    max-width: 100%;
    margin: 3rem auto;
    overflow: hidden;
    padding: 0 50px;
}

.triple-track {
    display: flex;
    transition: transform 0.5s ease;
    margin: 0 -5px;
}

.triple-slide {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 0;
    margin: 0 5px;
    transition: transform 0.3s ease;
}

.triple-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.triple-slide:hover {
    transform: translateY(-5px);
}

.slider-triple button {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    background: rgba(129, 199, 132, 0.7);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 10;
}

.slider-triple button:hover {
    background: var(--dark-color);
}

.slider-triple .triple-prev {
    left: 10px;
}

.slider-triple .triple-next {
    right: 10px;
}

.triple-dots {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
}

.triple-dots span {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.triple-dots span.active {
    background: var(--dark-color);
    transform: scale(1.2);
}

/* ポートフォリオ詳細ボタン */
.portfolio-detail-btn-container {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 30px;
}

.btn-portfolio-detail {
    display: inline-block;
    padding: 12px 30px;
    background: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(129, 199, 132, 0.1);
    text-decoration: none;
}

.btn-portfolio-detail:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(129, 199, 132, 0.2);
}

/* 追加メッセージセクション */
/* 追加メッセージセクション */
.message-section {
    padding: 80px 100px;
    background-size: cover;
    text-align: center;
}



.main-message {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--d-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.sub-message {
    font-size: 0.8rem;
    line-height: 1.9;
    color: rgb(88, 88, 88);
    max-width: 800px;
    margin: 0 auto 25px auto;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8); /* 文字を読みやすくする */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .message-section {
        padding: 60px 50px;
    }
    
    .message-container {
        min-height: 250px;
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }
    
    .main-message {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .sub-message {
        font-size: 0.7rem;
    }
}

@media (max-width: 680px) {
    .message-section {
        padding: 40px 30px;
    }
    
    .message-container {
        min-height: 200px;
        padding: 20px 10px;
    }
    
    .main-message {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .sub-message {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .message-section {
        padding: 30px 20px;
    }
    
    .message-container {
        min-height: 180px;
        padding: 15px 10px;
    }
    
    .main-message {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .sub-message {
        font-size: 0.55rem;
    }
}


.worries-image-below-text {
    margin: 5px auto;
    max-width: 200px;
    text-align: center;
}

.worries-image-below-text img {
    width: 100%;
    height: auto;
    border-radius: 50%;
   
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .worries-image-below-text {
        margin: 20px auto;
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .worries-image-below-text {
        margin: 15px auto;
    }
}




/* Aboutセクション */
.about-section {
    padding: 100px 50px;
    background-image: url('images/29891886_s.jpg'); /* お好みの画像パスに変更 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    
}

/* オーバーレイで読みやすさを確保 */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* 白いオーバーレイ */
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 0 0 35%;
    max-width: 350px;
    margin: 0 auto;
}

.about-text {
    flex: 0 0 60%;
}




.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

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

.about-text h3 {
    font-size: 1.8rem;
     color: var(--d-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555; /* 読みやすい色に変更 */
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .about-image {
        flex: 0 0 40%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .about-image {
        flex: none;
        width: 70%;
        max-width: 250px;
        margin-bottom: 30px;
    }
    
    .about-text {
        flex: none;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-image {
        width: 80%;
        max-width: 200px;
    }
}

/* 料金詳細ボタン */
.price-detail-btn-container {
    text-align: center;
    margin-top: 30px;
}

.btn-price-detail {
    display: inline-block;
    padding: 12px 30px;
    background: var(--white);
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(129, 199, 132, 0.1);
    text-decoration: none;
}

.btn-price-detail:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(129, 199, 132, 0.2);
}

/* 特別サービスセクション */


.special-container { 
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
    background-image: url('images/32810926_l.jpg');
    
}

.special-content {
    position: relative;
    display: flex;
    align-items: center;
    margin: 40px 0;
    padding: 40px 20px;
    border-radius: 8px;
    overflow: hidden;
    gap: 20px;
}

.special-content.reverse {
    flex-direction: row-reverse;
}

.special-image {
    flex: 1;
    overflow: hidden;
    text-align: center
}

.special-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.special-image:hover img {
    transform: scale(1.03);
}

.special-text {
    flex: 1;
    text-align: center;
    padding: 60px 20px;
}

.special-text h3 {
    font-size: 3.5vw;
    color: var(--d-color);
    margin-bottom: 20px;
}

.special-list {
    list-style: none;
    margin: 25px 0;
}

.special-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: rgb(160, 160, 160);
}

.special-list i {
    color: var(--secondary-color);
    position: absolute;
    left: 30%;
    top: 3px;
}

.btn-special {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 30px;
}

.btn-special:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 88, 88, 0.4);
}






/* レスポンシブ対応 */
@media (max-width: 768px) {

    .special-container { 
    padding: 60px 10px;
    
}

    .special-content {
        flex-direction: column;
    }


    .special-content,
    .special-content.reverse {
        flex-direction: column;
    }
    
    .special-image {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .special-text {
        width: 100%;
        order: 1;
        font-size: 0.8rem;
    }
    .special-text h3 {
        font-size: 1.5rem;
    }

    .special-content::before {
        top: 15px;
        width: 25px;
        height: 25px;
    }
}


@media (max-width: 468px) {

    .special-container { 
    padding: 40px 2px;
    
}
}









/* 悩みセクション */
.worries-section {
    background-image: url('images/32498115_s.jpg'); /* 背景画像のパス */
    background-size: cover; /* 画像を要素全体にフィット */
    background-position: center; /* 画像を中央に配置 */
    background-attachment: fixed; /* スクロール時に背景を固定 */
    background-repeat: no-repeat; /* 画像の繰り返しを防止 */
    position: relative; /* 子要素の位置指定の基準 */
    padding: 80px 0; /* 適切な余白 */
}



/* 背景画像の上にコンテンツを見やすくするオーバーレイ */
.worries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* 白い半透明オーバーレイ */
    z-index: 0; /* 背景画像の上、コンテンツの下に配置 */
}

/* コンテンツをオーバーレイの上に表示 */
.worries-section > .container,
.worries-images,
.worries-list {
    position: relative;
    z-index: 1; /* オーバーレイの上に表示 */
}



.worries-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.worries-list {
    list-style: none;
    margin: 30px 50px;
    text-align: center;
}

.worries-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--d-color);
}



/* 悩みセクションの画像スタイル修正 */
.worries-images {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0 30px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
}

.worries-image-item {
    text-align: center;
    flex: 0 0 auto;
    min-width: 120px;
    max-width: 200px;
}

.worries-image-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 5px solid white; /* 白い枠線を追加 */
   
}

.worries-image-item p {
    margin-top: 15px;
    font-weight: 500;
    color: var(--d-color);
    font-size: 0.9rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .worries-images {
        gap: 15px;
    }
    
    .worries-image-item {
        min-width: 100px;
    }
    
    .worries-image-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .worries-images {
        gap: 10px;
        justify-content: space-around;
    }
    
    .worries-image-item {
        min-width: 80px;
        max-width: 100px;
    }
    
    .worries-image-item p {
        font-size: 0.7rem;
    }
}


/* サービス紹介セクション */
.services-intro-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.service-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-item h3 {
    color: var(--d-color);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    text-align: left;
}

.service-features i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.6;
}



























/* 3つの横並びコンテナセクション */
#three-containers {
    padding: 80px 0;
    background-color:#faf3e5;
}

.three-container-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
}

/* スクロールバーのカスタマイズ */
.three-container-wrapper::-webkit-scrollbar {
    height: 8px;
}

.three-container-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.three-container-wrapper::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.three-container-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}

.single-container {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 250px;
    background: white;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.single-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.container-image {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}

.container-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-container:hover .container-image img {
    transform: scale(1.05);
}

.container-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-content h3 {
   color: #5e5e5e;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.container-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .single-container {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 220px;
    }
    
    .container-content {
        padding: 15px;
    }
    
    .container-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .three-container-wrapper {
        gap: 20px;
        padding-bottom: 15px;
    }
    
    .single-container {
        flex: 0 0 calc(50% - 10px);
        min-width: 200px;
    }
    
    .container-content h3 {
        font-size: 1.1rem;
    }
    
    .container-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .three-container-wrapper {
        gap: 15px;
    }
    
    .single-container {
        flex: 0 0 calc(100% - 30px);
        min-width: 180px;
    }
    
    .container-image {
        padding-top: 70%;
    }
    
    .container-content {
        padding: 12px;
    }
    
    .container-content h3 {
        font-size: 1rem;
    }
    
    .container-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .single-container {
        min-width: 150px;
    }
    
    .container-content {
        padding: 10px;
    }
    
    .container-content h3 {
        font-size: 0.9rem;
    }
    
    .container-content p {
        font-size: 0.75rem;
    }
}

/* お客様のお声セクション */
.testimonial-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.section-subtitle{
    text-align: center;
    padding: 0 40px;
}

.tab-btn {
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--dark-color);
    color: white;
    border-color: var(--dark-color);
}

.testimonial-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.testimonial-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

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

.testimonial-details {
    flex: 1;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.client-name {
    font-weight: bold;
    font-size: 18px;
}

.client-category {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 14px;
}

.rating {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 10px;
}

.testimonial-text {
    line-height: 1.7;
    color: #666;
}

/* LINEお問い合わせセクション */
.line-contact-section {
    padding: 80px 0;
}

.line-contact-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.line-contact-image {
    flex: 1;
    text-align: center;
}

.line-contact-image img {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.line-contact-text {
    flex: 2;
}

.line-contact-text h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.line-contact-list {
    list-style: none;
    margin: 25px 0;
}

.line-contact-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: var(--text-light);
}

.line-contact-list i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.btn-line-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #06C755;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
}

.btn-line-contact:hover {
    background: #05a845;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.4);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .line-contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .line-contact-list li {
        padding-left: 0;
        justify-content: center;
    }
    
    .line-contact-list i {
        position: static;
        margin-right: 8px;
    }
}

/* フッター */
.simple-footer {
    background: #ffffff;  /* 落ち着いたグレーグリーンに変更 */
    color: rgb(0, 0, 0);
    padding: 40px 0 20px;
    text-align: center;
     border-top: 1px solid rgba(134, 134, 134, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-address {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

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

.footer-links a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 300px;
    }
    
    .nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .nav li {
        margin: 10px 0;
        width: 100%;
    }
    
    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image, .about-text {
        flex: none;
        width: 100%;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .triple-slide {
        flex: 0 0 calc(100% - 10px);
    }
    
    .slider-triple button {
        top: 40%;
    }
    
    .special-content {
        flex-direction: column;
    }
    
    .special-content.reverse {
        flex-direction: column;
    }
    
    .special-image, .special-text {
        flex: none;
        width: 100%;
    }
    
    .special-image {
        margin-bottom: 30px;
    }
    
    .testimonial-item {
        flex-direction: column;
    }
    
    .client-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    
    .btn-special, .btn-line-contact {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .line-contact-content {
        padding: 20px;
    }
}

/* インフィニティスライダー */
.slider-infinity {
    max-width: 100%;
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
}

.infinity-track {
    display: flex;
    width: max-content;
    animation: infinityScroll 30s linear infinite;
}

.infinity-slide {
    width: 300px;
    margin-right: 15px;
    flex-shrink: 0;
}

.infinity-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

@keyframes infinityScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.slider-infinity:hover .infinity-track {
    animation-play-state: paused;
}



















/* 施術メニュー用スタイル */
.treatment-desc {
    color: var(--d-color);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.treatment-features {
    list-style: none;
    margin: 20px 0;
}

.treatment-features li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.treatment-features i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
    padding: 15px;
    background: var(--light-color);
    border-radius: 8px;
}

.duration {
    font-weight: 600;
    color: var(--d-color);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.course-options {
    margin: 15px 0;
    padding: 10px;
    background: #f8f8f8;
    border-radius: 5px;
    text-align: center;
}

.course-options p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.training-section {
    background: linear-gradient(135deg, #faf3e5 0%, #ffffff 100%);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .price-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .treatment-features li {
        font-size: 0.9rem;
    }
}
















/* アクセスセクション */
.access-section {
    padding: 80px 0;
}

.access-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 50px 0;

}

.access-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
  
}

.access-info {
    flex: 1;
    padding-top: 40px;
}

.access-info h3 {
    color: var(--d-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.access-address {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
}

.access-details {
    margin-bottom: 20px;
}

.access-details p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.access-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .access-content {
        flex-direction: column;
    }
    
    .access-map, .access-info {
        width: 100%;
    }
    
    .access-map {
        height: 300px;
        margin-bottom: 30px;
    }
}







/* メニュー表セクション */
#menu-table {
    padding: 80px 0;
}



.section-subtitle {
    text-align: center;
    color: #777;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.menu-btn-container {
    text-align: center;
    margin-bottom: 30px;
}

.btn-menu-list {
    display: inline-block;
    padding: 12px 30px;
    background: #2d5a2d;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(45, 90, 45, 0.3);
    text-decoration: none;
}

.btn-menu-list:hover {
    background: #1a3a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 90, 45, 0.4);
}

.news-slide-touch .news-date {
    display: none;
}

/* スライダーセクション */
.slider-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 42. レザーメニュー表（タッチスクロール対応版） */
.slider-news-touch {
    position: relative;
    max-width: 1000px;
    margin: 2rem auto;
    touch-action: pan-y;
}

.news-slides-touch {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 20px;
    padding: 20px 0;
    cursor: grab;
    will-change: transform;
    user-select: none;
}

.news-slides-touch:active {
    cursor: grabbing;
}

.news-slides-touch::-webkit-scrollbar {
    display: none;
}

.news-slide-touch {
    scroll-snap-align: start;
    flex: 0 0 calc(50% - 20px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    user-select: none;
    max-width: 300px;
    max-height: 450px;
    max-height: 450px;
    display: flex;
    flex-direction: column;
    height: auto;
}



.news-content {
    pointer-events: auto !important;
}

.read-more-toggle {
    pointer-events: auto !important;
    z-index: 10;
    position: relative;
}


.news-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* サイズが縮まないように */

}

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

.news-slide-touch:hover .news-image img {
    transform: scale(1.05);
}

.news-date {
    margin-top: auto;
    padding-top: 10px;
    color: #666;
    font-size: 0.9rem;
}

.news-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* 縦スクロールを有効化 */
    max-height: 250px; /* コンテンツ部分の最大高さ */
}

/* スクロールバーのスタイリング */
.news-content::-webkit-scrollbar {
    width: 6px;
}

.news-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.news-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.news-content::-webkit-scrollbar-thumb:hover {
    background: #a7a7a7;
}


.news-text-container {
    max-height: none; /* 最大高さ制限を解除 */
    overflow: visible; /* オーバーフローを可視化 */
    position: relative;
    line-height: 1.5;
    margin-bottom: 8px;
    flex-grow: 1; /* 利用可能なスペースを埋める */
}

.news-text-container.collapsed {
    max-height: 120px;
}

.news-text-container.expanded {
    max-height: 1000px; /* 十分な高さを確保 */
}

.news-text-container.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 100%);
}

.read-more-toggle {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 0;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-toggle:hover {
    color: #2980b9;
    text-decoration: underline;
}

.read-more-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more-toggle.expanded i {
    transform: rotate(180deg);
}

.news-content h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: #000000;
}

.news-content h3 a {
    color: #000000;
    text-decoration: none;
}

.news-content h3 a:hover {
    color: #3498db;
}

.news-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.news-soldout {
    color: red;
    font-size: 0.6rem;
    margin-bottom: 1rem;
}

.news-nav-touch {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.news-prev-touch,
.news-next-touch {
    pointer-events: auto;
    background-color: transparent;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-slide-touch {
        flex: 0 0 calc(80% - 20px);
    }
    .news-content {
        max-width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .news-slide-touch {
        flex: 0 0 calc(90% - 20px);
    }
    .news-content {
        padding: 1rem;
    }
}

.news-text-container.collapsed {
    max-height: none; /* 折りたたみ時も高さ制限なし */
}

.news-text-container.collapsed::after {
    display: none; /* グラデーションオーバーレイを非表示 */
}

/* トグルボタンの位置調整 */
.read-more-toggle {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 8px 0;
    margin: 10px 0 5px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
    flex-shrink: 0; /* ボタンが縮まないように */
}

/* フルテキスト表示 */
.full-text {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

/* 日付表示の調整 */
.news-date {
    margin-top: auto;
    padding-top: 10px;
    color: #666;
    font-size: 0.9rem;
    flex-shrink: 0; /* 日付が縮まないように */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .news-slide-touch {
        flex: 0 0 calc(80% - 20px);
        max-height: 400px; /* モバイルでは少し小さく */
    }
    
    .news-content {
        max-height: 200px;
        padding: 15px;
    }
    
    .news-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .news-slide-touch {
        flex: 0 0 calc(90% - 20px);
        max-height: 350px;
    }
    
    .news-content {
        max-height: 180px;
        padding: 12px;
    }
    
    .news-image {
        height: 120px;
    }
}

/* スクロール可能なコンテンツのホバー効果 */
.news-content:hover {
    overflow-y: auto; /* ホバー時もスクロールバー表示 */
}

/* タッチデバイス用のスクロール改善 */
.news-content {
    -webkit-overflow-scrolling: touch; /* スムーズスクロール */
    scrollbar-width: thin; /* 細いスクロールバー */
}





/* 背景画像固定セクション */
.fixed-background-section {
    background-image: url('images/32228593_s.jpg'); /* 適切な画像パスに変更 */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* スクロール時に動かないように固定 */
    background-repeat: no-repeat;
    height: 400px;
    position: relative;
    width: 100%;
}

.fixed-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* オーバーレイの色と透明度 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.fixed-background-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.fixed-background-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .fixed-background-section {
        height: 300px;
    }
    
    .fixed-background-title {
        font-size: 1.2rem;
    }
    
    .fixed-background-text {
        font-size: 0.6rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .fixed-background-section {
        height: 250px;
    }
    
    .fixed-background-title {
        font-size: 1.5rem;
    }
}



/* 横長画像セクションのスタイル */
.horizontal-image-section {
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 40px 0;
    padding: 10px 150px;
}

.horizontal-image-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.horizontal-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.horizontal-image:hover {
    transform: scale(1.02);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .horizontal-image-section {
        margin: 30px 0;
    }
}

@media (max-width: 480px) {
    .horizontal-image-section {
        margin: 20px 0;
    }
}









/* 会社概要セクション */
.company-section {
    padding: 80px 0;
    background-color: #faf3e5;
}

.company-info {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;

    
}

.company-details {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-row {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    flex: 0 0 120px;
    font-weight: 600;
    color: var(--d-color);
}

.info-content {
    flex: 1;
    color: var(--text-light);
}

.company-image {
    flex: 0 0 40%;
    text-align: center;
}

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

.image-caption {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

.company-features {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.company-features h3 {
    text-align: center;
    color: var(--d-color);
    margin-bottom: 40px;
    font-size: 1.8rem;
}

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

.feature-item {
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    background: var(--light-color);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--d-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .company-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .company-image {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .info-label {
        flex: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .company-details,
    .company-features {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .company-section {
        padding: 60px 0;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-item i {
        font-size: 2rem;
    }
}










/* 施術の流れセクションのスタイル */
.flow-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.flow-steps {
    max-width: 800px;
    margin: 50px auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -40px;
    width: 2px;
    background: var(--secondary-color);
    opacity: 0.3;
}

.flow-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 25px;
    position: relative;
    z-index: 2;
}

.flow-content {
    flex: 1;
    padding-top: 8px;
}

.flow-content h3 {
    color: var(--d-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.flow-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.flow-note {
    background: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.flow-note p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.flow-note p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .flow-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .flow-step:not(:last-child)::after {
        top: 50px;
        bottom: -30px;
        transform: translateX(-50%);
    }
    
    .flow-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .flow-content {
        padding-top: 0;
    }
}










/* デュアルイメージセクション */
.dual-image-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.dual-image-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
}

.dual-image-item {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}


.dual-image-item img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}







/* 画像リンクセクション */
.image-link-section {
    padding: 60px 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.image-link-content {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-link-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-link {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.image-link img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-link:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
}


.link-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-link:hover .link-button {
    background: var(--dark-color);
    transform: translateY(-2px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .image-link-section {
        padding: 40px 0;
    }
    
    .overlay-content h3 {
        font-size: 1.4rem;
    }
    
    .overlay-content p {
        font-size: 1rem;
    }
    
    .link-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .overlay-content h3 {
        font-size: 1.2rem;
    }
    
    .overlay-content p {
        font-size: 0.9rem;
    }
    
    .link-button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .image-link-content {
        border-radius: 10px;
    }
}