body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

/* 背景レイヤー */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 2s ease-in-out, transform 8s ease-in-out;
    opacity: 0;
    z-index: 0;
}

.hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    text-align: center;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: transparent;
    transition: background 0.3s ease-in-out;
    z-index: 1000;
    box-sizing: border-box;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
}

/* ロゴ全体 */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 赤い円 */
.logo-circle {
    width: 85px;
    height: 85px;
    background-color: red;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* YMK（青色 + 白フチ） */
.logo-text {
    font-size: 32px;
    font-weight: bold;
    font-style: italic;
    color: blue;
    text-shadow:
        -2px -2px 0 white,
        2px -2px 0 white,
        -2px 2px 0 white,
        2px 2px 0 white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-15%, -25%);
}

/* 株式会社 + YMK */
.company-name {
    display: flex;
    flex-direction: column;
    font-family: "核明朝", serif;
    color: #ffffff;
    margin-left: 40px;
}

.company-name p {
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

.company-ymk {
    font-size: 44px;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px;
    white-space: nowrap;
}

.hamburger {
    display: none;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .logo-circle {
        width: 65px;
        height: 65px;
    }

    .logo-text {
        font-size: 24px;
    }

    .company-ymk {
        font-size: 32px;
    }

    .nav-links {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 22px;
        position: relative;
        z-index: 1100;
    }

    .hamburger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background: white;
        transition: 0.3s;
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        top: 9px;
    }

    .hamburger span:nth-child(3) {
        bottom: 0;
    }

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

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

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

    .hero-content {
        padding: 0 10%;
    }
}

/* clean-care Section*/

.clean-care {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 10%;
    background: url('image/background.webp') no-repeat center center/cover;
    position: relative;
}

.clean-care .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.clean-care .text-content {
    width: 50%;
}

.clean-care .text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.clean-care .text-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    display: inline-block;
}

.clean-care .text-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    z-index: 2;
}

.clean-care .image-content {
    width: 40%;
}

.clean-care .image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
}

.button:hover {
    background-color: darkgray;
}

/* 1024px以下（タブレット向け） */
@media (max-width: 1024px) {
    .clean-care {
        padding: 80px 8%;
        /* 上下:80px、左右:8% */
    }

    .clean-care .container {
        flex-direction: column;
        /* 縦並び */
        align-items: center;
    }

    .clean-care .text-content,
    .clean-care .image-content {
        width: 100%;
        text-align: center;
    }

    .clean-care .text-content h2 {
        font-size: 2rem;
    }

    .clean-care .text-content h3 {
        font-size: 1.5rem;
    }

    .clean-care .text-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .clean-care .image-content img {
        max-width: 80%;
        margin-top: 30px;
    }
}

/* 768px以下（小型タブレット／スマホ向け） */
@media (max-width: 768px) {
    .clean-care {
        padding: 60px 5%;
        /* 上下:60px、左右:5% */
    }

    .clean-care .text-content h2 {
        font-size: 1.8rem;
    }

    .clean-care .text-content h3 {
        font-size: 1.3rem;
    }

    .clean-care .text-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .clean-care .image-content img {
        max-width: 100%;
        margin-top: 20px;
    }
}

/* Service Section */
.service {
    text-align: center;
    padding: 100px;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #f9f9f9;
}

.service h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.service .sub-heading {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 40px;
}

.service-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: auto;
}

.service-list {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.service article {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    background: white;
    padding: 0;
    text-align: left;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    overflow: hidden;
    border: none;
    margin: 0;
}

.service article img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
}

.service .service-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    width: 80%;
    padding: 40px;
    padding-left: 20px;
    padding-right: 20px;
}

.service .service-title {
    display: flex;
    align-items: center;
    font-size: medium;
    font-weight: 500;
}

.service .service-number {
    margin-right: 10px;
    font-size: small;
    font-weight: bold;
    color: #555;
    display: block;
    margin-bottom: 15px;
}


.service p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 25px;
}

.service-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.button {
    background-color: #000;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    text-align: center;
    transition: background 0.3s ease;
}

.button:hover {
    background-color: #444;
}

.button.secondary {
    background-color: #666;
}

.button.secondary:hover {
    background-color: #333;
}

.service-navigation {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-navigation button {
    background: none;
    border: 1px solid #777;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.service-navigation button:hover {
    background: #ddd;
}

.button.more {
    display: inline-block;
    padding: 12px 30px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    margin-top: 40px;
}

.button.more:hover {
    background-color: #444;
}

/* 1024px以下（タブレット向け） */
@media (max-width: 1024px) {
    .service {
        padding: 80px 8%;
    }

    .service h2 {
        font-size: 2rem;
    }

    .service .sub-heading {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .service-list {
        flex-wrap: wrap;
        gap: 20px;
    }

    .service article {
        flex: 0 0 48%;
        max-width: 48%;
        margin-bottom: 20px;
    }

    .service article img {
        height: 220px;
    }

    .service .service-text {
        width: 90%;
        padding: 30px 15px;
    }

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

    .service .service-number {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .service p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}

/* 768px以下（スマホ向け） */
@media (max-width: 768px) {
    .service {
        padding: 60px 5%;
    }

    .service h2 {
        font-size: 1.8rem;
    }

    .service .sub-heading {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .service-list {
        flex-direction: column;
        gap: 20px;
    }

    .service article {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .service article img {
        height: 200px;
    }

    .service .service-text {
        width: 100%;
        padding: 20px 15px;
        text-align: center;
    }

    .service .service-title {
        font-size: 0.95rem;
        flex-direction: column;
        align-items: center;
    }

    .service .service-number {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .service p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .service-buttons {
        flex-direction: column;
        gap: 10px;
    }
}


/* About セクション */
.about {
    padding: 100px 10%;
    background-color: #ffffff;
}

.about-maincontainer {
    display: flex;
    justify-items: center;
}

.about-content {
    width: 50%;
    margin-right: 100px;
}

.about-content .sub-title {
    font-size: 1rem;
    color: #777;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-content .description {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-content .author {
    font-size: 1rem;
    color: #222;
    margin-top: 20px;
    text-align: right;
}

.about-images {
    width: 50%;
    position: relative;
    margin-left: 100px;
    z-index: 1;
}

.about-main-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-sub-img {
    width: 40%;
    object-fit: cover;
}

.about-flowtext {
    align-items: center;
    color: #cccccc;
    opacity: 30%;
    display: flex;
    height: 200px;
    line-height: 200px;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    margin-top: -200px;
    padding-bottom: 50px;
}

.about-flowtext ul {
    animation: flowing 40s linear infinite;
    font-size: 200px;
    transform: translateX(100%);
    margin: 0;
    padding: 0;
}

.about-flowtext ul li {
    display: inline-block;
    padding-right: 10px;
}

@keyframes flowing {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    margin-top: 40px;
    position: absolute;
    right: 10%;
    top: 20px;
}

.about-btn:hover {
    background-color: #444;
}

/* 1024px以下（タブレット向け） */
@media (max-width: 1024px) {
    .about {
        padding: 80px 8%;
    }

    .about-head h2 {
        font-size: 1.4rem;
    }

    .about-maincontainer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-content {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .about-content .description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-content .author {
        text-align: center;
        font-size: 0.95rem;
    }

    .about-images {
        width: 80%;
        margin-left: 0;
        margin-bottom: 30px;
    }

    .about-main-img {
        border-radius: 10px;
    }

    .about-sub-img {
        width: 60%;
        margin: 0 auto;
        display: block;
    }

    .about-flowtext {
        height: 150px;
        line-height: 150px;
    }

    .about-flowtext ul {
        font-size: 120px;
    }
}

/* 768px以下（スマホ向け） */
@media (max-width: 768px) {
    .about {
        padding: 60px 5%;
    }

    .about-head h2 {
        font-size: 1.1rem;
    }

    .about-maincontainer {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .about-content .description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-content .author {
        font-size: 0.9rem;
    }

    .about-images {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }

    .about-main-img {
        width: 100%;
        height: auto;
    }

    .about-sub-img {
        width: 80%;
        margin: 0 auto;
        display: block;
    }

    .about-flowtext {
        height: 100px;
        line-height: 100px;
    }

    .about-flowtext ul {
        font-size: 80px;
    }

    .about-btn {
        position: relative;
        right: auto;
        top: auto;
        margin-top: 20px;
    }
}


/* Case セクション */
.case {
    text-align: center;
    padding: 100px 10%;
    background-color: #ffffff;
    position: relative;
}

.case .sub-title {
    font-size: 1rem;
    color: #777;
    margin-bottom: 10px;
    text-align: left;
}

.case h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.case-navigation {
    position: absolute;
    top: 50px;
    right: 10%;
    display: flex;
    gap: 10px;
}

.case-navigation button {
    background: none;
    border: 1px solid #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.case-navigation button:hover {
    background: #ddd;
}

.case-slider {
    overflow: hidden;
    width: 100%;
    margin: auto;
}

.case-list {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.case article {
    flex: 0 0 calc(33.33% - 20px);
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.case article img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
}

.case .date {
    font-size: 0.9rem;
    color: #777;
    margin: 10px 0;
}

.case h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: bold;
    color: #222;
}

.tags {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.tags span {
    font-size: 0.8rem;
    padding: 5px 10px;
    background-color: #eee;
    border-radius: 20px;
}

.button.more {
    display: inline-block;
    padding: 12px 30px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    margin-top: 40px;
}

.button.more:hover {
    background-color: #444;
}

/* Access セクション */
.access {
    text-align: center;
    padding: 80px 40px; /* 横にも余白を入れる */
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    background-color: #f9f9f9;
}

.access h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.access .sub-heading {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 30px;
}

.access iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 8px;
    margin-bottom: 40px;
}

/* --- タブレット対応 (1024px 以下) --- */
@media (max-width: 1024px) {
    .access {
        padding: 60px 30px;
    }

    .access h2 {
        font-size: 2rem;
    }

    .access .sub-heading {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .access iframe {
        height: 400px;
    }
}

/* --- スマホ対応 (768px 以下) --- */
@media (max-width: 768px) {
    .access {
        padding: 40px 20px;
    }

    .access h2 {
        font-size: 1.8rem;
    }

    .access .sub-heading {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .access iframe {
        height: 300px;
    }

    .access p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Contact セクション */
.contact {
    position: relative;
    background: url('image/placeholder.webp') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 10%;
}

.contact-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 10px;
    display: inline-block;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact h2 span {
    font-size: 1.2rem;
    display: block;
    margin-top: 5px;
    font-weight: normal;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 30px;
    font-size: 1.2rem;
}

.contact-tel {
    font-size: 2rem;
    font-weight: bold;
}

.contact-tel span {
    font-size: 2.5rem;
}

.contact-hours,
.contact-holiday {
    font-size: 1rem;
    margin-top: 5px;
}

/* Contact 詳細 */
.contact-details {
    display: flex;
    justify-content: space-between;
    padding: 80px 10%;
    background: #fff;
}

.contact-details .detail {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-left: 1px solid #ddd;
}

.contact-details .detail:first-child {
    border-left: none;
}

.contact-details h3 {
    font-size: 1.5rem;
    color: #aaa;
    font-weight: bold;
}

.contact-details h4 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 10px 0;
}

.contact-details h4 span {
    font-size: 1.2rem;
    font-weight: normal;
    color: #666;
}

.contact-details p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.contact-tel a {
    color: inherit;
    text-decoration: none;
}

.contact-tel a:hover {
    text-decoration: underline;
}

/* --- レスポンシブ対応 --- */

/* タブレット (1024px 以下) */
@media (max-width: 1024px) {
    .contact {
        padding: 80px 8%;
    }

    .contact-overlay {
        padding: 40px;
    }

    .contact h2 {
        font-size: 2.2rem;
    }

    .contact h2 span {
        font-size: 1.1rem;
    }

    .contact p {
        font-size: 1.1rem;
    }

    .contact-tel {
        font-size: 1.6rem;
    }

    .contact-tel span {
        font-size: 2rem;
    }

    .contact-details {
        flex-direction: column;
        padding: 60px 8%;
    }

    .contact-details .detail {
        border-left: none;
        border-top: 1px solid #ddd;
    }

    .contact-details .detail:first-child {
        border-top: none;
    }
}

/* スマホ (768px 以下) */
@media (max-width: 768px) {
    .contact {
        padding: 60px 5%;
    }

    .contact-overlay {
        padding: 30px 20px;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact h2 span {
        font-size: 1rem;
    }

    .contact p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-info {
        font-size: 1rem;
    }

    .contact-tel {
        font-size: 1.4rem;
    }

    .contact-tel span {
        font-size: 1.6rem;
    }

    .contact-hours,
    .contact-holiday {
        font-size: 0.9rem;
    }

    .contact-details {
        padding: 40px 5%;
    }

    .contact-details h3 {
        font-size: 1.3rem;
    }

    .contact-details h4 {
        font-size: 1.5rem;
    }

    .contact-details h4 span {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }
}

/* フッター全体 */
.footer {
    background-color: #f5f5f5;
    padding: 50px 10%;
    color: #333;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

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

.footer-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 30px auto;
}

.footer-section {
    text-align: left;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-section ul li a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: black;
}

.footer-info {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-btn {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    border: 1px solid #333;
    display: inline-block;
}

.footer-btn.black {
    background-color: black;
    color: white;
}

.footer-btn:hover {
    background-color: #ddd;
}

.footer-btn.black:hover {
    background-color: #444;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    margin-top: 30px;
    font-size: 0.9rem;
    background-color: #e5e5e5;
    padding: 30px 10%;
}

.footer-logo {
    text-align: left;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-logo p {
    margin: 5px 0;
    color: #555;
}

.footer-text {
    text-align: center;
    font-size: 1.5rem;
    font-family: "Noto Serif JP", serif;
    color: #333;
}

.footer-policy {
    text-align: right;
}

.footer-policy a {
    text-decoration: none;
    color: #555;
    margin-left: 15px;
    font-size: 0.9rem;
}

.footer-policy a:hover {
    color: black;
}

/* =========================
   Footer Responsive
========================= */

/* タブレット (1024px以下) */
@media (max-width: 1024px) {
    .footer-nav ul {
        gap: 20px;
        flex-wrap: wrap; /* 折り返し */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 5%;
    }

    .footer-logo,
    .footer-text,
    .footer-policy {
        text-align: center;
    }

    .footer-text {
        font-size: 1.2rem;
    }
}

/* スマホ (768px以下) */
@media (max-width: 768px) {
    .footer {
        padding: 40px 5%;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer-nav ul li a {
        font-size: 0.95rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo p {
        font-size: 0.85rem;
    }

    .footer-text {
        font-size: 1rem;
    }

    .footer-policy {
        margin-top: 10px;
    }

    .footer-policy a {
        display: block;
        margin: 5px 0;
    }
}


