/* ===== リセット & 基本設定 ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  width: 100%;
}
body {
  width: 100%;
  overflow-x: hidden; /* 横スクロール防止 */
  font-family: "Noto Sans JP", sans-serif;
}
/*============================
header
=============================*/
.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(255,255,255,.54);
backdrop-filter:blur(4px);
}
.header-inner{
max-width:1400px;
height:90px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 60px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transform: translateX(-20px);
}
.logo img{
width:70px;
display:block;
}
.logo span {
    font-size: 18px;
    font-weight: 800;
    color: #263338;
    letter-spacing: 2px;
    white-space: nowrap;
}
.menu{
display:flex;
align-items:center;
gap:45px;
font-weight:800;
font-size:15px;
list-style: none; /* ← 点を消す */
margin: 0;        /* ← デフォルトの余白も消す */
padding: 0;
}
.menu a{
text-decoration: none;
color: #000;
transition:.3s;
}
.menu a:hover{
color:#14B293;
}
.contact-btn{
background:#fff;
padding:16px 34px;
border-radius:25px;
color:#000!important;
font-weight:bold;
transition:0.3s ease;
}
.contact-btn:hover{
    background:#14B293;      
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.25);
}
/*============================
SP
=============================*/

.hamburger{
    display:none;
}

.sp-menu{
    display:none;
}

@media(max-width:768px){

.header{

    background:rgba(255,255,255,.75); 
    backdrop-filter:blur(8px);

}

.header-inner{

    height:80px;
    padding:0 20px;

}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img{

    width:60px;

}
.logo span {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 800;
    white-space: nowrap;
}
.pc-nav{

    display:none;

}

.hamburger{

    width:34px;
    height:28px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    cursor:pointer;

    z-index:1001;

}

.hamburger span{

    width:100%;
    height:2px;

    background:#74848B;

    transition:.4s;

    border-radius:20px;

}

/* × */
.hamburger.active span:nth-child(1){
    transform:translateY(12px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:translateY(-12px) rotate(-45deg);
}
.sp-menu{
    display:block;
    position:fixed;
    top:80px;
    right:-100%;
    width:280px;
    height:calc(100vh - 80px);

    background:#14B293;

    transition:.4s ease;

    z-index:999;

    box-shadow:-10px 0 30px rgba(0,0,0,.3);
}

.sp-menu.active{
    right:0;
}
.sp-menu ul{
    list-style:none;
    margin:0;
    padding:40px 0;
}

.sp-menu li{
    border-bottom:1px solid rgba(255,255,255,.08);
}

.sp-menu a{
    display:block;
    padding:22px 35px;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.sp-menu a:hover{
    background:#EFFEE3;
    padding-left:45px;
}

}
.fv{
    position:relative;
    width:100%;
    height:100vh;
    min-height:700px;
    overflow:hidden;
}
/*=============================
  FIRST VIEW
=============================*/

.fv{
    position:relative;
    width:100%;
    height:100vh;
    min-height:700px;
    overflow:hidden;
}

/*=============================
  スライド
=============================*/

.fv-slides{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.fv-slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background-size:cover;
    background-position:center;

    opacity:0;

    animation:fvSlide 15s infinite;
}

/* 1枚目 */

.fv-slide.slide1{
    background-image:url("image/peko-fv02.png");
    animation-delay:0s;
}

/* 2枚目 */

.fv-slide.slide2{
    background-image:url("image/peko-fv01.png");
    animation-delay:5s;
}

/* 3枚目 */

.fv-slide.slide3{
    background-image:url("image/peko-fv03.png");
    animation-delay:10s;
}


/*=============================
  スライドアニメーション
=============================*/

@keyframes fvSlide{

    0%{
        opacity:0;
    }

    5%{
        opacity:1;
    }

    30%{
        opacity:1;
    }

    35%{
        opacity:0;
    }

    100%{
        opacity:0;
    }

}

/*=============================
  キャッチコピー
=============================*/

.fv-content{
    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:90%;

    text-align:center;

    z-index:3;
}


/* メインコピー */

.fv-content h1{

    display:inline-block;

    color:#fff;

    font-size:clamp(28px, 3.5vw, 54px);

    font-weight:800;

    letter-spacing:4px;

    line-height:1.5;

    text-shadow:
        0 3px 10px rgba(0,0,0,.45);

}


/*=============================
  緑のサブコピー
=============================*/

.fv-sub{

    width:min(600px, 65%);

    margin:25px auto 0;

    padding:18px 30px;

    background:#14B293;

    box-shadow:
        0 5px 20px rgba(0,0,0,.2);

}


.fv-sub p{

    margin:0;

    color:#fff;

    font-size:clamp(18px, 2vw, 28px);

    font-weight:700;

    letter-spacing:4px;

    text-align:center;

}
/*=============================
  日本語キャッチ
=============================*/

.fv-catch-jp{
    margin-bottom:18px;

    color:#fff;

    font-size:clamp(20px, 2vw, 30px);

    font-weight:600;

    letter-spacing:5px;

    line-height:1.5;

    text-shadow:
        0 3px 10px rgba(0,0,0,.45);
}
.fv-catch-jp span{
    color:#FFCC00;
}
/* ==========================================
   FV レスポンシブ
========================================== */

@media screen and (max-width: 768px){

    /* ==========================================
       FV本体
    ========================================== */

    .fv{
        width:100%;
        height:100svh;
        min-height:600px;
        overflow:hidden;
    }


    /* ==========================================
       スマホ用スライド画像
    ========================================== */

    .fv-slide{
        width:100%;
        height:100%;

        background-size:cover;
        background-position:center center;
    }


    /* 1枚目 */
    .fv-slide.slide1{
        background-image:url("image/peko-fv02-ph.png");
    }


    /* 2枚目 */
    .fv-slide.slide2{
        background-image:url("image/peko-fv01-phnew.png");
    }


    /* 3枚目 */
    .fv-slide.slide3{
        background-image:url("image/peko-fv03-ph.png");
    }


    /* ==========================================
       キャッチコピー全体
    ========================================== */

    .fv-content{
        top:50%;
        left:50%;

        width:92%;

        transform:translate(-50%,-50%);

        text-align:center;
    }


    /* ==========================================
       日本語キャッチ
    ========================================== */

    .fv-catch-jp{
        margin-bottom:14px;

        font-size:20px;
        font-weight:600;

        letter-spacing:3px;
        line-height:1.6;

        white-space:nowrap;

        text-shadow:
            0 3px 10px rgba(0,0,0,.5);
    }


    /* 丁寧 */
    .fv-catch-jp span{
        color:#FFCC00;
    }


    /* ==========================================
       メイン英字
    ========================================== */

    .fv-content h1{
        display:block;

        width:100%;

        margin:0;

        font-size:clamp(25px, 7vw, 38px);

        font-weight:800;

        letter-spacing:2px;

        line-height:1.4;

        text-align:center;

        text-shadow:
            0 3px 10px rgba(0,0,0,.5);
    }


    /* ==========================================
       緑のサブコピー
    ========================================== */

    .fv-sub{
        width:88%;

        margin:20px auto 0;

        padding:13px 15px;

        box-sizing:border-box;

        background:#14B293;

        box-shadow:
            0 5px 20px rgba(0,0,0,.2);
    }


    .fv-sub p{
        margin:0;

        font-size:16px;

        font-weight:700;

        letter-spacing:2px;

        line-height:1.5;

        text-align:center;
    }

}


/* ==========================================
   小さいスマホ
========================================== */

@media screen and (max-width: 380px){

    .fv{
        min-height:560px;
    }


    /* キャッチ全体 */
    .fv-content{
        top:55%;
        width:94%;
    }


    /* 日本語 */
    .fv-catch-jp{
        margin-bottom:12px;

        font-size:17px;

        letter-spacing:2px;

        line-height:1.6;
    }


    /* 英字 */
    .fv-content h1{
        font-size:23px;

        letter-spacing:1.5px;

        line-height:1.4;
    }


    /* 緑の帯 */
    .fv-sub{
        width:92%;

        margin-top:17px;

        padding:11px 10px;
    }


    .fv-sub p{
        font-size:14px;

        letter-spacing:1.5px;
    }

}
/* ==========================================
   PECORA FOOTER
========================================== */

.pecora-footer{
    position:relative;
    width:100%;
    background:#14B293;
    color:#fff;
    overflow:hidden;
}


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

.pecora-footer-inner{
    width:min(1100px, 90%);
    margin:0 auto;

    padding:75px 0 55px;

    text-align:center;
}


/* ==========================================
   LOGO
========================================== */

.pecora-footer-logo{
    display:flex;
    justify-content:center;
    align-items:center;

    width:fit-content;
    margin:0 auto 32px;

    text-decoration:none;
}

.pecora-footer-logo img{
    display:block;

    width:140px;
    max-width:100%;
    height:auto;

    object-fit:contain;
}


/* ==========================================
   LINE
========================================== */

.pecora-footer-line{
    width:100%;
    height:1px;

    margin:0 auto 38px;

    background:rgba(255,255,255,.35);
}


/* ==========================================
   NAVIGATION
========================================== */

.pecora-footer-nav{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;

    gap:38px;

    margin-bottom:60px;
}

.pecora-footer-nav a{
    position:relative;

    color:#fff;

    font-size:18px;
    font-weight:600;

    letter-spacing:1px;

    text-decoration:none;

    transition:
        opacity .3s ease,
        transform .3s ease;
}


/* ホバー時 */

.pecora-footer-nav a:hover{
    opacity:.7;
    transform:translateY(-2px);
}


/* ==========================================
   COPYRIGHT
========================================== */

.pecora-footer-copy{
    margin:0;

    color:rgba(255,255,255,.8);

    font-size:14px;
    font-weight:400;

    letter-spacing:.5px;
}
/* ==========================================
   BUSINESS PAGE FIRST VIEW
========================================== */

.business-fv{
    position:relative;

    width:100%;
    height:520px;

    overflow:hidden;

    background:#f5f5f2;
}


/* ==========================================
   BACKGROUND
========================================== */

.business-fv-bg{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background-image:url("image/peko-nakafv.png");
    background-size:cover;
    background-position:center;

    z-index:1;
}


/* ==========================================
   OVERLAY
========================================== */

.business-fv-overlay{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(255,255,255,.18);

    z-index:2;
}


/* ==========================================
   CONTENT
========================================== */

.business-fv-content{
    position:absolute;

    top:56%;
    left:50%;

    transform:translate(-50%,-50%);

    width:90%;

    text-align:center;

    z-index:3;
}


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

.business-fv-title{
    margin:0 0 18px;

    color:#fff;

    font-size:clamp(34px, 4vw, 54px);

    font-weight:800;

    letter-spacing:5px;

    line-height:1.3;

    text-shadow:
        0 3px 12px rgba(0,0,0,.3);
}


/* ==========================================
   CATCH
========================================== */

.business-fv-catch{
    display:inline-block;

    padding:10px 32px;

    background:#14B293;

    color:#fff;

    font-size:clamp(18px, 2vw, 27px);

    font-weight:700;

    letter-spacing:2px;

    line-height:1.5;

    box-shadow:
        0 5px 18px rgba(0,0,0,.15);
}
/* ==========================================
   PECORA COMPANY
========================================== */

.pecora-company{
    position:relative;

    width:100%;

    padding:120px 20px;

    background:#F6FBF9;

    overflow:hidden;
}


/* ==========================================
   INNER
========================================== */

.pecora-company-inner{
    position:relative;

    z-index:2;

    width:min(900px, 100%);

    margin:0 auto;
}


/* ==========================================
   DECORATION
========================================== */

.pecora-company-deco{
    position:absolute;

    border-radius:50%;

    background:#14B293;

    opacity:.07;

    pointer-events:none;
}


.pecora-company-deco-01{
    width:420px;
    height:420px;

    top:-180px;
    left:-180px;
}


.pecora-company-deco-02{
    width:350px;
    height:350px;

    right:-160px;
    bottom:-130px;
}


/* ==========================================
   HEADING
========================================== */

.pecora-company-heading{
    margin-bottom:55px;

    text-align:center;
}


.pecora-company-en{
    display:block;

    margin-bottom:8px;

    color:#14B293;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:18px;

    font-weight:600;

    letter-spacing:5px;
}


.pecora-company-heading h2{
    margin:0;

    color:#222;

    font-size:42px;

    font-weight:700;

    letter-spacing:4px;

    line-height:1.4;
}


.pecora-company-lead{
    margin:18px 0 0;

    color:#666;

    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
}


/* ==========================================
   COMPANY TABLE
========================================== */

.pecora-company-table{
    width:100%;

    background:#fff;

    border-radius:20px;

    padding:10px 35px;

    box-shadow:
        0 15px 45px rgba(20,178,147,.08);
}


/* ==========================================
   ROW
========================================== */

.pecora-company-row{
    display:grid;

    grid-template-columns:190px 1fr;

    align-items:center;

    min-height:76px;

    border-bottom:1px solid #E4EEEB;
}


.pecora-company-row:last-child{
    border-bottom:none;
}


/* ==========================================
   LABEL
========================================== */

.pecora-company-label{
    position:relative;

    padding-left:20px;

    color:#555;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;
}


.pecora-company-label::before{
    content:"";

    position:absolute;

    left:0;
    top:50%;

    width:5px;
    height:5px;

    border-radius:50%;

    background:#14B293;

    transform:translateY(-50%);
}


/* ==========================================
   VALUE
========================================== */

.pecora-company-value{
    color:#222;

    font-size:16px;

    font-weight:500;

    line-height:1.8;

    letter-spacing:1px;
}


.pecora-company-value a{
    color:#222;

    text-decoration:none;

    transition:.3s ease;
}


.pecora-company-value a:hover{
    color:#14B293;
}


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

.pecora-company-more{
    display:flex;

    align-items:center;
    justify-content:center;

    gap:25px;

    width:260px;
    height:60px;

    margin:50px auto 0;

    border:1px solid #14B293;
    border-radius:100px;

    background:#14B293;

    color:#fff;

    text-decoration:none;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.pecora-company-more span{
    

    font-size:16px;

    font-weight:600;

    letter-spacing:2px;
}


.pecora-company-more strong{
    font-size:20px;

    font-weight:400;

    line-height:1;

    transition:.3s ease;
}


.pecora-company-more:hover{
    background:#fff;

    color:#14B293;

    transform:translateY(-3px);
}


.pecora-company-more:hover strong{
    transform:translateX(5px);
}
/* ==========================================
   TELEPHONE NOTE
========================================== */

.pecora-company-tel{
    padding:18px 0;
}


.pecora-company-tel > a{
    display:inline-block;

    font-size:16px;
    font-weight:500;
}


.pecora-company-note{
    margin:4px 0 0;

    color:#C45B5B;

    font-size:11px;

    font-weight:500;

    line-height:1.6;

    letter-spacing:.3px;
}
/* ==========================================
   PECORA CONTACT
========================================== */

.pecora-contact{
    position:relative;

    width:100%;

    padding:120px 20px;

    background:#ffffff;

    overflow:hidden;
}


/* ==========================================
   INNER
========================================== */

.pecora-contact-inner{
    width:min(900px, 100%);

    margin:0 auto;
}


/* ==========================================
   HEADING
========================================== */

.pecora-contact-heading{
    margin-bottom:30px;

    text-align:center;
}


.pecora-contact-en{
    display:block;

    margin-bottom:7px;

    color:#14B293;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:18px;

    font-weight:600;

    letter-spacing:5px;
}


.pecora-contact-heading h2{
    display:inline-block;

    margin:0;

    padding:8px 55px;

    background:#14B293;

    color:#fff;

    border-radius:3px;

    font-size:30px;

    font-weight:700;

    letter-spacing:4px;

    line-height:1.4;
}


/* ==========================================
   INTRO
========================================== */

.pecora-contact-intro{
    margin:0 auto 50px;

    text-align:center;

    color:#555;

    font-size:14px;

    font-weight:500;

    line-height:2;

    letter-spacing:1px;
}


.pecora-contact-intro p{
    margin:0;
}


/* ==========================================
   FORM WRAP
========================================== */

.pecora-contact-form-wrap{

    padding:65px 80px;

    background:#E8F6F2;

    border-radius:24px;

    box-shadow:
        0 15px 45px rgba(20,178,147,.08);
}


/* ==========================================
   FIELD
========================================== */

.pecora-contact-field{
    margin-bottom:30px;
}


.pecora-contact-field:last-of-type{
    margin-bottom:0;
}


/* ==========================================
   LABEL
========================================== */

.pecora-contact-field label{
    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:10px;

    color:#333;

    font-size:15px;

    font-weight:700;

    letter-spacing:1px;
}


/* 必須 */

.pecora-contact-field label span{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-width:35px;
    height:20px;

    padding:0 6px;

    border-radius:20px;

    background:#14B293;

    color:#fff;

    font-size:10px;

    font-weight:600;

    letter-spacing:.5px;
}


/* ==========================================
   INPUT
========================================== */

.pecora-contact-field input,
.pecora-contact-field textarea{

    display:block;

    width:100%;

    border:1px solid transparent;

    border-radius:8px;

    background:#fff;

    color:#333;

    font-family:inherit;

    font-size:15px;

    outline:none;

    box-sizing:border-box;

    transition:
        border .3s ease,
        box-shadow .3s ease;
}


.pecora-contact-field input{
    height:58px;

    padding:0 20px;
}


.pecora-contact-field textarea{
    min-height:220px;

    padding:18px 20px;

    resize:vertical;

    line-height:1.8;
}


/* プレースホルダー */

.pecora-contact-field input::placeholder,
.pecora-contact-field textarea::placeholder{
    color:#aaa;
}


/* フォーカス */

.pecora-contact-field input:focus,
.pecora-contact-field textarea:focus{

    border-color:#14B293;

    box-shadow:
        0 0 0 3px rgba(20,178,147,.1);
}


/* ==========================================
   SUBMIT
========================================== */

.pecora-contact-submit{

    display:flex;

    justify-content:center;

    margin-top:45px;
}


.pecora-contact-submit button{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:30px;

    width:220px;
    height:58px;

    border:none;

    border-radius:50px;

    background:#FFCC00;

    color:#fff;

    font-family:inherit;

    font-size:16px;

    font-weight:700;

    letter-spacing:2px;

    cursor:pointer;

    box-shadow:
        0 8px 20px rgba(224,165,0,.18);

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.pecora-contact-submit button strong{

    font-size:20px;

    font-weight:400;

    transition:.3s ease;
}


.pecora-contact-submit button:hover{

    background:#14B293;

    transform:translateY(-3px);

    box-shadow:
        0 10px 25px rgba(20,178,147,.2);
}


.pecora-contact-submit button:hover strong{

    transform:translateX(5px);
}
/* ==========================================
   CONTACT - RESPONSIVE
========================================== */

@media screen and (max-width: 768px){

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

    .pecora-contact{

        padding:50px 15px 90px;

    }


    /* ==============================
       INNER
    ============================== */

    .pecora-contact-inner{

        width:100%;

    }


    /* ==============================
       HEADING
    ============================== */

    .pecora-contact-heading{

        margin-bottom:25px;

    }


    .pecora-contact-en{

        margin-bottom:6px;

        font-size:14px;

        letter-spacing:4px;

    }


    .pecora-contact-heading h2{

        padding:7px 35px;

        font-size:23px;

        letter-spacing:3px;

        line-height:1.4;

    }


    /* ==============================
       INTRO
    ============================== */

    .pecora-contact-intro{

        margin:0 auto 35px;

        font-size:12px;

        line-height:2;

        letter-spacing:.5px;

    }


    .pecora-contact-intro p{

        margin:0;

    }


    /* ==============================
       FORM WRAP
    ============================== */

    .pecora-contact-form-wrap{

        padding:35px 20px 40px;

        border-radius:18px;

        box-shadow:

            0 10px 30px rgba(20,178,147,.07);

    }


    /* ==============================
       FIELD
    ============================== */

    .pecora-contact-field{

        margin-bottom:24px;

    }


    .pecora-contact-field:last-of-type{

        margin-bottom:0;

    }


    /* ==============================
       LABEL
    ============================== */

    .pecora-contact-field label{

        gap:8px;

        margin-bottom:8px;

        font-size:14px;

        letter-spacing:.5px;

    }


    /* 必須 */

    .pecora-contact-field label span{

        min-width:32px;

        height:19px;

        padding:0 5px;

        font-size:9px;

    }


    /* ==============================
       INPUT
    ============================== */

    .pecora-contact-field input,
    .pecora-contact-field textarea{

        font-size:14px;

        border-radius:7px;

    }


    .pecora-contact-field input{

        height:52px;

        padding:0 15px;

    }


    .pecora-contact-field textarea{

        min-height:180px;

        padding:15px;

        line-height:1.7;

    }


    /* ==============================
       SUBMIT
    ============================== */

    .pecora-contact-submit{

        margin-top:35px;

    }


    .pecora-contact-submit button{

        width:200px;

        height:54px;

        gap:25px;

        font-size:14px;

        letter-spacing:2px;

    }


    .pecora-contact-submit button strong{

        font-size:18px;

    }

}


/* ==========================================
   小さいスマホ
========================================== */

@media screen and (max-width: 380px){

    .pecora-contact{

        padding:70px 12px 80px;

    }


    .pecora-contact-heading h2{

        padding:7px 28px;

        font-size:21px;

    }


    .pecora-contact-en{

        font-size:13px;

        letter-spacing:3px;

    }


    .pecora-contact-intro{

        font-size:11px;

    }


    .pecora-contact-form-wrap{

        padding:30px 15px 35px;

        border-radius:15px;

    }


    .pecora-contact-field input{

        height:50px;

        padding:0 13px;

    }


    .pecora-contact-field textarea{

        min-height:160px;

    }


    .pecora-contact-submit button{

        width:190px;

    }

}
/* ==========================================
   TOP CONTACT INTRO
========================================== */

.top-pecora-contact-intro{
    position:relative;

    width:100%;

    padding:90px 20px 130px;

    background:#fff;

    overflow:hidden;
}


/* ==========================================
   INNER
========================================== */

.top-pecora-contact-intro-inner{
    position:relative;

    width:min(1080px, 100%);

    margin:0 auto;
}


/* ==========================================
   HEADING
========================================== */

.top-pecora-contact-intro-heading{
    text-align:center;
}


.top-pecora-contact-intro-heading h2{
    margin:0;

    color:#222;

    font-size:34px;

    font-weight:700;

    letter-spacing:2px;

    line-height:1.5;
}


/* 「電気」だけアクセント */

.top-pecora-contact-intro-heading h2 span{
    color:#FFCC00;
}


/* ==========================================
   LINE
========================================== */

.top-pecora-contact-intro-line{
    width:100%;

    height:1px;

    margin:30px 0 80px;

    background:#333;

    opacity:.7;
}


/* ==========================================
   CONTENT
========================================== */

.top-pecora-contact-intro-content{

    display:grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, .85fr);

    align-items:center;

    gap:75px;
}


/* ==========================================
   TEXT
========================================== */

.top-pecora-contact-intro-text{
    position:relative;

    padding-left:80px;
}


.top-pecora-contact-intro-text::before{
    content:"";

    position:absolute;

    top:4px;
    left:30px;

    width:3px;
    height:calc(100% - 8px);

    background:#14B293;

    border-radius:10px;
}


.top-pecora-contact-intro-text p{

    margin:0;

    color:#333;

    font-size:15px;

    font-weight:500;

    line-height:2.05;

    letter-spacing:1px;
}


/* ==========================================
   IMAGE
========================================== */

.top-pecora-contact-intro-image{
    position:relative;
    transform:translateX(-40px);
    padding:12px 12px 0 0;
}


/* 写真のフレーム */

.top-pecora-contact-intro-image-frame{

    position:relative;

    width:100%;

    aspect-ratio:1.45 / 1;

    overflow:hidden;

    background:#eee;

    border-radius:2px;

    box-shadow:
        0 18px 45px rgba(0,0,0,.12);
}


.top-pecora-contact-intro-image-frame::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(20,178,147,.08),
            transparent 55%
        );

    pointer-events:none;
}


.top-pecora-contact-intro-image-frame img{

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .6s ease;
}


.top-pecora-contact-intro-image:hover img{

    transform:scale(1.04);
}


/* ==========================================
   IMAGE DECORATION
========================================== */

.top-pecora-contact-intro-image::before{

    content:"";

    position:absolute;

    z-index:0;

    top:0;
    right:0;

    width:100%;
    height:100%;

    border:1px solid #14B293;

    transform:translate(10px, 10px);
}


.top-pecora-contact-intro-image-frame{
    position:relative;

    z-index:1;
}





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

.top-pecora-contact-intro-button-wrap{

    display:flex;

    justify-content:center;

    margin-top:65px;
}


.top-pecora-contact-intro-button{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:35px;

    width:270px;
    height:62px;

    border-radius:100px;

    background:#14B293;

    color:#fff;

    text-decoration:none;

    box-shadow:
        0 10px 25px rgba(20,178,147,.18);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


.top-pecora-contact-intro-button span{

    font-size:14px;

    font-weight:700;

    letter-spacing:1.5px;
}


.top-pecora-contact-intro-button strong{

    font-family:Arial,sans-serif;

    font-size:21px;

    font-weight:400;

    transition:
        transform .3s ease;
}


.top-pecora-contact-intro-button:hover{

    background:#108F77;

    transform:translateY(-4px);

    box-shadow:
        0 14px 30px rgba(20,178,147,.25);
}


.top-pecora-contact-intro-button:hover strong{

    transform:translateX(6px);
}
/* ==========================================
   TOP CONTACT INTRO - RESPONSIVE
========================================== */

@media screen and (max-width: 768px){

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

    .top-pecora-contact-intro{
        padding:70px 15px 85px;
    }


    /* ==========================================
       INNER
    ========================================== */

    .top-pecora-contact-intro-inner{
        width:100%;
    }


    /* ==========================================
       HEADING
    ========================================== */

    .top-pecora-contact-intro-heading{
        text-align:center;
    }

    .top-pecora-contact-intro-heading h2{
        font-size:23px;
        letter-spacing:1.5px;
        line-height:1.7;
    }


    /* 「電気」 */
    .top-pecora-contact-intro-heading h2 span{
        color:#FFCC00;
    }


    /* ==========================================
       LINE
    ========================================== */

    .top-pecora-contact-intro-line{
        width:100%;
        height:1px;
        margin:22px 0 40px;
    }


    /* ==========================================
       CONTENT
    ========================================== */

    .top-pecora-contact-intro-content{
        display:flex;
        flex-direction:column;
        gap:35px;
        align-items:stretch;
    }


    /* ==========================================
       IMAGE
    ========================================== */

    .top-pecora-contact-intro-image{
        order:1;
        width:88%;
        margin:0 auto;
        padding:10px 10px 0 0;
        transform:none;
        box-sizing:border-box;
    }


    /* 写真フレーム */
    .top-pecora-contact-intro-image-frame{
        width:100%;
        aspect-ratio:1.45 / 1;
    }


    /* 枠 */
    .top-pecora-contact-intro-image::before{
        transform:translate(8px,8px);
    }


    /* ==========================================
       TEXT
    ========================================== */

    .top-pecora-contact-intro-text{
        order:2;
        padding-left:18px;
        position:relative;
        box-sizing:border-box;
        text-align:center;
    }


    /* 左側の縦線 */
    .top-pecora-contact-intro-text::before{
        top:3px;
        left:30px;
        width:3px;
        height:calc(100% - 6px);
    }


    .top-pecora-contact-intro-text p{
        font-size:13px;
        line-height:2;
        letter-spacing:.4px;
    }


    


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

    .top-pecora-contact-intro-button-wrap{
        margin-top:40px;
    }


    .top-pecora-contact-intro-button{
        width:220px;
        height:55px;
        gap:25px;
    }


    .top-pecora-contact-intro-button span{
        font-size:13px;
        letter-spacing:1.2px;
    }


    .top-pecora-contact-intro-button strong{
        font-size:19px;
    }


    /* スマホではホバーによる動きを無効化 */
    .top-pecora-contact-intro-button:hover{
        transform:none;
        background:#14B293;
        box-shadow:
            0 10px 25px rgba(20,178,147,.18);
    }

    .top-pecora-contact-intro-button:hover strong{
        transform:none;
    }

}



/* ==========================================
   PECORA MESSAGE AREA
========================================== */

.pecora-message-area{

    position:relative;

    width:100%;

    padding:130px 20px 70px;

    background:#ffffff;

    overflow:hidden;
}


.pecora-message-inner{

    width:min(1100px, 100%);

    margin:0 auto;
}


/* ==========================================
   共通タイトル
========================================== */

.pecora-message-heading,
.pecora-philosophy-heading{

    text-align:center;

}


.pecora-message-heading-en,
.pecora-philosophy-heading-en{

    display:block;

    margin-bottom:6px;

    color:#14B293;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:17px;

    font-weight:600;

    letter-spacing:5px;

}


.pecora-message-heading h2,
.pecora-philosophy-heading h2{

    display:inline-block;

    margin:0;

    min-width:330px;

    padding:10px 50px;

    box-sizing:border-box;

    background:#14B293;

    color:#ffffff;

    border-radius:3px;

    font-size:30px;

    font-weight:700;

    letter-spacing:5px;

    line-height:1.4;

}


/* ==========================================
   代表挨拶
========================================== */

.pecora-message-block{

    margin-bottom:150px;

}


/* ==========================================
   CONTENT
========================================== */

.pecora-message-content{
    display:grid;

    grid-template-columns:
        400px
        1fr;

    align-items:center;

    gap:60px;

    margin-top:65px;
}


/* ==========================================
   PHOTO
========================================== */

.pecora-message-photo{

    position:relative;

    padding:0 12px 12px 0;

}


.pecora-message-photo::after{

    content:"";

    position:absolute;

    z-index:0;

    top:15px;
    left:15px;

    width:100%;
    height:100%;

    border:1px solid #14B293;

}
.pecora-message-photo-frame{
    position:relative;
    z-index:1;

    width:100%;

    aspect-ratio:442 / 305;

    overflow:hidden;

    background:#eee;
}


.pecora-message-photo-frame img{

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

}


/* ==========================================
   MESSAGE TEXT
========================================== */

.pecora-message-text{

    position:relative;

    padding-left:25px;

}


.pecora-message-text::before{

    content:"";

    position:absolute;

    top:4px;
    left:0;

    width:3px;

    height:calc(100% - 8px);

    background:#14B293;

    border-radius:10px;

}


.pecora-message-text p{

    margin:0 0 18px;

    color:#333;

    font-size:14px;

    font-weight:500;

    line-height:2;

    letter-spacing:.8px;

}


.pecora-message-text p:last-child{

    margin-bottom:0;

}


/* ==========================================
   PHILOSOPHY
========================================== */

.pecora-philosophy-block{

    position:relative;

    padding:0 40px;
    transform:translateY(-30px);
}


/* ==========================================
   PHILOSOPHY MAIN
========================================== */

.pecora-philosophy-main{

    position:relative;

    margin-top:65px;

    padding:65px 80px 70px;

    background:#E8F6F2;

    border-radius:4px;

    text-align:center;

}


/* ==========================================
   CATCH
========================================== */

.pecora-philosophy-catch{

    margin:0;

    color:#222;

    font-size:31px;

    font-weight:800;

    line-height:1.7;

    letter-spacing:3px;

}


.pecora-philosophy-catch::first-line{

    color:#222;

}


/* ==========================================
   LINE
========================================== */

.pecora-philosophy-line{

    width:80px;

    height:3px;

    margin:28px auto 35px;

    background:#14B293;

}


/* ==========================================
   TEXT
========================================== */

.pecora-philosophy-text{

    max-width:750px;

    margin:0 auto;

    text-align:center;

}


.pecora-philosophy-text p{

    margin:0 0 18px;

    color:#444;

    font-size:14px;

    font-weight:500;

    line-height:2;

    letter-spacing:.8px;

}


.pecora-philosophy-text p:last-child{

    margin-bottom:0;

}
/* ==========================================
   PECORA WORKS INTRO
========================================== */

.pecora-works-intro{

    position:relative;

    width:100%;

    padding:120px 20px 100px;

    background:#ffffff;

    overflow:hidden;
}


.pecora-works-intro-inner{

    position:relative;

    width:min(1100px, 100%);

    margin:0 auto;
}


/* ==========================================
   背景英字
========================================== */

.pecora-works-intro-bg{

    position:absolute;

    top:5px;
    right:-40px;

    color:#14B293;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:150px;

    font-weight:600;

    letter-spacing:10px;

    line-height:1;

    opacity:.055;

    pointer-events:none;

}


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

.pecora-works-intro-heading{

    position:relative;

    z-index:2;

    text-align:center;

}


.pecora-works-intro-heading span{

    display:block;

    margin-bottom:8px;

    color:#14B293;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:16px;

    font-weight:600;

    letter-spacing:5px;

}


.pecora-works-intro-heading h2{

    display:inline-block;

    margin:0;

    padding:12px 55px;

    background:#14B293;

    color:#ffffff;

    border-radius:3px;

    font-size:30px;

    font-weight:700;

    letter-spacing:4px;

    line-height:1.4;

}


/* ==========================================
   MAIN CONTENT
========================================== */

.pecora-works-intro-content{

    display:grid;

    grid-template-columns:480px 1fr;

    align-items:center;

    gap:80px;

    margin-top:75px;

}


/* ==========================================
   IMAGE AREA
========================================== */

.pecora-works-intro-image{

    position:relative;

    width:100%;

    padding:0 18px 18px 0;

}


/* 後ろのフレーム */

.pecora-works-intro-frame{

    position:absolute;

    z-index:0;

    top:22px;
    left:22px;

    width:100%;
    height:100%;

    border:1px solid #14B293;

    background:#E8F6F2;

}


/* 写真 */

.pecora-works-intro-photo{

    position:relative;

    z-index:1;

    width:100%;

    aspect-ratio:4 / 3;

    overflow:hidden;

    background:#eee;

}


.pecora-works-intro-photo img{

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}


/* ホバー時 */

.pecora-works-intro-image:hover
.pecora-works-intro-photo img{

    transform:scale(1.04);

}


/* ==========================================
   TEXT
========================================== */

.pecora-works-intro-text{

    position:relative;

    padding-left:28px;

}


/* 左の縦ライン */

.pecora-works-intro-text::before{

    content:"";

    position:absolute;

    top:3px;
    left:0;

    width:3px;

    height:calc(100% - 6px);

    background:#14B293;

    border-radius:10px;

}


.pecora-works-intro-text p{

    margin:0 0 20px;

    color:#333333;

    font-size:14px;

    font-weight:500;

    line-height:2;

    letter-spacing:.7px;

}


.pecora-works-intro-text p:last-child{

    margin-bottom:0;

}


/* ==========================================
   BOTTOM ACCENT
========================================== */

.pecora-works-intro-bottom{

    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:18px;

    margin-top:55px;

}


.pecora-works-intro-bottom span{

    color:#14B293;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

}


.pecora-works-intro-bottom div{

    width:55px;

    height:1px;

    background:#14B293;

}


.pecora-works-intro-bottom small{

    color:#777;

    font-size:11px;

    letter-spacing:1px;

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

@media screen and (max-width: 768px){

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

    .pecora-works-intro{
        padding:40px 15px 40px;
    }


    /* ==============================
       INNER
    ============================== */

    .pecora-works-intro-inner{
        width:100%;
    }


    /* ==============================
       BACKGROUND TEXT
    ============================== */

    .pecora-works-intro-bg{
        top:10px;
        right:-35px;
        font-size:85px;
        letter-spacing:6px;
        opacity:.045;
    }


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

    .pecora-works-intro-heading span{
        margin-bottom:6px;
        font-size:14px;
        letter-spacing:4px;
    }

    .pecora-works-intro-heading h2{
        padding:8px 28px;
        font-size:23px;
        letter-spacing:2px;
        line-height:1.5;
    }


    /* ==============================
       MAIN CONTENT
    ============================== */

    .pecora-works-intro-content{
        display:flex;
        flex-direction:column;
        gap:35px;
        margin-top:45px;
        align-items:stretch;
    }


    /* ==============================
       IMAGE AREA
    ============================== */

    .pecora-works-intro-image{
        width:88%;
        margin:0 auto;
        padding:0 12px 12px 0;
        box-sizing:border-box;
    }


    /* 後ろのフレーム */

    .pecora-works-intro-frame{
        top:15px;
        left:15px;
    }


    /* 写真 */

    .pecora-works-intro-photo{
        width:100%;
        aspect-ratio:4 / 3;
    }


    /* ==============================
       TEXT
    ============================== */

    .pecora-works-intro-text{
        
        text-align:center;
    }


    /* 左の縦ライン */

    .pecora-works-intro-text::before{
        top:3px;
        left:20px;
        width:3px;
        height:calc(100% - 6px);
    }


    .pecora-works-intro-text p{
        margin:0;
        font-size:13px;
        line-height:2;
        letter-spacing:.4px;
    }
    /* ==============================
       BOTTOM ACCENT
    ============================== */

    .pecora-works-intro-bottom{
        justify-content:center;
        flex-wrap:wrap;
        gap:10px 14px;
        margin-top:40px;
    }

    .pecora-works-intro-bottom span{
        font-size:12px;
        letter-spacing:3px;
    }

    .pecora-works-intro-bottom div{
        width:35px;
    }

    .pecora-works-intro-bottom small{
        width:100%;
        text-align:center;
        font-size:10px;
        letter-spacing:.7px;
    }

}



/* ==========================================
   PECORA SERVICE INTRO
========================================== */

.pecora-service-intro{

    position:relative;

    width:100%;

    padding:120px 20px 10px;

    background:#ffffff;

    overflow:hidden;

}


.pecora-service-intro-inner{

    position:relative;

    width:min(1100px, 100%);

    margin:0 auto;

}


/* ==========================================
   背景英字
========================================== */

.pecora-service-intro-bg{

    position:absolute;

    top:5px;
    right:-40px;

    color:#14B293;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:150px;

    font-weight:600;

    letter-spacing:10px;

    line-height:1;

    opacity:.055;

    pointer-events:none;

}


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

.pecora-service-intro-heading{

    position:relative;

    z-index:2;

    text-align:center;

}


.pecora-service-intro-heading span{

    display:block;

    margin-bottom:8px;

    color:#14B293;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:16px;

    font-weight:600;

    letter-spacing:5px;

}


.pecora-service-intro-heading h2{

    display:inline-block;

    margin:0;

    padding:12px 55px;

    background:#14B293;

    color:#ffffff;

    border-radius:3px;

    font-size:30px;

    font-weight:700;

    letter-spacing:4px;

    line-height:1.4;

}


/* ==========================================
   MAIN CONTENT
========================================== */

.pecora-service-intro-content{

    display:grid;

    grid-template-columns:480px 1fr;

    align-items:center;

    gap:80px;

    margin-top:75px;

}


/* ==========================================
   IMAGE AREA
========================================== */

.pecora-service-intro-image{

    position:relative;

    width:100%;

    padding:0 18px 18px 0;

}


/* 後ろのフレーム */

.pecora-service-intro-frame{

    position:absolute;

    z-index:0;

    top:22px;
    left:22px;

    width:100%;
    height:100%;

    border:1px solid #14B293;

    background:#E8F6F2;

}


/* 写真 */

.pecora-service-intro-photo{

    position:relative;

    z-index:1;

    width:100%;

    aspect-ratio:4 / 3;

    overflow:hidden;

    background:#f3f3f3;

}


.pecora-service-intro-photo img{

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}


/* ホバー */

.pecora-service-intro-image:hover
.pecora-service-intro-photo img{

    transform:scale(1.04);

}


/* ==========================================
   TEXT
========================================== */

.pecora-service-intro-text{

    position:relative;

    padding-left:28px;

}


/* 左の縦ライン */

.pecora-service-intro-text::before{

    content:"";

    position:absolute;

    top:3px;
    left:0;

    width:3px;

    height:calc(100% - 6px);

    background:#14B293;

    border-radius:10px;

}


.pecora-service-intro-text p{

    margin:0;

    color:#333333;

    font-size:14px;

    font-weight:500;

    line-height:2;

    letter-spacing:.7px;

}


/* ==========================================
   BOTTOM ACCENT
========================================== */

.pecora-service-intro-bottom{

    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:18px;

    margin-top:55px;

}


.pecora-service-intro-bottom span{

    color:#14B293;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:14px;

    font-weight:600;

    letter-spacing:4px;

}


.pecora-service-intro-bottom div{

    width:55px;

    height:1px;

    background:#14B293;

}


.pecora-service-intro-bottom small{

    color:#777;

    font-size:11px;

    letter-spacing:1px;

}
/* ==========================================
   SERVICE INTRO - RESPONSIVE
========================================== */

@media screen and (max-width: 768px){

    /* セクション全体 */
    .pecora-service-intro{
        padding: 40px 15px 60px;
    }


    /* 内側 */
    .pecora-service-intro-inner{
        width: 100%;
    }


    /* 背景英字 */
    .pecora-service-intro-bg{
        top: 10px;
        right: -35px;
        font-size: 85px;
        letter-spacing: 6px;
        opacity: .045;
        white-space: nowrap;
    }


    /* =========================
       タイトル
    ========================= */

    .pecora-service-intro-heading{
        text-align: center;
    }

    .pecora-service-intro-heading span{
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
        letter-spacing: 4px;
    }

    .pecora-service-intro-heading h2{
        display: inline-block;
        padding: 8px 28px;
        font-size: 23px;
        letter-spacing: 2px;
        line-height: 1.5;
    }


    /* =========================
       メインコンテンツ
    ========================= */

    .pecora-service-intro-content{
        display: flex;
        flex-direction: column;
        gap: 35px;
        margin-top: 45px;
        align-items: stretch;
    }


    /* =========================
       IMAGE
    ========================= */

    .pecora-service-intro-image{
        position: relative;
        width: 88%;
        margin: 0 auto;
        padding: 0 12px 12px 0;
        box-sizing: border-box;
    }


    /* 後ろのフレーム */
    .pecora-service-intro-frame{
        top: 15px;
        left: 15px;
    }


    /* 写真 */
    .pecora-service-intro-photo{
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }

    .pecora-service-intro-photo img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }


    /* =========================
       TEXT
    ========================= */

    .pecora-service-intro-text{
        position: relative;
        padding-left: 18px;
        text-align:center;
    }


    /* 左の縦線 */
    .pecora-service-intro-text::before{
        content: "";
        position: absolute;
        top: 3px;
        left: 20px;
        width: 3px;
        height: calc(100% - 6px);
        background: #14B293;
    }


    .pecora-service-intro-text p{
        margin: 0;
        font-size: 13px;
        line-height: 2;
        letter-spacing: .4px;
    }
    /* =========================
       下部アクセント
    ========================= */

    .pecora-service-intro-bottom{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 14px;
        margin-top: 40px;
        text-align: center;
    }


    .pecora-service-intro-bottom span{
        font-size: 12px;
        letter-spacing: 3px;
    }


    .pecora-service-intro-bottom div{
        width: 35px;
    }


    .pecora-service-intro-bottom small{
        width: 100%;
        text-align: center;
        font-size: 10px;
        letter-spacing: .7px;
    }

}


/* ==========================================
   380px以下
========================================== */

@media screen and (max-width: 380px){

    .pecora-service-intro{
        padding: 70px 12px 60px;
    }


    /* 背景英字 */
    .pecora-service-intro-bg{
        font-size: 70px;
        right: -30px;
    }


    /* タイトル */
    .pecora-service-intro-heading span{
        font-size: 13px;
        letter-spacing: 3px;
    }

    .pecora-service-intro-heading h2{
        padding: 7px 20px;
        font-size: 21px;
        letter-spacing: 1.5px;
    }


    /* コンテンツ */
    .pecora-service-intro-content{
        gap: 30px;
        margin-top: 40px;
    }


    /* 画像 */
    .pecora-service-intro-image{
        width: 92%;
        padding: 0 10px 10px 0;
    }

    .pecora-service-intro-frame{
        top: 12px;
        left: 12px;
    }


    /* テキスト */
    .pecora-service-intro-text{
        padding-left: 15px;
    }

    .pecora-service-intro-text p{
        font-size: 12px;
        line-height: 2;
    }


    /* 下部 */
    .pecora-service-intro-bottom{
        margin-top: 35px;
        gap: 8px 12px;
    }

    .pecora-service-intro-bottom span{
        font-size: 11px;
        letter-spacing: 2px;
    }

    .pecora-service-intro-bottom div{
        width: 30px;
    }

    .pecora-service-intro-bottom small{
        font-size: 9px;
    }

}
/*==========================
  施工実績
===========================*/

.achievement-section {
    width: 100%;
    padding: 0px 20px 130px;
    background: #fff;
}


/* タイトル
---------------------------*/

.achievement-title {
    text-align: center;
    margin-bottom: 75px;
}

.achievement-title span {
    display: block;
    width: 85px;
    height: 1px;
    background: #777;
    margin: 0 auto 35px;
}

.achievement-title h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #222;
}


/* 各施工実績
---------------------------*/

.achievement-item {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.achievement-item:last-child {
    margin-bottom: 0;
}


/* 緑の見出し
---------------------------*/

.achievement-item h3 {
    width: 55%;
    max-width: 480px;
    min-width: 420px;
    margin: 0 auto 60px;
    padding: 14px 20px;

    background: #14B293;
    color: #fff;

    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;

    box-sizing: border-box;
}


/* Before After
---------------------------*/

.achievement-before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}


/* 写真
---------------------------*/

.achievement-photo {
    position: relative;
    width: 42%;
    aspect-ratio: 1.55 / 1;
    overflow: hidden;
    background: #ddd;
}

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


/* 写真の上に施工前・施工後
---------------------------*/

.achievement-photo p {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    margin: 0;

    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;

    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
}


/* 矢印
---------------------------*/

.achievement-arrow {
    flex-shrink: 0;
    width: 55px;
    text-align: center;
}

.achievement-arrow span {
    font-size: 38px;
    font-weight: 400;
    color: #222;
}
/* ==========================================
   RESPONSIVE
========================================== */

@media screen and (max-width: 768px){

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

    .achievement-section{
        padding:40px 15px 80px;
    }


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

    .achievement-title{
        margin-bottom:50px;
    }

    .achievement-title span{
        width:60px;
        margin-bottom:25px;
    }

    .achievement-title h2{
        font-size:24px;
        letter-spacing:.06em;
    }


    /* ==============================
       ACHIEVEMENT ITEM
    ============================== */

    .achievement-item{
        width:100%;
        margin:0 auto 65px;
    }

    .achievement-item:last-child{
        margin-bottom:0;
    }


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

    .achievement-item h3{
        width:75%;
        min-width:0;
        max-width:360px;

        margin:0 auto 40px;
        padding:11px 15px;

        font-size:17px;
        letter-spacing:.06em;
    }


    /* ==============================
       BEFORE / AFTER
    ============================== */

    .achievement-before-after{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:15px;
        width:100%;
    }


    /* ==============================
       PHOTO
    ============================== */

    .achievement-photo{
        width:80%;
        max-width:500px;
        aspect-ratio:1.55 / 1;
    }


    /* ==============================
       PHOTO TEXT
    ============================== */

    .achievement-photo p{
        font-size:15px;
        letter-spacing:.08em;
        white-space:nowrap;
    }


    /* ==============================
       ARROW
    ============================== */

    .achievement-arrow{
        width:auto;
        height:30px;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .achievement-arrow span{
        display:block;
        font-size:30px;
        transform:rotate(90deg);
    }

}


/* ==========================================
   SMALL SMARTPHONE
========================================== */

@media screen and (max-width:380px){

    .achievement-section{
        padding:0 12px 70px;
    }


    /* TITLE */

    .achievement-title{
        margin-bottom:45px;
    }

    .achievement-title span{
        width:50px;
        margin-bottom:22px;
    }

    .achievement-title h2{
        font-size:22px;
    }


    /* ITEM */

    .achievement-item{
        margin-bottom:55px;
    }


    /* GREEN TITLE */

    .achievement-item h3{
        width:80%;
        margin-bottom:25px;
        padding:10px 12px;
        font-size:15px;
    }


    /* BEFORE / AFTER */

    .achievement-before-after{
        gap:12px;
    }


    /* PHOTO */

    .achievement-photo{
        width:94%;
        aspect-ratio:1.45 / 1;
    }

    .achievement-photo p{
        font-size:13px;
    }


    /* ARROW */

    .achievement-arrow{
        height:28px;
    }

    .achievement-arrow span{
        font-size:26px;
    }

}


/* ==========================================
   PECORA ALL WORK SECTION
========================================== */

.pecora-allwork-section{

    width:100%;

    padding:110px 20px 120px;

    background:#ffffff;

}


.pecora-allwork-inner{

    width:min(1100px, 100%);

    margin:0 auto;

}


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

.pecora-allwork-title{

    display:flex;

    justify-content:center;

    margin-bottom:80px;

}


.pecora-allwork-title h2{

    margin:0;

    padding:14px 55px;

    background:#14B293;

    color:#ffffff;

    font-size:30px;

    font-weight:700;

    letter-spacing:3px;

    line-height:1.4;

    text-align:center;

}


/* ==========================================
   CONTENT
========================================== */

.pecora-allwork-content{

    display:grid;

    grid-template-columns:1fr 500px;

    align-items:center;

    gap:70px;

}


/* ==========================================
   TEXT
========================================== */

.pecora-allwork-text{

    width:100%;
    transform:translateX(50px);
}


.pecora-allwork-text p{

    margin:0;

    color:#222222;

    font-size:15px;

    font-weight:500;

    line-height:2;

    letter-spacing:.7px;

}


/* ==========================================
   IMAGE
========================================== */

.pecora-allwork-image{

    width:100%;
    overflow:hidden;
    transform:translateX(-30px);
}


.pecora-allwork-image img{

    display:block;

    width:100%;

    height:330px;

    object-fit:cover;

}
/* ==========================
   パララックス
========================== */

.parallax-area {
    width: 100%;
    height: 500px;

    background-image: url("image/peko-para.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    /* スクロールしても背景を固定 */
    background-attachment: fixed;
}
/* =========================================
   パララックス レスポンシブ
========================================= */

@media screen and (max-width: 768px){

    .parallax-area{
        width: 100%;
        height: 330px;

        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }

}


/* 小さいスマホ */
@media screen and (max-width: 380px){

    .parallax-area{
        height: 240px;

        background-position: center center;
    }

}
/* ==========================================
   対応箇所ブロック
========================================== */

.pecora-response-section{
    position:relative;
    padding:120px 40px 140px;
    background:#f8faf8;
    overflow:hidden;
}


/* 背景のアクセント */

.pecora-response-section::before{
    content:"";
    position:absolute;
    top:80px;
    right:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(20,178,147,.06);

    pointer-events:none;
}


/* 内側 */

.pecora-response-inner{
    position:relative;
    max-width:1200px;
    margin:0 auto;
    z-index:1;
}


/* ==========================================
   タイトル
========================================== */

.pecora-response-heading{
    text-align:center;
    margin-bottom:70px;
}


.pecora-response-en{
    display:block;

    margin-bottom:10px;

    font-size:13px;
    font-weight:700;

    letter-spacing:4px;

    color:#14B293;
}


.pecora-response-heading h2{
    position:relative;

    display:inline-block;

    margin:0;

    padding:12px 70px;

    background:#14B293;

    color:#fff;

    font-size:32px;
    font-weight:700;

    letter-spacing:3px;
}


.pecora-response-heading h2::before,
.pecora-response-heading h2::after{
    content:"";

    position:absolute;

    top:50%;

    width:35px;
    height:1px;

    background:#14B293;
}


.pecora-response-heading h2::before{
    right:100%;
    margin-right:15px;
}


.pecora-response-heading h2::after{
    left:100%;
    margin-left:15px;
}


.pecora-response-heading p{
    margin:22px 0 0;

    color:#555;

    font-size:15px;

    letter-spacing:1px;
}


/* ==========================================
   カード一覧
========================================== */

.pecora-response-grid{
    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:55px 50px;
}


/* ==========================================
   カード
========================================== */

.pecora-response-card{
    position:relative;

    background:#fff;

    padding:0 40px 40px;

    border:1px solid rgba(20,178,147,.12);

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

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.pecora-response-card:hover{
    transform:translateY(-7px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.10);
}


/* ==========================================
   タイトルバー
========================================== */

.pecora-response-title{
    position:relative;

    display:flex;
    align-items:center;

    justify-content:center;

    min-height:78px;

    margin:0 -15px 35px;

    background:#14B293;

    color:#fff;
}


/* 番号 */

.pecora-response-title span{
    position:absolute;

    left:22px;

    font-size:11px;
    font-weight:700;

    letter-spacing:2px;

    opacity:.75;
}


/* タイトル */

.pecora-response-title h3{
    margin:0;

    font-size:25px;
    font-weight:700;

    letter-spacing:3px;
}


/* ==========================================
   本文
========================================== */

.pecora-response-content{
    padding:0 5px;
}


.pecora-response-content p{
    margin:0;

    color:#333;

    font-size:15px;

    line-height:2;

    letter-spacing:1px;
    text-align:center;
}


/* ==========================================
   その他
========================================== */

.pecora-response-more{
    position:relative;

    margin:80px auto 0;

    padding:30px 20px;

    text-align:center;

    border-top:1px solid rgba(20,178,147,.3);
    border-bottom:1px solid rgba(20,178,147,.3);
}


.pecora-response-more-en{
    display:block;

    margin-bottom:8px;

    color:#14B293;

    font-size:13px;
    font-weight:700;

    letter-spacing:4px;
}


.pecora-response-more p{
    margin:0;

    color:#333;

    font-size:15px;

    letter-spacing:1px;
}
/* ==========================================
   RESPONSE - RESPONSIVE
========================================== */

@media screen and (max-width: 768px){

    /* ==========================================
       セクション全体
    ========================================== */

    .pecora-response-section{
        padding:80px 15px 90px;
    }


    /* 背景アクセント */
    .pecora-response-section::before{
        top:40px;
        right:-150px;
        width:300px;
        height:300px;
    }


    /* 内側 */
    .pecora-response-inner{
        width:100%;
        max-width:none;
    }


    /* ==========================================
       タイトル
    ========================================== */

    .pecora-response-heading{
        margin-bottom:45px;
    }


    .pecora-response-en{
        margin-bottom:6px;
        font-size:12px;
        letter-spacing:3px;
    }


    .pecora-response-heading h2{
        padding:9px 35px;
        font-size:23px;
        letter-spacing:2px;
        line-height:1.5;
    }


    /* タイトル横のライン */
    .pecora-response-heading h2::before,
    .pecora-response-heading h2::after{
        width:20px;
    }

    .pecora-response-heading h2::before{
        margin-right:10px;
    }

    .pecora-response-heading h2::after{
        margin-left:10px;
    }


    .pecora-response-heading p{
        margin-top:15px;
        font-size:12px;
        line-height:1.8;
        letter-spacing:.5px;
    }


    /* ==========================================
       カード一覧
    ========================================== */

    .pecora-response-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:30px;
    }


    /* ==========================================
       カード
    ========================================== */

    .pecora-response-card{
        width:100%;
        padding:0 20px 30px;
        box-sizing:border-box;
    }


    /* スマホではホバーの浮き上がりを無効化 */
    .pecora-response-card:hover{
        transform:none;
        box-shadow:0 12px 35px rgba(0,0,0,.06);
    }


    /* ==========================================
       タイトルバー
    ========================================== */

    .pecora-response-title{
        min-height:65px;
        margin:0 -10px 25px;
    }


    /* 番号 */
    .pecora-response-title span{
        left:15px;
        font-size:10px;
        letter-spacing:1.5px;
    }


    /* タイトル */
    .pecora-response-title h3{
        font-size:20px;
        letter-spacing:2px;
    }


    /* ==========================================
       本文
    ========================================== */

    .pecora-response-content{
        padding:0 5px;
    }


    .pecora-response-content p{
        font-size:12px;
        line-height:2;
        letter-spacing:.4px;
        text-align:center;
    }
    /* ==========================================
       その他
    ========================================== */

    .pecora-response-more{
        margin:55px auto 0;
        padding:25px 10px;
    }


    .pecora-response-more-en{
        margin-bottom:7px;
        font-size:11px;
        letter-spacing:3px;
    }


    .pecora-response-more p{
        font-size:12px;
        line-height:1.8;
        letter-spacing:.5px;
    }

}


/* ==========================================
   380px以下
========================================== */

@media screen and (max-width: 380px){

    .pecora-response-section{
        padding:70px 12px 80px;
    }


    /* 背景 */
    .pecora-response-section::before{
        top:30px;
        right:-120px;
        width:240px;
        height:240px;
    }


    /* タイトル */
    .pecora-response-heading{
        margin-bottom:40px;
    }


    .pecora-response-en{
        font-size:11px;
        letter-spacing:2.5px;
    }


    .pecora-response-heading h2{
        padding:8px 28px;
        font-size:21px;
        letter-spacing:1.5px;
    }


    .pecora-response-heading h2::before,
    .pecora-response-heading h2::after{
        width:15px;
    }


    .pecora-response-heading h2::before{
        margin-right:7px;
    }

    .pecora-response-heading h2::after{
        margin-left:7px;
    }


    .pecora-response-heading p{
        font-size:11px;
        letter-spacing:.3px;
    }


    /* カード */
    .pecora-response-grid{
        gap:25px;
    }


    .pecora-response-card{
        padding:0 15px 25px;
    }


    /* タイトルバー */
    .pecora-response-title{
        min-height:60px;
        margin:0 -8px 22px;
    }


    .pecora-response-title span{
        left:12px;
        font-size:9px;
    }


    .pecora-response-title h3{
        font-size:18px;
        letter-spacing:1.5px;
    }


    /* 本文 */
    .pecora-response-content p{
        font-size:11px;
        line-height:2;
    }


    /* その他 */
    .pecora-response-more{
        margin-top:45px;
        padding:22px 5px;
    }


    .pecora-response-more-en{
        font-size:10px;
        letter-spacing:2.5px;
    }


    .pecora-response-more p{
        font-size:11px;
    }

}
/* ==========================================
   お困りポイントブロック
========================================== */

.pecora-home-concern{

    position:relative;

    width:100%;

    padding:100px 40px 80px;

    background:#fff;

    overflow:hidden;

}


/* ==========================================
   内側
========================================== */

.pecora-home-concern-inner{

    position:relative;

    max-width:1250px;

    margin:0 auto;

    z-index:2;

}


/* ==========================================
   イナズマ
========================================== */

.pecora-home-concern-lightning{

    position:absolute;

    top:80px;
    right:20%;

    width:85px;

    height:auto;

    z-index:1;

    pointer-events:none;

}


/* ==========================================
   タイトル
========================================== */

.pecora-home-concern-heading{

    text-align:center;

    margin-bottom:70px;

}


/* 英字 */

.pecora-home-concern-en{

    display:block;

    margin-bottom:8px;

    font-size:32px;

    font-weight:800;

    line-height:1.2;

    letter-spacing:2px;

    color:#111;

}


/* ELECTRICALだけ緑 */

.pecora-home-concern-en strong{

    color:#14B293;

}


/* 日本語タイトル */

.pecora-home-concern-heading h2{

    margin:0;

    font-size:30px;

    font-weight:800;

    line-height:1.5;

    letter-spacing:2px;

    color:#111;

}


/* 電気だけ黄色 */

.pecora-home-concern-heading h2 span{

    color:#FFCC00;

}


/* ==========================================
   メイン
========================================== */

.pecora-home-concern-main{

    display:grid;

    grid-template-columns:1.2fr .9fr;

    align-items:center;

    gap:60px;

}


/* ==========================================
   家のイラスト
========================================== */

.pecora-home-concern-house{

    position:relative;

    width:100%;

    display:flex;

    align-items:center;

    justify-content:center;

}


.pecora-home-concern-house img{

    display:block;

    width:100%;

    max-width:680px;

    height:auto;

}


/* ==========================================
   右側
========================================== */

.pecora-home-concern-services{

    width:100%;

    max-width:560px;

    margin-left:auto;

}


/* ==========================================
   対応箇所ボタン
========================================== */

.pecora-home-concern-service-grid{

    display:grid;

    grid-template-columns:repeat(2, 1fr);

    gap:22px 25px;

}


/* ボタン */

.pecora-home-concern-service{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:68px;

    padding:10px 20px;

    background:#14B293;

    color:#fff;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    letter-spacing:2px;

    box-shadow:
        0 5px 12px rgba(0,0,0,.08);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;

}


/* 左上に小さいアクセント */

.pecora-home-concern-service::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:5px;
    height:100%;

    background:rgba(255,255,255,.18);

}


/* ホバー */

.pecora-home-concern-service:hover{

    transform:translateY(-4px);

    background:#119f84;

    box-shadow:
        0 9px 20px rgba(0,0,0,.12);

}


/* ==========================================
   その他の対応
========================================== */

.pecora-home-concern-more{

    margin:35px 0 25px;

    text-align:center;

    color:#14B293;

    font-size:15px;

    font-weight:700;

    line-height:1.8;

    letter-spacing:1px;

}


/* ==========================================
   施工実績ボタン
========================================== */

.pecora-home-concern-button{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    width:270px;

    min-height:68px;

    margin:0 auto;

    border:2px solid #555;

    background:#fff;

    color:#222;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    letter-spacing:1px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;

}


/* 三角 */

.pecora-home-concern-button-icon{

    font-size:15px;

    color:#111;

    transition:transform .3s ease;

}


/* ホバー */

.pecora-home-concern-button:hover{

    background:#14B293;

    color:#fff;

    transform:translateY(-3px);

}


.pecora-home-concern-button:hover
.pecora-home-concern-button-icon{

    color:#fff;

    transform:translateX(4px);

}
/* ==========================================
   住まいの電気のお困りごと
   スマホ レスポンシブ
========================================== */

@media screen and (max-width: 768px){

    /* セクション全体 */
    .pecora-home-concern{
        width:100%;
        padding:60px 15px 60px;
        box-sizing:border-box;
    }


    /* 内側 */
    .pecora-home-concern-inner{
        width:100%;
        max-width:none;
    }


    /* ==========================================
       イナズマ
    ========================================== */

    .pecora-home-concern-lightning{
        top:105px;
        right:13%;
        width:55px;
    }


    /* ==========================================
       タイトル
    ========================================== */

    .pecora-home-concern-heading{
        margin-bottom:55px;
        text-align:center;
    }


    /* 英字 */
    .pecora-home-concern-en{
        display:block;
        margin-bottom:12px;
        font-size:15px;
        font-weight:800;
        line-height:1.3;
        letter-spacing:1px;
        white-space:nowrap;
    }


    /* ELECTRICAL */
    .pecora-home-concern-en strong{
        color:#14B293;
    }


    /* 日本語タイトル */
    .pecora-home-concern-heading h2{
        margin:0 auto;
        max-width:350px;
        font-size:22px;
        font-weight:800;
        line-height:1.55;
        letter-spacing:1px;
        text-align:center;
    }


    /* 電気 */
    .pecora-home-concern-heading h2 span{
        color:#FFCC00;
    }


    /* ==========================================
       メイン
    ========================================== */

    .pecora-home-concern-main{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:45px;
    }


    /* ==========================================
       家のイラスト
    ========================================== */

    .pecora-home-concern-house{
        width:94%;
        max-width:500px;
        margin:0 auto;
    }


    .pecora-home-concern-house img{
        display:block;
        width:100%;
        max-width:none;
        height:auto;
    }


    /* ==========================================
       対応箇所エリア
    ========================================== */

    .pecora-home-concern-services{
        width:90%;
        max-width:500px;
        margin:0 auto;
    }


    /* ==========================================
       対応箇所ボタン
    ========================================== */

    .pecora-home-concern-service-grid{
        display:grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:15px 14px;
    }


    .pecora-home-concern-service{
        min-height:58px;
        padding:8px 8px;
        box-sizing:border-box;

        font-size:15px;
        font-weight:700;
        letter-spacing:1px;

        box-shadow:
            0 4px 10px rgba(0,0,0,.07);
    }


    /* 左側のアクセント */
    .pecora-home-concern-service::before{
        width:4px;
    }


    /* スマホではホバー移動なし */
    .pecora-home-concern-service:hover{
        transform:none;
        background:#14B293;
        box-shadow:
            0 4px 10px rgba(0,0,0,.07);
    }


    /* ==========================================
       その他の対応
    ========================================== */

    .pecora-home-concern-more{
        margin:35px auto 28px;

        width:90%;
        max-width:430px;

        text-align:center;

        color:#14B293;
        font-size:12px;
        font-weight:700;
        line-height:1.8;
        letter-spacing:.5px;
    }


    /* ==========================================
       施工実績ボタン
    ========================================== */

    .pecora-home-concern-button{
        width:220px;
        min-height:55px;
        margin:0 auto;

        gap:12px;

        border:2px solid #555;

        font-size:13px;
        font-weight:700;
        letter-spacing:1px;
    }


    /* 三角 */
    .pecora-home-concern-button-icon{
        font-size:13px;
    }


    /* スマホではホバーなし */
    .pecora-home-concern-button:hover{
        background:#fff;
        color:#222;
        transform:none;
    }

    .pecora-home-concern-button:hover
    .pecora-home-concern-button-icon{
        color:#111;
        transform:none;
    }

}


/* ==========================================
   小さいスマホ
========================================== */

@media screen and (max-width: 380px){

    .pecora-home-concern{
        padding:50px 12px 70px;
    }


    /* イナズマ */
    .pecora-home-concern-lightning{
        top:95px;
        right:9%;
        width:48px;
    }


    /* タイトル */
    .pecora-home-concern-heading{
        margin-bottom:45px;
    }


    .pecora-home-concern-en{
        margin-bottom:10px;
        font-size:13px;
        letter-spacing:.5px;
    }


    .pecora-home-concern-heading h2{
        max-width:320px;
        font-size:20px;
        line-height:1.55;
        letter-spacing:.5px;
    }


    /* メイン */
    .pecora-home-concern-main{
        gap:35px;
    }


    /* 家 */
    .pecora-home-concern-house{
        width:96%;
    }


    /* ボタンエリア */
    .pecora-home-concern-services{
        width:94%;
    }


    /* 対応箇所 */
    .pecora-home-concern-service-grid{
        gap:12px 10px;
    }


    .pecora-home-concern-service{
        min-height:53px;
        padding:7px 5px;

        font-size:13px;
        letter-spacing:.5px;
    }


    /* その他 */
    .pecora-home-concern-more{
        margin:30px auto 25px;
        width:94%;
        font-size:11px;
        line-height:1.8;
    }


    /* 施工実績 */
    .pecora-home-concern-button{
        width:205px;
        min-height:52px;
        font-size:12px;
    }

}
/* ==========================================
   写真自動スクロールブロック
========================================== */

.pecora-photo-scroll-section{

    position:relative;

    width:100%;

    overflow:hidden;

    /*
    後から上のブロックに被せたい場合は
    margin-top: -50px;
    のように変更する
    */

    margin-top:-30px;

    z-index:3;

}


/* 横に流れる本体 */

.pecora-photo-scroll-track{

    display:flex;

    width:max-content;
    gap:20px;
    animation:pecoraPhotoScroll 28s linear infinite;

}


/* 4枚1セット */

.pecora-photo-scroll-group{

    display:flex;

    gap:20px;

    flex-shrink:0;

}


/* 写真 */

.pecora-photo-scroll-item{

    width:330px;

    height:220px;

    flex-shrink:0;

    overflow:hidden;

}


/* 画像 */

.pecora-photo-scroll-item img{

    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

}


/* ==========================================
   無限スクロール
========================================== */

@keyframes pecoraPhotoScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}
/* ==========================================
   スクロール写真 レスポンシブ
========================================== */

@media screen and (max-width: 768px){

    /* セクション */
    .pecora-photo-scroll-section{
        margin-top:-20px;
    }


    /* 横に流れる本体 */
    .pecora-photo-scroll-track{
        gap:12px;
        animation-duration:22s;
    }


    /* 4枚1セット */
    .pecora-photo-scroll-group{
        gap:12px;
    }


    /* 写真 */
    .pecora-photo-scroll-item{
        width:240px;
        height:165px;
    }

}


/* ==========================================
   小さいスマホ
========================================== */

@media screen and (max-width: 380px){

    .pecora-photo-scroll-section{
        margin-top:-15px;
    }


    .pecora-photo-scroll-track{
        gap:10px;
        animation-duration:20s;
    }


    .pecora-photo-scroll-group{
        gap:10px;
    }


    .pecora-photo-scroll-item{
        width:210px;
        height:145px;
    }

}
/* ==========================================
   トップページ：事業内容導入ブロック
========================================== */

.pecora-top-business{

    position:relative;

    width:100%;

    min-height:850px;

    overflow:hidden;

    background:#1d8b57;
    padding-bottom:100px;
}


/* ==========================================
   背景画像
========================================== */

.pecora-top-business-bg{

    position:absolute;

    inset:0;

    background-image:url("image/peko-secowrap.png");

    background-size:cover;

    background-position:center;

    z-index:0;

}


/* ==========================================
   緑の透かし
========================================== */

.pecora-top-business-overlay{

    position:absolute;

    inset:0;

    background:rgba(18, 139, 82, 0.78);

    z-index:1;

}


/* ==========================================
   背景の装飾
========================================== */

.pecora-top-business::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    top:-180px;

    left:-120px;

    z-index:2;

}


.pecora-top-business::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,0.07);

    right:-100px;

    top:100px;

    z-index:2;

}


/* ==========================================
   全体コンテナ
========================================== */

.pecora-top-business-inner{

    position:relative;

    width:min(1200px, 92%);

    min-height:850px;

    margin:0 auto;

    z-index:3;

}


/* ==========================================
   写真エリア
========================================== */

.pecora-top-business-photos{

    position:absolute;

    left:0;

    top:110px;

    width:560px;

    height:650px;

}


/* 共通 */

.pecora-top-business-photo{

    position:absolute;

    overflow:hidden;

    box-shadow:0 18px 40px rgba(0,0,0,0.18);

}


/* 写真01 */

.pecora-top-business-photo.photo01{

    width:290px;

    height:560px;

    left:0;

    top:120px;

}


/* 写真02 */

.pecora-top-business-photo.photo02{

    width:310px;

    height:650px;

    left:335px;

    top:0;

}


/* 写真 */

.pecora-top-business-photo img{

    display:block;

    width:100%;

    height:100%;

    object-fit:cover;

}


/* ==========================================
   背景英字
========================================== */

.pecora-top-business-bgtext{

    position:absolute;

    left:600px;

    top:230px;

    font-family:Arial, sans-serif;

    font-size:110px;

    font-weight:900;

    line-height:0.95;

    letter-spacing:4px;

    color:rgba(255,255,255,0.13);

    white-space:nowrap;

    z-index:4;

    pointer-events:none;

}


/* ==========================================
   白黒イラスト
========================================== */

.pecora-top-business-illust{

    position:absolute;

    width:130px;

    height:auto;

    z-index:6;

    pointer-events:none;

}


/* イラスト01 */

.pecora-top-business-illust.illust01{

    left:320px;

    bottom:-40px;

    transform:rotate(-8deg);

}


/* イラスト02 */

.pecora-top-business-illust.illust02{

    left:25px;

    bottom:-15px;

    width:105px;

    transform:rotate(5deg);

}


/* ==========================================
   右側コンテンツ
========================================== */

.pecora-top-business-content{

    position:absolute;

    right:0;

    top:215px;

    width:510px;

    z-index:7;

}


/* 英字 */

.pecora-top-business-en{

    margin:0 0 12px;

    font-family:Arial, sans-serif;

    font-size:15px;

    font-weight:700;

    letter-spacing:3px;

    color:rgba(255,255,255,0.82);
    transform:translateX(40px);

}


/* タイトル */

.pecora-top-business-title{

    margin:0 0 35px;

    font-size:54px;

    font-weight:800;

    line-height:1.45;

    letter-spacing:3px;

    color:#ffffff;

    text-shadow:0 4px 15px rgba(0,0,0,0.12);
    transform:translateX(40px);

}


/* 本文 */

.pecora-top-business-text{

    width:460px;

    margin:0 0 35px;

    font-size:16px;

    font-weight:500;

    line-height:2.15;

    letter-spacing:1px;

    color:#ffffff;
    transform:translateX(40px);
}


/* ==========================================
   ボタン
========================================== */

.pecora-top-business-button{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    width:220px;

    height:58px;

    border:1px solid rgba(255,255,255,0.8);

    background:rgba(255,255,255,0.08);

    color:#ffffff;

    text-decoration:none;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    transition:0.35s ease;
    transform:translateX(110px);

}


.pecora-top-business-button-arrow{

    font-size:12px;

    transition:0.35s ease;

}


.pecora-top-business-button:hover{

    background:#ffffff;

    color:#168b56;

}


.pecora-top-business-button:hover
.pecora-top-business-button-arrow{

    transform:translateX(4px);

}
/* ==========================================
   TOP BUSINESS
   スマホ レスポンシブ
========================================== */

@media screen and (max-width:768px){

    /* ==========================================
       セクション全体
    ========================================== */

    .pecora-top-business{
        width:100%;
        min-height:0;
        padding:0 15px 70px;
        box-sizing:border-box;

        background:#1d8b57;

        overflow:hidden;
    }


    /* ==========================================
       背景
    ========================================== */

    .pecora-top-business-bg{
        inset:0;

        background-size:cover;
        background-position:center center;
    }


    /* 緑の透かし */
    .pecora-top-business-overlay{
        inset:0;
        background:rgba(18,139,82,.78);
    }


    /* ==========================================
       背景の丸
    ========================================== */

    .pecora-top-business::before{
        width:330px;
        height:330px;

        top:-120px;
        left:-170px;
    }


    .pecora-top-business::after{
        width:280px;
        height:280px;

        right:-150px;
        top:350px;
    }


    /* ==========================================
       全体
    ========================================== */

    .pecora-top-business-inner{
        width:100%;
        min-height:0;

        margin:0 auto;
        padding-top:65px;
        box-sizing:border-box;

        display:flex;
        flex-direction:column;

        z-index:3;
    }


    /* ==========================================
       背景英字
    ========================================== */

    .pecora-top-business-bgtext{
        left:-15px;
        top:30px;

        font-size:65px;
        line-height:.92;
        letter-spacing:2px;

        white-space:nowrap;

        color:rgba(255,255,255,.13);

        z-index:4;
    }


    /* ==========================================
       写真エリア
    ========================================== */

    .pecora-top-business-photos{
        position:relative;

        left:auto;
        top:auto;

        width:100%;
        height:555px;

        margin:0 auto;

        z-index:5;
    }


    /* 写真共通 */
    .pecora-top-business-photo{
        box-shadow:0 12px 28px rgba(0,0,0,.18);
    }


    /* ==========================================
       写真01
    ========================================== */

    .pecora-top-business-photo.photo01{
        width:46%;
        height:430px;

        left:5px;
        top:145px;
    }


    /* ==========================================
       写真02
    ========================================== */

    .pecora-top-business-photo.photo02{
        width:46%;
        height:450px;

        left:auto;
        right:5px;
        top:0;
    }


    /* ==========================================
       写真
    ========================================== */

    .pecora-top-business-photo img{
        width:100%;
        height:100%;

        object-fit:cover;
    }


    /* ==========================================
       イラスト
    ========================================== */

    .pecora-top-business-illust{
        z-index:8;
    }


    /* 上側のイラスト */
    .pecora-top-business-illust.illust01{
        width:75px;

        left:auto;
        right:50px;
        bottom:auto;

        top:490px;

        transform:rotate(-8deg);
    }


    /* 下側のイラスト */
    .pecora-top-business-illust.illust02{
        width:65px;

        left:0;
        bottom:auto;

        top:600px;

        transform:rotate(5deg);
    }


    /* ==========================================
       コンテンツ
    ========================================== */

    .pecora-top-business-content{
        position:relative;

        right:auto;
        top:auto;

        width:100%;

        margin:0;

        z-index:9;

        display:flex;
        flex-direction:column;
        align-items:stretch;
        transform:translateY(30px);
    }


    /* ==========================================
       英字
    ========================================== */

    .pecora-top-business-en{
        margin:0 0 10px;

        font-size:11px;
        font-weight:700;

        letter-spacing:2px;
        line-height:1.5;

        color:rgba(255,255,255,.82);

        transform:none;

        text-align:center;
    }


    /* ==========================================
       タイトル
    ========================================== */

    .pecora-top-business-title{
        margin:0 0 30px;

        font-size:28px;
        font-weight:800;

        line-height:1.55;
        letter-spacing:2px;

        color:#fff;

        text-align:center;

        transform:none;
    }


    /* ==========================================
       本文
    ========================================== */

    .pecora-top-business-text{
        position:relative;

        width:100%;

        margin:0 auto 35px;

        padding-left:16px;

        box-sizing:border-box;

        font-size:13px;
        font-weight:500;

        line-height:2;
        letter-spacing:.5px;

        color:#fff;

        transform:none;
        text-align:center;
    }


    /* 左のアクセントライン */
    .pecora-top-business-text::before{
        content:"";

        position:absolute;

        top:3px;
        left:20px;

        width:3px;
        height:calc(100% - 6px);

        background:#fff;

        border-radius:10px;

        opacity:.8;
    }
    /* ==========================================
       ボタン
    ========================================== */

    .pecora-top-business-button{
        width:210px;
        height:54px;

        margin:0 auto;

        gap:12px;

        border:1px solid rgba(255,255,255,.85);

        background:rgba(255,255,255,.08);

        font-size:13px;
        letter-spacing:1px;

        transform:none;
    }


    .pecora-top-business-button-arrow{
        font-size:11px;
    }


    /* スマホではホバー変化なし */
    .pecora-top-business-button:hover{
        background:rgba(255,255,255,.08);
        color:#fff;
    }


    .pecora-top-business-button:hover
    .pecora-top-business-button-arrow{
        transform:none;
    }

}


/* ==========================================
   小さいスマホ
========================================== */

@media screen and (max-width:380px){

    .pecora-top-business{
        padding:0 12px 60px;
    }


    .pecora-top-business-inner{
        padding-top:55px;
    }


    /* 背景英字 */
    .pecora-top-business-bgtext{
        left:-20px;
        top:25px;

        font-size:55px;
        letter-spacing:1px;
    }


    /* 写真エリア */
    .pecora-top-business-photos{
        height:500px;
    }


    /* 写真01 */
    .pecora-top-business-photo.photo01{
        width:47%;
        height:390px;

        top:125px;
    }


    /* 写真02 */
    .pecora-top-business-photo.photo02{
        width:47%;
        height:410px;

        top:0;
    }


    /* イラスト */
    .pecora-top-business-illust.illust01{
        width:65px;

        top:445px;
        right:0;
    }


    .pecora-top-business-illust.illust02{
        width:58px;

        top:455px;
        left:0;
    }


    /* 英字 */
    .pecora-top-business-en{
        font-size:10px;
        letter-spacing:1.5px;
    }


    /* タイトル */
    .pecora-top-business-title{
        margin-bottom:25px;

        font-size:24px;
        letter-spacing:1.5px;
    }


    /* 本文 */
    .pecora-top-business-text{
        padding-left:14px;

        font-size:12px;
        line-height:2;
    }


    /* ボタン */
    .pecora-top-business-button{
        width:200px;
        height:52px;

        font-size:12px;
    }

}
.pc-only { display: block; }
.sp-only { display: none; }
.sp-page-title {
  display: none;
} 
@media screen and (max-width: 768px){

    .business-fv{
        display:none;
    }

}
@media screen and (max-width: 768px){

    .pecora-footer{
        display: none;
    }
    .pc-only { display: none; }
    .sp-only { display: block; }
    /* スマホ専用タイトル帯の設定 */
  .sp-page-title {
    display: block;
    width: 100%;             /* ヘッダーと同じ幅（画面いっぱい） */
    background-color: #14B293; /* お写真の黄色 */
    padding: 12px 20px;      /* 上下の厚みと左右の余白 */
    text-align: left;        /* 左寄せ（中央ならcenter） */
    
    /* ヘッダーが固定(fixed)されている場合の重なり防止 */
    position: relative;
    z-index: 10;
    margin-top: 80px;
  }

  .sp-page-title span {
    color: #fff;             /* 文字色（白抜き） */
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}
/* ==========================================
   RESPONSIVE
========================================== */

@media screen and (max-width: 768px){

    /* ==============================
       全体
    ============================== */

    .pecora-message-area{
        padding:40px 15px 20px;
    }

    .pecora-message-inner{
        width:100%;
    }


    /* ==============================
       共通タイトル
    ============================== */

    .pecora-message-heading-en,
    .pecora-philosophy-heading-en{
        margin-bottom:5px;
        font-size:14px;
        letter-spacing:4px;
    }

    .pecora-message-heading h2,
    .pecora-philosophy-heading h2{
        min-width:0;
        width:auto;
        padding:8px 35px;
        font-size:23px;
        letter-spacing:3px;
        line-height:1.4;
    }


    /* ==============================
       代表挨拶
    ============================== */

    .pecora-message-block{
        margin-bottom:100px;
    }


    /* ==============================
       CONTENT
    ============================== */

    .pecora-message-content{
        display:flex;
        flex-direction:column;
        gap:35px;
        margin-top:45px;
        align-items:stretch;
    }


    /* ==============================
       PHOTO
    ============================== */

    .pecora-message-photo{
        width:88%;
        margin:0 auto;
        padding:0 10px 10px 0;
        box-sizing:border-box;
    }

    .pecora-message-photo::after{
        top:12px;
        left:12px;
    }

    .pecora-message-photo-frame{
        width:100%;
        aspect-ratio:442 / 305;
    }


    /* ==============================
       MESSAGE TEXT
    ============================== */

    .pecora-message-text{
        padding-left:18px;
        text-align:center;
    }

    .pecora-message-text::before{
        top:3px;
        left:20px;
        width:3px;
        height:calc(100% - 6px);
    }

    .pecora-message-text p{
        margin:0;
        font-size:13px;
        line-height:2;
        letter-spacing:.5px;
    }
    /* ==============================
       PHILOSOPHY
    ============================== */

    .pecora-philosophy-block{
        padding:0;
        transform:translateY(-40px);
    }


    /* ==============================
       PHILOSOPHY MAIN
    ============================== */

    .pecora-philosophy-main{
        margin-top:45px;
        padding:40px 20px 45px;
        border-radius:4px;
    }


    /* ==============================
       CATCH
    ============================== */

    .pecora-philosophy-catch{
        font-size:23px;
        line-height:1.7;
        letter-spacing:2px;
        transform:translateX(10px);
    }


    /* ==============================
       LINE
    ============================== */

    .pecora-philosophy-line{
        width:55px;
        height:2px;
        margin:22px auto 28px;
    }


    /* ==============================
       TEXT
    ============================== */

    .pecora-philosophy-text{
        width:100%;
        max-width:none;
    }

    .pecora-philosophy-text p{
        margin:0;
        font-size:13px;
        line-height:2;
        letter-spacing:.4px;
    }

    

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

@media screen and (max-width: 768px){

    /* ==============================
       COMPANY AREA
    ============================== */

    .pecora-company{
        padding:80px 15px 90px;
    }


    /* ==============================
       INNER
    ============================== */

    .pecora-company-inner{
        width:100%;
    }


    /* ==============================
       DECORATION
    ============================== */

    .pecora-company-deco-01{
        width:280px;
        height:280px;
        top:-130px;
        left:-140px;
    }

    .pecora-company-deco-02{
        width:240px;
        height:240px;
        right:-120px;
        bottom:-100px;
    }


    /* ==============================
       HEADING
    ============================== */

    .pecora-company-heading{
        margin-bottom:35px;
    }

    .pecora-company-en{
        margin-bottom:5px;
        font-size:14px;
        letter-spacing:4px;
    }

    .pecora-company-heading h2{
        font-size:28px;
        letter-spacing:3px;
        line-height:1.4;
    }

    .pecora-company-lead{
        margin-top:12px;
        font-size:12px;
        letter-spacing:.5px;
    }


    /* ==============================
       COMPANY TABLE
    ============================== */

    .pecora-company-table{
        padding:5px 20px;
        border-radius:16px;
        box-shadow:
            0 10px 30px rgba(20,178,147,.08);
    }


    /* ==============================
       ROW
    ============================== */

    .pecora-company-row{
        grid-template-columns:95px 1fr;
        min-height:65px;
    }


    /* ==============================
       LABEL
    ============================== */

    .pecora-company-label{
        padding-left:15px;
        font-size:12px;
        letter-spacing:1px;
    }

    .pecora-company-label::before{
        left:0;
        width:4px;
        height:4px;
    }


    /* ==============================
       VALUE
    ============================== */

    .pecora-company-value{
        font-size:13px;
        line-height:1.7;
        letter-spacing:.5px;
        word-break:break-word;
    }

    .pecora-company-value a{
        word-break:break-all;
    }


    /* ==============================
       TELEPHONE NOTE
    ============================== */

    .pecora-company-tel{
        padding:15px 0;
    }

    .pecora-company-tel > a{
        font-size:14px;
    }

    .pecora-company-note{
        margin-top:4px;
        font-size:9px;
        line-height:1.6;
        letter-spacing:0;
    }


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

    .pecora-company-more{
        width:210px;
        height:52px;
        margin-top:35px;
        gap:20px;
    }

    .pecora-company-more span{
        font-size:13px;
        letter-spacing:1.5px;
    }

    .pecora-company-more strong{
        font-size:18px;
    }

}


/* ==========================================
   SMALL SMARTPHONE
========================================== */

@media screen and (max-width:380px){

    .pecora-company{
        padding:70px 12px 80px;
    }


    /* HEADING */

    .pecora-company-en{
        font-size:13px;
        letter-spacing:3px;
    }

    .pecora-company-heading h2{
        font-size:25px;
        letter-spacing:2px;
    }

    .pecora-company-lead{
        font-size:11px;
    }


    /* TABLE */

    .pecora-company-table{
        padding:3px 14px;
        border-radius:14px;
    }


    /* ROW */

    .pecora-company-row{
        grid-template-columns:85px 1fr;
        min-height:60px;
    }


    /* LABEL */

    .pecora-company-label{
        padding-left:13px;
        font-size:11px;
        letter-spacing:.5px;
    }


    /* VALUE */

    .pecora-company-value{
        font-size:12px;
        line-height:1.7;
    }


    /* TELEPHONE NOTE */

    .pecora-company-note{
        font-size:8px;
        line-height:1.6;
    }


    /* DECORATION */

    .pecora-company-deco-01{
        width:220px;
        height:220px;
        top:-100px;
        left:-110px;
    }

    .pecora-company-deco-02{
        width:190px;
        height:190px;
        right:-95px;
        bottom:-80px;
    }

}
/* ==========================================
   ALLWORK - RESPONSIVE
========================================== */

@media screen and (max-width: 768px){

    /* セクション全体 */
    .pecora-allwork-section{
        padding:10px 15px 50px;
    }


    /* 内側 */
    .pecora-allwork-inner{
        width:100%;
    }


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

    .pecora-allwork-title{
        margin-bottom:45px;
    }

    .pecora-allwork-title h2{
        width:auto;
        max-width:100%;
        margin:0;
        padding:10px 25px;
        font-size:22px;
        letter-spacing:2px;
        line-height:1.5;
        box-sizing:border-box;
    }


    /* ==========================================
       CONTENT
    ========================================== */

    .pecora-allwork-content{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:35px;
}


    /* ==========================================
       TEXT
    ========================================== */

    .pecora-allwork-text{
        width:100%;
        transform:none;
        padding-left:18px;
        box-sizing:border-box;
        position:relative;
        order:2;
        text-align:center;
    }


    /* 左側のアクセントライン */
    .pecora-allwork-text::before{
        content:"";
        position:absolute;
        top:3px;
        left:20px;
        width:3px;
        height:calc(100% - 6px);
        background:#14B293;
    }


    .pecora-allwork-text p{
        margin:0;
        font-size:13px;
        line-height:2;
        letter-spacing:.4px;
    }
    /* ==========================================
       IMAGE
    ========================================== */

    .pecora-allwork-image{
        width:80%;
        margin:0 auto;
        overflow:hidden;
        transform:none;
        order:1;
    }


    .pecora-allwork-image img{
        width:100%;
        height:auto;
        aspect-ratio:4 / 3;
        object-fit:cover;
        display:block;
    }

}














