/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 29 2026 | 07:52:00 */
/* 全体コンテナ */
.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;
}

/* H2周り */
.ns-h2-wrapper {
    text-align: center;
    padding: 60px 0 30px;
}

.ns-h2-sub {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    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-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 0 80px;
}

/* カード本体とマウスオンアニメーション */
.ns-card {
    background: #fff;
    border: 1px solid #e0ddd5;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    /* アニメーションの準備 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* ★マウスオン時の動き */
.ns-card:hover {
    transform: translateY(-10px); /* 上に10px浮く */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* 影を濃くする */
}

/* H3デザインリセット */
.ns-card-h3 {
    text-align: center;
    font-size: 1.5rem;
    margin: 0 0 20px !important;
    border: none !important;
}

/* 写真エリア */
.ns-card-photo {
    width: 100%;
    margin-bottom: 20px;
}

.ns-card-photo img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ns-card-divider {
    border-bottom: 1px dotted #ccc;
    margin-bottom: 25px;
}

/* カード内の本文 */
.ns-card p:not(.ns-price) {
    flex-grow: 1;
    text-align: left;
}

/* ★価格：巨大化・センターリング */
.ns-price {
    font-size: 2.0rem !important; /* さらに大きく */
    font-weight: bold;
    color: #c5a059;
    text-align: center; /* 中央寄せ */
    margin: 0 !important;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.ns-price span {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .ns-card-grid {
        grid-template-columns: 1fr;
    }
    .ns-h2-wrapper h1 {
        font-size: 1.6rem;
        letter-spacing: 0.1em;
    }
    .ns-price {
        font-size: 2.2rem !important;
    }
}