body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.reference_text{
    font-size: 0.8rem;
    color: #aaaaaa;
    margin-top: 30px;
    line-break: anywhere;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: auto; /* 高さを自動調整 */
}

.problems-header {
    margin-bottom:20px;
    text-align: center;
}

.nayami-icon{
    width: 80%;
    height: auto;
}

.logo img {
    max-height: 30px;
}

.header-buttons {
    display: flex;
    align-items: center;
}

.button-container {
    display: flex;
    align-items: center; /* 中央揃え */
}


.login-button {
    color: #E5323E;
    text-decoration: none;
    font-size: 1em;
    display: inline-block;
    vertical-align: middle; /* 中央揃え */
    line-height: normal; /* 行の高さを調整 */
    margin:auto;
}


.login-button:hover {
    text-decoration: underline;
}

.cta-button, .cta-button-main {
    background-color: #E5323E;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 20px;
    margin-right: 10px; /* ボタンとリンクの間に適切なスペースを追加 */
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.cta-button.header-button {
    padding:10px 15px;
    font-size: 1.0em;
    margin:auto;
    margin-right: 10px;
    white-space: nowrap;
}

.cta-button {
    margin-right: 20px;
}

.cta-button:hover, .cta-button-main:hover {
    background-color: #C1272D;
}

.cta-button-white {
    background-color: #fff; /* 白色 */
    color: #E5323E; /* テキストカラー */
    border: 2px solid #E5323E; /* ボーダー */
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease; /* トランジション効果 */
}

.cta-button-white:hover {
    background-color: #f0f0f0; /* マウスオーバー時にグレーに */
    color: #E5323E; /* テキストカラーを保持 */
    border: 2px solid #E5323E; /* ボーダーを保持 */
}

.login-button {
    color: #E5323E;
    text-decoration: none;
    font-size: 1em;
}

.login-button:hover {
    text-decoration: underline;
}

.container {
    width: 80%;
    margin: 40px auto;
    padding: 20px 0;
}

.container-min {
    width: 70%;
    margin: 0px auto;
    padding: 0px 20px;
}

.intro-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.text-content, .image-content {
    flex: 1;
    padding: 20px;
}

.intro-text {
    color: #E5323E;
    font-size: 2em;
    font-weight: bold;
}

.description {
    font-size: 1.2em;
    margin: 20px 0;
}

.cta-button-main {
    background-color: #fff;
    color: #E5323E;
    border: 2px solid #E5323E;
    border-radius: 5px;
}

.cta-button-main:hover {
    background-color: #E5323E;
    color: #fff;
}

.image-content img {
    max-width: 100%;
    height: auto;
}

.video-section {
    width: 50%;
    margin: 40px auto;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 0 auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Features Section */
.features-section-wrapper {
    background-color: #dcdcdc;
    padding: 100px 0;
    text-align: center;
    margin: 40px 0;
    width: 100%;
}

.features-section {
    width: 80%;
    margin: 0 auto;
}

.features-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

.feature {
    text-align: center;
    padding: 10px;
}

.feature p {
    font-size: 1.5em;
    margin: 0;
}

.feature img {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
}

/* Steps Section */
.steps-section {
    width: 80%;
    margin: 130px auto 40px;
    text-align: center;
}

.highlight {
    font-size: 4rem;
    color: #ff3366;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.highlight::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 51, 102, 0.2);
    z-index: -1;
}

.steps-section h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

.step img {
    width: 45%;
}

.step-text {
    width: 45%;
    text-align: left;
}

.step-text h3 {
    color: #E5323E;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.step-text p {
    font-size: 1.2em;
    margin: 0;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: nowrap;
}

.step img {
    width: 45%;
}

.step-text {
    width: 45%;
    text-align: left;
}

.step-text h3 {
    color: #E5323E;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.step-text p {
    font-size: 1.2em;
    margin: 0;
}

.steps-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-text {
    flex: 0 0 40%;
}

.step img {
    flex: 0 0 60%;
}

.step.reverse {
    flex-direction: row-reverse;
}

.step-text h3 {
    font-size: 2em; /* タイトルの大きさを設定 */
}

.step-text p {
    font-size: 1.5em; /* 説明文の大きさを設定 */
    font-weight: bold; /* 説明文を太字に設定 */
}

/* Features grid area */
.features-grid-section {
    width: 80%;
    margin: 130px auto;
    text-align: center;
}

.features-grid-section h2 {
    font-size: 1.8em;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
}

.feature-item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.feature-item p {
    font-size: 1em;
}

/* comparison area */
.comparison-section {
    width: 80%;
    margin: 130px auto 40px;
    text-align: center;
}

.comparison-section h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.comparison-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    overflow-x: auto; /* 水平方向のスクロールを許可 */
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: center;
    font-size: 1.5em;
    border: 1px solid #ddd; /* 境界線を追加 */
}

.comparison-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.comparison-table td:first-child {
    text-align: left;
}

.comparison-table td.highlight {
    background-color: #f9eaea;
}

.comparison-logo {
    width: 100px;
}

.circle, .cross {
    font-size: 4em;
    color: #E5323E;
}

.double-circle {
    font-size: 2em;
    color: #E5323E;
}

.cross {
    color: #000;
}

@media (max-width: 768px) {
    
    .container-min {
        width: 100%;
        margin: 0px auto;
        padding: 0px 20px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px;
        font-size: 12px;
        text-align: center;
        white-space: nowrap;
    }

    .comparison-table th {
        background-color: #f4f4f4;
        font-weight: bold;
    }

    .comparison-table td {
        border: 1px solid #ddd;
    }

    .comparison-table .comparison-logo {
        width: 60px;
    }

    .comparison-table .circle,
    .comparison-table .cross {
        font-size: 20px;
    }

    .comparison-table .double-circle {
        font-size: 16px;
    }

    .comparison-table table, .comparison-table th, .comparison-table td {
        display: table-cell;
        width: auto;
    }
}

.comparison-logo {
    width: 100px;
}

.circle, .cross {
    font-size: 4em;
    color: #E5323E;
}

.double-circle {
    font-size: 2em;
    color: #E5323E;
}

.cross {
    color: #000;
}

/* Pricing area */
.pricing-section {
    width: 80%;
    margin: 130px auto;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.pricing-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.pricing-box {
    border: 2px solid #E5323E;
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
    text-align: center;
    width: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-box h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.pricing-box .price {
    font-size: 2.5em;
    font-weight: bold;
    color: #000;
}

.pricing-box .small-text {
    font-size: 0.5em;
    color: #000;
}

.pricing-box .note {
    font-size: 0.9em;
    color: #666;
}

.pricing-box hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.pricing-box ul {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-box ul li {
    margin-bottom: 10px;
    padding-left: 1.5em;
    text-indent: -1.5em;
    text-align: left;
    width: 100%;
    max-width: 600px;
}

.pricing-box ul li::before {
    content: "✓";
    color: #E5323E;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    width: 1em;
}

/* CTA area */
.cta-section {
    background-color: #E5323E;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #E5323E;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.cta-button:hover {
    background-color: #fff;
    color: #E5323E;
    border: 2px solid #E5323E;
}

.cta-note {
    font-size: 0.9em;
    margin-top: 20px;
}

/* faq area */
.faq-section {
    width: 70%;
    margin: 50px auto;
    text-align: left;
}

.faq-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 70%;
    margin: 20px auto;
}

.faq-question, .faq-answer {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.faq-question-text {
    font-size: 1.2em;
    font-weight: bold;
}

.faq-text {
    font-size: 1.2em;
}

.faq-answer {
    margin-left: 0;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

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

.footer-link {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}

.footer-link:hover {
    text-decoration: underline;
}


/* Fade-in animation */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
}

/* Responsive styling */
@media (max-width: 768px) {
    .container {
        width: 100%;
    }

    .intro-section {
        flex-direction: column;
    }

    .cta-button {
        width: 60%;
        margin: 10px 0;
    }

    .video-section {
        width: 90%;
        margin: 20px auto;
    }

    .step, .step.reverse {
        flex-direction: column;
        text-align: center;
    }

    .step img, .step.reverse img {
        margin: 20px auto;
        width: 90%;
    }

    .step-text {
        width: 90%;
        text-align: center;
    }

    .features {
        flex-direction: column;
    }

    .features-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 90%;
        margin-bottom: 20px;
    }

    .comparison-table table, .comparison-table th, .comparison-table td {
        display: table-cell;
        width: 100%;
    }

    .faq-question, .faq-answer {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-icon {
        margin-bottom: 10px;
    }

    .problems-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        top: 0; /* スマホビューでも上に固定 */
        margin-bottom:20px;
    }

    .highlight {
        font-size: 1.1em;
    }

    .problems-header h2 {
        font-size:1.4rem;
        text-align: center;
    }

    .logo img {
        width: 60%;
        max-width: 120px;
        height: auto;
        margin-bottom: 10px;
    }
    
    .header-buttons {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: column; /* ボタンを縦に並べる */
    }

    .cta-button {
        width: 60%;
        margin-bottom: 10px;
        border-radius: 20px;
        display: block;
        text-align: center;
    }

    .login-button {
        width: 100%;
        text-align: center;
    }

    .pricing-box {
        width: 90%;
    }

    .pricing-box ul li {
        text-indent: 0;
    }

    .faq-section {
        width: 100%;
    }

    .faq-item {
        width: 80%;
        max-width: 80%;
    }

}

.sp-only {
    display: none;
}

/* スマホの画面幅が600px以下の場合に改行タグを表示する */
@media (max-width: 600px) {
    .sp-only {
        display: inline;
    }
}

/* トグルボタンのスタイル */
.switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 34px;
    margin-left: 10px; /* ラベルとの間にスペースを追加 */
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* ラベルとトグルボタンを横並びに配置 */
.audio-toggle {
    display: flex;
    align-items: center;
    margin-top: 20px; /* トグルボタンの上にスペースを追加 */
}

.audio-toggle span {
    font-size: 1.2em; /* フォントサイズを調整 */
    color: #000; /* フォントカラーを調整 */
    margin-right: 10px; /* トグルボタンとの間にスペースを追加 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
}

body {
    background-color: #f5f5f5;
}

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

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

.header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.problems-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.problem-card {
    width: 320px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.problem-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.problem-card:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(45deg, #ff3366, #ff6633);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
}

.icon-container {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    margin: 40px auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon {
    width: 60px;
    height: 60px;
    fill: #ff3366;
}

.problem-title {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.problem-description {
    padding: 0 25px 20px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.problem-stat {
    background: #f9f9f9;
    padding: 15px 20px;
    font-size: 1.2rem;
    text-align: center;
    color: #ff3366;
    font-weight: 700;
}

.solution {
    padding: 20px;
    background: linear-gradient(135deg, #f1f9fe, #e6f5fe);
    text-align: center;
}

.solution-title {
    color: #0066cc;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.solution-desc {
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
}

.action-btn {
    display: block;
    width: 80%;
    margin: 20px auto;
    padding: 16px 0;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 30px;
    box-shadow: 0 8px 15px rgba(255, 51, 102, 0.2);
    transition: all 0.3s;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 51, 102, 0.3);
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 90vh;
    position: relative;
}

.left-content {
    flex: 1;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.right-content {
    flex: 1.2;
    position: relative;
    z-index: 1;
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

/* .main-headline::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    border-radius: 10px;
} */

.subheadline {
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 30px 0;
    color: #333;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.strong-point {
    font-weight: 700;
    color: #ff3366;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 51, 102, 0.4);
}

.cta-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
}

.cta-button:hover::after {
    left: 100%;
}

.secondary-text {
    font-size: 0.9rem;
    color: #777;
    margin-top: 15px;
}

.benefits {
    display: flex;
    margin-top: 40px;
    gap: 20px;
}

.benefit-item {
    background: white;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    flex: 1;
    position: relative;
    overflow: hidden;
    max-width: 350px;
}

.benefit-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff3366, #ff6633);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff3366;
    line-height: 1;
    opacity: 0.8;
}

.benefit-text {
    font-size: 1rem;
    color: #333;
    margin-top: 5px;
    font-weight: 700;
}

.device-mockup {
    position: relative;
    width: 100%;
    z-index: 1;
}

.device-mockup img {
    width: 100%;
    max-width: 650px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s;
    transform: perspective(1000px) rotateY(-5deg);
}

.device-mockup:hover img {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.feature-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    background: linear-gradient(135deg, #ff3366, #ff6633);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.2), rgba(255, 102, 51, 0.2));
    filter: blur(20px);
    z-index: -1;
}

.element-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -150px;
    animation: float 15s infinite ease-in-out;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    right: -50px;
    animation: float 12s infinite ease-in-out reverse;
}

.element-3 {
    width: 150px;
    height: 150px;
    top: 70%;
    left: 10%;
    animation: float 10s infinite ease-in-out 2s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, 30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.success-stat {
    position: absolute;
    bottom: 30px;
    right: 40px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
    display: flex;
    align-items: center;
    animation: slideIn 0.8s ease-out forwards;
}

@keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff3366, #ff6633);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.stat-text {
    font-size: 0.9rem;
    color: #333;
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ff3366;
    display: block;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        padding-top: 60px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .left-content {
        padding-right: 0;
        margin-bottom: 60px;
        text-align: center;
    }
    
    .main-headline::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .benefits {
        flex-direction: column;
    }
}


/* point-section */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    border-radius: 2px;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1.2;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.feature-image:hover img {
    transform: scale(1.02);
}

.point-label {
    color: #ff3366;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.feature-benefit {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    fill: #ff3366;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-text {
    font-weight: 600;
    color: #333;
}

.feature-link {
    display: inline-block;
    margin-top: 10px;
    color: #ff3366;
    font-weight: 700;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
}

.feature-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff3366;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.feature-link:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 992px) {
    .feature-item, 
    .feature-item:nth-child(even) {
        flex-direction: column;
        gap: 40px;
    }
    
    .feature-content {
        order: 2;
    }
    
    .feature-image {
        order: 1;
    }
}

/* between FV and 2ndV */
.spacer-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px;
    text-align: center;
}

.quote-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.quote-text {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.5;
    color: #333;
    position: relative;
    z-index: 2;
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: rgba(255, 51, 102, 0.15);
    z-index: -1;
}

.quote-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    margin: 60px auto;
    border-radius: 2px;
}

.quote-decoration {
    position: absolute;
    font-size: 12rem;
    color: rgba(255, 51, 102, 0.05);
    font-family: 'Times New Roman', serif;
    z-index: 1;
}

.quote-decoration-left {
    top: -20px;
    left: -30px;
}

.quote-decoration-right {
    bottom: -80px;
    right: -30px;
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .spacer-section {
        padding: 80px 20px;
    }
    
    .quote-text {
        font-size: 1.8rem;
    }
    
    .quote-decoration {
        font-size: 8rem;
    }
}

/* feature-section */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-header {
    padding: 22px 25px;
    position: relative;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1));
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff3366, #ff6633);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    flex-grow: 1;
}

.feature-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

/* Create a subtle pattern for each card */
.feature-card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(255, 51, 102, 0.05), transparent 70%);
    z-index: -1;
}

/* Responsive styles */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* comparison */
.unicopi-comparison-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
}

.unicopi-comparison-container {
    background-color: #f8f9fa;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.unicopi-section-header {
    text-align: center;
    margin-bottom: 25px;
}

.unicopi-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.unicopi-section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    border-radius: 2px;
}

.unicopi-section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.unicopi-table-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.unicopi-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.unicopi-comparison-table th {
    background-color: #f8f9fa;
    padding: 20px 15px;
    text-align: center;
    font-weight: 700;
    color: #333;
    border-bottom: 1px solid #e9ecef;
}

.unicopi-comparison-table th:first-child {
    text-align: left;
    padding-left: 25px;
}

.unicopi-comparison-table th.unicopi-highlight {
    background: linear-gradient(45deg, #ff336655, #ff663355);
    color: white;
    position: relative;
}

.unicopi-comparison-table td {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.unicopi-comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    padding-left: 25px;
    color: #333;
}

.unicopi-comparison-table tr:nth-child(even) td {
    background-color: #f8f9fa;
}

.unicopi-comparison-table tr:last-child td {
    border-bottom: none;
}

.unicopi-comparison-table td.unicopi-highlight {
    background-color: rgba(255, 51, 102, 0.05) !important;
}

.unicopi-comparison-table tr:nth-child(even) td.unicopi-highlight {
    background-color: rgba(255, 51, 102, 0.08) !important;
}

.unicopi-check {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ff3366;
    position: relative;
    vertical-align: middle;
}

.unicopi-check::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 6px;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.unicopi-cross {
    display: inline-block;
    width: 28px;
    height: 28px;
    position: relative;
    vertical-align: middle;
}

.unicopi-cross::before,
.unicopi-cross::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 6px;
    width: 2px;
    height: 16px;
    background-color: #adb5bd;
}

.unicopi-cross::before {
    transform: rotate(45deg);
}

.unicopi-cross::after {
    transform: rotate(-45deg);
}

.unicopi-logo {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff3366, #ff6633);
    border-radius: 8px;
    color: white;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 16px;
    vertical-align: middle;
}

/* Responsive styles */
@media (max-width: 992px) {
    .unicopi-table-wrapper {
        overflow-x: auto;
    }
    
    .unicopi-comparison-table {
        min-width: 800px;
    }
}

/* vision-section */
.vision-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
}

.vision-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
    background-color: #f8f9fa;
    color: #333;
}

.vision-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.vision-header {
    text-align: center;
    margin-bottom: 20px;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.vision-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.vision-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vision-block {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
}

.vision-text {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.vision-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #444;
}

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

.vision-image {
    flex: 1;
    min-width: 300px;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(255, 102, 51, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.vision-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-quote {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    padding: 50px 40px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.vision-quote-text {
    position: relative;
    z-index: 1;
}

.vision-quote-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #444;
}

.vision-quote-mark {
    position: absolute;
    font-size: 120px;
    color: rgba(255, 51, 102, 0.05);
    font-family: Georgia, serif;
    top: -20px;
    left: 20px;
    z-index: 0;
}

.vision-signature {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 30px;
    font-weight: 700;
    color: #333;
}

.vision-signature-info {
    text-align: right;
    margin-right: 15px;
}

.vision-signature .name {
    font-size: 1.1rem;
}

.vision-signature .title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.vision-signature-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vision-signature-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-highlight {
    color: #ff3366;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 15px 0;
    color: #333;
    position: relative;
    display: inline-block;
    padding-left: 15px;
}

.section-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff3366, #ff6633);
    border-radius: 2px;
}

.divider-section {
    margin: 30px 0;
    text-align: left;
    position: relative;
}

@media (max-width: 768px) {
    .vision-block {
        flex-direction: column;
    }
    
    .vision-image {
        order: -1;
        padding: 30px;
    }
    
    .vision-text {
        padding: 30px;
    }
    
    .vision-quote {
        padding: 40px 30px 30px;
    }
    
    .vision-title {
        font-size: 2rem;
    }
}

/* リセットとベーススタイル */
.unicopi-points-section *,
.unicopi-points-section *::before,
.unicopi-points-section *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
}

.unicopi-points-section {
    background-color: #f8f9fa;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

/* セクションタイトル */
.unicopi-section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 60px;
    position: relative;
}

.unicopi-section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    border-radius: 2px;
}

/* 特徴コンテナ */
.unicopi-features-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* 特徴アイテム */
.unicopi-feature-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.unicopi-feature-item:nth-child(even) {
    flex-direction: row-reverse;
}

/* 特徴コンテンツ */
.unicopi-feature-content {
    flex: 1;
    padding: 20px;
}

/* 特徴イメージ */
.unicopi-feature-image {
    flex: 1.2;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.unicopi-feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.unicopi-feature-image:hover img {
    transform: scale(1.02);
}

/* ポイントラベル */
.unicopi-point-label {
    color: #ff3366;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

/* 特徴タイトル */
.unicopi-feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #333;
}

/* 特徴説明 */
.unicopi-feature-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* 特徴利点 */
.unicopi-feature-benefit {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 15px;
}

.unicopi-benefit-icon {
    width: 24px;
    height: 24px;
    fill: #ff3366;
    margin-right: 15px;
    flex-shrink: 0;
}

.unicopi-benefit-text {
    font-weight: 600;
    color: #333;
}

/* 特徴リンク */
.unicopi-feature-link {
    display: inline-block;
    margin-top: 10px;
    color: #ff3366;
    font-weight: 700;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
}

.unicopi-feature-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff3366;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.unicopi-feature-link:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .unicopi-feature-item, 
    .unicopi-feature-item:nth-child(even) {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }
    
    .unicopi-feature-content {
        order: 2;
        padding: 10px;
    }
    
    .unicopi-feature-image {
        order: 1;
        width: 100%;
    }
    
    .unicopi-feature-title {
        font-size: 1.5rem;
    }
    
    .unicopi-feature-description {
        font-size: 1rem;
    }
}

/* voice */
/* リセットとベーススタイル */
.unicopi-testimonials-section *,
.unicopi-testimonials-section *::before,
.unicopi-testimonials-section *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
}

.unicopi-testimonials-section {
    background-color: #f8f9fa;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

/* セクションタイトル */
.unicopi-section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 60px;
    position: relative;
}

.unicopi-section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    border-radius: 2px;
}

/* お客様の声コンテナ */
.unicopi-testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* お客様の声カード */
.unicopi-testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

/* カードヘッダー */
.unicopi-testimonial-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.unicopi-testimonial-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-left: 18px;
    line-height: 1.4;
}

.unicopi-testimonial-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: linear-gradient(180deg, #ff3366, #ff6633);
    border-radius: 2px;
}

.unicopi-testimonial-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.unicopi-user-info {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 5px;
}

.unicopi-user-name {
    font-weight: 600;
    color: #444;
}

/* カードボディ */
.unicopi-testimonial-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.unicopi-testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ハイライト */
.unicopi-highlight {
    background: linear-gradient(180deg, rgba(255, 51, 102, 0), rgba(255, 51, 102, 0.15));
    padding: 0 2px;
    font-weight: 600;
}

/* 成果ボックス */
.unicopi-result-box {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: auto;
}

.unicopi-result-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.unicopi-result-stats {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff3366;
}

/* 引用装飾 */
.unicopi-quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: rgba(255, 51, 102, 0.1);
    font-family: Georgia, serif;
    position: absolute;
    top: -20px;
    right: 20px;
}

/* レスポンシブスタイル */
@media (max-width: 992px) {
    .unicopi-testimonials-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 576px) {
    .unicopi-testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .unicopi-testimonial-title {
        font-size: 1.2rem;
    }
    
    .unicopi-testimonial-header,
    .unicopi-testimonial-body {
        padding: 20px;
    }
}

.hero-logo {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
}

/* リセットとベーススタイル */
.unicopi-pricing-section *,
.unicopi-pricing-section *::before,
.unicopi-pricing-section *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', sans-serif;
}

.unicopi-pricing-section {
    background-color: #f8f9fa;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

/* セクションタイトル */
.unicopi-section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 60px;
    position: relative;
}

.unicopi-section-title:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff3366, #ff6633);
    border-radius: 2px;
}

/* 料金コンテナ */
.unicopi-pricing-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

/* メインプライシングブロック */
.unicopi-pricing-box {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.unicopi-pricing-header {
    background: linear-gradient(135deg, #ff3366, #ff6633);
    color: white;
    padding: 30px 20px;
    position: relative;
}

.unicopi-pricing-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.unicopi-pricing-amount {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.unicopi-pricing-range {
    font-size: 1.2rem;
    opacity: 0.9;
}

.unicopi-pricing-detail {
    background: white;
    padding: 40px 30px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.unicopi-pricing-highlight {
    color: #ff3366;
    font-weight: 700;
}

/* LINEブロック */
.unicopi-line-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
}

.unicopi-line-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.unicopi-line-info {
    flex: 1;
    min-width: 300px;
}

.unicopi-line-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
}

.unicopi-line-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.unicopi-line-note {
    font-size: 0.95rem;
    color: #777;
    text-align: left;
}

.unicopi-line-qr {
    flex: 0 0 200px;
    background: #f0f0f0;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: relative;
}

.unicopi-line-logo {
    position: absolute;
    width: 50px;
    height: 50px;
    bottom: -15px;
    right: -15px;
    background: #06C755;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
}

.unicopi-line-logo svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* CTAボタン */
.unicopi-cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(90deg, #06C755, #04A345);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(6, 199, 85, 0.3);
    transition: all 0.3s;
    overflow: hidden;
    position: relative;
    z-index: 1;
    max-width: 90%;
}

.unicopi-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(6, 199, 85, 0.4);
}

.unicopi-cta-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s;
    z-index: -1;
}

.unicopi-cta-button:hover::after {
    left: 100%;
}

.unicopi-line-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    text-align: left;
}

.unicopi-line-benefit {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #555;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 50px;
}

.unicopi-line-benefit svg {
    width: 18px;
    height: 18px;
    fill: #06C755;
    margin-right: 10px;
    flex-shrink: 0;
}

/* レスポンシブスタイル */
@media (max-width: 768px) {
    .unicopi-pricing-header {
        padding: 25px 15px;
    }
    
    .unicopi-pricing-amount {
        font-size: 2rem;
    }
    
    .unicopi-pricing-detail {
        padding: 30px 20px;
        font-size: 1.1rem;
    }
    
    .unicopi-line-block {
        padding: 30px 20px;
    }
    
    .unicopi-cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
    }
}

/* ヘッダースタイル */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: auto;
    width: 100%;
}

.logo img {
    max-height: 30px;
    display: block;
}

.header-buttons {
    display: flex;
    align-items: center;
}

.button-container {
    display: flex;
    align-items: center;
    gap: 15px; /* ボタン間の間隔を増やす */
}

.cta-button {
    background-color: #E5323E;
    color: #fff;
    border: none;
    padding: 10px 15px; /* 左右のパディングを調整 */
    font-size: 0.9rem; /* フォントサイズを少し小さく */
    text-decoration: none;
    border-radius: 20px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap; /* テキストの折り返しを防止 */
    text-align: center; /* テキストを中央揃え */
    min-width: max-content; /* コンテンツに基づく最小幅 */
}

.cta-button.header-button {
    padding: 10px 15px;
    margin: 0;
}

.cta-button:hover {
    background-color: #C1272D;
}

.login-button {
    color: #E5323E;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

.login-button:hover {
    text-decoration: underline;
}

/* レスポンシブスタイル */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    
    .logo img {
        margin-bottom: 10px;
    }
    
    .header-buttons {
        width: 100%;
    }
    
    .button-container {
        width: 100%;
        justify-content: space-between;
    }
    
    .cta-button {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}