@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
 
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    color: color: rgb(105, 104, 104);
	width:100%;
	overflow-x: hidden !important;
}
ol, ul {
	list-style: none;
}
a {
    text-decoration: none !important;
    color: #212529 !important;
}
a:hover{
opacity:0.8;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ==============================
ここから
============================== */
img {
	vertical-align: bottom;
}
.cta {
    width: 90%;
    margin: auto;
    display: block;
    padding: 3rem 0;
}
.img2 {
    margin-top: -25rem;
}
.cta-2 {
    position: relative;
}
.cta-btn {
    position: absolute;
    bottom: 19%;
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
}
.slider-container {
            position: relative;
            width: 100%;
            max-width: 480px;
            margin: 0 auto;
            background-image: url('https://nagoya-cospa-chintai.com/wp-content/uploads/2025/12/2-scaled.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            padding: 40px 20px;
        }

        .slider-track {
            display: flex;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            touch-action: pan-y pinch-zoom;
        }

        .slide {
            flex: 0 0 100%;
            width: 100%;
            padding: 0 10px;
        }

        .slide img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

        /* 矢印ナビゲーション */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        .slider-nav:active {
            opacity: 0.7;
        }

        .slider-nav.prev {
            left: 8px;
        }

        .slider-nav.next {
            right: 8px;
        }

        .slider-nav svg {
            width: 24px;
            height: 24px;
        }

        .slider-nav.disabled {
            opacity: 0.3;
            pointer-events: none;
        }

        /* ドットインジケーター */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 20px 0;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(59, 130, 180, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
            -webkit-tap-highlight-color: transparent;
        }

        .dot.active {
            background: #3B82B4;
            transform: scale(1.2);
        }

        .dot:active {
            transform: scale(0.9);
        }
/* フローティングボタン */
/* ボタンの基本スタイル */
.floating-line-btn {
  position: fixed;
right: 0;
    left: 0;
    bottom: 20px;
    margin: auto;
    width: 90%;
  height: auto;
  z-index: 9999;
  opacity: 0;           /* 最初は非表示 */
  visibility: hidden;    /* クリックも無効化 */
  transition: opacity 0.3s, visibility 0.3s; /* ふわっと表示させる */
}

.floating-line-btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* 表示状態のクラス */
.floating-line-btn.is-visible {
  opacity: 1;
  visibility: visible;
}