/* =========================================================
  style_new.css
========================================================= */

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

body{

    font-family:
        "Yu Gothic",
        "Meiryo",
        sans-serif;

    background:#f5f7fa;

    color:#222;

    line-height:1.7;
}

/* =========================================================
  COMMON
========================================================= */

section{
    padding:90px 20px;
}

.section-title-area{
    text-align:center;
    margin-bottom:50px;
}

.section-sub{

    color:#2d6cdf;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;
}

.section-title-area h2{

    font-size:52px;		/* 38px ★*/

    font-weight:700;		/* added */

    color:#2f5d34;
}

/* =========================================================
  HEADER
========================================================= */

.site-header{

    background:#fff;

    border-bottom:1px solid #ddd;

    position:sticky;

    top:0;

    z-index:999;
}

.header-inner{

    max-width:1200px;

    margin:auto;

    padding:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.logo-area{

    display:flex;

    align-items:center;

    gap:16px;
}

.logo-circle{

    width:64px;
    height:64px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        #2d6cdf,
        #4fc3f7
    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:bold;
}

.logo-main{

    font-size:32px;

    font-weight:bold;

    color:#2f5d34;
}

.logo-sub{

    font-size:13px;

    color:#666;
}

.header-right{

    display:flex;

    align-items:center;

    gap:24px;
}

.tel-number{

    font-size:30px;

    font-weight:bold;
}

.tel-address{

    text-align:right;

    font-size:12px;

    color:#777;
}

.portal-btn{

    background:#2f7d32;

    color:#fff;

    text-decoration:none;

    padding:14px 26px;

    border-radius:10px;

    transition:.3s;
}

.portal-btn:hover{

    background:#256528;
}

/* =========================================================
  HERO
========================================================= */

.hero{
    background:#fff;
}

.hero-inner{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:50px;

    align-items:center;
}

.hero-label{

    display:inline-block;

    background:#e8f1ff;

    color:#2d6cdf;

    padding:8px 14px;

    border-radius:30px;

    font-size:13px;

    margin-bottom:24px;
}

.hero h1{

    font-size:52px;

    line-height:1.4;

    margin-bottom:24px;

    color:#2f5d34;
}

.hero-text{

    font-size:19px;

    color:#555;

    margin-bottom:36px;
}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.btn-main,
.btn-sub{

    text-decoration:none;

    padding:16px 28px;

    border-radius:12px;

    transition:.3s;
}

.btn-main{

    background:#2d6cdf;

    color:#fff;
}

.btn-main:hover{

    background:#1d56b8;
}

.btn-sub{

    border:2px solid #2d6cdf;

    color:#2d6cdf;
}

.btn-sub:hover{

    background:#e8f1ff;
}

.hero-image{

    height:420px;

    border-radius:24px;

    background:linear-gradient(
        135deg,
        #dce8ff,
        #f5f7fa
    );

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.hero-image-text{

    font-size:38px;

    font-weight:bold;

    color:#2d6cdf;
}

/* =========================================================
  PRODUCTS
========================================================= */

.product-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap:28px;
}

.product-card{

    background:#fff;

    border-radius:22px;

    padding:34px;

    text-decoration:none;

    color:#222;

    transition:.3s;

    box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.product-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.product-icon{

    width:72px;
    height:72px;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    font-weight:bold;

    margin-bottom:24px;
}

.blue{
    background:#2d6cdf;
}

.green{
    background:#2f7d32;
}

.orange{
    background:#f39c12;
}

.gray{
    background:#6c757d;
}

.product-card h3{

    font-size:24px;

    margin-bottom:12px;
}

.product-card p{

    color:#666;
}

/* =========================================================
  ARCHITECTURE
========================================================= */

.arch-box{

    max-width:700px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:30px;

    align-items:center;
}

.arch-top,
.arch-center,
.arch-bottom{

    width:100%;

    text-align:center;

    padding:40px;

    border-radius:22px;

    background:#fff;

    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.arch-center{

    background:#2d6cdf;

    color:#fff;

    font-size:42px;

    font-weight:bold;
}

/* =========================================================
  FEATURES
========================================================= */

.feature-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
        repeat(4,1fr);
    gap:28px;
}

.feature-box{

// .feature-box,
.arch-top,
.arch-center,
.arch-bottom{
    cursor:pointer;		/* added マウスが指マーク ★ */
}


    background:#fff;

//  padding:36px;

    padding:50px 25px;		/* ★ */

    border-radius:20px;

    text-align:center;

    box-shadow:0 6px 16px rgba(0,0,0,.06);
}

.feature-icon{

    font-size:38px;

    margin-bottom:20px;
}

.feature-box h3{

    font-size:24px;		/* added  ★ */

    font-weight:700;		/* added ★  */

    margin-bottom:14px;

    color:#2f5d34;
}

/* =========================================================
  CONTACT
========================================================= */

.contact{

    padding:120px 20px;		/* added  ★ */

    background:yellow;		/* #2f5d34 */

    color:#fff;

    text-align:center;
}

.contact h2{

    font-size:42px;

    margin-bottom:24px;
}

.contact p{

    font-size:20px;		/* 16px １8px★ */

    line-height:2;		/* added  ★ */

    margin-bottom:36px;
}

.contact-btn{

    display:inline-block;

    background:#fff;

    color:#2f5d34;

    text-decoration:none;

    padding:18px 42px;		/* 16px 34px★ */

    border-radius:12px;

    font-weight:bold;

    transition:.3s;
}

.contact-btn:hover{

    background:#f0f0f0;
}

/* =========================================================
  FOOTER
========================================================= */

.site-footer{

    background:#1d1d1d;

    color:#aaa;

    padding:24px;

    text-align:center;
}

/* =========================================================
  RESPONSIVE
========================================================= */

@media(max-width:900px){

    .hero-inner{

        grid-template-columns:1fr;
    }

    .hero h1{

        font-size:38px;
    }

    .header-inner{

        flex-direction:column;

        gap:20px;
    }

    .header-right{

        flex-direction:column;
    }

    .tel-number{

        font-size:24px;
    }

}

.arrow{

    margin-left:8px;

    color:#2d6cdf;

    font-weight:bold;
}

.feature-box:hover{

    background:#f8fbff;
}

/* =========================================================
  DOWNLOAD
========================================================= */

.download-section{

    padding:100px 20px;

    background:#f5f7fa;
}

.download-lead{

    margin-top:20px;

    color:#666;

    font-size:18px;
}

.download-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(260px,1fr));

    gap:28px;
}

.download-card{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    text-decoration:none;

    color:#222;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

    position:relative;
}

.download-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    background:#f8fbff;
}

.download-icon{

    width:80px;
    height:80px;

    border-radius:20px;

    background:#2d6cdf;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    font-weight:bold;

    margin-bottom:26px;
}

.download-card h3{

    font-size:26px;

    margin-bottom:14px;

    color:#2f5d34;
}

.download-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;
}

.download-button{

    display:inline-block;

    background:#2f7d32;

    color:#fff;

    padding:12px 24px;

    border-radius:10px;

    font-size:15px;

    font-weight:bold;
}

/* ========================================= */
/* BASE */
/* ========================================= */

body{
    margin:0;
    padding:0;
    background:#f4f6f9;
    font-family:'Segoe UI',Meiryo,sans-serif;
    color:#222;
}

/* ========================================= */
/* SECTION */
/* ========================================= */

.section{
    padding:80px 40px;
}

/* ========================================= */
/* TITLE */
/* ========================================= */

.title{
    text-align:center;
    font-size:42px;
    font-weight:bold;
    color:#205c2d;
    margin-bottom:10px;
    letter-spacing:2px;
}

.sub-title{
    text-align:center;
    color:#666;
    margin-bottom:60px;
    font-size:16px;
    letter-spacing:1px;
}

/* ========================================= */
/* GRID */
/* ========================================= */

.card-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    max-width:1400px;d			/* 1400px;d  */
    margin:0 auto;
}

/* ========================================= */
/* CARD */
/* ========================================= */

.card{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.08);

    transition:0.3s;
}

.card:hover{

    transform:
        translateY(-8px);

    box-shadow:
        0 18px 35px rgba(0,0,0,0.15);
}

/* ========================================= */
/* CARD TITLE */
/* ========================================= */

.card-title{
    font-size:28px;
    font-weight:bold;
    color:#205c2d;
    margin-bottom:15px;
}

/* ========================================= */
/* CARD DESCRIPTION */
/* ========================================= */

.card-desc{
    color:#666;
    line-height:1.8;
    min-height:70px;
    margin-bottom:25px;
    font-size:15px;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.btn{

    display:inline-block;

    padding:
        12px 26px;

    background:
        #2f9441;

    color:
        #fff;

    text-decoration:none;

    border-radius:
        10px;

    font-weight:bold;

    letter-spacing:1px;

    transition:0.3s;
}

.btn:hover{

    background:
        #1f6f2d;

    transform:
        scale(1.05);
}

/* ========================================= */
/* SUPPORT AREA */
/* ========================================= */

.support-section{

    background:
        #2f9441;		/* #2f9441 末尾の背景色（濃い緑）*/
}

.support-section .title{

    color:
        #fff;
}

.support-section .sub-title{

    color:
        #d7e5da;
}

.support-section .card{

    background:
        #ffffff;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer{

    background:
        #111;

    color:
        #aaa;

    text-align:center;

    padding:
        30px;

    font-size:
        14px;

    letter-spacing:
        1px;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:768px){

    .section{
        padding:60px 20px;
    }

    .title{
        font-size:32px;
    }

    .card-title{
        font-size:24px;
    }

}