@charset "UTF-8";

@font-face {
    font-family: "YDWaosagi";
    src: url("/assets/fonts/YDWaosagi.otf") format("opentype");
}

@font-face {
    font-family: "CPFont";
    src: url("/assets/fonts/CPFont.otf") format("opentype");
}

:root {
    --color-text: #333333;
    --color-accent: #e84545;
    --color-accent-hover: #c73a3a;
    --color-secondary: #0056b3;
    --color-bg-hero: #e8f5ff;
    --color-bg-light: #f8f9fa;
    --color-white: #ffffff;
    --color-gold: #d4af37;
    --header-height: 120px;
    --header-height-compact: 60px;
    --font-base: "Noto Sans JP", "BIZ UDGothic", "Helvetica Neue", Arial, sans-serif;
    --font-special: "YDWaosagi", var(--font-base);
    --font-title: "CPFont", var(--font-base);
    --banner-height: 140px;
    --banner-tone: #62c5ad;
    --banner-tone-strong: #4dac93;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.6;
    padding-top: var(--header-height);
    padding-bottom: var(--banner-height);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.floating-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--banner-tone) 0%, var(--banner-tone-strong) 100%);
    color: #fff;
    z-index: 1001;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
}

.floating-banner-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 22px;
    padding: 12px 20px;
}

.banner-person {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    background-color: #fff;
    background-image: none;
    border: 3px solid rgba(0, 0, 0, 0.05);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.banner-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.banner-lead {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.banner-cta-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
}

.banner-phone {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    padding: 10px 14px;
    color: #fff;
    text-decoration: none;
    text-align: left;
}

.banner-phone-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    background: #fff;
    color: var(--banner-tone-strong);
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 700;
}

.banner-phone-number {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #fff;
}

.banner-line-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: var(--banner-tone-strong);
    color: #fff;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.banner-line-text {
    font-size: 0.95rem;
}

.floating-banner .banner-line {
    width: auto;
    height: auto;
    padding: 10px 16px;
    background: #fffef8;
    color: var(--banner-tone-strong);
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
    gap: 10px;
    white-space: nowrap;
}

.floating-banner .banner-line-tag {
    width: 42px;
    height: 42px;
    background: #06c755;
    color: #fff;
    border-radius: 12px;
    padding: 0;
    font-weight: 900;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.floating-banner .banner-line-text {
    color: var(--banner-tone-strong);
    line-height: 1.4;
}

.banner-line-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.banner-notes {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    opacity: 0.92;
}

.back-to-top {
    position: fixed;
    right: 16px;
    bottom: calc(var(--banner-height) + 16px);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(77, 172, 147, 0.5);
    background: #fff;
    color: var(--banner-tone-strong);
    font-size: 20px;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    z-index: 1002;
    opacity: 0.9;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    opacity: 1;
}

.back-to-top.hidden {
    opacity: 0;
    pointer-events: none;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    font-family: var(--font-base);
}

.section-title span {
    display: block;
    font-size: 1rem;
    color: var(--color-accent);
    font-family: var(--font-title);
    margin-bottom: 5px;
}

.section-lead {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 1.1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 999;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.header_inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.header_top_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.header_logo h1 {
    margin: 0;
    line-height: 1;
}

.header_logo_img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header_menu {
    height: 40px;
    border-top: 1px solid #f0f0f0;
    transition: all 0.3s ease-in-out;
}

.navigation_ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    gap: 40px;
}

.menu_item {
    position: relative;
    min-width: 100px;
    text-align: center;
}

.menu_item a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 15px;
    font-weight: bold;
    color: #444;
}

.menu_item a:hover {
    color: var(--color-accent);
}

.menu_item.highlight-btn a {
    background: var(--color-accent);
    color: #fff;
    padding: 0 20px;
    border-radius: 4px 4px 0 0;
}

.menu_item.highlight-btn a:hover {
    background: var(--color-accent-hover);
}

.header.compact {
    height: var(--header-height-compact);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.compact .header_top_section {
    height: 0;
    padding: 0;
    opacity: 0;
}

.header.compact .header_menu {
    height: var(--header-height-compact);
    border-top: none;
}

.header.compact .menu_item a {
    height: var(--header-height-compact);
}

.header.compact .menu_item.highlight-btn a {
    border-radius: 0;
}

.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-hero) 0%, #fff 100%);
}

.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(180deg, rgba(222, 244, 255, 0.9) 0%, rgba(254, 255, 255, 0.7) 100%);
    filter: blur(18px);
    z-index: 0;
}

.hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-catch {
    font-family: var(--font-special);
    font-size: clamp(2rem, 1.5vw + 1.5rem, 2.8rem);
    line-height: 1.35;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 0 #fff;
}

.hero-sub {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    font-weight: bold;
}

.hero-text .highlight {
    color: var(--color-accent);
    font-family: var(--font-title);
    font-size: 1.1em;
}

.hero-text .highlight-red {
    color: var(--color-accent);
    font-size: 1.2em;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}

.hero-title-main {
    font-family: var(--font-title);
    font-size: clamp(3rem, 2vw + 2rem, 4.5rem);
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hero-cta .hero-title-main {
    font-size: clamp(1.2rem, 4vw, 2.5rem);
    white-space: normal;
    line-height: 1.3;
}

.hero-cta a {
    display: inline-block;
    transition: transform 0.3s;
}

.hero-cta a:hover {
    transform: translateY(-5px);
}

.hero-plate {
    width: 420px;
    filter: drop-shadow(0 5px 10px rgba(232, 69, 69, 0.3));
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 520px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    bottom: 6%;
    right: 8%;
    width: 72%;
    height: 72%;
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.95), rgba(232, 245, 255, 0.6));
    filter: blur(6px);
    border-radius: 50%;
    z-index: 0;
}

.hero-woman {
    max-width: none;
    height: 130%;
    max-height: 640px;
    width: auto;
    position: absolute;
    top: 0;
    right: 4%;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
}

.fukidashi-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 2;
}

.fukidashi-container {
    position: absolute;
    top: -36px;
    right: 72px;
    width: 180px;
    height: 180px;
    animation: float 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.fukidashi-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fukidashi-text {
    position: relative;
    z-index: 3;
    font-size: 1.1rem;
    font-weight: bold;
    color: #111;
    line-height: 1.4;
    transform: rotate(-5deg) translateY(-10px);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* キラキラエフェクト */
.hero-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff, #ffd700);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
    box-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ffd700;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

.sparkle::before {
    width: 2px;
    height: 8px;
    top: 0;
    left: 3px;
}

.sparkle::after {
    width: 8px;
    height: 2px;
    top: 3px;
    left: 0;
}

.sparkle-delay-1 {
    animation-delay: 0.7s;
}

.sparkle-delay-2 {
    animation-delay: 1.4s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 装飾円 */
.hero-decoration-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.deco-circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    top: 10%;
    right: 20%;
    animation: float-slow 8s ease-in-out infinite;
}

.deco-circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6bcf7f, #4facfe);
    bottom: 15%;
    left: 10%;
    animation: float-slow 10s ease-in-out infinite reverse;
}

.deco-circle-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f093fb, #f5576c);
    top: 50%;
    right: 5%;
    animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(0, -30px) rotate(0deg);
    }

    75% {
        transform: translate(-20px, -20px) rotate(-5deg);
    }
}

/* バッジアニメーション */
.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 25px 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: badge-bounce 2s ease-in-out infinite;
}

.hero-badge-popular {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #d35400;
}

.hero-badge-fast {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #fff;
}

.hero-badge-free {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: #fff;
}

@keyframes badge-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* フェードインアニメーション */
.hero-fade-in {
    animation: fadeInUp 0.8s ease-out both;
}

.hero-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スライドインアニメーション */
.hero-slide-in {
    animation: slideInRight 1s ease-out both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* バウンスアニメーション */
.hero-bounce {
    animation: float 3s ease-in-out infinite, bounceIn 0.8s ease-out 0.5s both;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

50% {
    transform: translateY(-15px);
}
}

.section-slideshow {
    background-color: var(--color-bg-light);
}

.slideshow-wrapper {
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
}

.slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
    padding-bottom: 48px;
}

.slideshow .slides {
    display: flex;
    align-items: stretch;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slideshow .slide {
    width: 50%;
    flex-shrink: 0;
    padding: 10px;
    box-sizing: border-box;
}

.slideshow .slide img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slideshow .controls {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    pointer-events: none;
}

.slideshow .controls button {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: var(--color-accent);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
}

.slideshow .prev {
    position: static;
}

.slideshow .next {
    position: static;
}

.slideshow .dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.slideshow .dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slideshow .dot[aria-pressed="true"] {
    background: var(--color-accent);
    transform: scale(1.2);
}

.section-kakudai {
    background: var(--color-bg-light);
    padding: 50px 0;
}

.kakudai-image-wrap {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.kakudai-image-wrap img {
    width: 100%;
    max-width: 1160px;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.section-price {
    background-color: #fff;
    position: relative;
}

.scroll-hint {
    display: none;
    text-align: right;
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-bottom: 10px;
    font-weight: bold;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.price-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    max-width: 900px;
    margin: 0 auto;
    justify-items: center;
    align-items: end;
}

.price-item {
    width: 100%;
    max-width: 320px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.price-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
    transition: all 0.3s ease;
}

.price-item:hover img {
    transform: translateY(-10px);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.price-item:nth-child(1) {
    grid-column: 1 / -1;
    width: 60%;
    max-width: 400px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.price-item.price-highlight img {
    filter: drop-shadow(0 15px 30px rgba(212, 175, 55, 0.3));
    border: 3px solid var(--color-gold);
    border-radius: 8px;
    background: #fff;
}

.price-item.price-highlight:hover img {
    transform: scale(1.03) translateY(-10px);
}

.price-item:nth-child(2),
.price-item:nth-child(4) {
    justify-self: end;
}

.price-item:nth-child(3),
.price-item:nth-child(5) {
    justify-self: start;
}

.badge-popular {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    font-weight: bold;
    padding: 8px 25px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(232, 69, 69, 0.4);
    white-space: nowrap;
    z-index: 3;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.badge-popular::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid var(--color-accent);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.section-points {
    background-color: #f0fdfa;
}

.points-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.point-card {
    background: #fff;
    width: 23%;
    min-width: 260px;
    border: 1px solid #ddd;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.point-header {
    background-color: #2ebea3;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 12px 5px;
    font-size: 1.2rem;
    border-bottom: 1px solid #25a08a;
}

.point-icon {
    padding: 30px 0 10px;
    text-align: center;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon img {
    max-height: 120px;
    width: auto;
}

.point-body {
    padding: 15px 20px 30px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
}

.marker {
    background: linear-gradient(transparent 60%, #fff700 60%);
    font-weight: bold;
    padding-bottom: 2px;
}

.note {
    font-size: 0.8em;
    color: #666;
}

.section-flow {
    background: #fafafa;
    padding: 80px 20px;
}

.flow-list {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

.flow-list .flow-item {
    flex: 1 1 0;
}

.flow-arrow {
    display: none;
    align-self: center;
    width: 32px;
    height: 32px;
    border-right: 3px solid var(--color-accent);
    border-bottom: 3px solid var(--color-accent);
    transform: rotate(-45deg);
    opacity: 0.4;
}

.flow-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff8a8a 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-family: var(--font-title);
    box-shadow: 0 8px 20px rgba(232, 69, 69, 0.25);
    margin-bottom: 18px;
}

.flow-item {
    background: white;
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.flow-item:hover {
    transform: translateY(-6px);
}

.footer {
    background: #333;
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    font-size: 0.9rem;
    color: #ddd;
}

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

.copyright {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.6;
}

.sub-hero {
    background-color: var(--color-bg-hero);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.sub-hero-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.sub-hero-subtitle {
    color: var(--color-accent);
    font-family: var(--font-special);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

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

.company-list {
    border-top: 1px solid #ddd;
    width: 100%;
}

.company-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.company-row dt {
    background-color: #f4f8fb;
    width: 30%;
    padding: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.company-row dd {
    width: 70%;
    padding: 20px;
    background-color: #fff;
    line-height: 1.8;
}

.map-wrapper {
    max-width: 900px;
    margin: 0 auto 20px;
    border: 1px solid #ccc;
    padding: 5px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.access-text {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
}

.section-news-list {
    background: #fff;
}

.news-list-container {
    max-width: 900px;
    margin: 0 auto;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0 0 60px;
}

.news-item {
    border-bottom: 1px solid #eee;
}

.news-item a {
    display: flex;
    align-items: center;
    padding: 25px 10px;
    transition: background-color 0.3s;
}

.news-item a:hover {
    background-color: #f9f9f9;
}

.news-meta {
    display: flex;
    align-items: center;
    min-width: 220px;
}

.news-date {
    color: #888;
    font-family: 'Helvetica Neue', sans-serif;
    margin-right: 15px;
    font-size: 0.95rem;
}

.news-category {
    display: inline-block;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
}

.cat-notice {
    background-color: #0056b3;
}

.cat-campaign {
    background-color: var(--color-accent);
}

.cat-info {
    background-color: #333;
}

.news-title {
    font-size: 1.1rem;
    font-weight: normal;
    color: #333;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination a,
.pagination span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination .current {
    background-color: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.article-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.article-header .news-meta {
    margin-bottom: 15px;
}

.article-title {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: bold;
}

.article-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
}

.article-body p {
    margin-bottom: 1.5em;
}

.article-body h2,
.article-body h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 40px 0 20px;
    padding-left: 15px;
    border-left: 5px solid var(--color-accent);
}

.article-body h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 30px 0 15px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

.article-footer {
    text-align: center;
}

.btn-back {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #ccc;
    border-radius: 30px;
    color: #666;
    transition: 0.3s;
}

.btn-back:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

@media (max-width: 768px) {
    :root {
        --header-height: 100px;
        --header-height-compact: 90px;
        --banner-height: 180px;
    }

    .header_top_section {
        height: 50px;
        display: flex;
        justify-content: center;
        padding: 5px 0;
    }

    .header_logo {
        width: auto;
        text-align: center;
        padding: 0;
    }

    .header_logo_img {
        height: 42px;
    }

    .header_menu {
        display: block;
        height: 50px;
        border-top: 1px solid #f5f5f5;
        background: #fff;
    }

    .navigation_ul {
        gap: 0;
        justify-content: space-evenly;
        align-items: center;
        padding: 0 5px;
    }

    .menu_item {
        min-width: auto;
        flex: 1;
    }

    .menu_item a {
        font-size: 11px;
        padding: 0;
        height: 50px;
        white-space: nowrap;
    }

    .menu_item.highlight-btn a {
        margin: 8px 2px;
        height: 34px;
        line-height: 34px;
        padding: 0 8px;
        border-radius: 4px;
        font-size: 10px;
    }

    .header.compact .header_top_section {
        height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 0;
    }

    .header.compact .header_menu {
        height: var(--header-height-compact);
    }

    .hero {
        padding: 40px 0 0;
        background: linear-gradient(180deg, var(--color-bg-hero) 0%, #ffffff 100%);
        overflow: hidden;
    }

    .hero-bg-shape {
        display: none;
    }

    .floating-banner-inner {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
        padding: 10px 12px;
    }

    .banner-person {
        display: none;
    }

    .banner-main {
        align-items: center;
    }

    .banner-lead {
        font-size: 0.9rem;
    }

    .banner-cta-row {
        grid-template-columns: 1fr;
    }

    .banner-phone {
        justify-content: center;
        padding: 8px 10px;
    }

    .banner-phone-number {
        font-size: 1.3rem;
    }

    .banner-line {
        width: 100%;
        justify-content: center;
        padding: 9px 12px;
    }

    .floating-banner .banner-line {
        width: 100%;
        justify-content: center;
    }

    .banner-notes {
        font-size: 0.72rem;
    }

    /* extra breathing room so the fixed banner doesn't cover the footer */
    body {
        padding-bottom: calc(var(--banner-height) + 40px);
    }

    .back-to-top {
        bottom: calc(var(--banner-height) + 8px);
        right: 10px;
    }

    .hero-inner {
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
        width: 100%;
        z-index: 2;
    }

    .hero-catch {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-sub {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-title-main {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-plate {
        width: 90%;
        max-width: 320px;
    }

    .hero-visual {
        width: 100%;
        height: 350px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin-top: 0;
    }

    .hero-woman {
        position: relative;
        top: auto;
        right: auto;
        bottom: 0;
        width: auto;
        height: 100%;
        max-width: 100%;
        object-fit: contain;
        z-index: 1;
    }

    .fukidashi-wrapper {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 3;
    }

    .fukidashi-container {
        position: absolute;
        top: 20px;
        right: 10px;
        width: 130px;
        height: 130px;
    }

    .fukidashi-text {
        font-size: 0.85rem;
    }

    .scroll-hint {
        display: block;
    }

    .price-layout {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 18px;
        padding: 10px 20px 40px;
        margin: 0 -20px;
        justify-content: flex-start;
        align-items: flex-start;
        -ms-overflow-style: none;
        scrollbar-width: none;
        position: relative;
    }

    .price-layout::-webkit-scrollbar {
        display: none;
    }

    .price-item {
        flex: 0 0 82%;
        width: auto;
        max-width: none;
        scroll-snap-align: center;
        margin: 0 0 0 10px;
        position: relative;
        padding-top: 24px;
    }

    .price-item:nth-child(1) {
        flex-basis: 88%;
        width: 88%;
        max-width: none;
        grid-column: auto;
        order: -1;
    }

    .price-layout::after {
        content: "›";
        position: absolute;
        right: 6px;
        top: 50%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.85));
        color: var(--color-accent);
        font-size: 22px;
        font-weight: 800;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
        pointer-events: none;
        opacity: 0.85;
    }

    .price-item img {
        width: 100%;
        max-width: 320px;
        height: 300px;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }

    .badge-popular {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .price-item:nth-child(n) {
        justify-self: auto;
    }

    .price-item.price-highlight {
        transform: scale(1);
    }

    .point-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    .section-flow {
        padding: 60px 0;
    }

    .section-kakudai {
        padding: 36px 0;
    }

    .kakudai-image-wrap {
        padding: 12px;
        border-radius: 14px;
    }

    .kakudai-image-wrap img {
        border-radius: 10px;
    }

    .flow-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
        display: flex;
    }

    .flow-list .flow-item {
        width: 100%;
        max-width: 480px;
    }

    .flow-item {
        width: 100%;
        max-width: 400px;
        padding: 40px 20px 30px;
    }

    .flow-arrow {
        padding-top: 0;
        height: 30px;
        transform: rotate(45deg);
        margin: -10px 0;
    }

    .flow-step-badge {
        min-width: auto;
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .slideshow-wrapper {
        padding: 10px;
    }

    .slideshow {
        padding-bottom: 42px;
    }

    .slideshow .slide {
        width: 100%;
        padding: 0 5px;
    }

    .slideshow .controls {
        padding: 0 6px;
    }

    .slideshow .controls button {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .slideshow .dots {
        bottom: 14px;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .sub-hero {
        padding: 40px 0;
    }

    .sub-hero-title {
        font-size: 2rem;
    }

    .company-row {
        flex-direction: column;
    }

    .company-row dt {
        width: 100%;
        background-color: #e8f5ff;
        padding: 10px 15px;
        border-bottom: 1px dashed #ddd;
    }

    .company-row dd {
        width: 100%;
        padding: 15px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .news-item a {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-meta {
        margin-bottom: 8px;
        width: 100%;
    }

    .news-title {
        font-size: 1rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-body {
        font-size: 0.95rem;
    }

    .article-body h2,
    .article-body h3 {
        font-size: 1.3rem;
    }
}

/* A/B Test Version A - Prominent CTA Style */
.banner-cta-row {
    flex-direction: column;
    gap: 16px;
}

.banner-phone,
.banner-line {
    width: 100%;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.banner-phone:hover,
.banner-line:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.banner-phone {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.banner-phone-number {
    font-size: 24px;
}

.hero-cta img {
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s;
}

.hero-cta img:hover {
    transform: scale(1.05);
}

/* Popular Plan Highlight */
.price-highlight {
    transform: scale(1.1);
    z-index: 10;
    position: relative;
}

.badge-popular {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
    z-index: 20;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 16px rgba(255, 107, 107, 0.6);
    }
}

.price-highlight::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(238, 90, 111, 0.1) 100%);
    border-radius: 12px;
    z-index: -1;
}

.price-highlight::after {
    content: '✨ おすすめ ✨';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.price-highlight img {
    border: 3px solid #ff6b6b;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

/* Price Details Text */
.price-details {
    margin-top: 16px;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.plan-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.price-highlight .price-details {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    border: 2px solid #ff6b6b;
}

.section-lead-spaced {
    margin-bottom: 100px;
}

/* FAQ Section */
.section-faq {
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    position: relative;
}

.faq-q {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    transition: transform 0.3s, background 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #ff6b6b;
    color: white;
}

.faq-answer {
    display: none;
    padding: 0 24px 20px 80px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s;
}

.faq-a {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 16px;
    vertical-align: top;
}

.faq-answer p {
    display: inline;
    color: #666;
    line-height: 1.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .faq-question {
        padding: 16px;
        gap: 12px;
    }

    .faq-q {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-answer {
        padding: 0 16px 16px 60px;
    }

    .faq-a {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}