/*
Theme Name: Fit House NK LP
Theme URI: https://example.com/
Author: フィットハウスNK
Description: Converted landing page -> WordPress theme (single-file LP style).
Version: 1.0
Text Domain: fit-house-nk
*/

:root {
    --primary-green: #55a846;
    /* 画像から抽出した緑に近い色 */
    --accent-orange: #f09524;
    /* 画像から抽出したオレンジに近い色 */
    --text-color: #333333;
    --background-color: #ffffff;
    --font-base: "Noto Sans JP", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-base);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-logo img {
    max-height: 50px;
    /* 暫定 */
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-desktop {
    display: flex;
    align-items: center;
    border: 2px solid #333;
    padding: 6px 20px;
    border-radius: 8px;
    color: #333;
}

.phone-icon {
    font-size: 1.5em;
    margin-right: 10px;
}

.phone-number {
    font-size: 1.5em;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.phone-time {
    font-size: 0.7em;
    display: block;
}

.contact-button {
    background-color: var(--accent-orange);
    color: #fff;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1em;
    transition: opacity 0.3s;
}

.contact-button:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero {
    padding: 50px 0;
    max-width: 1200px;
    /* 少し広めに */
    margin: 0 auto;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* 上揃えで調整するかも */
    gap: 40px;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
  flex: 0.2 0 50%;
  /* margin-right: calc(50% - 50vw); */
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-title {
    font-size: 3.2em;
    /* かなり大きめ */
    font-weight: 700;
    line-height: 1.4;
    color: #004d25;
    /* 深い緑 */
    margin-bottom: -5px;
    letter-spacing: 0.05em;
}

.hero-title .highlight {
    border-bottom: 8px solid #ffd700;
    /* 黄色の下線 */
    display: inline-block;
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.5em;
    color: #333333;
    margin-bottom: 0px;
    font-weight: bold;
    display: flex;
    /* 横並びにする */
    align-items: center;
    /* 縦位置をそろえる */
    gap: 0px;
    white-space: nowrap;
}

/* p.hero-subtitle {
    letter-spacing: 2px;
} */

.appeal-image {
    margin-left: -8px;
}

/* --- 通常時（PC）の設定 --- */
.sp-appeal-image {
    display: none; /* PCでは隠す */
}


.hero-animals {
    font-size: 1.5em;
    /* アイコンサイズ調整 */
}

/* Hero Features (Hexagons) */
.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
}

.feature-item {
    text-align: center;
    width: 25%;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    /* 六角形は大枠の画像として処理するか、CSSで作るか。ここでは画像として扱う想定 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    font-size: 0.8em;
    font-weight: bold;
    color: #55a846;
    line-height: 1.3;
}

.hero-cta-button {
    display: block;
    width: 100%;
    background-color: var(--accent-orange);
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 0 #d35400;
    /* ボタンの立体感 */
    transition: transform 0.1s, box-shadow 0.1s;
}

.hero-cta-button:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #d35400;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .header-contact {
        flex-direction: column;
        width: 100%;
    }

    .contact-desktop,
    .contact-button {
        width: 100%;
        text-align: center;
        justify-content: center;
    }



    .hero-container {
        flex-direction: column-reverse;
        /* 画像を上に持ってきたい場合は column-reverse、下なら column */
    }

    .hero-title {
        font-size: 2em;
    }

    .hero-features {
        flex-wrap: wrap;
    }

    .feature-item {
        width: 45%;
    }


}
@media (max-width: 768px) {
  .hero-image {
    width: 100%;
    margin-right: 0;
  }
}


/* Message Section */
.message {
    padding: 80px 0;
    background-color: #fff;
    /* 画像を見る限り背景は白または非常に薄い色 */
    text-align: center;
}

.message-header {
    margin-bottom: 20px;
    display: inline-block;
}

.message-header .paw-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 5px;
    color: #8b4513;
    /* 茶色系の肉球 */
}

.message-header h2 {
    font-size: 1.5em;
    /* 少し大きめ */
    color: #333;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    margin-bottom: 40px;
}

.message-content {
    max-width: 1440px;
    margin: 0 auto;
}

.message-title {
    font-size: 2.2em;
    color: #5d4037;
    /* 濃い茶色 */
    margin-bottom: 50px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.message-body-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /* 上揃えか中央揃えか、画像では中央っぽい */
    gap: 20px;
    text-align: left;
        /* margin-right: 156px; */
}



.message-image-dogs img {
    width: 100%;
    height: auto;
margin-bottom: 500px;
}
.message-image-dogs{
    width: 20%;
}

.message-text {
    flex: 1.5;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
    /* 明朝体 */
    line-height: 2.2;
    color: #004d25;
    font-size: 1.5em;
    text-align: center;
    /* letter-spacing: */
    margin-left: 10px;
    font-weight: 700;
}
.message-footprints {
    margin-top: 500px;
width: 20%;
}

.message-text p {
    margin-bottom: 1.5em;
}

.highlight-yellow {
    background: linear-gradient(transparent 60%, #ffd700 60%);
    font-weight: bold;
    padding: 0 2px;
}

.message-signature {
    text-align: center;
    margin-top: 50px;
}


.message-signature img {
    height: 50px;
    /* 署名画像の高さ調整 */
    width: auto;
    margin: 0 16px;
}

/* Responsive for Message */
@media (max-width: 1200px) {
     .message-body-wrapper {
        flex-direction: column;
    }
   .message-image-dogs {
        max-width: 80%;
    }

    .message-image-dogs img{
         margin-bottom: 0px;
    }
    .message-footprints{
       display: none; 
    }
}

@media (max-width: 768px) {
  
    .message-text {
        font-size: 1.1em;
    }
    .message-image-dogs {
    width: 30%;
}

.message-title {
    font-size: 2.2em;
    color: #5d4037;
    margin-bottom: 50px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

}

@media (max-width: 540px) {
     .message-text {
        text-align: left;
        padding: 0px 20px;}
        .message-title {
            font-size: 1.2em;
        }
}


@media (max-width: 440px) {
.message-signature img {
    width: 60%;}
}



/* Problem Section */
.problem {
    padding: 80px 0;
    background-color: #f0fcf5;
    /* 薄いミントグリーン */
    text-align: center;
}

.problem-header {
    margin-bottom: 20px;
    display: inline-block;
}

.problem-header .paw-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 5px;
    color: #8b4513;
}

.problem-header h2 {
    font-size: 1.5em;
    /* 少し大きめ */
    color: #333;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    margin-bottom: 40px;
}

.problem-subtitle {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 50px;
    font-weight: bold;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

.problem-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    width: 100%;
    /* ← 幅を統一 */
}

.problem-item {
    background: #f0fcf5;
    /* border-radius: 16px; */
    padding: 20px;
    display: flex;
    align-items: center;
    text-align: left;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    /* ← 幅を100%に統一 */
    min-height: 120px;
    /* ← 高さも統一（お好みの数値に調整） */
    flex: 1;
    /* ← 高さを揃えるために追加 */
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    flex-shrink: 0;
    /* プレースホルダー用スタイル */
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon img {
    max-width: 100%;
    max-height: 100%;
}

.problem-text {
    font-size: 0.9em;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.problem-center-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* 下揃え */
}

.problem-center-image img {
    max-width: 100%;
    height: auto;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 40px 40px;
    /* ← 内側の余白を増やす */
    background: #ffffff;
    /* ← 白い背景 */
    /* border-radius: 16px;       ← 角丸の白い枠っぽくする */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* ← ふわっと浮かせる影（お好みで） */
}

/* Responsive for Problem */
@media (max-width: 900px) {
    .problem-container {
        flex-direction: column;
    }

    .problem-center-image {
        order: -1;
        /* 画像を上に */
        margin-bottom: 30px;
    }

    .problem-item {
        width: 100%;
        justify-content: center;
    }
}


/* Service Section (GAINA) */
.service {
    padding: 80px 0;
    background-color: #fdfaf5;
    text-align: center;
    position: relative;
    clip-path: polygon(0% 20%,
            /* 左上（屋根の左端） */
            50% 0%,
            /* 上中央（屋根の頂点） */
            100% 20%,
            /* 右上（屋根の右端） */
            100% 100%,
            /* 右下 */
            0% 100%
            /* 左下 */
        );
}

.service-header {
    margin-bottom: 40px;
}

.service-header .paw-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 5px;
    color: #8b4513;
}

.service-header h2 {
    font-size: 1.5em;
    /* 少し大きめ */
    color: #333;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    margin-bottom: 64px;
}

.service-subheader {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.service-subheader::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #d35400;
    margin: 10px auto 0;
}

.service-intro {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.6;
}

.service-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

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

.service-text {
    flex: 1;
}

.service-number {
    display: inline-block;
    background-color: var(--accent-orange);
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 10px;
    vertical-align: middle;
}

.service-title {
    display: inline-block;
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    vertical-align: middle;
}

.service-desc {
    margin-top: 15px;
    font-size: 0.95em;
    color: #333;
    line-height: 1.8;
}

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

.service-image img {
    max-width: 100%;
    height: auto;

}

/* Reason Section */
.reason {
    padding: 80px 0;
    background-color: #fdfaf5;
    text-align: center;
}

.reason-header-wrapper {
    margin-bottom: 60px;
    position: relative;
}

.reason-header {
    display: inline-block;
    background: #fdfaf5;
    /* 背景色に合わせて変更 */
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.reason-point {
    font-size: 0.9em;
    color: var(--accent-orange);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.reason-title {
    font-size: 1.8em;
    color: #333;
    font-weight: bold;
}

.reason-header-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 434px;
    height: 2px;
    background: #333333;
    z-index: 0;
}

.reason-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 215px;
    text-align: left;
}

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

.reason-icon {
    flex: 0 0 300px;
    text-align: center;
}

.reason-icon img {
    width: 100%;
    height: auto;
}

.reason-content {
    flex: 1;
}

.reason-number {
    display: inline-block;
    background-color: var(--primary-green);
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 10px;
}

.reason-item-title {
    display: inline;
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

.reason-desc {
    margin-top: 10px;
    font-size: 0.95em;
    color: #333;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fdfaf5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 400px;
    display: flex;
    justify-content: center;
}

.about-title {
    font-size: 1.4em;
    /* h3のサイズ調整（お好みで） */
    font-weight: bold;
    margin-bottom: 20px;
    /* 縦書きなので実際は右側の余白 */
    color: #333;
    /* writing-modeは親要素から継承されるので、縦書きのまま */
}

.about-vertical-text {
    writing-mode: vertical-rl;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
    font-size: 1.2em;
    letter-spacing: 0.2em;
    line-height: 2;
    color: #333;
    height: 420px;

    text-align: left;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image-item {
    width: 200px;
    height: 140px;
    object-fit: cover;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #fff;
}

.mycan-image {
    padding: 75px 100px;
    display: inline-block;
    /* 縦書きの場合、上下が左右、左右が上下になるので注意 */
}

/* Responsive */
@media (max-width: 768px) {

    .service-item,
    .service-item.reverse,
    .reason-item,
    .reason-item.reverse {
        flex-direction: column;
        text-align: center;
    }

    .service-image,
    .reason-icon {
        margin-bottom: 20px;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
    }
     .reason-item{
        gap: 0px;
     }

     .service {
    padding: 80px 0;
    background-color: #fdfaf5;
    text-align: center;
    position: relative;
    clip-path: polygon(0% 5%,
            /* 左上（屋根の左端） */
            50% 0%,
            /* 上中央（屋根の頂点） */
            100% 5%,
            /* 右上（屋根の右端） */
            100% 100%,
            /* 右下 */
            0% 100%
            /* 左下 */
        );
}
}

@media (max-width: 768px) {
    .about-vertical-text {
        writing-mode: horizontal-tb;
        height: auto;
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .about-title {
        margin-bottom: 15px;
        /* 横書き時の下の余白 */
    }
}


@media (max-width: 440px) {
.reason-header-wrapper::before {
    display: none;
}
}

/* Works Section */
.works {
    padding: 80px 0;
    background-color: #f0fcf5;
    /* Problemと同じ背景色 */
    text-align: center;
}

.works-header {
    margin-bottom: 40px;
}

.works-header .paw-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 5px;
    color: #8b4513;
}

.works-header h2 {
    font-size: 1.5em;
    /* 少し大きめ */
    color: #333;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    margin-bottom: 40px;
}

.works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    /* スマホで折り返し */
}

.works-item {
    background: #fff;
    width: 320px;
    /* カード幅固定または％ */
    padding: 30px 20px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* border-radius: 8px; */
}

.works-item-title {
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #5d4037;
    margin-bottom: 20px;
}

.works-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
}

.works-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-desc {
    font-size: 0.9em;
    color: #333;
    line-height: 1.8;
}



/* Responsive for Works */
@media (max-width: 900px) {
    .works-container {
        flex-direction: column;
        align-items: center;
    }

    .works-item {
        width: 100%;
        max-width: 400px;
    }
}

/* Q&A Section */
.qa {
    padding: 80px 0;
    background-color: #f0f8fc;
    /* 薄い水色 */
    text-align: center;
}

.qa-header {
    margin-bottom: 50px;
}

.qa-header .paw-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 5px;
    color: #8b4513;
}

.qa-header h2 {
    font-size: 1.5em;
    color: #333;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    /* Q&Aは大文字 */
    margin-bottom: 40px;
}

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

.qa-item {
    margin-bottom: 40px;
}

.qa-question {
    background: #fff;
    padding: 20px 30px;
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
    /* border-radius: 8px; */
}

.qa-q-mark {
    font-size: 1.2em;
    margin-right: 15px;
    font-family: "Noto Sans JP", sans-serif;
    /* Qだけゴシックの方が読みやすい場合も */
}

.qa-answer {
    padding: 0 30px;
    font-size: 1em;
    color: #333;
    line-height: 1.8;
    display: flex;
    align-items: baseline;
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
}

.qa-a-mark {
    font-size: 1.2em;
    margin-right: 15px;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
}

/* Responsive for QA */
@media (max-width: 768px) {

    .qa-question,
    .qa-answer {
        padding: 15px;
    }

    .qa-q-mark,
    .qa-a-mark {
        margin-bottom: 5px;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.contact-header {
    margin-bottom: 30px;
}

.contact-header .paw-icon {
    font-size: 2em;
    display: block;
    margin-bottom: 5px;
    color: #8b4513;
}

.contact-header h2 {
    font-size: 1.8em;
    color: #333;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-transform: lowercase;
    /* contact は小文字 */
    margin-bottom: 40px;
}

.contact-title {
    font-size: 2em;
    font-weight: bold;
    color: #3f2b23;
    /* 濃い茶色 */
    margin-bottom: 20px;
}

.contact-note {
    font-size: 0.9em;
    color: #333;
    line-height: 1.8;
    margin-bottom: 50px;
}

.contact-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-btn:hover {
    opacity: 0.9;
}

.contact-btn-web {
    background-color: var(--accent-orange);
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
}

.contact-btn-tel {
    background-color: #fff;
    border: 3px solid #3f2b23;
    color: #3f2b23;
    flex-direction: column;
    /* 番ほと時間を縦に配置する場合も考慮、今回は横並びか */
    flex-direction: row;
    gap: 15px;
}

.contact-tel-icon {
    font-size: 1.5em;
}

.contact-tel-number {
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
}

.contact-tel-time {
    font-size: 0.8em;
    font-weight: normal;
}

/* Responsive for Contact */
@media (max-width: 768px) {
    .contact-title {
        font-size: 1.5em;
    }

    .contact-cta-wrapper {
        flex-direction: column;
        padding: 0 20px;
    }

    .contact-btn {
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .contact-btn-tel {
        flex-direction: column;
        gap: 5px;
    }

    .contact-tel-number {
        font-size: 1.8em;
    }
}


.kizuna-banner-section {
    text-align: center;
    padding: 40px 20px;
}

.kizuna-banner-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 80px;
}

/* すべてのセクションに統一した余白を適用 */
.hero,
.message,
.problem,
.service,
.about,
.works,
.qa,
.contact {
    padding: 80px 20px;
    /* お好みの数値に調整（例: 40px, 60px, 80px, 100px） */
}

/* Footer */
.footer {
    background-color: #2d5016;
    /* ダークグリーン */
    color: #333333;
    /* ダークテキスト */
    padding: 60px 0 20px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-info {
    flex: 1;
    max-width: 60%;
    /* 左カラムを60%に */
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    background-color: #ffffff;
    padding: 8px;
    max-width: 300px;
    height: auto;
}

.footer-address,
.footer-contact-info,
.footer-reception-hours,
.footer-note,
.footer-hours,
.footer-holidays {
    font-size: 0.9em;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-contact-info p {
    margin: 5px 0;
}

.footer-note {
    font-size: 0.85em;
    color: #ffffff;
    margin-top: 8px;
}

.footer-map {
    flex: 0 0 40%;
    /* 右カラムを40%に */
    max-width: 40%;
}

.footer-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    /* border-radius: 8px; */
}

.footer-bottom {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
}

.footer-copyright {
    font-size: 0.85em;
    color: #ffffff;
    margin: 0;
}

/* Responsive for Footer */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        gap: 30px;
    }

    .footer-info {
        max-width: 100%;
    }

    .footer-map {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .hero{
    padding:20px 0 0 0}
    
}
/* --- 下の方にある @media (max-width: 768px) の中に追加 --- */
@media (max-width: 768px) {
    .sp-appeal-image {
        display: block; /* スマホの時だけ表示する */
        /* 必要に応じてサイズ調整 */
        width: 100%; 
        height: auto;
    }
    .appeal-image {
       display: none;
    }
}