html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
    max-width: 100%;              
}

:root {
    --bg-color: #fdfcf8;      
    --text-color: #616161;     
    --accent-color: #9fbf8f;   
    --sub-color: #cfcfcf;    
    --white: #ffffff;
    --dark-text-on-hero: #fdfcf8; 
}


body {
    font-family: 'Zen Maru Gothic', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.8;
    letter-spacing: 0.05em;
    background-image: radial-gradient(var(--sub-color) 1px, transparent 1px);
    background-size: 20px 20px;
}


.hero-image {
    position: relative; 
    width: 100%;         
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dark-text-on-hero);
}


.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 0;
}

.hero-slider li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fade 40s infinite; 
}

.hero-slider li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-slider li:nth-child(1) { animation-delay: 0s; }
.hero-slider li:nth-child(2) { animation-delay: 5s; }
.hero-slider li:nth-child(3) { animation-delay: 10s; }
.hero-slider li:nth-child(4) { animation-delay: 15s; }
.hero-slider li:nth-child(5) { animation-delay: 20s; }
.hero-slider li:nth-child(6) { animation-delay: 25s; }
.hero-slider li:nth-child(7) { animation-delay: 30s; }
.hero-slider li:nth-child(8) { animation-delay: 35s; }

@keyframes fade {
    0% {
        opacity: 0;
    }
    2.5% {
        opacity: 1; 
    }
    15% {
        opacity: 1;
    }
    17.5% {
        opacity: 0; 
    }
    100% {
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2; 
}

.hero-image h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-image .subtitle {
    font-size: 0.8rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark-text-on-hero);
    font-weight: bold;
    position: relative;
    transition: 0.3s;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

nav a:hover {
    color: var(--accent-color);
}

.sub-header {
    height: 160px; 
    width: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
    text-align: center;
    

}
.sub-header h1 {
    font-size: 2.5rem;
    color: var(--text-color) !important;
    margin-bottom: 5px;
}
.sub-header nav a {
    color: var(--text-color) !important;
    font-weight: bold;
    font-size: 0.9rem;
    opacity: 0.8;
}

.sub-header nav a:hover {
    color: var(--accent-color) !important;
    opacity: 1;
}

.sub-header nav ul {
    margin-top: 0;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--text-color);
    margin-top: 60px;
}

.section-title::before,
.section-title::after {
    content: '●';
    color: var(--accent-color);
    font-size: 0.8rem;
    margin: 0 10px;
    vertical-align: middle;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.gallery-grid .art-card {
    background: var(--white);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(107, 92, 83, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.gallery-grid .art-card:hover {
    transform: translateY(-5px);
}
.gallery-grid .gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
    display: block;
}
.gallery-grid p {
    font-size: 0.8rem;
    margin: 0;
}
.row-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding-bottom: 0px;
}
.row-gallery .art-card {
    height: 100px;
    width: auto;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 0;
}
.row-gallery img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 3px;
}
.row-gallery a {
    display: block;
    height: 100%;
    text-decoration: none;
}
.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); 
    gap: 20px;
    margin-bottom: 20px;
}

.work-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(107, 92, 83, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}


.work-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.work-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    
    background-color: var(--sub-color);
    border-radius: 4px;
    overflow: hidden;
}
.work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.work-thumb img,
.work-thumb .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}


.work-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.work-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #aaa;
}

.work-tag {
    background-color: var(--sub-color);
    color: var(--text-color);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: bold;
}

.work-info h3 {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-color);
    display: -webkit-box;
    line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.view-more-container {
    text-align: center;
    margin-top: 40px;
}

.btn-more {
    display: inline-block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid var(--text-color);
    padding: 12px 40px;
    border-radius: 50px;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

.btn-more:hover {
    background-color: var(--text-color);
    color: var(--white);
    transform: translateY(-2px);
}

.arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-more:hover .arrow {
    transform: translateX(5px);
}
.about-section .section-title {
        font-size: 1.5rem;
        white-space: nowrap;
        width: 100%;
    }
.about-section {
    background-color: var(--white);
    padding: 10px;
    border-radius: 20px;
    margin: 60px 0;
    text-align: center;
    border: 2px dashed var(--sub-color);
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px auto;
    box-shadow: 0 5px 15px rgba(107, 92, 83, 0.2);
    border: 3px solid var(--white);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content p {
    max-width: 600px;
    margin: 0 auto 1em auto;
    font-size: 0.8rem;
}
.sns-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.sns-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--sub-color);
    color: var(--text-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
}

.sns-icon:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}


footer {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);

    margin: 0;
    padding: 60px 20px;
    background-color: #d3d3d3;
    text-align: center;
    border-radius: 10px 10px 0 0; 
}

.copyright {
    opacity: 0.6;
    margin-top: 30px;
}
@media (max-width: 768px) {
    .hero-image { height: 50vh; }
    .hero-image h1 { font-size: 2.5rem; }
    .work-list { grid-template-columns: repeat(2, 1fr); }
    .nav ul { flex-direction: column; gap: 15px; }
}
.btn-main {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: small;
    margin-top: 20px;
    margin-bottom: 30px;
    transition: 0.2s;
}

.btn-main:hover {
    transform: translateY(5px);
}

.copyright {
    opacity: 0.6;
}
html {
    scroll-behavior: smooth;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(107, 92, 83, 0.3);
    transition: all 0.3s;
    z-index: 100;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: sans-serif;
    padding-bottom: 5px;
}
.back-to-top:hover {
    background-color: var(--text-color);
    transform: translateY(-5px);
}
.gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    display: block;
}
#news {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.news-list {
    list-style: none;
    padding:15px 20px;
    margin: 0;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(107, 92, 83, 0.05);
}

.news-list li {
    border-bottom: 1px dashed var(--sub-color); 
    padding: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.news-list li:last-child {
    border-bottom: none;
}
.news-date {
    font-family: sans-serif;
    color: #999;
    font-size: 0.9rem;
    margin-right: 15px;
}
.news-label {
    display: inline-block;
    background-color: var(--sub-color);
    color: var(--text-color);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 5px;
    margin-right: 15px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}
.news-title {
    text-decoration: none;
    color: var(--text-color);
    flex: 1;
    transition: color 0.3s;
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
    }
    .art-card:nth-child(4) {
        display: block;
    }
    .news-list {
        padding: 20px;
    }
    
    .news-list li {
        padding: 12px 0;
    }

    .news-date {
        font-size: 0.8rem;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .news-label {
        margin-bottom: 5px;
    }
}
.news-footer {
    text-align: right;
    margin-top: 10px;
    padding-right: 10px;
}

.link-text-arrow {
    font-size: 0.9rem;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}
.link-text-arrow:hover {
    color: var(--accent-color);
}
.link-text-arrow::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.link-text-arrow:hover::after {
    width: 100%;
}
.simple-body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}
.simple-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.simple-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 100%;
}

.simple-content h1 {
    font-size: clamp(2.5rem, 12vw, 5rem);
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 10px rgba(0,0,0,0.5);
}
.simple-nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.simple-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    transition: opacity 0.3s;
    letter-spacing: 0.1em;
}

.simple-nav a:hover {
    opacity: 0.7;
    text-decoration: underline;
}
.simple-nav .simple-sns {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.container {
    padding-top: 0 !important;
}
.section-title {
    margin-top: 20px !important;
    margin-bottom: 30px !important;
}
.works-footer-nav {
    text-align: center;
    margin-bottom: 40px;
}

.simple-back-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.1rem;
    transition: color 0.3s;
    display: inline-block;
}
.simple-back-link:hover {
    color: var(--accent-color);
}
.simple-back-link .arrow {
    display: inline-block;
    transition: transform 0.3s;
    margin-right: 5px;
}
.simple-back-link:hover .arrow {
    transform: translateX(-5px);
}
.form-wrapper {
    max-width: 600px;
    margin: 0 auto 60px auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(107, 92, 83, 0.1);
    border: 2px solid var(--sub-color);
}
.form-item {
    margin-bottom: 30px;
    display: block;
}
.form-item label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--text-color);
    font-size: 1rem;
}
.required {
    color: var(--accent-color);
    margin-left: 5px;
    font-size: 0.9rem;
}
.price-table-wrapper {
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(107, 92, 83, 0.05);
}

.price-table th,
.price-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px dashed var(--sub-color);
}

.price-table th {
    background-color: #faf9f6;
    color: var(--text-color);
    width: 40%;
    font-weight: bold;
}

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

.price-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
    line-height: 1.6;
}
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(107, 92, 83, 0.05);
}

.form-item {
    margin-bottom: 25px;
}

.form-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-color);
}

.required {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-left: 5px;
}
.form-item input[type="text"],
.form-item input[type="email"],
.form-item select,
.form-item textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background-color: #fdfcf8;
    border: 2px solid var(--sub-color);
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s;
    appearance: none;
    font-family: inherit;
}
.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus {
    outline: none;
    background-color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 0 8px rgba(232, 172, 158, 0.3);
}
.form-btn-area {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(5px);
    opacity: 0.9;
}
@media (max-width: 768px) {
    .form-wrapper {
        padding: 20px;
    }
    .btn-submit {
        width: 100%;
    }
}

.skeb-notice-compact {
    max-width: 700px;
    margin: 0 auto 60px auto;
    background-color: white;
    border: 2px dashed var(--sub-color);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.skeb-notice-compact p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}
.btn-skeb-small {
    background-color: var(--text-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.3s;
}

.btn-skeb-small:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .skeb-notice-compact {
        flex-direction: column;
        border-radius: 20px;
        text-align: center;
        padding: 20px;
    }
}
.form-item input::placeholder,
.form-item textarea::placeholder {
    color: #ababab;
    opacity: 1;
}
.form-item select {
    color: #504f4f;
}
.form-item input:focus,
.form-item textarea:focus,
.form-item select:focus {
    color: var(--text-color);
}
.form-item select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b5c53' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    
    padding-right: 40px;
}
.thanks-message {
    text-align: center;
    padding: 100px 20px;
}

.thanks-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    animation: fly 3s infinite;
}

.thanks-message p {
    margin-bottom: 40px;
    color: var(--text-color);
}
@keyframes fly {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.detailed-works-section {
    margin-top: 100px;
    margin-bottom: 80px;
}
.sketch-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.sketch-title {
    display: inline-block;
    font-size: 2rem;
    color: var(--text-color);
    letter-spacing: 0.1em;
    border-top: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    
    padding: 10px 40px;
    margin: 0;
}
.works-vertical-list {
    max-width: 700px;
    margin: 0 auto;
}
.work-entry {
    text-align: center;
}
.work-image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(107, 92, 83, 0.1);
    margin-bottom: 25px;
}
.work-caption {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    display: inline-block;
}
.work-category {
    display: inline-block;
    background-color: #d9d9d9;
    
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: bold;
    padding: 6px 18px;
    border-radius: 4px;

    margin-bottom: 15px;
    letter-spacing: 0.05em;
}
.dashed-separator {
    margin: 60px 0;
    height: 1px;
    border: none;
    border-top: 2px dashed #ccc; 
}

.work-gallery-container {
    margin-bottom: 25px;
}
.main-image-display {
    width: 100%;
    aspect-ratio: 16 / 9;
    
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(107, 92, 83, 0.1);
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.thumbnail-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.thumb-btn {
    width: 80px;
    height: 45px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
    background: none;
}
.thumb-btn:hover {
    opacity: 0.8;
    border-color: var(--accent-color);
}
.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.work-text h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}
.work-text h3 a:hover {
    color: var(--accent-color);
    text-decoration: underline;

}
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    
    gap: 20px;
    margin-bottom: 60px;
}
.link-card {
    background-color: #fff;
    padding: 20px 15px;
    
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--sub-color);
    box-shadow: 0 3px 10px rgba(107, 92, 83, 0.05);
    transition: transform 0.3s;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
}
.link-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 10px;
    
    background-color: var(--sub-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.link-card h3 {
    font-size: 1rem;
    margin: 0 0 8px 0;
    color: var(--text-color);
}
.link-desc {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    margin: 0 0 15px 0;
    flex-grow: 1;
}
.btn-link {
    display: inline-block;
    background-color: var(--text-color);
    color: #fff;
    text-decoration: none;
    padding: 6px 20px;
    font-size: 0.8rem;
    
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.btn-link:hover {
    background-color: var(--accent-color);
}
.fish-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.fish {
    position: absolute;
    opacity: 0.6;
    width: 60px;
    height: auto;
}
.fish img {
    width: 100%;
    height: auto;
    display: block;
}
@keyframes swim-right {
    0% {
        transform: translateX(100vw) ;
    }
    100% {
        transform: translateX(-100px) ;
    }
}
.fish-1 {
    top: 15%;
    left: -100px;
    animation: swim-right 25s linear infinite;
}
.fish-2 {
    top: 45%;
    left: -100px;
    font-size: 1rem;
    opacity: 0.4;
    animation: swim-right 18s linear infinite;
    animation-delay: 5s;
}
.fish-3 {
    top: 80%;
    left: -100px;
    font-size: 2rem;
    animation: swim-right 30s linear infinite;
    animation-delay: 10s;
}
.fish-4 {
    top: 5%;
    left: -100px;
    font-size: 1.2rem;
    opacity: 0.5;
    animation: swim-right 20s linear infinite;
    animation-delay: 3s;
}
.fish-5 {
    top: 60%;
    left: -100px;
    font-size: 0.8rem;
    opacity: 0.3;
    animation: swim-right 40s linear infinite;
    animation-delay: 15s;
}
.fish-6 {
    top: 90%;
    left: -100px;
    font-size: 2.2rem;
    opacity: 0.2;
    animation: swim-right 35s linear infinite;
    animation-delay: 7s;
}
.fish-7 {
    top: 30%;
    left: -100px;
    font-size: 1rem;
    animation: swim-right 28s linear infinite;
    animation-delay: 22s;
}
.fish-8 {
    top: 50%;
    left: -100px;
    font-size: 1.4rem;
    animation: swim-right 18s linear infinite;
    animation-delay: 1s;
}
