/* ベース設定 */


@charset "utf-8";

/* すべての要素に適用 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    font-size: 1rem;
    margin: 0px;
    font-family: "Yu Mincho", "Noto Serif JP", serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

img {
    max-width: 100%;

}


/* ヒーローセクション */
.hero {
    margin-top: 70px;
    position: relative;
    text-align: center;
}


.hero h1 {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 1.75rem;
    margin-bottom: 10px;
    color: white;
}

.hero p {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 1.2rem;
    color: white;
}

/* セクション共通 */
.section-header {
    text-align: left;
    color: #fff;
    margin: 0 0 2rem 0;
    padding-top: 5rem;
}

.section-title {
    font-size: 2rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #fff;
}


/* サービスメニュー */
.section {
    background: #000;
    padding: 0px 20px 40px 20px;
    height: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 5%;
}

.service-card {
    background: #565656;
    width: 47.5%;
    height: 50px;
    text-align: center;
    padding: 0;
    margin-bottom: 17.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* 料金案内 */

.price-contents {
    max-width: 100%;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    line-height: 2.5;
}

.price-content {
    width: 100%;
    margin-bottom: 2rem;
}


.price-title {
    width: 100%;
    text-align: left;
    margin: 0 0 0 20px;
}

.price-content p {
    margin: 0;
}


.price-caption {
    color: #fff;
    text-align: center;
}

.ln-btn {
    display: block;
    width: 250px;
    height: 50px;
    background: #565656;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    text-align: center;
    margin: 1rem auto;
    font-family: "Yu Mincho", "Noto Serif JP", serif;
}






/* 選ばれる理由 */
.point-cards {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.point-card {
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    padding: 20px;
    text-align: center;
    color: #fff;
}

.point-img img {
    max-width: 100%;
    border-radius: 1rem;
}

.point-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 15px;

}

.point-caption {
    font-size: 0.95rem;
    margin-top: 10px;
}



/* お問い合わせ */
.company-contents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 40px 0;
}


.company-name {
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 30px;
}

.company-contents img {
    width: 200px;
    margin: 0 auto;
}

.contact-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.line-time {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    margin-top: 10px;

}

.qr-img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.line-btn {
    display: block;
    background: #06c755;
    width: 250px;
    height: 50px;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    /* cursor: pointer; レスポンシブ処理に使用 */
    text-align: center;
    margin: 0 auto;
    font-family: "Yu Mincho", "Noto Serif JP", serif;
}


/* レスポンシブ処理に使用 */
/* .line-btn:hover {
    background: #04b44d;
} */


.contact-right {
    text-align: center;
}

.tel-label {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
}

.tel-link {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
}

/* レスポンシブ処理に使用 */
/* .tel-link:hover {
    text-decoration: underline;
} */




.company-info {
    max-width: 500px;
    /* 横幅を整える */
    margin: 20px auto;
    /* 中央寄せ */
    color: #fff;
}

.company-info ul {
    list-style: none;
    /* リストの点を消す */
    padding: 0;
    margin: 0;
}

.company-info li {
    display: flex;
    justify-content: center;
    /* 横並びにする */
    margin-bottom: 1.25rem;
    /* 行間 */
    border-bottom: #fff solid 1px;
    align-items: end;
}

.company-info .label {
    width: 100px;
    /* ラベル部分の幅 */
    letter-spacing: 1px;
    text-align: center;
}

.company-info .value {
    flex: 1;
    /* 右側を広くとる */
    text-align: center;
    color: #fff;
}

.zip {
    text-transform: none;
    -webkit-text-transform: none;
}


.map {
    position: relative;
    width: 100%;
    /* 親要素に合わせる */
    padding-bottom: 56.25%;
    /* アスペクト比16:9を維持 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    margin: 3rem 0 0 0;
    /* 角丸は任意 */
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* スマホでも横幅いっぱいに */
    height: 100%;
    /* 高さも比率で調整される */
    border: 0;
}




.footer {
    text-align: center;
    /* 中央揃え */
    font-size: 14px;
    /* 少し小さめ文字 */
    color: #fff;
    /* グレーで落ち着いた印象 */
    padding: 60px 10px 0;
    /* 上下に余白 */
    /* 任意で背景色 */
}

.footer p {
    margin: 0;
    /* デフォルトの余白を消す */
}

/* レスポンシブ対応 */
@media (min-width: 768px) {

    html {
        font-size: 20px;
    }

    body {
        font-size: 1rem;
    }

    .section {
        padding: 0px 10vw 40px 10vw;
    }



    .price-contents {
        max-width: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
    }

    .price-content {
        width: 400px;
    }

}