@charset "utf-8";

/*
Theme Name:かん助
*/

/****************
Font-Size

Pixels	%
10px	62.5%
11px	68.8%
12px	75.0%
13px	81.3%
14px	87.5%
15px	93.8%
16px	100.0%
17px	106.3%
18px	112.5%
19px	118.8%
20px	125.0%
21px	131.3%
22px	137.5%
23px	143.8%
24px	150.0%
26px	162.5%
28px	175.0%
****************/

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

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6;
}

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

h1, h2, h3 {
    color: #1a1a1a;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
}

h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.5em;
}

p {
    margin-bottom: 15px;
}

strong {
    font-weight: bold;
    color: #007bff; /* 強調色 */
}

br.pc {
    display: block;
}
br.sp {
    display: none;
}

.box_pc {
    display: block;
}
.box_sp {
    display: none;
}


.nodisp {
    display: none!important;
}

.text-large {
    font-size: 140%!important;
}

/* ボタンの共通スタイル */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    text-align: center;
}

.primary-btn {
    background-color: #007bff; /* メインカラー */
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.primary-btn:hover {
    background-color: #0056b3;
    cursor: pointer;
}

/* App Store / Google Play バッジ */
.app-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.app-badges img {
    height: 40px; /* バッジの高さ調整 */
    width: auto;
}

/* アプリアイコン */
.app-icon {
    width: 120px; /* 指定されたサイズ */
    height: 120px; /* 指定されたサイズ */
    border-radius: 25%; /* アイコンらしい丸みを帯びた四角 */
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block; /* 中央寄せのためにブロック要素に */
    margin-left: auto;
    margin-right: auto;
}

/* 1. ファーストビュー */
.hero-section {
    background-color: #e0f2f7; /* 背景色を少し明るく */
    padding: 60px 0 30px 0;
    display: flex;
    flex-wrap: wrap; /* レスポンシブ対応 */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
/*    max-width: 500px;*/
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 3em;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #004d7f; /* より深い青 */
}

.hero-content .sub-headline {
    font-size: 1.2em;
    color: #007bff;
    margin-bottom: 10px;
}

.hero-content .description {
    font-size: 1.3em;
    color: #555;
    margin-bottom: 30px;
}

.hero-relative {
    position: relative;
}
.hero-absolute {
    position: absolute;
    bottom: -84px;
    left: -40px;
    width: 66%;
}

.hero-image {
/*    max-width: 500px;*/
}

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

.hero-absolute p {
    position: absolute;
    bottom: 62%;
    left: 19%;
    font-size: 220%;
    text-shadow: 7px 5px 3px #666;
    color: #f422e2;
    font-weight: bold;
    width: 58%;
}

.hero-absolute img {
    width: 78%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-section .free-offer {
    margin-top: 15px;
    font-size: 1.1em;
    color: #dc3545; /* 赤色で強調 */
    font-weight: bold;
}

/* 2. 現場の課題とアプリの価値（特長） */
.features-section {
    padding: 30px 0;
    background-color: #fff;
    text-align: center;
}

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

.feature-item {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.feature-item img {
    height: 60px;
    margin-bottom: 20px;
}

/* 3. 無料版の具体的な提供価値 */
.free-version-section {
    padding: 60px 0;
    background-color: #e9ecef;
    text-align: center;
}

.free-version-section .highlight {
    font-size: 1.5em;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 30px;
}

.free-offer-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.free-offer-details img {
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.free-offer-details p {
    flex: 1;
    min-width: 280px;
    text-align: left;
    font-size: 1.1em;
}

.free-version-section .small-text {
    font-size: 0.9em;
    color: #6c757d;
}

/* 7. 最終CTA */
.final-cta-section {
    padding: 60px 0 30px 0;
    background-color: #007bff; /* メインカラー */
    color: #fff;
    text-align: center;
}

.final-cta-section h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.final-cta-section .primary-btn {
    background-color: #fff;
    color: #007bff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.final-cta-section .primary-btn:hover {
    background-color: #e9ecef;
}

.final-cta-section .free-offer-bottom {
    margin-top: 20px;
    font-size: 1.2em;
    color: #ffc107; /* 黄色で強調 */
    font-weight: bold;
}

.final-cta-section .bottom_bar {
    background-color: #fff;
    margin-top: 30px;
    padding: 10px 0;
}

.final-cta-section .bottom_bar img {
    height: 60px;
}

/* 8. フッター */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9em;
}

.site-footer .footer-nav {
    margin-top: 15px;
}

.site-footer .footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.site-footer .footer-nav a:hover {
    color: #007bff;
}

.main-container {
    width: 59%;
    margin: 0 auto;
    display: flex;
    gap: 20px; /* 画像とテキストの間に隙間を作成 */
    padding: 20px;
}
.image-container {
    flex-shrink: 0; /* 親要素が縮んでもこの要素は縮まないようにする */
    width: 120px;
    min-width: 120px; /* 最小幅も120pxに固定 */
}

.image-container img {
    max-width: 100%;
    height: auto;
    display: block;
}
.text-container {
    flex: 1; /* 残りのスペースを全て埋める */
}
.text-container p {
    margin: 10px 0 0 0;
    padding: 0;
}
.text-container span {
    font-weight: bold;
    color: #1967d2;
}
.text-container .tx01 {
    font-size: 160%;
}
.text-container .tx02 {
    font-size: 180%;
}
.text-container .d01 {
    font-size: 160%;
}
.text-container .d02 {
    font-size: 180%;
}
.text-container div {
    margin: 10px 0 0 0;
    padding: 0;
    text-align: left;
}

.detail-container .text-container span.d01 img {
    height: 63px;
}

/* レスポンシブデザイン */
@media screen and (min-width: 769px) and (max-width: 992px) {
    .hero-absolute p {
        font-size: 160%;
        width: 100%;
        bottom: 61%;
        left: -2%;
    }
}
/* レスポンシブデザイン */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.7em;
    }

    h3 {
        font-size: 1.3em;
    }

    br.pc {
        display: none;
    }
    br.sp {
        display: block;
    }

    .box_pc {
        display: none;
    }
    .box_sp {
        display: block;
    }

    .text-large {
        font-size: 128%!important;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-content, .hero-image {
        max-width: 100%;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }

    .app-badges img {
        height: 45px; /* モバイルで少し大きく */
    }

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

    .free-offer-details {
        flex-direction: column;
        gap: 20px;
    }

    .free-offer-details p {
        text-align: center;
    }

    .final-cta-section h2 {
        font-size: 2em;
    }

    .main-container {
        width: 100%; /* 幅を100%に */
        flex-direction: column; /* 縦に並べる */
    }
    .detail-container {
        display: block;
    }

    .image-container {
        width: 100%; /* スマートフォンでは画像も幅いっぱいにする */
    }
    .text-container span.tx01 {
        font-size: 110%;
    }
    .text-container span.tx02 {
        font-size: 120%;
    }
    .hero-relative {
        position: static;
    }
    .hero-absolute {
        position: static;
        width: 100%;
    }
    .hero-absolute p {
        position: static;
        font-size: 160%;
        width: 100%;
        text-shadow: none;
    }
}


.parimg {
    display: flex; /* Flexboxを有効にする */
    justify-content: center; /* 主軸（横方向）の中央に配置 */
    align-items: center; /* 交差軸（縦方向）の中央に配置 */
}

.image-list {
    display: flex; /* Flexboxを有効にする */
    list-style: none; /* リストの黒い点（・）を消す */
    padding: 0; /* デフォルトのパディングをリセット */
    margin: 0; /* デフォルトのマージンをリセット */
    gap: 20px; /* 画像間の間隔を設定（お好みで調整） */
}

/* 個々の画像アイテム（li）のスタイル */
.image-list li {
    margin: 0 10px; /* liタグのスタイルを必要に応じて調整 */
    display: flex;
    justify-content: center;
}

/* 画像（img）のスタイル */
.image-list img {
    max-width: auto;
    height: 83px;
    display: block; /* imgタグの隙間を消す */
}


/* スマートフォン向けのスタイル (例: 768px以下) */
@media (max-width: 768px) {
    .image-list {
        display: block;
    }
}

.footer-logo-acs {
    margin-top: 0px;
    width: auto;
    height: 64px;
}

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