* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2742;
    --secondary-color: #2c3e5d;
    --accent-color: #c9a961;
    --text-color: #333;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --before-color: #798495;
    --after-color: #c9a961;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x:hidden;

}
img {
    max-width: 100%;
}

.trigger-concerns.display_sp, .display_sp
{
    display: none;
}
.trigger-concerns.display_pc, .display_pc
{
    display: block;
}
/* ヘッダー */
header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.sk_logo
{
    max-width: 180px;
    vertical-align: bottom;
    margin-right: 10px;
}
.header-cta {
    background: linear-gradient(135deg, #1CC3AF 0%, #13a595 100%);
    color: #fff;
    padding: 0.3rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.header-cta:hover {
    background: #fff;
    transform: translateY(-2px);
    color: #13a595;
}

/* セクション共通 */
section {
    padding: 5rem 1.5rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}


/* セクション共通 */
section {
    padding: 5rem 1.5rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    line-height: 1.4;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* ファーストビュー */
#hero {
    background: linear-gradient(135deg, rgba(26, 39, 66, 0.85) 0%, rgba(44, 62, 93, 0.85) 100%), url("https://souzokushisannavi.com/ss19k/hm/0306/img/fv_bg.jpeg") center / cover no-repeat;;
    color: var(--white);
    padding: 3rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 39, 66, 0.3);
    z-index: 0;
}
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-template-rows: auto auto;
    grid-template-areas:
        "ttl ttl"
        "content image";
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 上段中央 */
.hero-ttl {
    grid-area: ttl;
    text-align: center;
}

/* 下段左 */
.hero-content {
    grid-area: content;
}

/* 下段右 */
.hero-image {
    grid-area: image;
}

.hero-content {
    text-align: left;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: block;
}

.hero-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 39, 66, 0.95) 0%, rgba(26, 39, 66, 0.85) 70%, transparent 100%);
    padding: 2rem 1rem 1.5rem;
    border-radius: 0 0 13px 13px;
}

.caption-name {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
}
.caption-name span
{
    background-color: #ffffff;
    color: #1a2742;
    padding: .1rem .3rem;
    border-radius: 5px;
    font-size: .9rem;
}

.caption-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent-color);
    line-height: 1.5;
}
.hero-label {
    display: inline-block;
    background: rgba(201, 169, 97, 0.2);
    color: var(--accent-color);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 2px solid var(--accent-color);
    letter-spacing: 0.05em;
}
.hero-label span
{
    font-size: 1.8rem;
    font-family : YuMincho,	'Yu Mincho', serif;
    font-weight: bold;
    font-style: italic;
}
.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}
.hero-catch{
    font-family : YuMincho,	'Yu Mincho', serif;
    font-size:2.2rem;
    font-weight:900;
    line-height:1.6;
    letter-spacing:.05em;
    margin-bottom:.8rem;
    background: linear-gradient(90deg, #b39855 0%, #fff9e6 50%, #b39855 100%);
    background: -webkit-linear-gradient(0deg, #b39855 0%, #fff9e6 50%, #b39855 100%);
    -webkit-text-fill-color: transparent;
}

.hero-title{
    font-size:3.8rem;
    font-weight:900;
    line-height:1.35;
    letter-spacing:.04em;
    margin-bottom:1.2rem;
}

/* 2行目を強調 */
.hero-title .accent{
    display:inline-block;
    font-size:4.4rem;
    font-weight:900;
    color:var(--accent-color);
    margin-top:.4rem;
    letter-spacing:.05em;
}

.hero-strong{
    display:inline-block;
    font-size:2.4rem;
    font-weight:900;
    color:var(--accent-color);
    background:rgba(201,169,97,0.15);
    padding:.2rem .6rem;
    border-radius:6px;
    margin-top:.3rem;
    letter-spacing:.05em;
}

.hero-market{
    font-size:1.4rem;
    margin-bottom:2.5rem;
}
.hero-subtitle
{
    font-size: 2rem;
}
.hero-subtitle .highlight-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--accent-color);
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
    letter-spacing: 0.05em;
}
.hero-subtitle .highlight-number span
{
    font-family : YuMincho,	'Yu Mincho', serif;
    font-size: 6rem;
    font-style: italic;
}

.hero-subtitle .highlight-market {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-color);
    text-shadow: 0 0 15px rgba(201, 169, 97, 0.4);
    letter-spacing: 0.03em;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #1CC3AF 0%, #13a595 100%);
    color: #fff;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(97, 201, 185, 0.3);
    white-space: nowrap;
}

.hero-cta:hover {
    background: #fff;
    color: #13a595;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

.hero-note {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1.5rem;
}

/*相続提案のきっかけ事例*/
#trigger {
    background: var(--bg-light);
}

.trigger-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
    position: relative;
}
.trigger-grid img
{
    position: absolute;
    max-width: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.trigger-item {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    border: 3px solid transparent;
}
.trigger-item p::before {
    content: "\"";
    position: absolute;
    left: 25px;
    top: 10px;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}
.trigger-item p::after {
    content: "\"";
    position: absolute;
    right: 25px;
    bottom: 10px;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.trigger-item:nth-child(2) { border-color: rgba(201,169,97,0.3); transform: rotate(1deg); }
.trigger-item:nth-child(3) { border-color: rgba(26,39,66,0.2); transform: rotate(-1deg); }
.trigger-item:nth-child(4) { border-color: rgba(201,169,97,0.3); transform: rotate(-1deg); }
.trigger-item:nth-child(5) { border-color: rgba(26,39,66,0.2); transform: rotate(1deg); }


.trigger-item p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 700;
    color: var(--text-color);
}
.trigger-message {
    position: relative;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

/* 左上の装飾 */
.trigger-message::before {
    content: "？";
    position: absolute;
    top: -50px;
    left: -10px;
    font-size: 180px;
    font-weight: 700;
    color: rgba(231, 76, 60, 0.08);
    transform: rotate(-15deg);
    z-index: 0;
}

/* 右下の装飾 */
.trigger-message::after {
    content:"";
    position:absolute;

    bottom: -2rem;
    right: -10rem;

    width:260px;
    height:260px;

    background:rgba(231,76,60,0.06);
    border-radius:50%;

    box-shadow:
        -120px -20px 0 rgba(231,76,60,0.06),
        -200px -60px 0 rgba(231,76,60,0.06),
        -160px -120px 0 rgba(231,76,60,0.06),
        -60px -140px 0 rgba(231,76,60,0.06),
        -20px -200px 0 rgba(231,76,60,0.06);

    z-index:0;
}

/* 中の要素を前面に */
.trigger-message > * {
    position: relative;
    z-index: 1;
}

.trigger-highlight {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.trigger-highlight strong {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.trigger-message > p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.trigger-concerns {
    max-width: 400px;
    margin: 2rem auto;
    display: block;
}

.trigger-result {
    font-size: 1.2rem;
    font-weight: 700;
    color: #c0392b;
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 10px;
}
/* 問題提起セクション */
#problems {
    background: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    text-align: center;
    max-width: 900px;
}

.problem-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-top: 5px solid var(--before-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

.problem-item::before {
    content: '✗';
    position: absolute;
    left: 50%;
    right: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--before-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.problem-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: bold;
}

.warning-box {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    position: relative;
    overflow: hidden;
    transform: rotate(-1deg);
    border: 4px solid rgba(255,255,255,0.2);
}

.warning-box::before {
    content: '⚠️';
    position: absolute;
    top: -30px;
    left: -30px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.warning-box::after {
    content: '⚠️';
    position: absolute;
    bottom: -30px;
    right: -30px;
    font-size: 150px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.warning-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.warning-box p {
    font-size: 1.2rem;
}

/* 本質セクション */
#essence {
    background: var(--white);
}

.essence-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.essence-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-color);
    font-weight: 900;
}

.essence-points {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.essence-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.essence-point h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.essence-point p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ソリューションセクション - 添付画像スタイル */
#solution {
    background: linear-gradient(
        130deg,
        #f6fbfd 0%,
  #f4f6fe 50%,
  #f7f8ff 100%
        );
}

.solution-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
    margin: 4rem 0;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.solution-side {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    padding: 0 1rem;
}

.solution-badge {
    padding: 0.8rem 1.5rem;
    font-weight: 900;
    font-size: 1.1rem;
    z-index: 10;
    text-align: center;
    line-height: 1.3;
}

.solution-side .before-badge:before,
.solution-side .before-badge:after,
.solution-side .after-badge:before,
.solution-side .after-badge:after {
    position: absolute;
    top: 100.3%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}

.solution-side .before-badge:before {
    border: 13px solid;
    border-color: transparent;
    border-top-color: var(--before-color);
    margin-left: -12.5px;
}
.solution-side .after-badge:before {
    border: 13px solid;
    border-color: transparent;
    border-top-color: var(--after-color);
    margin-left: -12.5px;
}

.solution-side .before-badge:after, .solution-side .after-badge:after {
    border: 10px solid;
    border-color: transparent;
    border-top-color: white;
    margin-left: -10px;
}

.solution-side .before-badge {
    color: var(--before-color);
    position: relative;
    padding: 0.8rem 0;
    margin-bottom: 0.2rem;
    border-bottom: 2px solid;
    font-weight: bold;
    font-size: 26px;
    text-align: center;
}

.solution-side .after-badge {
    color: var(--after-color);
    position: relative;
    padding: 0.8rem 0;
    margin-bottom: 0.2rem;
    border-bottom: 2px solid;
    font-weight: bold;
    font-size: 26px;
    text-align: center;
}

.solution-image {
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    display: block;
    margin-top: 2rem;
}

.solution-text-box {
    padding: 2.5rem 2rem 2rem;
}

.solution-text-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.4;
}

.before-box h3 {
    color: var(--before-color);
}

.after-box h3 {
    color: var(--after-color);
}

.solution-list {
    list-style: none;
    padding: 0;
}

.solution-list li {
    position: relative;
    padding: 0 1.4rem .5rem;
    margin-bottom: 10px;
    line-height: 1.8;
}

/* ✗ */
.solution-list.before ::before {
    content: "✗";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #7E7E7E;
}

/* ✓ */
.solution-list.after ::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #c9a961;
}
.solution-list.before strong{
    color:#ffffff;
    background-color: #7E7E7E;
    padding: .3rem .7rem;
}

.solution-list.after strong{
    color:#ffffff;
    background-color:#c9a961;
    padding: .3rem .7rem;
}
.icon-x {
    color: var(--before-color);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.icon-check {
    color: var(--after-color);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.solution-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-arrow {
    font-size: 4rem;
    color: var(--accent-color);
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.benefit-card h3::before {
    content: "→";
    position: absolute;
    left: -2rem;
    top: .5rem;
    width: 25px;
    height: 25px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 500;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
}

.benefit-icon {
    max-width: 5rem;
    margin: 0 auto 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}
.benefit-card p span
{
    font-weight: bold;
    color: var(--primary-color);
}
/* 中間CTA */

.mid-cta{
    padding:80px 20px;
    text-align:center;
    background:linear-gradient(
        135deg,
        #0f2a44 0%,
        #1c3c63 100%
    );
}

.mid-cta-lead{
    font-size:1.4rem;
    line-height:1.7;
    color:#ffffff;
    margin-bottom:35px;
}

.mid-cta-lead strong{
    font-size:1.9rem;
    font-weight:900;
    display:block;
    margin-top:10px;
    color:#c9a961;
}

.mid-cta-button{
    display:inline-block;
    padding:22px 60px;
    font-size:1.3rem;
    font-weight:900;
    color:#ffffff;
    text-decoration:none;

    background:linear-gradient(
        135deg,
        #1CC3AF 0%,
        #13a595 100%
    );

    border-radius:60px;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.25);

    transition:all .3s;
}

.mid-cta-button:hover{
    background: #fff;
    transform: translateY(-2px);
    color: #13a595;
}

.mid-cta-note{
    margin-top:18px;
    font-size:.9rem;
    color:rgba(255,255,255,0.7);
}
/* 実績セクション - アイコン＋カード型 */

.case-card-new {
    background-image: url(https://souzokushisannavi.com/ss19k/hm/0306/img/case-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding:3.5em;
    margin: 3rem 0;
    position: relative;
}
.case-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(39, 174, 96, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(201, 169, 97, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.case-header-new {
    text-align: center;
    position: relative;
    z-index: 1;
}

.case-header-new h3 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 900;
}

.case-header-new p:nth-of-type(1) {
    font-size: 1.1rem;
    color:rgba(255,255,255,0.9);
}

/* 2カラムレイアウト：左に動画、右にBefore/After */
.case-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

/* 左カラム：動画 */
.case-video-column {
    padding: 2rem;
}

.case-video-column h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

/* 右カラム：Before/After縦並び */
.case-result-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.case-box-vertical {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.case-catch{
    font-size: 1.25rem;
    line-height: 1.7;
    color: #fff;
    margin-top: 1rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}
.case-catch::before
{
    content: "→";
    position: absolute;
    left: -5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    color: #1CC3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 500;
    background: #fff;
    border-radius: 50%;
}
.case-catch strong{
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-top: 0.3rem;
}

.case-content-vertical {
    flex: 1;
}

.case-badge-new {
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-badge-new.before-badge {
    background: var(--before-color);
    color: white;
    font-size: .75rem;
}

.case-box-vertical.before h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-color);
}

.case-badge-new.after-badge {
    background: var(--after-color);
    color: white;
}

.case-box-vertical.after h4 {
    line-height: 1.5;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-color);
}

.case-details {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.case-content-vertical p {
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: #555;
}

.case-details li:last-child {
    border-bottom: none;
}

/* Before/After間の矢印（縦） */
.case-arrow-vertical {
    text-align: center;
    padding: 1rem 0;
}

.case-arrow-vertical span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 30px;
    display: inline-block;
    border: 2px solid var(--accent-color);
}

.arrow-down {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 900;
    line-height: 1;
}
.case-achievement {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1CC3AF;
    margin-top: 0.5rem;
}
.case-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.case-sub-card {
    background: var(--bg-light);
    border-radius: 15px;
    padding: .8rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.case-sub-header h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.case-sub-header span {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.case-sub-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
}

.case-sub-before,
.case-sub-after {
    padding: 1rem;
    border-radius: 10px;
}

.case-sub-before {
    background: rgba(121, 132, 149, 0.1);
}

.case-sub-after {
    background: rgba(39, 174, 96, 0.1);
}

.badge-mini {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.badge-mini.before {
    background: var(--before-color);
    color: white;
}

.badge-mini.after {
    background: var(--after-color);
    color: white;
}

.case-sub-before p,
.case-sub-after p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.case-sub-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 900;
}
/* 未来セクション */
#future {
    background: linear-gradient(135deg, #1a2742 0%, #2c3e5d 100%);
    color: var(--white);
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.future-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.future-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 700;
}

.future-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* カリキュラムセクション */
#curriculum {
    background: var(--bg-light);
}

.curriculum-intro {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.8;
}
.course-edition-badge {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem 3rem;
    border-radius: 50px;
    margin: 0 auto 2rem;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(26,39,66,0.3);
    border: 3px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
    word-break: keep-all;
}

.course-edition-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,169,97,0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
 }
.curriculum-course-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 3rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(201,169,97,0.1) 0%, rgba(201,169,97,0.05) 100%);
    border-radius: 15px;
    border: 3px solid var(--accent-color);
    box-shadow: 0 8px 30px rgba(201,169,97,0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: .06em;
}
.curriculum-course-title span
{
    font-size: 1.5rem;
}
.curriculum-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.curriculum-content h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 900;
}

.curriculum-section {
    margin-bottom: 3rem;
}

.curriculum-section h4 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.curriculum-list {
   padding-left: .875rem;
   padding-right: .875rem;
}

.curriculum-item {
   position: relative;
}

.curriculum-item-num {
   text-align: left;
   z-index: 1;
}

.curriculum-item-num img {
   height: 5rem;
   z-index: 1;
}

.curriculum-item {
   padding-left: 6rem;
   padding-right: 6rem;
}

.curriculum-item h4 {
   margin-top: -50px;
}

.label-style {
    padding: 10px 30px;
    background-color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffffff;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.curriculum-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
    text-align: left;
}

.text_bold {
    font-weight: bold;
}

.keep_all_break_word {
    word-break: keep-all;
    overflow-wrap: break-word;
}

.padding_tb30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.text_center {
    text-align: center;
}

.margin_top30 {
    margin-top: 30px;
}

/* 説明会セクション */
#features {
    background: var(--bg-light);
}

.features-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
}

.feature-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

.features-summary {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2rem;
}
/* 講師カード */

.speaker-card{
background:#fff;
padding:3.5rem;
border-radius:20px;
box-shadow:0 15px 50px rgba(0,0,0,0.1);
margin-top:3rem;
}


/* プロフィール */

.speaker-profile{
display:grid;
grid-template-columns:300px 1fr;
gap:3rem;
align-items:start;
}

.speaker-image{
width:100%;
max-width:300px;
}

.speaker-info h3{
font-size:2rem;
font-weight:900;
margin-bottom:.5rem;
}

.speaker-title{
color:var(--accent-color);
margin-bottom:2rem;
font-weight:600;
}


/* メッセージ */

.speaker-message{
background:var(--bg-light);
padding:2rem;
border-radius:10px;
border-left:5px solid var(--accent-color);
}

.speaker-message h4{
font-size:1.3rem;
margin-bottom:1rem;
}

.speaker-message p{
    color: #666;
line-height:1.9;
margin-bottom:1rem;
}


/* 実績 */

.speaker-achievement{
margin-top:3rem;
padding-top:3rem;
border-top:3px solid rgba(0,0,0,0.05);
}

.achievement-title{
text-align:center;
font-size:1.8rem;
font-weight:900;
margin-bottom:1rem;
}

.achievement-intro{
text-align:center;
color:#666;
margin-bottom:3rem;
}


/* ケース */

.case-story{
display:grid;
grid-template-columns:1fr auto 1fr;
gap:2rem;
align-items:center;
}
.case-story h4
{
    margin: 1rem 0;
    font-size: 1.8rem;
}
.case-before,
.case-after{
background:#fff;
padding:2rem;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
}


/* ラベル */

.case-label{
display:inline-block;
padding:.4rem 1rem;
border-radius:20px;
font-size:.8rem;
font-weight:700;
}

.case-label.before{
background:var(--before-color);
color:#fff;
}

.case-label.after{
background:var(--after-color);
color:#fff;
}


/* 矢印 */

.case-arrow{
text-align:center;
font-weight:700;
color:var(--accent-color);
}

.arrow-large{
font-size:3rem;
font-weight:900;
}


/* リスト */

.case-before ul,
.case-after ul{
padding-left:1rem;
}

.case-before li,
.case-after li{
margin-bottom:.7rem;
}

.highlight{
font-weight:900;
color:var(--accent-color);
font-size: 1.4rem;
}


/* 結果 */

.turning-result{
text-align:left;
margin-top:3rem;
line-height:1.9;
background:rgba(201,169,97,.08);
padding:2rem;
border-radius:10px;
}
.turning-flex img
{
    max-width: 300px;
    box-shadow: 0 15px 20px rgba(0,0,0,0.4);
}
.turning-flex
{
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
/* 参加費セクション */
#price {
    background: var(--white);
}

.price-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    margin: 3rem auto;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.price-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.price-note {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    line-height: 1.8;
}

/* FAQ */
#faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.8rem 2rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-color);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question::before {
    content: 'Q.';
    color: var(--accent-color);
    font-weight: 900;
    margin-right: 1rem;
    font-size: 1.3rem;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
}

.faq-answer-content::before {
    content: 'A.';
    color: var(--accent-color);
    font-weight: 900;
    margin-right: 0.5rem;
}

/* 申込みセクション */
#apply {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}
.content_form
{
    text-align: left;
}
.form_input_radio_label, .checkbox_label
{
    color: #333;
}
.apply-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.form_input_submit input {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.5rem;
    margin-top: 2rem;
    transition: all 0.3s;
    box-shadow: 0 15px 50px rgba(201, 169, 97, 0.4);
    border: none;
    cursor: pointer;
}

.form_input_submit input:hover {

    background: #d4b671;
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.5);
}

.schedule-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.schedule-placeholder p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* コンプライアンス注記 */
.compliance-note {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    border-left: 4px solid var(--accent-color);
}

/* フッター */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 1.5rem 2rem;
    text-align: center;
}

.footer-links {
    margin: 2rem 0;
    font-size: 0.9rem;
}

.footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    margin: 0 1rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 2rem;
}

/* 固定CTAボタン */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s;
}

.fixed-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.fixed-cta a {
    display: block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.fixed-cta a:hover {
    background: #d4b671;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* レスポンシブ */
@media (max-width: 1200px) {
    .font_size_21 {
        font-size: 1.2rem;
    }
    
    .solution-comparison {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas:
        "ttl"
        "content"
        "image";
    gap: .5rem;
    }

    .hero-ttl {
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        justify-self: center;
    }
    .hero-catch
    {
        font-size: 2.4rem;
    }
    .hero-title, .hero-title .accent {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        width: 100%;
        padding: .5rem 2rem;
    }
    
    /* ソリューションセクション モバイル */
    .solution-comparison, .future-grid {
        gap: 1.5rem;
    }
    .solution-text-box
    {
        padding: 1.5rem 0rem 1rem;
    }
    
    .solution-arrow {
        font-size: 3rem;
    }
    .solution-side
    {
        padding: 0 0.875rem;
    }
    
    /* 受講生の成果 モバイル */
    .case-comparison-new {
        grid-template-columns: 1fr;
    }
    
    .arrow-icon {
        transform: rotate(90deg);
    }
    
    /* 講師の転機 モバイル */
    .turning-comparison, .case-sub-grid {
        grid-template-columns: 1fr;
    }
     .curriculum-course-title {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
    }
    .curriculum-course-title span {
        font-size: 1.1rem;
    }
    .curriculum-course-title::before,
    .curriculum-course-title::after {
        display: none;
    }
    
    .course-edition-badge {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    .turning-arrow {
        order: 2;
    }
    
    .arrow-large {
        transform: rotate(90deg);
        font-size: 3rem;
    }
    
    .speaker-profile {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-items: center;
    }
    
    .instructor-turning-point {
        padding: 2.5rem 1.5rem;
    }
    
    .fixed-cta {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
    }
    
    .fixed-cta a {
        border-radius: 0;
        width: 100%;
        padding: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: .5rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    #hero
    {
        padding: 1.5rem 1.5rem 4rem;
    }
    .curriculum-content, .problem-item,.warning-box, .essence-content, .future-item, .speaker-profile, .trigger-item, .trigger-message, .speaker-card, .schedule-placeholder,.price-box,.features-content, .mid-cta {
        padding: 2rem 0.875rem;
    }
    
    .curriculum-item {
        padding-left: 0rem;
        padding-right: 0rem;
        padding-top: 10px;
    }
    .problem-item p
    {
        font-size: .95rem;
    }
    .label-style {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 1.1rem;
    }
    
    .curriculum-row, .trigger-grid {
        gap: 10px;
    }
    .case-two-column, .case-story, .features-grid
    {
        grid-template-columns: 1fr;
        gap: .5rem;
    }
    .case-arrow
    {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .5rem;
    }
    .case-sub-before
    {
        padding: 1rem .8rem;
    }
    .turning-flex
    {
        flex-wrap: wrap;
    }
    .mid-cta-button
    {
        padding: 1.5rem 3rem;
    }
    .trigger-grid img
    {
        max-width: 60px;
    }
    .trigger-item p::before
    {
        left: 10px;
        top: 0px;
    }
    .trigger-item p::after
    {
        right: 10px;
        bottom: 0px;
    }
    .problem-grid
    {
        gap: 5px;
    }
    .sk_logo
    {
        max-width: 100px;
        margin-right: 5px;
    }
}

@media (max-width: 450px) {
    * {
        font-size: 14px;
    }
    .solution-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .solution-arrow {
        transform: rotate(90deg);
        font-size: 2rem;
    }
    .trigger-item p br
    {
        display: none;
    }
    .trigger-message::after {
        content:"";
        position:absolute;

        bottom: -150px;
        right: -250px;
    }
    .display_sp
    {
        display: block;
    }
    .display_pc
    {
        display: none;
    }
    .trigger-concerns.display_sp
    {
        max-width: 280px;
    }
    .hero-catch
    {
        font-size: 1.8rem;
    }
    .hero-title, .hero-title .accent {
        font-size: 2.25rem;
    }
    .hero-label span
    {
        font-size: 1.5rem;
    }
    .hero-label
    {
        padding: .7rem 1rem;
    }
}