/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 05 2026 | 12:05:09 */
/* 全体コンテナ */
.ns-reform-container {
    max-width: 1000px;
    margin: 0 auto;
    color: #332211;
    line-height: 1.8;
}

.ns-reform-container p {
    font-size: 1.2rem;
    margin-bottom: 1.5em;
}

/* 共通見出し */
.ns-h2-wrapper {
    text-align: center;
    padding: 60px 0 30px;
}

.ns-h2-sub {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #4e342e;
}

.ns-h2-wrapper h1 {
    font-size: 2.2rem;
    letter-spacing: 0.4em;
    padding-left: 0.4em;
    margin: 0;
    border: none !important;
}

.ns-h2-line {
    width: 80%;
    margin: 25px auto 0;
    border-bottom: 1px dotted #888;
}

.ns-intro-text {
    text-align: center;
    margin-bottom: 50px;
}

/* 縦並びカードのスタイル */
.ns-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 80px;
}

.ns-v-card {
    background: #fff;
    border: 1px solid #e0ddd5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ns-v-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.ns-v-card-inner {
    display: flex;
    align-items: stretch;
}

/* カード内の写真エリア */
.ns-v-card-photo {
    flex: 0 0 40%; /* 横幅の40%を写真に */
    overflow: hidden;
}

.ns-v-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* カード内の文章エリア */
.ns-v-card-body {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ns-v-card-h3 {
    font-size: 1.5rem;
    margin: 0 0 20px !important;
    border: none !important;
    color: #4e342e;
}

.ns-v-card-body p {
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
}

/* 問い合わせボタン */
.ns-contact-link {
    display: inline-block;
    width: fit-content;
    padding: 12px 40px;
    background-color: #c5a059;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: bold;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.ns-contact-link:hover {
    background-color: #4e342e;
}

/* スマホ対応：縦に積み上げる */
@media (max-width: 768px) {
    .ns-v-card-inner {
        flex-direction: column;
    }
    .ns-v-card-photo {
        width: 100%;
        height: 200px;
    }
    .ns-v-card-body {
        padding: 30px 20px;
    }
    .ns-contact-link {
        width: 100%;
        text-align: center;
    }
    .ns-h2-wrapper h1 {
        font-size: 1.6rem;
    }
}