@charset "UTF-8";
/* ===================================================================
CSS information
file name  : led-subsidy.css
style info : LED補助金コンテンツ用スタイル（#beginner スコープ）
note       : OEX beginner.css + common.css を統合。rem→px変換済み。
=================================================================== */

/* ==========================================================================
   Variables (scoped to #beginner)
   ========================================================================== */
#beginner {
    --navy: #1a5c1a;
    --blue: #339933;
    --rightblue: #F2F9F2;
    --darkgray: #49565E;
    --rightgray: #F0F0F0;
    --gr: linear-gradient(90deg, #a3d9a3, #8ccc8c, #74bf74, #5cb35c, #47a647, #339933, #267326, #1a5c1a);
    --cv: #2a5c3a;
    --opensans: 'Open Sans', sans-serif;
}

/* ==========================================================================
   Base / Reset (scoped to #beginner)
   ========================================================================== */
#beginner {
    color: #333;
    font-family: "Yu Gothic", YuGothic, "游ゴシック体", "游ゴシック",
        "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro",
        "ヒラギノ角ゴ ProN", "ヒラギノ角ゴ Pro",
        Meiryo, "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    word-break: break-all;
}

#beginner * {
    box-sizing: border-box;
}

#beginner h1, #beginner h2, #beginner h3, #beginner h4, #beginner h5, #beginner h6,
#beginner p, #beginner ul, #beginner ol, #beginner li, #beginner div, #beginner dl, #beginner dt, #beginner dd,
#beginner form, #beginner img, #beginner hr, #beginner table, #beginner tr, #beginner td,
#beginner br, #beginner em, #beginner figure {
    margin: 0;
    padding: 0;
    border: none;
    font-style: normal;
}

#beginner h1, #beginner h2, #beginner h3, #beginner h4, #beginner h5, #beginner h6 {
    font-weight: 500;
    font-size: 16px;
}

#beginner ul, #beginner ol, #beginner dl {
    list-style: none;
}

#beginner p {
    font-size: 16px;
    line-height: 1.7;
}

#beginner a:link,
#beginner a:visited {
    color: #333;
    text-decoration: none;
    transition: 0.5s;
}

#beginner a:hover {
    transition: 0.3s;
}

#beginner a[href^="tel:"] {
    pointer-events: none;
}
#beginner .contact-area a[href^="tel:"] {
    pointer-events: auto;
}

@media screen and (max-width: 768px) {
    #beginner a:link,
    #beginner a:visited {
        transition: 0;
    }
    #beginner a[href^="tel:"] {
        pointer-events: inherit;
    }
    #beginner img {
        height: auto;
        margin: 0 auto;
    }
}

/* ==========================================================================
   Layout (scoped)
   ========================================================================== */
#beginner .inner {
    margin: 0 auto;
    max-width: 1200px;
    min-width: 1200px;
    width: calc(100% - 200px);
    height: inherit;
}

@media screen and (max-width: 768px) {
    #beginner .inner {
        max-width: 100%;
        min-width: 100%;
        width: 100%;
    }
}

/* ==========================================================================
   Responsive Utilities (scoped)
   ========================================================================== */
#beginner .sp-display { display: none; }
#beginner .sp-display-b { display: none; }
#beginner br.pc-br { display: inline; }
#beginner br.sp-br { display: none; }
#beginner .pc-display-b { display: block; }

@media screen and (max-width: 768px) {
    #beginner .pc-display { display: none; }
    #beginner .pc-display-b { display: none; }
    #beginner .sp-display { display: inline; }
    #beginner .sp-display-b { display: block; }
    #beginner br.pc-br { display: none; }
    #beginner br.sp-br { display: inline; }
}

/* ==========================================================================
   Title Styles (scoped)
   ========================================================================== */
#beginner .en-ttl {
    font-family: var(--opensans);
    color: var(--darkgray);
    font-size: 70px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
}

#beginner .jp-ttl {
    font-size: 18px;
    color: var(--darkgray);
    font-weight: 500;
    line-height: 1.2;
    padding: 5px 0 0 30px;
    position: relative;
}

#beginner .jp-ttl::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--blue);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#beginner .catch {
    font-size: 36px;
    line-height: 1.5;
    font-weight: 400;
}

#beginner p.img {
    line-height: 1;
}

#beginner .en {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 0.7;
}

@media screen and (max-width: 768px) {
    #beginner .en-ttl {
        font-size: 40px;
    }
    #beginner .catch {
        font-size: 24px;
        font-weight: 500;
    }
}

/* ==========================================================================
   FontAwesome pseudo-elements (scoped to #beginner only)
   ========================================================================== */
#beginner a::after,
#beginner a::before {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 900;
    display: block;
    position: absolute;
    line-height: 1;
}

/* ==========================================================================
   Image Wrap / Animation (scoped)
   ========================================================================== */
#beginner .img-wrap {
    overflow: hidden;
    position: relative;
}

#beginner .img-animation {
    animation: led-img-opacity 1.5s cubic-bezier(.7, 0, .2, 1);
}

#beginner .img-animation:before {
    animation: led-img-animation 1.5s cubic-bezier(.7, 0, .2, 1) forwards;
    background: var(--navy);
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
}

@keyframes led-img-opacity {
    0% { opacity: 0; }
}

@keyframes led-img-animation {
    100% { transform: translateY(100%); }
}

/* ==========================================================================
   Hover Background (scoped)
   ========================================================================== */
#beginner .hover-bg {
    position: relative;
}

#beginner .hover-bg::before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 0;
    transition: all 0.4s ease;
    background: var(--navy);
}

#beginner .hover-bg:hover::before {
    left: 0;
    width: 100%;
}

/* ==========================================================================
   Page Title (scoped)
   ========================================================================== */
#beginner .page-title-area {
    height: 555px;
    position: relative;
    background: var(--rightblue);
    margin-top: 0;
    z-index: 3;
}
#beginner .page-title-area::after {
    content: "";
    display: inline-block;
    background-image: url(../images/led/pagetitle-beg.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    min-width: 800px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
#beginner .page-title-area .inner {
    height: 100%;
}
#beginner .page-title-area .inner::before {
    position: absolute;
    content: "";
    background-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 60'%3E%3Cg %3E%3Crect fill='%23FFFFFF' width='11' height='11'/%3E%3Crect fill='%23fcfdfb' x='10' width='11' height='11'/%3E%3Crect fill='%23f9fcf8' y='10' width='11' height='11'/%3E%3Crect fill='%23f5faf4' x='20' width='11' height='11'/%3E%3Crect fill='%23f2f8f1' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%23eff6ed' y='20' width='11' height='11'/%3E%3Crect fill='%23ecf5e9' x='30' width='11' height='11'/%3E%3Crect fill='%23e8f3e6' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%23e5f1e2' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%23e2f0df' y='30' width='11' height='11'/%3E%3Crect fill='%23dfeedb' x='40' width='11' height='11'/%3E%3Crect fill='%23dbecd8' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%23d8ead4' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%23d5e9d0' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%23d2e7cd' y='40' width='11' height='11'/%3E%3Crect fill='%23cfe5c9' x='50' width='11' height='11'/%3E%3Crect fill='%23cbe4c6' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%23c8e2c2' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23c5e0bf' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23c2debb' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%23beddb8' y='50' width='11' height='11'/%3E%3Crect fill='%23bbdbb4' x='60' width='11' height='11'/%3E%3Crect fill='%23b8d9b1' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%23b5d8ae' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%23b2d6aa' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%23aed4a7' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%23abd2a3' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%23a8d1a0' x='70' width='11' height='11'/%3E%3Crect fill='%23a5cf9c' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%23a1cd99' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%239ecc96' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%239bca92' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%2397c88f' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%2394c68b' x='80' width='11' height='11'/%3E%3Crect fill='%2391c588' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%238ec385' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%238ac181' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%2387bf7e' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%2383be7a' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%2380bc77' x='90' width='11' height='11'/%3E%3Crect fill='%237dba74' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%2379b870' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%2376b76d' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%2372b56a' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%236fb366' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%236bb263' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%2368b060' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%2364ae5c' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%2361ac59' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%235dab56' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%2359a952' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%2355a74f' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%2352a54b' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%234ea448' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%234aa245' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%2345a041' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%23419e3e' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%233d9d3a' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%23389b37' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%23339933' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
    background-position: left center;
    width: 100%;
    height: 620px;
    left: 0;
    z-index: -1;
}
#beginner .page-title-area .section-title {
    font-weight: bold;
    line-height: 1.5;
    position: absolute;
    top: 40%;
}
#beginner .page-title-area .section-title .en {
    font-family: var(--opensans);
    display: block;
    font-size: 70px;
    font-weight: 400;
    color: var(--darkgray);
}
#beginner .page-title-area .section-title .ja {
    display: block;
    font-size: 20px;
    margin-top: 20px;
    position: relative;
    color: var(--darkgray);
    padding-left: 25px;
}
#beginner .page-title-area .section-title .ja::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--blue);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
    #beginner .page-title-area {
        margin: 0;
        padding: 0 20px;
        height: auto;
        min-height: 220px;
    }
    #beginner .page-title-area .inner::before {
        display: none;
    }
    #beginner .page-title-area::after {
        width: 100%;
        height: 170px;
        min-width: initial;
    }
    #beginner .page-title-area .section-title {
        line-height: 1.5;
        left: 0;
        top: 140px;
        background-color: #fff;
        padding: 15px 20px;
    }
    #beginner .page-title-area .section-title .en {
        font-size: 28px;
        text-shadow: 0 0 3px var(--rightblue), 0 0 6px var(--rightblue), 0 0 9px var(--rightblue), 0 0 12px var(--rightblue);
    }
    #beginner .page-title-area .section-title .ja {
        display: block;
        font-size: 14px;
        margin-top: 10px;
        font-weight: 500;
        text-shadow: 0 0 3px var(--rightblue), 0 0 6px var(--rightblue), 0 0 9px var(--rightblue), 0 0 12px var(--rightblue);
    }
    #beginner .page-title-area .section-title .ja::before {
        top: 50%;
        transform: translateY(-50%);
    }
}

/* ==========================================================================
   Breadcrumbs (scoped)
   ========================================================================== */
#beginner .breadcrumbs {
    position: absolute;
    width: 100%;
    padding: 10px 0;
    font-size: 12px;
    background: transparent;
    z-index: 5;
    right: 0;
    left: 0;
    top: 633px;
}
#beginner .breadcrumbs a {
    font-size: 12px;
    letter-spacing: 2px;
}
#beginner .breadcrumbs a:hover {
    opacity: .7;
}
#beginner .breadcrumbs p {
    font-size: 12px;
    position: relative;
    z-index: 1;
}
#beginner .breadcrumbs .fa {
    color: #3F83A6;
    margin: 0 5px;
    font-size: 14px;
    vertical-align: middle;
}
@media screen and (max-width: 768px) {
    #beginner .breadcrumbs {
        display: none;
    }
}

/* ==========================================================================
   top-area
   ========================================================================== */
#beginner .top-area {
    padding: 80px 0;
    text-align: center;
}
#beginner .top-area .catch {
    margin: 0 0 30px;
}
#beginner .top-area .txt:not(:first-of-type) {
    margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
    #beginner .top-area {
        padding: 40px 20px;
    }
    #beginner .top-area .catch {
        margin: 0 0 10px;
        font-size: 24px;
        line-height: 1.5;
        font-weight: 400;
    }
    #beginner .top-area .txt {
        text-align: left;
    }
}

/* ==========================================================================
   worry-area
   ========================================================================== */
#beginner .worry-area {
    padding: 80px 0;
    background-color: var(--rightgray);
}
#beginner .worry-area .catch {
    margin: 0 0 30px;
    text-align: center;
}
#beginner .worry-area .txt {
    text-align: center;
}
#beginner .worry-area .bubble-box {
    background-image: url(../images/led/illust-beg-worry.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 0;
}
#beginner .worry-area .bubble-box .worry-list.left li,
#beginner .worry-area .bubble-box .worry-list.right li {
    width: 395px;
    margin: 0 0 30px;
    background: #fff;
    border: 1.5px solid var(--blue);
    border-radius: 40px;
    position: relative;
}
/* left list: tail points right */
#beginner .worry-area .bubble-box .worry-list.left li::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid var(--blue);
}
#beginner .worry-area .bubble-box .worry-list.left li::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -7px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #fff;
}
/* right list: tail points left */
#beginner .worry-area .bubble-box .worry-list.right li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 10px solid var(--blue);
}
#beginner .worry-area .bubble-box .worry-list.right li::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -7px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 9px solid #fff;
}
#beginner .worry-area .bubble-box .worry-list li p {
    text-align: center;
    padding: 22px 30px;
    font-weight: 500;
}
#beginner .worry-area .inner .txt.bottom {
    text-align: right;
    margin: 40px 0 0;
}
@media screen and (max-width: 768px) {
    #beginner .worry-area {
        padding: 40px 20px;
        background-image: none;
        position: relative;
    }
    #beginner .worry-area .catch {
        margin: 0 0 15px;
        font-size: 22px;
        line-height: 1.5;
        font-weight: 500;
        text-align: center;
    }
    #beginner .worry-area .txt {
        text-align: left;
        font-size: 14px;
        line-height: 1.8;
    }
    #beginner .worry-area .bubble-box {
        display: block;
        background: none;
        position: relative;
        margin: 20px 0 0;
    }
    #beginner .worry-area .bubble-box .worry-list.left,
    #beginner .worry-area .bubble-box .worry-list.right {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #beginner .worry-area .bubble-box .worry-list.right {
        margin-top: 10px;
    }
    #beginner .worry-area .bubble-box .worry-list.left li,
    #beginner .worry-area .bubble-box .worry-list.right li {
        width: 100%;
        margin: 0;
        border-radius: 20px;
        border-width: 1px;
    }
    /* SP: no tails */
    #beginner .worry-area .bubble-box .worry-list.left li::before,
    #beginner .worry-area .bubble-box .worry-list.left li::after,
    #beginner .worry-area .bubble-box .worry-list.right li::before,
    #beginner .worry-area .bubble-box .worry-list.right li::after {
        display: none;
    }
    #beginner .worry-area .bubble-box .worry-list li p {
        padding: 15px 20px;
        text-align: left;
        font-size: 14px;
        line-height: 1.6;
    }
    #beginner .worry-area .inner .txt.bottom {
        text-align: left;
        margin: 20px 0 0;
        font-size: 14px;
    }
}

/* ==========================================================================
   about-area
   ========================================================================== */
#beginner .about-area {
    background-color: #F5FFF9;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(240)'%3E%3Cstop offset='0' stop-color='%23F5FFF9'/%3E%3Cstop offset='1' stop-color='%238fcc8f'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='540' height='450' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.05'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
#beginner .about-area .jp-ttl::before {
    background-color: var(--blue);
}
#beginner .about-area .content-box {
    position: relative;
    padding: 80px 0 80px;
}
#beginner .about-area .content-box .top-box {
    color: var(--darkgray);
}
#beginner .about-area .content-box .top-box .en-ttl,
#beginner .about-area .content-box .top-box .jp-ttl {
    color: var(--navy);
}
#beginner .about-area .content-box .top-box .txt {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.9;
}
#beginner .about-area .content-box .inner {
    position: relative;
}
#beginner .about-area .content-box .catch {
    margin: 30px 0 25px;
}
#beginner .about-area .content-box .merit-list {
    padding: 50px 0;
    margin: 50px 0 0;
    position: relative;
}
#beginner .about-area .content-box .merit-list::before {
    position: absolute;
    content: "";
    background-color: #fff;
    width: calc(100% - 80px);
    height: 100%;
    top: 0px;
    z-index: 0;
}
#beginner .about-area .content-box .merit-list li {
    display: flex;
    align-items: center;
    margin: 0 0 50px;
}
#beginner .about-area .content-box .merit-list li:last-of-type {
    margin: 0;
}
#beginner .about-area .content-box .merit-list li .txt-box {
    width: 58%;
    padding: 0 80px 0 calc((100% - 1200px) / 2);
    position: relative;
}
#beginner .about-area .content-box .merit-list li .txt-box .no {
    position: relative;
    color: var(--blue);
    font-family: var(--opensans);
    font-weight: 500;
    padding: 0 0 0 20px;
}
#beginner .about-area .content-box .merit-list li .txt-box .no::before {
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--blue);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
#beginner .about-area .content-box .merit-list li .txt-box .list-catch {
    font-size: 28px;
    color: var(--darkgray);
    padding: 0 0 10px;
    margin: 15px 0 20px;
    position: relative;
}
#beginner .about-area .content-box .merit-list li .txt-box .list-catch::before {
    position: absolute;
    content: "";
    width: calc(100% + 140px);
    height: 1px;
    left: 0;
    bottom: 0px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 5%, #E4E5E7 5%, #E4E5E7 100%);
    z-index: 1;
}
#beginner .about-area .content-box .merit-list li .txt-box .txt:not(:first-of-type) {
    margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
    #beginner .about-area {
        padding: 40px 0px 0;
    }
    #beginner .about-area .content-box {
        padding: 0px;
    }
    #beginner .about-area .content-box .top-box {
        padding: 0 20px;
    }
    #beginner .about-area .content-box .merit-list {
        margin: 30px 0 0;
        padding: 0px;
    }
    #beginner .about-area .content-box .merit-list::before {
        width: 100%;
    }
    #beginner .about-area .content-box .merit-list li {
        flex-flow: column-reverse;
        margin: 0;
    }
    #beginner .about-area .content-box .merit-list li .txt-box {
        width: 100%;
        padding: 20px 20px 30px;
    }
    #beginner .about-area .content-box .merit-list li .txt-box .list-catch {
        font-size: 22px;
    }
    #beginner .about-area .content-box .merit-list li .txt-box .list-catch::before {
        width: 100%;
        background: linear-gradient(90deg, var(--blue) 0%, var(--blue) 13%, #E4E5E7 13%, #E4E5E7 100%);
    }
    #beginner .about-area .content-box .merit-list li .img {
        width: 100%;
        height: 200px;
    }
    #beginner .about-area .content-box .merit-list li .img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ==========================================================================
   flow-area (prefixed with #beginner)
   ========================================================================== */
#beginner .flow-area {
    padding: 80px 0;
    background: #F0F0F0;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
#beginner .flow-area .inner .fs-box {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
#beginner .flow-area .inner .fs-box .section-catch {
    margin: 0 0 20px;
    font-size: 24px;
}
#beginner .flow-area::before {
    content: "";
    display: inline-block;
    position: absolute;
    background: none;
    width: 100%;
    height: initial;
    aspect-ratio: 1637 / 1136;
    top: 12%;
    left: -50%;
    z-index: 0;
}
#beginner .flow-area::after {
    content: "";
    display: inline-block;
    position: absolute;
    background: none;
    width: 100%;
    height: initial;
    aspect-ratio: 1637 / 1136;
    bottom: 20px;
    right: -50%;
    z-index: 0;
}
#beginner .flow-area .flow-list {
    margin: 60px 0 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
#beginner .flow-area .flow-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
#beginner .flow-area .flow-list li:not(:last-child) {
    margin-bottom: 20px;
}
#beginner .flow-area .flow-list li .flow-num {
    position: relative;
    background: linear-gradient(135deg, #64c664, #1a5c1a);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    z-index: 0;
    box-shadow: 0 3px 10px rgba(26, 92, 26, .3);
}
#beginner .flow-area .flow-list li .flow-num span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 30px;
    font-family: 'Lato', sans-serif;
    white-space: nowrap;
    z-index: 1;
}
#beginner .flow-area .flow-list li:not(:last-child) .flow-num::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 170px;
    background: #707070;
    position: absolute;
    bottom: -169px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}
#beginner .flow-area .flow-list li .flow-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 3px 3px 20px rgba(6,39,71,.2);
    width: calc(100% - 140px);
    min-height: 190px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
#beginner .flow-area .flow-list li .flow-box .flow-ttl {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--navy);
    width: 100%;
}
#beginner .flow-area .flow-list li .flow-box .basic-txt {
    width: 100%;
}
@media screen and (max-width: 768px) {
    #beginner .flow-area {
        padding: 30px 0;
    }
    #beginner .flow-area .inner .fs-box {
        display: block;
    }
    #beginner .flow-area .inner .fs-box .txt {
        padding: 0 20px;
    }
    #beginner .flow-area .inner .fs-box .section-catch {
        padding: 0 20px;
        font-size: 22px;
        margin: 15px 0 20px;
    }
    #beginner .flow-area .ttl-box {
        padding: 0 20px;
    }
    #beginner .flow-area .flow-list {
        margin: 30px 0 0;
    }
    #beginner .flow-area .flow-list li {
        align-items: flex-start;
        justify-content: center;
        gap: 10px;
        position: relative;
    }
    #beginner .flow-area .flow-list li:not(:last-child) {
        margin-bottom: 25px;
    }
    #beginner .flow-area .flow-list li .flow-num {
        width: 50px;
        height: 50px;
        aspect-ratio: 1/1;
        position: absolute;
        left: 0px;
        top: -25px;
    }
    #beginner .flow-area .flow-list li:not(:last-child) .flow-num::before {
        display: none;
    }
    #beginner .flow-area .flow-list li:not(:last-child)::before {
        content: "";
        display: inline-block;
        width: 1px;
        height: calc(100% - 35px);
        background: #707070;
        position: absolute;
        top: 50px;
        left: 25px;
        transform: translateX(-50%);
        display: none;
    }
    #beginner .flow-area .flow-list li .flow-num span {
        font-size: 20px;
    }
    #beginner .flow-area .flow-list li .flow-box {
        padding: 20px;
        border-radius: 15px;
        width: calc(100% - 40px);
        min-height: initial;
    }
    #beginner .flow-area .flow-list li .flow-box .flow-ttl {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
    }
}

/* ==========================================================================
   point-area (prefixed with #beginner)
   ========================================================================== */
#beginner .point-area {
    background-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 60'%3E%3Cg %3E%3Crect fill='%23FFFFFF' width='11' height='11'/%3E%3Crect fill='%23fcfdfb' x='10' width='11' height='11'/%3E%3Crect fill='%23f9fcf8' y='10' width='11' height='11'/%3E%3Crect fill='%23f5faf4' x='20' width='11' height='11'/%3E%3Crect fill='%23f2f8f1' x='10' y='10' width='11' height='11'/%3E%3Crect fill='%23eff6ed' y='20' width='11' height='11'/%3E%3Crect fill='%23ecf5e9' x='30' width='11' height='11'/%3E%3Crect fill='%23e8f3e6' x='20' y='10' width='11' height='11'/%3E%3Crect fill='%23e5f1e2' x='10' y='20' width='11' height='11'/%3E%3Crect fill='%23e2f0df' y='30' width='11' height='11'/%3E%3Crect fill='%23dfeedb' x='40' width='11' height='11'/%3E%3Crect fill='%23dbecd8' x='30' y='10' width='11' height='11'/%3E%3Crect fill='%23d8ead4' x='20' y='20' width='11' height='11'/%3E%3Crect fill='%23d5e9d0' x='10' y='30' width='11' height='11'/%3E%3Crect fill='%23d2e7cd' y='40' width='11' height='11'/%3E%3Crect fill='%23cfe5c9' x='50' width='11' height='11'/%3E%3Crect fill='%23cbe4c6' x='40' y='10' width='11' height='11'/%3E%3Crect fill='%23c8e2c2' x='30' y='20' width='11' height='11'/%3E%3Crect fill='%23c5e0bf' x='20' y='30' width='11' height='11'/%3E%3Crect fill='%23c2debb' x='10' y='40' width='11' height='11'/%3E%3Crect fill='%23beddb8' y='50' width='11' height='11'/%3E%3Crect fill='%23bbdbb4' x='60' width='11' height='11'/%3E%3Crect fill='%23b8d9b1' x='50' y='10' width='11' height='11'/%3E%3Crect fill='%23b5d8ae' x='40' y='20' width='11' height='11'/%3E%3Crect fill='%23b2d6aa' x='30' y='30' width='11' height='11'/%3E%3Crect fill='%23aed4a7' x='20' y='40' width='11' height='11'/%3E%3Crect fill='%23abd2a3' x='10' y='50' width='11' height='11'/%3E%3Crect fill='%23a8d1a0' x='70' width='11' height='11'/%3E%3Crect fill='%23a5cf9c' x='60' y='10' width='11' height='11'/%3E%3Crect fill='%23a1cd99' x='50' y='20' width='11' height='11'/%3E%3Crect fill='%239ecc96' x='40' y='30' width='11' height='11'/%3E%3Crect fill='%239bca92' x='30' y='40' width='11' height='11'/%3E%3Crect fill='%2397c88f' x='20' y='50' width='11' height='11'/%3E%3Crect fill='%2394c68b' x='80' width='11' height='11'/%3E%3Crect fill='%2391c588' x='70' y='10' width='11' height='11'/%3E%3Crect fill='%238ec385' x='60' y='20' width='11' height='11'/%3E%3Crect fill='%238ac181' x='50' y='30' width='11' height='11'/%3E%3Crect fill='%2387bf7e' x='40' y='40' width='11' height='11'/%3E%3Crect fill='%2383be7a' x='30' y='50' width='11' height='11'/%3E%3Crect fill='%2380bc77' x='90' width='11' height='11'/%3E%3Crect fill='%237dba74' x='80' y='10' width='11' height='11'/%3E%3Crect fill='%2379b870' x='70' y='20' width='11' height='11'/%3E%3Crect fill='%2376b76d' x='60' y='30' width='11' height='11'/%3E%3Crect fill='%2372b56a' x='50' y='40' width='11' height='11'/%3E%3Crect fill='%236fb366' x='40' y='50' width='11' height='11'/%3E%3Crect fill='%236bb263' x='90' y='10' width='11' height='11'/%3E%3Crect fill='%2368b060' x='80' y='20' width='11' height='11'/%3E%3Crect fill='%2364ae5c' x='70' y='30' width='11' height='11'/%3E%3Crect fill='%2361ac59' x='60' y='40' width='11' height='11'/%3E%3Crect fill='%235dab56' x='50' y='50' width='11' height='11'/%3E%3Crect fill='%2359a952' x='90' y='20' width='11' height='11'/%3E%3Crect fill='%2355a74f' x='80' y='30' width='11' height='11'/%3E%3Crect fill='%2352a54b' x='70' y='40' width='11' height='11'/%3E%3Crect fill='%234ea448' x='60' y='50' width='11' height='11'/%3E%3Crect fill='%234aa245' x='90' y='30' width='11' height='11'/%3E%3Crect fill='%2345a041' x='80' y='40' width='11' height='11'/%3E%3Crect fill='%23419e3e' x='70' y='50' width='11' height='11'/%3E%3Crect fill='%233d9d3a' x='90' y='40' width='11' height='11'/%3E%3Crect fill='%23389b37' x='80' y='50' width='11' height='11'/%3E%3Crect fill='%23339933' x='90' y='50' width='11' height='11'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
    padding: 120px 0 80px;
    margin: 100px 0 0;
    position: relative;
}
#beginner .point-area .inner .ttl-box {
    position: absolute;
    top: -30px;
}
#beginner .point-area .inner .catch {
    margin: 30px 0;
    font-size: 34px;
}
#beginner .point-area .inner .point-list {
    display: flex;
    justify-content: space-between;
    margin: 55px 0 0;
}
#beginner .point-area .inner .point-list .point-item {
    width: 372px;
}
#beginner .point-area .inner .point-list .point-item .img {
    width: 372px;
    height: 340px;
}
#beginner .point-area .inner .point-list .point-item .item-ttl {
    color: var(--navy);
    text-align: center;
    font-size: 28px;
    letter-spacing: 0.05em;
    margin: 30px 0 20px;
    line-height: 1.4;
}
@media screen and (max-width: 768px) {
    #beginner .point-area {
        width: 100%;
        padding: 30px 20px;
        margin: 60px 0px 0px;
        background-position: right top;
        background-size: cover;
        position: relative;
        background-image: none;
    }
    #beginner .point-area .inner .ttl-box {
        top: -20px;
    }
    #beginner .point-area .inner .catch {
        font-size: 22px;
        margin: 30px 0 15px;
        letter-spacing: 0;
    }
    #beginner .point-area .inner .point-list {
        margin: 30px 0 0;
    }
    #beginner .point-area .inner .point-list .point-item {
        width: 100%;
    }
    #beginner .point-area .inner .point-list .point-item .img {
        width: 100%;
        height: 200px;
    }
    #beginner .point-area .inner .point-list .point-item .img img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    #beginner .point-area .inner .point-list {
        flex-wrap: wrap;
        gap: 30px;
    }
    #beginner .point-area .inner .point-list .point-item .item-ttl {
        font-size: 22px;
        margin: 20px 0 15px;
    }
}

/* ==========================================================================
   faq-area (prefixed with #beginner)
   ========================================================================== */
#beginner .faq-area {
    padding: 80px 0;
    background: #fff;
}
#beginner .faq-list {
    margin: 40px 0 0;
}
#beginner .faq-list > li {
    box-shadow: 3px 3px 20px rgba(6,39,71,.1);
    border-radius: 20px;
}
#beginner .faq-list > li:not(:last-child) {
    margin-bottom: 20px;
}
#beginner .faq-q {
    display: flex;
    width: 100%;
    align-items: center;
    background: #fff;
    padding: 40px 40px 40px 70px;
    position: relative;
    cursor: pointer;
}
#beginner .faq-q::before,
#beginner .faq-a::before {
    font: 600 32px / 1 'Poppins', serif;
    position: absolute;
    left: 30px;
    /* Override the scoped a::before styles */
    display: inline-block;
}
#beginner .faq-q::before {
    content: 'Q';
    color: var(--blue);
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
#beginner .faq-a::before {
    content: 'A';
    color: var(--navy);
    display: inline-block;
    position: absolute;
    top: 40px;
}
#beginner .faq-area .faq-q h3 {
    font-size: 20px;
    font-weight: 500;
}
#beginner .faq-a {
    display: none;
    background: var(--rightblue);
    padding: 40px 40px 40px 70px;
    font-weight: 500;
    line-height: 1.8;
    position: relative;
}
#beginner .faq-a p {
    display: inline-block;
    font-size: 18px;
}
#beginner .faq-a .bold {
    font-weight: 800 !important;
}
#beginner .faq-a .kome {
    padding-left: 16px;
    text-indent: -16px;
}
#beginner .faq-a-list {
    margin: 0 0 10px;
}
#beginner .faq-a-list li {
    position: relative;
    padding-left: 18px;
    line-height: 1.7;
    font-size: 16px;
}
#beginner .faq-a-list li:not(:last-child) {
    margin: 0 0 8px;
}
#beginner .faq-a-list li::before {
    content: '\30FB';
    display: inline-block;
    color: var(--blue);
    font-weight: bold;
    position: absolute;
    top: 2px;
    left: 0;
}

/* Accordion icon */
#beginner .accordion-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}
#beginner .accordion-icon span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--darkgray);
    top: 50%;
    left: 0;
    transition: .3s;
}
#beginner .accordion-icon span:first-child {
    transform: translateY(-50%);
}
#beginner .accordion-icon span:last-child {
    transform: translateY(-50%) rotate(90deg);
}
#beginner .faq-q.active .accordion-icon span:last-child {
    transform: translateY(-50%) rotate(0deg);
}

@media screen and (max-width: 768px) {
    #beginner .faq-area {
        padding: 0 20px;
        margin: 30px 0 40px;
    }
    #beginner .faq-q {
        align-items: flex-start;
        padding: 20px 30px 20px 35px;
        position: relative;
    }
    #beginner .faq-q::before,
    #beginner .faq-a::before {
        font-size: 20px;
        left: 10px;
    }
    #beginner .faq-q::before {
        top: 32px;
    }
    #beginner .faq-a::before {
        top: 27px;
    }
    #beginner .faq-area .faq-q h3 {
        font-size: 16px;
        line-height: 1.6;
    }
    #beginner .faq-a p {
        font-size: 16px;
        line-height: 2.0;
    }
    #beginner .faq-a {
        padding: 20px 20px 20px 35px;
    }
    #beginner .accordion-icon {
        right: 5px;
    }
}

/* ==========================================================================
   service-area (prefixed with #beginner)
   ========================================================================== */
#beginner .service-area.common {
    position: relative;
    z-index: 3;
    background-color: #fff;
}
#beginner .service-area.common .bg-wrap {
    padding: 100px 0 60px;
    background-color: #C8E6C9;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%231B5E20' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%2366BB6A'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
    position: relative;
    overflow: hidden;
}
#beginner .service-area.common .bg-wrap .en-ttl,
#beginner .service-area.common .bg-wrap .jp-ttl {
    color: var(--navy);
}
#beginner .service-area.common .bg-wrap .catch,
#beginner .service-area.common .bg-wrap .txt.top {
    color: var(--darkgray);
}
#beginner .service-area.common .bg-wrap .jp-ttl::before {
    background-color: var(--blue);
}
#beginner .service-area.common .bg-wrap .catch {
    margin: 30px 0;
}
#beginner .service-area.common .bg-wrap .inner {
    position: relative;
}
#beginner .service-area.common .bg-wrap .inner .service-list {
    margin: 50px 0 0;
    padding: 378px 0 0;
    display: flex;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item {
    width: calc(100% / 3);
    background-color: #fff;
    position: relative;
    transition: .5s;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item:not(:last-of-type) {
    border-right: solid 1px #339933;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item:before {
    position: absolute;
    content: "";
    width: 45px;
    height: 1px;
    background-color: var(--blue);
    bottom: 20px;
    right: 20px;
    transition: .5s;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item:hover::before {
    right: 15px;
    transition: .5s;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item::after {
    position: absolute;
    content: "";
    width: 1200px;
    height: 378px;
    top: -378px;
    left: 0;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item:nth-child(1)::after {
    background-image: url(../images/led/service01.jpg);
    z-index: 20;
    background-position: right;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item:nth-child(2)::after {
    background-image: url(../images/led/service02.jpg);
    left: -400px;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item:nth-child(3)::after {
    background-image: url(../images/led/service03.jpg);
    left: -800px;
    background-position: right;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item:nth-child(1):hover::after,
#beginner .service-area.common .bg-wrap .inner .service-list .service-item:nth-child(2):hover::after,
#beginner .service-area.common .bg-wrap .inner .service-list .service-item:nth-child(3):hover::after {
    z-index: 20;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item a {
    display: block;
    padding: 40px;
    width: 100%;
    height: 100%;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item a .item-ttl {
    color: var(--navy);
    font-size: 25px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    position: relative;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item a .item-ttl span {
    font-size: 20px;
    display: block;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item a .item-catch {
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--blue);
    margin: 10px 0 15px;
    line-height: 1.5;
    position: relative;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item a .txt {
    position: relative;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item a:hover .item-ttl,
#beginner .service-area.common .bg-wrap .inner .service-list .service-item a:hover .item-catch,
#beginner .service-area.common .bg-wrap .inner .service-list .service-item a:hover .txt {
    color: #fff !important;
}
#beginner .service-area.common .bg-wrap .inner .service-list .service-item:hover:before {
    background-color: #fff;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    #beginner .service-area.common {
        padding: 0;
    }
    #beginner .service-area.common .bg-wrap {
        width: 100%;
        margin: 0;
        background-color: #C8E6C9;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%231B5E20' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%2366BB6A'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
        padding: 40px 20px 30px;
    }
    #beginner .service-area.common .bg-wrap .inner .service-list {
        flex-wrap: wrap;
        padding: 0;
        margin: 30px 0 0;
        gap: 30px;
    }
    #beginner .service-area.common .bg-wrap .inner .service-list .service-item {
        width: 100%;
    }
    #beginner .service-area.common .bg-wrap .inner .service-list .service-item::after {
        width: 100%;
        height: 160px;
        right: 0;
        left: 0;
        top: 0;
    }
    #beginner .service-area.common .bg-wrap .inner .service-list .service-item:nth-child(1)::after {
        background-image: url(../images/led/service01-sp.jpg);
        background-size: cover;
    }
    #beginner .service-area.common .bg-wrap .inner .service-list .service-item:nth-child(2)::after {
        background-image: url(../images/led/service02-sp.jpg);
        left: 0;
        background-size: cover;
    }
    #beginner .service-area.common .bg-wrap .inner .service-list .service-item:nth-child(3)::after {
        background-image: url(../images/led/service03-sp.jpg);
        background-size: cover;
        left: 0;
    }
    #beginner .service-area.common .bg-wrap .inner .service-list .service-item a {
        padding: 180px 20px 20px;
        height: 100%;
        position: relative;
    }
    #beginner .service-area.common .bg-wrap .inner .service-list .service-item a .item-catch {
        font-size: 17px;
        margin: 5px 0 0;
    }
    #beginner .service-area.common .bg-wrap .inner .service-list .service-item a .item-ttl {
        font-size: 23px;
    }
    #beginner .service-area.common .bg-wrap .inner .service-list .service-item a .item-ttl span {
        font-size: 18px;
    }
    #beginner .service-area.common .bg-wrap .inner .service-list .service-item:before {
        right: -10px;
        background-color: #333;
    }
}

/* ==========================================================================
   contact-area (prefixed with #beginner)
   ========================================================================== */
#beginner .contact-area {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a5c1a, #339933);
    text-align: center;
}
#beginner .contact-area .contact-catch {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 20px;
}
#beginner .contact-area .contact-txt {
    color: rgba(255,255,255,.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}
#beginner .contact-area .contact-btns {
    display: flex;
    justify-content: center;
    gap: 30px;
}
#beginner .contact-area .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 24px 55px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    letter-spacing: .05em;
}
#beginner .contact-area .contact-btn i {
    font-size: 20px;
}
#beginner .contact-area .contact-btns a.btn-primary,
#beginner .contact-area .contact-btns a.btn-primary:link,
#beginner .contact-area .contact-btns a.btn-primary:visited {
    background: #fff;
    color: #1a5c1a !important;
    text-decoration: none;
}
#beginner .contact-area .contact-btns a.btn-primary::before,
#beginner .contact-area .contact-btns a.btn-primary::after {
    display: none !important;
    content: none !important;
}
#beginner .contact-area .contact-btns a.btn-primary:hover {
    background: #e8f5e9;
    color: #1a5c1a !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}
#beginner .contact-area .contact-btns a.btn-tel,
#beginner .contact-area .contact-btns a.btn-tel:link,
#beginner .contact-area .contact-btns a.btn-tel:visited,
#beginner .contact-area .contact-btns .tel {
    background: transparent;
    color: #fff !important;
    border: 2px solid #fff;
    pointer-events: auto;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 24px 55px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .05em;
}
#beginner .contact-area .contact-btns .tel i {
    font-size: 20px;
}
#beginner .contact-area .contact-btns a.btn-tel::before,
#beginner .contact-area .contact-btns a.btn-tel::after {
    display: none !important;
    content: none !important;
}
#beginner .contact-area .contact-btns a.btn-tel:hover {
    background: rgba(255,255,255,.15);
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}
@media screen and (max-width: 768px) {
    #beginner .contact-area {
        padding: 50px 20px;
    }
    #beginner .contact-area .contact-catch {
        font-size: 22px;
    }
    #beginner .contact-area .contact-txt {
        margin-bottom: 30px;
    }
    #beginner .contact-area .contact-btns {
        flex-direction: column;
        gap: 15px;
    }
    #beginner .contact-area .contact-btn,
    #beginner .contact-area .contact-btns .tel {
        padding: 16px 30px;
        justify-content: center;
        font-size: 18px;
    }
}

/* ==========================================================================
   fixed-cta (outside #beginner, standalone)
   ========================================================================== */
#fixed-cta {
    position: fixed;
    z-index: 9999;
    bottom: 40px;
    right: 40px;
    width: 130px;
    height: 130px;
    background: linear-gradient(90deg, #a3d9a3, #8ccc8c, #74bf74, #5cb35c, #47a647, #339933, #267326, #1a5c1a);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-in-out;
    box-shadow: 0 4px 20px rgba(26, 92, 26, .35);
    overflow: hidden;
}
#fixed-cta.visible {
    visibility: visible;
}
#fixed-cta.fade-in {
    opacity: 1;
}
#fixed-cta.fade-out {
    opacity: 0;
}
#fixed-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1;
}
#fixed-cta a::before,
#fixed-cta a::after {
    display: none;
    content: none;
}
#fixed-cta a i {
    font-size: 22px;
    margin-bottom: 10px;
}
#fixed-cta a em {
    font-style: normal;
    font-size: 12px;
}
#fixed-cta:hover {
    box-shadow: 0 6px 28px rgba(26, 92, 26, .5);
}
#fixed-cta:hover a {
    color: #e8f5e9;
}
@media screen and (max-width: 768px) {
    #fixed-cta {
        bottom: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
    }
    #fixed-cta a i {
        font-size: 18px;
        margin-bottom: 8px;
    }
    #fixed-cta a em {
        font-size: 11px;
    }
}

/* ==========================================================================
   #con_main .box_sgc.hojyokin override
   ========================================================================== */
#con_main .box_sgc.hojyokin {
    background: #e8f5e9;
}
#con_main .box_sgc.hojyokin h2 {
    font-size: 1.3em;
    font-weight: bold;
    color: #1a5c1a;
    line-height: 1.4;
}
#con_main .box_sgc.hojyokin .img img {
    max-width: 100%;
    height: auto;
}
