/* 基本設定--------------------------------------------------------------- */
body {
    background: var(--eco-bg);
}
/* 関連企業--------------------------------------------------------------- */
.group-company .contents:hover .bottom-item{
    color: var(--eco-txt-hover);
    border-bottom: .5px solid var(--eco-txt-hover);
}

/* ファーストビュー--------------------------------------------------------------- */
.first-view {
    position: relative;
    background-position: 80% center;
    background-image: url(../img/eco/eco_mv.jpg);
}
.main-logo {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: calc(600px - 4rem);

    -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5)); 
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5)); 
}

@media(max-width:800px) {
    .main-logo {
        bottom: 2rem;
        left: 50%;
        right: 50%;
        transform: translateX(-50%);

        width: 90%;
    }
}

/* キャッチコピー　--------------------------------------------------------------- */ 
.catch-area {
    display: flex;
    flex-direction:column-reverse ;
    align-items: center;
    gap: 2rem;

}

.catch-area img {
    width: 100px;
}

.catch-area .catch-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;

    text-align: center;
    line-height: 2;

    width: 80%;
    margin: 0 auto;
}

.catch-area h2 {
    font-family: var(--serif-text);
    font-size: 2.3rem;
    line-height: 1.3;
}

@media(max-width:800px) {
    .catch-area  .catch-text{
        width: 85%;
    }
    .catch-area img {
        width: 80px;
    }

    .catch-area h2 {
        font-size: 24px;
    }

    .catch-area .catch-sub {
        font-size: .9rem;
    }    
}
@media (max-width: 600px) {
    .catch-area .catch-text {
        width: 90%;
    }
}

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

.catch {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 5%;

    width: 93%;
    margin: 100px 0 0 auto;
}

.catch .text-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;

    width: 45%;
}
.catch img {
    width: 55%;
    aspect-ratio: 5/3;
    object-fit: cover;
}

.catch .text-area h2 {
    font-family: var(--serif-text);
    font-size: 2rem;
    line-height: 1.2;
}
.catch p {
    line-height: 2;
}
@media (max-width: 800px) {
    .catch {
        flex-direction: column-reverse;
        gap: 3rem;

        width: 90%;
        margin: 100px auto;
    }

    .catch img {
        width: 100%;
        aspect-ratio: 5/2;
    }

    .catch .text-area {
        width: 100%;
        gap: 1rem;
    }
}

/* 　ペレット販売---------------------------------------------------------------**/
.pellet .contents-area {
    width: 80%;
}
.pellet .contents-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
} 

.pellet h3 {
    background: var(--eco-accent);
    color: var(--txt-white);
    border-radius: 10px;

    text-align: center;
    font-size: 1.1rem; 

    padding: .5rem 2rem;

}
.pellet dl {
    display: flex;
    justify-content: space-between;
    
    border-bottom: .5px solid var(--txt-black);
}
.pellet dt {
    display: flex;
    align-items: center;
    width: 30%;

    padding: 2rem 0;


    font-weight: normal;
}
.pellet dd {
    display: flex;
    justify-content: flex-end;

    width: 70%;
    padding: 2rem ;
}
.pellet .yen {
    font-family: var(--en-text);
    font-size: .8rem;
} 
.pellet .number {
    font-family: var(--en-text);
    font-weight: bold;
    font-size: 1.5rem;

    color: var(--eco-accent);
}
.pellet .unit {
    font-family: var(--en-text);
    font-size: .75rem;
}

/* アクセス/会社概要--------------------------------------------------------------- */

.access .contents-area,
.company-info .contents-area {
    display: flex;
    flex-direction: column;
    gap: 5rem;

    width: 80%;
    margin: 0 auto;
}
.ifrem-area {
   display: flex;
   flex-direction: column;
   align-items: flex-end;
   gap: 1.5rem;
}
.access iframe {
    width: 100%;
    aspect-ratio: 3/1;
}
.google-map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;

    background: var(--eco-btn);
    color: #fff;
    border-radius: 50px;
    
    width: 40%;
    min-width: 270px;
    padding: .5rem 2rem;

    font-family: var(--en-text);
    font-weight: bold;

    transition: all .2s;
}
.google-map i {
    font-size: 1.2rem;
}

.google-map:hover {
    background: var(--eco-btn-hover);
}

.table-container {
    display: flex;
    flex-direction: column;
} 

.table-dl {
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: .5px solid var(--txt-black);

    padding: 2rem 0;
}
.table-dt {
    width: calc(128px);
}
.table-dd {
    width: calc(100% - 128px - 2rem);
}

@media(max-width:800px) {
    .access .contents-area,
    .company-info .contents-area {
        width: 85%;
    }

}
@media(max-width:600px) {
    .ifrem-area {
        align-items: center;
    }
    .access iframe {
    aspect-ratio: 3/2;
    }
    .google-map {
        width: 100%;
    }
    .table-dt {
        width: 30%;
    }
    .table-dd {
        width: 65%;
    }
}
/* 　---------------------------------------------------------------**/