@charset "UTF-8";


body {
    margin: 0;
    padding: 0;
    font-family:
        "Yu Mincho", "YuMincho",
        /* Windows/Mac用游明朝 */
        "Hiragino Mincho ProN",
        /* Mac/iPhone用ヒラギノ明朝 */
        "MS PMincho",
        /* 古いWindows用 */
        "Noto Serif JP",
        /* Webフォント（バックアップ） */
        serif;
    /* 最終手段の明朝体指定 */

    color: #333;
    -webkit-font-smoothing: antialiased;
    /* 文字の縁を滑らかにする（Mac/iOS用） */

    /* ▼ 背景画像を1枚で固定にする設定 ▼ */

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}


@media screen and (min-width: 1000px) {
    body {
        background: #42443d
    }
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   コンテンツエリア（スマホファースト）
   ============================================ */
.article {
    width: 100%;
    max-width: 430px;
    margin: 0px 20%;
    position: relative;
    z-index: 2;
    background-color: #fff;
    background-image: url('img/back.jpg');
    background-repeat: repeat;
    /* 画像が足りない場合に繰り返す設定（必要に応じて調整） */
    background-size: auto;
    /* または cover など、要件に合わせて */
}

.section {
    padding: 40px 20px;
    /* min-height: 80vh;  */
    margin-bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    /* コンテンツが読めるように少し白を乗せる、あるいは透明にする */
}



#sec01 {
    background-color: #FEDF48;
    color: #fff;
}

/* #sec02 { background-color: #3cb371; color: #fff; } */
#sec03 {
    background-color: #f0e68c;
    color: #333;
    margin-bottom: 35px;
}

#sec04 {
    background-color: #006400;
    color: #fff;
    margin-bottom: 40px;
}



/* ============================================
   ナビゲーション（PC用サイドメニュー）
   ============================================ */
.nav_wrapper {
    display: none;
}

@media screen and (min-width: 1000px) {
    .nav_wrapper {
        display: block;
        position: fixed;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        pointer-events: none;
    }

    .nav_list {
        position: absolute;
        top: 50%;
        transform: translateY(-43%);
        right: calc(52% - 225px - 34px);
        list-style: none;
        padding: 0;
        margin: 0;
        letter-spacing: 0.1em;
        pointer-events: auto;
    }

    .nav_list li {
        margin-bottom: 15px;
        background: none;
        border: none;
        transition: transform 0.3s;
    }

    .nav_list li {
        margin-bottom: 10px;
        border-radius: 10px;
        transition: transform 0.3s;
    }

    .nav_list li:hover {
        transform: translateX(-5px);
    }

    .nav_list a {
        display: block;
        padding: 15px 30px;
        text-decoration: none;
        /* font-weight: 700; */
        color: #fff;
    }
}


/* ============================================
   ▼▼▼ ハンバーガーメニュー追加スタイル ▼▼▼
   ============================================ */

.hamburger-btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    border-radius: 5px;
    z-index: 100;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* 3本線の共通設定 */
.hamburger-btn .bar {
    display: block;
    position: absolute;
    left: 10px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s;
}

/* 開いた時（.active）は線を白くする */
.hamburger-btn.active .bar {
    background-color: #fff;
}

/* 線の位置 */
.hamburger-btn .bar-top {
    top: 13px;
}

.hamburger-btn .bar-mid {
    top: 23px;
}

.hamburger-btn .bar-bottom {
    top: 33px;
}

/* --- メニューが開いた時のボタンの変化（×印にする） --- */
.hamburger-btn.active .bar-top {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-btn.active .bar-mid {
    opacity: 0;
    /* 真ん中の線を消す */
}

.hamburger-btn.active .bar-bottom {
    transform: translateY(-10px) rotate(-45deg);
}

/* --- スマホ用メニュー本体のスタイル --- */
.sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #50524C;
    z-index: 99;

    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* クラスがついたら表示 */
.sp-nav.active {
    opacity: 1;
    visibility: visible;
}

.sp-nav_list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: -90px;
}

.sp-nav_item {
    margin: 20px 0;
}

.sp-nav_item a {
    display: block;
    font-size: 1.2rem;
    /* font-weight: bold; */
    color: #fff;
    text-decoration: none;
    padding: 10px;
}




@media screen and (max-width: 600px) {
    .article {
        margin: 0px auto;
    }

    #sec01::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 150px;


        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.5) 0%,
                rgba(0, 0, 0, 0) 100%);
        z-index: 5;

        pointer-events: none;

    }


}




/* --- PCサイズ（1000px以上）では非表示にする --- */
@media screen and (min-width: 1000px) {
    .hamburger-btn {
        display: none;
    }

    .sp-nav {
        display: none !important;
    }
}


/* --- 共通：画像の基本設定 --- */
.logo img,
.pc-logo img {
    display: block;
    width: auto;
    height: auto;
}

/* --- SP用ヘッダー（初期表示・スマホ用） --- */
.sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    /* background-color: rgba(255, 255, 255, 0.9);  */
    display: flex;
    align-items: center;
    padding-left: 20px;
    box-sizing: border-box;
    z-index: 90;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1);  */
}

.sp-header .logo img {
    max-height: 46px;
    margin-top: 21px;
}


.article {
    padding-bottom: 95px;
}

/* PC用ロゴはスマホでは隠す */
.pc-logo {
    display: none;
}

.pc-reserve-btn {
    display: block;
    position: absolute;
    right: calc(57% - 225px - 200px);
    top: calc(50% + 200px);
    z-index: 6;
    pointer-events: auto;
}

.pc-reserve-btn.pc-salon-btn {
    top: calc(42% + 286px);
    right: calc(57% - 226px - 200px);
}

.pc-reserve-btn.pc-salon-btn a {
    background-color: #fff;
    color: #50524C;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.pc-reserve-btn a {
    display: inline-block;
    width: 180px;
    padding: 20px 0;
    background-color: #fff;
    color: #50524C;
    text-decoration: none;
    text-align: center;
    /* font-weight: bold; */
    border-radius: 65px;
    border: none;
    letter-spacing: 0.1em;
    position: relative;
    padding-right: 40px;

    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ▼▼▼ ホバー時の動き ▼▼▼ */
.pc-reserve-btn a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 矢印の「線（軸）」の部分 */
.pc-reserve-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 35px;
    /* 右端からの位置 */
    width: 30px;
    /* 矢印の線の長さ */
    height: 1px;
    /* 矢印の線の太さ */
    background-color: #50524C;
    /* 線の色 */
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

/* 矢印の「先端（くの字）」の部分 */
.pc-reserve-btn a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 35px;
    /* 線と同じ位置からスタート */
    width: 6px;
    /* 先端のサイズ */
    height: 6px;
    /* 先端のサイズ */
    border-top: 1px solid #50524C;
    /* 先端の太さ */
    border-right: 1px solid #50524C;
    /* 先端の太さ */
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
    z-index: 1;
}

.pc-reserve-btn.pc-salon-btn a::after {
    background-color: #50524C;
}

.pc-reserve-btn.pc-salon-btn a::before {
    border-top: 1px solid #50524C;
    /* 先端の太さ */
    border-right: 1px solid #50524C;
}

/* ホバー時に矢印全体を少し右に動かす */
.pc-reserve-btn a:hover::after,
.pc-reserve-btn a:hover::before {
    right: 25px;
}

/* --- PC表示時（1000px以上）のスタイル上書き --- */
@media screen and (min-width: 1000px) {

    /* SPヘッダーを隠す */
    .sp-header {
        display: none;
    }

    /* PC用コンテンツの余白調整（SPの余白をリセット） */
    .article {
        padding-top: 0;
        padding-bottom: 0px;
    }

    .nav_wrapper {
        display: block;
        position: fixed;
        top: 45%;
        transform: translateY(-50%);
        width: 100%;
        z-index: 5;
        pointer-events: none;
    }

    .pc-logo {
        display: block;
        position: absolute;
        right: calc(55% - 225px - 200px);
        bottom: calc(50% + 180px);
        z-index: 6;
        pointer-events: auto;
    }

    .pc-logo img {
        max-width: 250px;
        height: auto;
    }



    /* ホバー時に少し左に動かすアニメーション（不要なら削除OK） */
    .nav_list li:hover {
        transform: translateX(-5px);
    }

    /* --- リンク（文字）のスタイル --- */
    .nav_list a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        /* font-weight: 700; */
        color: #fff;
        transition: color 0.3s;
    }

    /* ▼▼▼ 追加：文字色だけを変える設定 ▼▼▼ */
    .nav_list a:hover {
        color: #959692;
    }

}

/* スマホではPC用の予約ボタンを隠す */
@media screen and (max-width: 999px) {
    .pc-reserve-btn {
        display: none;
    }


}






/* --- Section1(FV)のレイアウト --- */
#sec01 {
    position: relative;
    padding: 0;
    height: 70vh;
    overflow: hidden;
    background-color: transparent;
}

/* スライドショーの設定 */
.fv-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fv-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.fv-content {
    position: absolute;
    z-index: 10;
    height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 25px 80px;
    color: #fff;

    opacity: 0;
    animation: fvFadeUp 1.5s ease-out forwards;
    animation-delay: 0.5s;

    bottom: 23%;
    text-align: right;
}

@keyframes fvFadeUp {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.fv-sub-copy {
    font-size: 1.2rem;
    margin-bottom: 2px;
    letter-spacing: 0.1em;
}

.fv-main-copy {
    font-size: 2.1rem;
    line-height: 0;
    margin-bottom: 19px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.fv-main-copy02 {
    font-size: 2.2rem;
    line-height: 0;
    margin-bottom: 28px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.fv-description {
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* --- スクロールダウン全体の配置 --- */
.scrolldown {
    position: absolute;
    right: 46%;
    bottom: -180px;
    z-index: 10;
    width: 1px;
}

/* 「SCROLL」のテキスト部分 */
.scrolldown span {
    position: absolute;
    left: 4px;
    bottom: 20px;
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: #fff;
    font-family: sans-serif;
}

/* 矢印の「線」の部分 */
.scrolldown::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 70px;
    background: #fff;
}

/* 矢印の「先端（くの字）」の部分 */
.scrolldown::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -2.5px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* --- 上下に動くアニメーション --- */
@keyframes scrollMove {
    0% {
        transform: translateY(-10px);
        /* 上に10px */
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        /* 下に10px */
        opacity: 0;
    }
}

.scrolldown {
    animation: scrollMove 3s infinite;
}


/* SP用予約ボタン（画像のデザインを再現） */
.btn-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    height: 65px;
    background-color: #50524C;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.1rem;
    position: relative;
}

.btn-reserve .arrow {
    margin-left: 20px;
    width: 40px;
    height: 1px;
    background-color: #fff;
    position: relative;
}

.btn-reserve .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}


/* ============================================
   ▼▼▼ スマホ用固定予約ボタン ▼▼▼
   ============================================ */
.sp-fixed-btn {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 10px;
    box-sizing: border-box;
    /* display: flex;
    justify-content: space-between;
    pointer-events: none; */
}

.sp-fixed-btn a {
    pointer-events: auto;
}

.sp-fixed-btn .reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    height: 60px;
    background-color: #50524C;
    color: #fff;
    text-decoration: none;
    border-radius: 55px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, transform 0.3s;
}

.sp-fixed-btn .reserve-btn:hover {
    opacity: 0.9;
}

.sp-fixed-btn .slon-btn-outline {
    border-radius: 55px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

/* 矢印（既存のデザインを踏襲） */
.sp-fixed-btn .arrow {
    margin-left: 9px;
    width: 28px;
    height: 1px;
    background-color: #fff;
    position: relative;
    display: block;
}

.sp-fixed-btn .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* 1000px以上では非表示 */
@media screen and (min-width: 1000px) {
    .sp-fixed-btn {
        display: none;
    }
}





/* ============================================
   ▼▼▼ 以上はスマホファーストの共通▼▼▼
   ============================================ */

/* ============================================
   ▼▼▼ 以下からコンテンツ▼▼▼
   ============================================ */



p.title01 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 45px;
}

p.title02 {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

p.title03 {
    text-align: center;
    font-size: 0.9rem;

}

.first-lead {
    margin: 70px 20px 110px;
}



/* ============================================
   ABOUT Section
   ============================================ */
.about-section {
    padding: 0px 30px 80px;
    background-color: transparent;
}

.about-content {
    max-width: 600px;
    /* スマホ・PC兼用の程よい幅 */
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #50524C;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
    /* デザインに合わせて調整。ゴシック系 */
    line-height: 1;
}

.about-subtitle {
    font-size: 0.9rem;
    color: #50524C;
    margin-bottom: 50px;
    font-family: "Noto Serif JP", serif;
}

.about-text-wrap {
    margin-bottom: 40px;
}

.about-catch {
    font-size: 1.2rem;
    color: #50524C;
    margin-bottom: 15px;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.05em;
}

.about-desc {
    font-size: 0.95rem;
    color: #50524C;
    line-height: 1.8;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.05em;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    /* デザインに合わせて必要なら角丸などを追加 */
}

/* PC調整 */
@media screen and (min-width: 1000px) {
    .about-content {
        max-width: 800px;
        margin: 0 auto;
    }
}








/* ============================================
   SERVICE Section
   ============================================ */
.service-section {
    background-color: #50524C;
    color: #fff;
    padding: 60px 30px 80px;
}

.service-content {
    max-width: 600px;
    margin: 0 auto;
}

.service-header {
    text-align: right;
    /* タイトルは右寄せ */
    margin-bottom: 60px;
}

.service-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
}

.service-subtitle {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0;
    font-family: "Noto Serif JP", serif;
}

.service-item {
    margin-bottom: 60px;
}

.service-item-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    font-family: "Noto Serif JP", serif;
}

.service-item-desc {
    font-size: 0.9rem;
    line-height: 2;
    margin-bottom: 30px;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.05em;
    text-align: justify;
}

.service-item-img img {
    width: 100%;
    height: auto;
    display: block;
}

.service-footer-text {
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 20px;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.05em;
}

/* PC調整 */
@media screen and (min-width: 1000px) {
    .service-content {
        max-width: 800px;
        margin: 0 auto;
    }
}


/* ============================================
   STAFF Section
   ============================================ */
.staff-section {
    padding: 80px 20px;
    text-align: center;
    background-color: transparent;
    /* 背景画像を表示 */
}

.staff-title {
    font-size: 3rem;
    font-weight: 800;
    color: #50524C;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
}

.staff-subtitle {
    font-size: 0.9rem;
    color: #50524C;
    margin-bottom: 60px;
    font-family: "Noto Serif JP", serif;
}

.staff-catch {
    font-size: 1.2rem;
    color: #50524C;
    margin-bottom: 30px;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.05em;
}

.staff-desc {
    font-size: 1rem;
    color: #50524C;
    line-height: 2;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.05em;
}

/* ============================================
   CONTACT Section
   ============================================ */
.contact-section {
    padding: 0px 20px 80px;
    text-align: center;
    background-color: transparent;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    color: #50524C;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;
}

.contact-subtitle {
    font-size: 0.9rem;
    color: #50524C;
    margin-bottom: 60px;
    font-family: "Noto Serif JP", serif;
}

.contact-desc {
    font-size: 1rem;
    color: #50524C;
    line-height: 2;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.05em;
}

.contact-cta {
    display: inline-block;
    position: relative;
    padding: 0 50px;
    margin-top: 20px;
    background-color: transparent;
    color: #50524C;
}

/* 斜線の装飾 */
.contact-cta::before,
.contact-cta::after {
    content: "";
    position: absolute;
    top: 61%;
    width: 1px;
    height: 90px;
    background-color: #50524C;
}

.contact-cta::before {
    left: 0;
    transform: translateY(-50%) rotate(-25deg);
}

.contact-cta::after {
    right: 0;
    transform: translateY(-50%) rotate(25deg);
}

.cta-sub {
    font-size: 1.15rem;
    font-family: "Noto Serif JP", serif;
    margin-bottom: 5px;
    letter-spacing: 0.1em;
}

.cta-main {
    font-size: 2.2rem;
    font-family: "Noto Serif JP", serif;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-top: 0px;
}



/* --------------------------------------------
   Contact Form Styles
   -------------------------------------------- */
.contact-form-container {
    background-color: #fff;
    padding: 60px 25px;
    margin: 30px auto 0;
    border-radius: 4px;
    /* デザインに合わせて調整。画像では四角めだが背景との境目が白いカード風 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    text-align: left;
}

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

.form-item label {
    display: block;
    font-size: 1.1rem;
    color: #50524C;
    margin-bottom: 12px;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.05em;
}

.form-item input,
.form-item textarea {
    width: 100%;
    padding: 20px;
    background-color: #f2f2f2;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
}

.form-item input::placeholder,
.form-item textarea::placeholder {
    color: #9da0a4;
    /* デザインのような薄い色 */
}

.form-item textarea {
    height: 200px;
    resize: none;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.submit-btn {
    background-color: #50524C;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px 80px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: opacity 0.3s;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 0.1em;
}

.submit-btn:hover {
    opacity: 0.8;
}

/* PC調整 */
@media screen and (min-width: 1000px) {
    .contact-form-container {
        max-width: 700px;
        padding: 80px 20px;
    }
}


/* フッター全体のスタイル */

section#sec10 {
    padding: 40px 20px 90px;
}

.footer {
    background-color: #50524C;
    color: #fff;
    padding: 50px 25px 30px;
    text-align: center;
}

.footer-inner {
    max-width: 393px;
    margin: 0 auto;
}

/* ロゴ */
.footer-logo {
    width: 200px;
    margin: 0 auto 40px;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

/* SNSアイコン */
.footer-sns {
    margin-bottom: 34px;
}

.footer-sns img {
    width: 40px;
    height: auto;
    transition: opacity 0.3s;
}

.footer-sns a:hover img {
    opacity: 0.7;
}

/* 住所情報 */
.footer-info {
    margin-bottom: 27px;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.footer-info .zip {
    font-size: 0.9rem;
    margin-bottom: -18px;
}

.footer-info .address {
    font-size: 0.9rem;
    font-weight: 400;
}

/* コピーライト */
.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
}

.footer-copy small {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* PCサイズ時の微調整 */
@media screen and (min-width: 1000px) {
    .footer {
        padding: 80px 0 40px;
    }

    .footer-inner {
        max-width: 800px;
    }
}