@charset "UTF-8";

/* =========================================
   変数設定（オシャレ・カラーテーマ）
========================================= */
:root {
    --bg-light-orange: #fff4ea;
    --bg-white: #ffffff;
    --text-main: #333333;
    --accent-gold: #cfa85e;
    --btn-dark: #1e3a5f;
    --line-green: #06C755;
    --base-font-size: 18px; 
    --container-max-width: 1300px; 
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, 'Hiragino Sans', sans-serif;
    color: var(--text-main);
    font-size: var(--base-font-size);
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 40px; 
    text-align: center;
}

/* =========================================
   装飾・タイポグラフィ
========================================= */
.text-gradient {
    background: linear-gradient(135deg, #cfa85e 0%, #e5c88b 50%, #cfa85e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* =========================================
   ヒーローエリア
========================================= */
.hero { 
    background-color: var(--bg-light-orange); 
    text-align: center; 
    padding: 0;
    margin: 0;
}

.hero-wrapper { 
    position: relative; 
    max-width: 1400px; 
    margin: 0 auto; 
    width: 100%; 
    line-height: 0; 
    aspect-ratio: 2752 / 1536; /* PC用画像のアスペクト比 */
    background-color: var(--bg-light-orange); 
}

.hero-picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    display: block; 
}

.btn-hero-line {
    position: absolute;
    top: 82%; 
    left: 8%; 
    background: linear-gradient(135deg, #06C755, #05b34c);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    padding: 1.5vw 3.5vw;
    font-size: clamp(14px, 1.8vw, 22px);
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-hero-line:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(6, 199, 85, 0.5);
}

/* =========================================
   アイコン・画像の1:1固定設定
========================================= */
.icon-square, .icon-square-sm, .icon-square-lg, .icon-square-step {
    background: linear-gradient(135deg, #ffffff, #f8f9fa); 
    border: 1px solid #e2e8f0;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
}

.icon-square img, .icon-square-sm img, .icon-square-lg img, .icon-square-step img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

.icon-square { width: 160px; border-radius: 24px; }
.icon-square-sm { width: 100px; border-radius: 20px; }
.icon-square-lg { width: 220px; border-radius: 50%; box-shadow: 0 10px 20px rgba(0,0,0,0.05); border: 5px solid #fff; } 
.icon-square-step { width: 240px; border-radius: 30px; }

/* =========================================
   セクション共通・背景色設定
========================================= */
.section-bg-white { 
    padding: 80px 0; 
    background-color: var(--bg-white); 
}

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

/* =========================================
   オシャレな見出し
========================================= */
.section-title {
    text-align: center;
    margin-bottom: 50px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; 
}

.section-title .en-title {
    color: var(--accent-gold);
    font-size: 16px;
    letter-spacing: 0.2em;
    font-weight: bold;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    text-transform: uppercase;
}

.section-title .ja-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--btn-dark);
    position: relative;
    padding-bottom: 25px; 
    line-height: 1.4;
}

.section-title .ja-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; 
    height: 4px; 
    background: linear-gradient(135deg, #cfa85e 0%, #e5c88b 50%, #cfa85e 100%);
    border-radius: 4px;
}

.section-bg-orange .section-title .en-title { color: var(--btn-dark); opacity: 0.6; }
.section-bg-orange .section-title .ja-title::after { background: var(--btn-dark); }

/* =========================================
   モダンなカードレイアウト
========================================= */
.card-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.card {
    background: #fff;
    padding: 50px 40px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.08); 
    flex: 1; 
    position: relative;
    border-top: 5px solid var(--accent-gold); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -10px rgba(0,0,0,0.12);
}

.card-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #cfa85e, #b88a44);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 30px;
    border-radius: 30px;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(207, 168, 94, 0.4);
}

.card h3 { font-size: 24px; margin-bottom: 20px; color: var(--btn-dark); }
.card p { font-size: 18px; color: #555; }

.flex-3 .card { min-width: 360px; }
.flex-4 .card { min-width: 260px; border-top: none; padding: 40px 20px;} 

/* ▼ 追加：商品の詳細テキスト用スタイル ▼ */
.card-sm p.catch-text {
    font-size: 16px;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 10px;
}
.card-sm p.desc-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: left; /* 読みやすさ重視で左揃え */
    margin: 0;
}

.price-tag { font-size: 32px; margin-bottom: 60px; font-weight: bold; text-align: center;}

/* =========================================
   ターゲット（モダンな吹き出し）
========================================= */
.balloon-modern {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    font-weight: bold;
    color: var(--btn-dark);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06); 
}

.balloon-modern::after {
    content: ""; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
    border-width: 12px 12px 0; border-style: solid; border-color: #fff transparent transparent transparent;
}

/* =========================================
   3ステップ
========================================= */
.step-wrapper { 
    display: flex; 
    align-items: flex-start; /* テキスト量によるズレを防ぐため上揃えに変更 */
    justify-content: center; 
    gap: 20px; 
}
.step-item { 
    text-align: center; 
    position: relative; 
    flex: 1; /* 幅を均等にする */
}

.step-num {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.step-title { font-size: 24px; font-weight: bold; color: var(--btn-dark); margin-bottom: 15px; }

/* ▼ 追加：ステップの詳細テキスト用スタイル ▼ */
.step-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    text-align: left; /* 読みやすさ重視で左揃え */
    margin: 0 auto;
    max-width: 280px;
}

.chevron {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-top: 4px solid #cbd5e1;
    border-right: 4px solid #cbd5e1;
    transform: rotate(45deg);
    margin: 140px 10px 0; /* アイコンの高さに合わせて矢印を下に調整 */
}

/* =========================================
   Q&Aセクション
========================================= */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-q {
    padding: 25px 30px 25px 70px;
    font-weight: bold;
    font-size: 20px;
    color: var(--btn-dark);
    position: relative;
    background: #fafcfd;
}

.faq-q::before {
    content: "Q";
    position: absolute;
    left: 25px;
    top: 25px;
    color: var(--accent-gold);
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
}

.faq-a {
    padding: 25px 30px 25px 70px;
    font-size: 16px;
    color: #555;
    border-top: 1px dashed #ddd;
    position: relative;
}

.faq-a::before {
    content: "A";
    position: absolute;
    left: 25px;
    top: 25px;
    color: var(--btn-dark);
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
}

/* =========================================
   会社概要セクション
========================================= */
.company-table-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 16px;
}

.company-table th, .company-table td {
    padding: 25px 20px;
    border-bottom: 1px solid #eee;
}

.company-table tr:last-child th, .company-table tr:last-child td {
    border-bottom: none;
}

.company-table th {
    width: 25%;
    color: var(--btn-dark);
    font-weight: bold;
    background: #fafcfd;
}

/* =========================================
   代表メッセージセクション
========================================= */
.creator-profile { padding: 100px 0 60px 0; }

.profile-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px; 
    max-width: 1000px; 
    margin: 0 auto;
    text-align: left; 
}

.photo-area {
    width: 250px; 
    height: 250px; 
    border-radius: 50%; 
    overflow: hidden;
    border: 3px solid var(--accent-gold); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex-shrink: 0; 
}

.creator-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.details-area { flex: 1; }

.company-name-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-gold);
    margin: 0 0 5px 0;
    letter-spacing: 0.1em;
}

.ceo-name-text {
    font-size: 32px;
    font-weight: bold;
    color: var(--btn-dark);
    margin: 0 0 25px 0;
}

.comment-box {
    background-color: rgba(207, 168, 94, 0.05); 
    padding: 30px; 
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.comment-body-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8; 
    margin: 0;
    white-space: pre-wrap; 
}

/* =========================================
   下部 CTAエリア
========================================= */
.cta { background: linear-gradient(135deg, #1e3a5f 0%, #152a45 100%); color: #fff; padding: 70px 0; text-align: center;}
.cta-text { font-size: 28px; font-weight: bold; margin-bottom: 40px; }

.btn {
    display: block; width: 100%; max-width: 550px; margin: 0 auto 25px;
    padding: 25px; border-radius: 60px; text-decoration: none;
    font-weight: bold; font-size: 22px; transition: all 0.3s;
}

.btn-white { background: #fff; color: var(--btn-dark); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0,0,0,0.3); }

.btn-line-bottom { background: linear-gradient(135deg, #06C755, #05b34c); color: #fff; box-shadow: 0 10px 20px rgba(6, 199, 85, 0.3); }
.btn-line-bottom:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(6, 199, 85, 0.4); }

.company-name-footer { margin-top: 40px; opacity: 0.7; font-size: 16px; }

/* =========================================
   スマホ対応・タブレット対応
========================================= */
@media screen and (max-width: 1024px) {
    .container { padding: 0 20px; }
    .section-title .ja-title { font-size: 28px; }
    
    /* 商品セクションのカード調整 */
    .flex-3 .card, .flex-4 .card { flex: none; width: 100%; min-width: unset; }
    
    /* ステップセクションのスマホ調整 */
    .step-wrapper { flex-direction: column; align-items: center; }
    .chevron { transform: rotate(135deg); margin: 20px 0; } 
    
    .profile-content {
        flex-direction: column; 
        text-align: center; 
        gap: 30px;
    }
    .photo-area { width: 180px; height: 180px; }
    .company-name-text { font-size: 20px; }
    .ceo-name-text { font-size: 26px; }
    .comment-box { padding: 20px; }
    .comment-body-text { font-size: 16px; }
}

/* ★スマホ専用レイアウト調整 */
@media screen and (max-width: 767px) {
    /* --- スマホ時のヒーロー画像とLINEボタン調整 --- */
    .hero-wrapper {
        aspect-ratio: auto;
        padding-bottom: 40px; 
    }

    .hero-picture {
        aspect-ratio: 1125 / 1700; 
    }

    .btn-hero-line {
        position: static; 
        display: block;
        width: 90%; 
        max-width: 400px;
        margin: 20px auto 0; 
        transform: none; 
        padding: 20px 15px; 
        font-size: 20px; 
        text-align: center;
        border-radius: 50px;
    }

    .btn-hero-line:hover {
        transform: translateY(-3px); 
    }

    /* --- 追加セクションのスマホ対応 --- */
    .faq-q, .faq-a {
        padding: 20px 20px 20px 50px;
        font-size: 16px;
    }
    
    .faq-q::before, .faq-a::before {
        left: 15px;
        top: 20px;
        font-size: 22px;
    }

    .company-table-wrapper {
        padding: 20px;
    }

    .company-table th, .company-table td {
        display: block;
        width: 100%;
    }

    .company-table th {
        padding: 15px 10px 5px;
        background: transparent;
        border-bottom: none;
    }

    .company-table td {
        padding: 0 10px 20px;
    }
}