/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクション共通 */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: #d4567a;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f8b5c8, #d4567a);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ヒーローエリア */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/bg_sakura_pink.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 40px;
    text-align: center;
}

.main-catch {
    font-size: 3rem;
    font-weight: 700;
    color: #d4567a;
    line-height: 1.3;
    display: block;
    text-shadow: 0 2px 4px rgba(212, 86, 122, 0.1);
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.hero-flex-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.hero-text {
    flex: 1;
    padding: 0;
}

.service-title {
    margin-bottom: 40px;
    margin-top: 0;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(212, 86, 122, 0.1);
    backdrop-filter: blur(10px);
}

.service-title h2 {
    font-size: 1.8rem;
    color: #d4567a;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-title .subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

.hero-message {
    margin-bottom: 40px;
    color: #555;
}

.hero-message p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.hero-message p:last-child {
    margin-bottom: 20px;
    color: #555;
}

.hero-image {
    flex: 1;
    text-align: center;
    margin-top: 0;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(212, 86, 122, 0.2);
}

/* CTAボタン */
.cta-button {
    display: inline-block;
    padding: 20px 40px;
    background: linear-gradient(135deg, #f8b5c8, #d4567a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 86, 122, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 86, 122, 0.4);
}

.cta-button.large {
    padding: 25px 50px;
    font-size: 1.3rem;
    margin: 30px 0;
}

.cta-main {
    text-align: center;
}

.cta-mid {
    text-align: center;
    margin-top: 40px;
    padding: 30px 0;
}

/* 共感パート */
.empathy {
    background: #fefefe;
    position: relative;
}

.empathy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/bg_roses.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
}

.empathy .container {
    position: relative;
    z-index: 2;
}

.empathy-image {
    text-align: center;
    margin: 40px 0 50px 0;
}

.empathy-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 86, 122, 0.15);
    max-height: 400px;
    object-fit: cover;
}

.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.empathy-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 86, 122, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #f8b5c8;
}

.empathy-item:hover {
    transform: translateY(-5px);
}

.empathy-item.highlight {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    border-left-color: #d4567a;
}

.empathy-item h3 {
    color: #d4567a;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.empathy-message {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(212, 86, 122, 0.1);
}

.empathy-message h3 {
    color: #d4567a;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.empathy-message p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

/* 心の奥では…セクション（横長中央配置） */
.heart-message {
    margin: 50px 0;
    display: flex;
    justify-content: center;
}

.heart-content {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(212, 86, 122, 0.15);
    border: 2px solid #f8b5c8;
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
}

.heart-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d4567a, #f8b5c8);
    border-radius: 2px;
}

.heart-content h3 {
    color: #d4567a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    font-style: italic;
}

.heart-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

/* あなたは一人じゃありませんセクション */
.reassurance {
    margin: 50px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(212, 86, 122, 0.1);
}

.reassurance h3 {
    color: #d4567a;
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.reassurance p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reassurance p:last-child {
    margin-bottom: 0;
}

/* エンパワーメントメッセージ */
.empowerment-message {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 86, 122, 0.1);
}

.empowerment-message p {
    font-size: 1.3rem;
    color: #d4567a;
    font-weight: 600;
    line-height: 1.8;
    margin: 0 0 30px 0;
}

.empowerment-cta {
    margin-top: 30px;
    text-align: center;
}

.empowerment-cta .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4567a 0%, #c44569 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 86, 122, 0.3);
}

.empowerment-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 86, 122, 0.4);
}

/* クライアント事例プレビュー */
.client-preview {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    border-left: 4px solid #d4567a;
}

.client-preview p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

/* サービス説明 */
.service {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.service-philosophy {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-quote {
    font-size: 2rem;
    color: #d4567a;
    font-weight: 500;
    margin-bottom: 30px;
    font-style: italic;
}

.philosophy-image {
    text-align: center;
    margin: 30px 0;
}

.philosophy-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 86, 122, 0.15);
    max-height: 350px;
    object-fit: cover;
}

.why-section {
    margin-bottom: 60px;
}

.why-title-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.why-title-box h3 {
    font-size: 1.8rem;
    color: #d4567a;
    margin: 0 0 20px 0;
}

.why-title-box p {
    margin: 0;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.why-section h3 {
    font-size: 1.8rem;
    color: #d4567a;
    text-align: center;
    margin-bottom: 40px;
}

.why-explanation {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.why-explanation p {
    margin: 0;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.why-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 86, 122, 0.1);
}

.why-item h4 {
    color: #d4567a;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* 特徴 */
.features {
    margin-bottom: 60px;
}

.features h3 {
    font-size: 1.8rem;
    color: #d4567a;
    text-align: center;
    margin-bottom: 10px;
}

.features-subtitle {
    font-size: 1.8rem;
    color: #d4567a;
    text-align: center;
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: 500;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 86, 122, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8b5c8, #d4567a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.feature-item h4 {
    color: #d4567a;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* セッション情報 */
.session-info {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.session-info h3 {
    font-size: 1.8rem;
    color: #d4567a;
    text-align: center;
    margin-bottom: 40px;
}

/* セッション内容セクション */
.session-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(212, 86, 122, 0.1);
}

.session-content h3 {
    color: #d4567a;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.session-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.session-info h4 {
    color: #d4567a;
    font-size: 1.3rem;
    margin-bottom: 20px;
    margin-top: 0;
}

.session-info ul {
    list-style: none;
    padding-left: 0;
}

.session-info li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.session-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4567a;
    font-weight: bold;
}

/* 料金セクション */
.pricing {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.pricing h4 {
    color: #d4567a;
    font-size: 1.3rem;
    margin-bottom: 20px;
    margin-top: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.pricing-item h5 {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d4567a;
    margin: 0;
}

.price-note {
    font-size: 0.9rem;
    color: #d4567a;
    font-weight: normal;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-item h5 {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
}

.payment {
    font-size: 1.1rem;
    font-weight: bold;
    color: #d4567a;
    margin: 0;
}

.price-list {
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 500;
}

.price-value {
    font-weight: bold;
    color: #d4567a;
}

.price-note {
    font-size: 0.9rem;
    color: #d4567a;
    font-weight: normal;
}

.guarantee {
    background: #fdf2f8;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #d4567a;
    font-weight: 500;
    text-align: center;
}

/* ベネフィット */
.benefits {
    background: #fefefe;
}

/* セッション内容セクション */
.session {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.before, .after {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 86, 122, 0.1);
    position: relative;
}

.before {
    border-left: 6px solid #f87171;
}

.before h3 {
    color: #f87171;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.after {
    border-left: 6px solid #10b981;
}

.after h3 {
    color: #10b981;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.before ul, .after ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.before li, .after li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.icon-x::before {
    content: "×";
    color: #f87171;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.icon-check::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.arrow {
    font-size: 2rem;
    color: #d4567a;
    font-weight: bold;
    text-align: center;
}



.before ul, .after ul {
    list-style: none;
    padding-left: 0;
}

.before li, .after li {
    padding: 8px 0;
    position: relative;
}



.arrow {
    font-size: 2rem;
    color: #d4567a;
    font-weight: bold;
}

.main-benefits h3 {
    font-size: 1.8rem;
    color: #d4567a;
    text-align: center;
    margin-bottom: 40px;
}

.transition-image {
    text-align: center;
    margin: 50px 0;
}

.transition-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: 400px;
    object-fit: cover;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(212, 86, 122, 0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h4 {
    color: #d4567a;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.long-term {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    border-radius: 20px;
}

.long-term h3 {
    color: #d4567a;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.long-term p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

/* お客様の声 */
.testimonial {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto 40px auto;
    max-width: 800px;
}

.testimonial-with-image {
    display: block;
    max-width: 900px;
}

.testimonial-with-image .testimonial-header {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-body {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.testimonial-image {
    flex: 0 0 250px;
    text-align: center;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    max-height: 300px;
}

.testimonial-text {
    flex: 1;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 15px;
}

.testimonial-with-image .testimonial-header {
    text-align: left;
}

.testimonial-header h3 {
    color: #d4567a;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

.testimonial-card h3 {
    color: #d4567a;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.client-name {
    font-weight: bold;
    color: #d4567a;
    margin-bottom: 20px;
}

.testimonial-content blockquote {
    border-left: 4px solid #f8b5c8;
    padding-left: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-content blockquote p {
    margin-bottom: 15px;
    color: #555;
}

/* プロフィール */
.profile {
    background: #fefefe;
}

.profile-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.profile-image {
    text-align: center;
}

.profile-image img {
    width: 100%;
    border-radius: 20px;
}

.profile-text h3 {
    color: #d4567a;
    font-size: 2rem;
    margin-bottom: 10px;
}

.qualification {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.profile-section {
    margin-bottom: 30px;
}

.profile-section:first-of-type {
    margin-top: 30px;
}

.profile-section h4 {
    color: #d4567a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.profile-section h4:nth-of-type(2) {
    margin-top: 40px;
}

.profile-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.profile-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.detail-section h4 {
    color: #d4567a;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
}

.detail-section li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.detail-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4567a;
    font-weight: bold;
}

.profile-message {
    font-size: 1.1rem;
    color: #d4567a;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    background: #fdf2f8;
    border-radius: 15px;
}

/* セッション内容 */
.session {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.session-flow {
    text-align: center;
    font-size: 1.1rem;
    color: #d4567a;
    font-weight: 600;
    margin: 15px 0 25px 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    border: 2px solid #f8b5c8;
}

/* CTA セクション */
.cta-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/bg_sakura.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content > p:first-child {
    margin-top: 10px;
    margin-bottom: 60px;
}

.cta-philosophy-header {
    text-align: center;
    margin-bottom: 40px;
}

.cta-philosophy {
    font-size: 1.8rem;
    color: #d4567a;
    font-weight: 500;
    margin-bottom: 30px;
    font-style: italic;
}

.consultation-info,
.limited-offer,
.guarantee,
.recommended {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(212, 86, 122, 0.1);
}

.consultation-info h3,
.limited-offer h3,
.guarantee h3,
.recommended h3 {
    color: #d4567a;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.consultation-details ul,
.guarantee ul,
.recommended ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.consultation-details li,
.guarantee li,
.recommended li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.consultation-details li::before,
.guarantee li::before,
.recommended li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4567a;
    font-weight: bold;
}

.offer-text {
    font-size: 1.2rem;
    color: #d4567a;
    font-weight: 500;
}

.cta-button-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(212, 86, 122, 0.1);
}

.cta-button-section h3 {
    color: #d4567a;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

.final-message {
    background: #fefefe;
    padding: 50px 60px;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 1px solid #e5e5e5;
    font-family: 'Noto Sans JP', serif;
    line-height: 2;
    max-width: 700px;
    margin: 0 auto;
}

.final-message::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #f8f8f8 0%, #ffffff 100%);
    border-radius: 5px;
    z-index: -1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.final-message::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="%23d4567a" stroke-width="2" opacity="0.3"/><text x="50" y="60" text-anchor="middle" font-family="serif" font-size="40" fill="%23d4567a" opacity="0.4">✉</text></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.final-message h3 {
    color: #d4567a;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 2px;
    position: relative;
}

.final-message h3::after {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background: #d4567a;
    margin: 15px auto 0;
    opacity: 0.5;
}

.final-message p {
    margin-bottom: 25px;
    line-height: 2.2;
    color: #444;
    font-size: 1rem;
    text-align: center;
    text-indent: 0;
}

.signature {
    font-size: 1.3rem;
    color: #d4567a;
    font-weight: 500;
    margin-top: 40px;
    text-align: center;
    font-family: 'Noto Sans JP', serif;
    letter-spacing: 1px;
    position: relative;
}

.final-cta {
    text-align: center;
    margin-top: 40px;
}

/* フッター */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .main-catch {
        font-size: 2.2rem;
    }

    .service-title h2 {
        font-size: 1.5rem;
    }

    .empathy-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .session-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-with-image {
        display: block;
    }

    .testimonial-body {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-image {
        flex: none;
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }

    .testimonial-image img {
        max-width: 250px;
        max-height: 250px;
    }

    .profile-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .profile-details {
        grid-template-columns: 1fr;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .cta-button.large {
        padding: 20px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-catch {
        font-size: 1.8rem;
    }

    .service-title {
        padding: 20px;
    }

    .service-title h2 {
        font-size: 1.3rem;
    }

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

    .cta-philosophy {
        font-size: 1.4rem;
    }
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-section h3 {
    color: #d4669a;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid #f8e8f0;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #e8b4d1;
    box-shadow: 0 4px 20px rgba(212, 102, 154, 0.1);
}

.faq-question {
    padding: 20px 25px;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
}

.faq-question h4 {
    color: #d4669a;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    color: #d4669a;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-flex-section {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .hero-text {
        order: 2;
        margin-bottom: 0;
    }
    
    .hero-image {
        order: 1;
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .faq-section {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    
    .heart-content {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .heart-content h3 {
        font-size: 1.3rem;
    }
    
    .heart-content p {
        font-size: 1rem;
    }
}


/* CTA Philosophy Image */
.cta-philosophy-image {
    text-align: center;
    margin-top: 30px;
}

.cta-philosophy-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
}

@media (max-width: 768px) {
    .cta-philosophy-image img {
        width: 150px;
        height: 150px;
    }
}


/* モバイル用の手紙風スタイル */
@media (max-width: 768px) {
    .final-message {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .final-message::after {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .final-message h3 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .final-message p {
        font-size: 0.95rem;
        line-height: 2;
        text-indent: 0;
        text-align: center;
    }
    
    .signature {
        font-size: 1.1rem;
        margin-top: 30px;
        text-align: center;
    }
}


/* 花柄ライン */
.floral-divider {
    padding: 60px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    position: relative;
}

.floral-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/bg_sakura.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
}

.floral-line {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.floral-icon {
    color: #d4567a;
    font-size: 2rem;
    margin: 0 20px;
    opacity: 0.8;
    animation: floralGlow 3s ease-in-out infinite alternate;
}

.floral-line-element {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #d4567a 20%, #f8b5c8 50%, #d4567a 80%, transparent 100%);
    opacity: 0.6;
    position: relative;
}

.floral-line-element::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 86, 122, 0.3) 20%, rgba(248, 181, 200, 0.5) 50%, rgba(212, 86, 122, 0.3) 80%, transparent 100%);
    border-radius: 2px;
}

@keyframes floralGlow {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* モバイル用の花柄ライン */
@media (max-width: 768px) {
    .floral-divider {
        padding: 40px 0;
    }
    
    .floral-icon {
        font-size: 1.5rem;
        margin: 0 15px;
    }
    
    .floral-line {
        max-width: 300px;
    }
}


/* 花のボーダーライン */
.floral-border-divider {
    padding: 0;
    background-image: url('assets/images/floral_border_transparent.png');
    background-repeat: repeat-x;
    background-position: center;
    background-size: auto 50px;
    height: 50px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.floral-border-divider .container {
    display: none;
}

.floral-border-image {
    display: none;
}

/* モバイル用の花のボーダーライン */
@media (max-width: 768px) {
    .floral-border-divider {
        height: 40px;
        background-size: auto 40px;
    }
}

@media (max-width: 480px) {
    .floral-border-divider {
        height: 35px;
        background-size: auto 35px;
    }
}


/* 画像パフォーマンス最適化 */
img {
    loading: lazy;
    decoding: async;
}

/* 画像の段階的読み込み効果 */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* 重要な画像（ファーストビュー）は即座に読み込み */
.hero img,
.service-title img {
    loading: eager !important;
}

/* 画像コンテナの最適化 */
.testimonial-image,
.profile-image,
.transition-image {
    will-change: transform;
    contain: layout style paint;
}

/* 背景画像の最適化 */
.hero,
.service-title,
.empathy,
.why-choose,
.benefits,
.testimonial,
.profile,
.cta-section {
    background-attachment: scroll;
    will-change: scroll-position;
}

/* プリロード用のスタイル */
.image-preload {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

