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

}
/* ファーストビュー--------------------------------------------------------------- */
.first-view {
    background-image: url(../img/grc/grccompost_mv.jpg);
    background-position: 20% center;
}


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

.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;
    }
}

/* タイトル調整---------------------------------------------------------------**/
.white-bg .title  {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.white-bg .title span {
    transform: translateY(1rem);
}
/* 配送料金の表---------------------------------------------------------------**/
.sp-delivery {
    display: none;
}
.delivery .contents-area {
    width: 80%;
}
.delivery .contents-item {
    display: flex;
    flex-direction: column;
}

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

    width: 120px;
    border-right: .5px solid var(--txt-black);

    padding: 2rem .5rem;

    font-weight: normal;
}
.delivery dd {
    display: flex;
    align-items: center;
    justify-content: center;

    width: calc(33.3% - 40px);
    border-right: .5px solid var(--txt-black);

    padding: 1rem;
}
.amount dd{
    width: calc(100% - 120px);
}
.list-title dt, 
.list-title dd {
    border-right: none;
}
.delivery .list-title {
    border-bottom: none;
}
@media (max-width: 1170px) {
    .delivery .contents-area {
        width: 90%;
}
}
@media (max-width: 800px) {
    .delivery dt {
        width: 99px;
    }
    .delivery dd {
        width: calc(33.3% - 33px);
    }
    .amount dd{
        width: calc(100% - 99px);
    }
}
@media (max-width: 534px){
    .delivery {
        display: none;
    }
    .sp-delivery  {
        display: flex;
    }    
}
/* 配送料金・装飾---------------------------------------------------------------**/
.list-title dd {
    padding: .5rem;
}
.list-title dd p{
    color: var(--txt-white);
    border-radius: 50px;

    width: 100%;
    padding: .5rem ;
    text-align: center;
}
.list-title .ts1-1 p {
    background: #4F654F;
}
.list-title .ts1-2 p {
    background: #5C845C;
}
.list-title .ts1-3 p {
    background: #829F82;
}
.ts1-1 .number {
    color: #4F654F;
}
.ts1-2 .number,
.amount .number {
    color: #5C845C;
}
.ts1-3 .number {
    color: #829F82;
}
.number,
.yen,
.unit {
    font-family: var(--en-text);
}
.number {
    font-size: 1.5rem;
    font-weight: bold;
}
.yen {
    font-size: .8rem;
}
.unit {
    font-size: .75rem;
}
/* 配送料金・項目ごとの調整　---------------------------------------------------------------**/

/* 特徴 */
.features dd {
    align-items: flex-start;
}
.features dd p {
    display: flex;
    flex-direction: column;
    gap: .5rem;

    font-size: .85rem;

    padding: 2rem 0;
}
.features span {
    font-weight: bold;
    font-size: 1rem;
}

/* 配送料金 */
.price-area dd{
    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 0 5% 0 0;
}


/* 参考価格 */
.reference dd{
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
}
.reference .area-name {
    font-size: .8rem;
}
.reference .area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.reference .price {
    margin: 0 1rem 0 0;
}
.reference .number {
    font-size: 1.2rem;
}
@media (max-width: 900px){
    .price-area dd {
        padding: .5rem;
    }
    .features dd p {
        padding: 1rem 0;
    }
}

/* スマホ用---------------------------------------------------------------**/
.sp-delivery .contents-area{
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.sp-delivery h3 {
    color: var(--txt-white);
    border-radius: 50px;

    width: 100%;
    padding: .5rem;
    text-align: center;
}
.sp-delivery .ts1-1 h3 {
    background: #4F654F;
}
.sp-delivery .ts1-2 h3 {
    background: #5C845C;
}
.sp-delivery .ts1-3 h3 {
    background: #829F82;
}

.sp-delivery .contents-item {
    display: flex;
    flex-direction: column;

}

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

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

    padding: 1.5rem 0;
}

.sp-delivery dt {
    width: 100px;
}
.sp-delivery dd {
    display: flex;
    justify-content: flex-end;
    width: calc(100% - 100px);

    padding: 0 2rem 0 0;
}
.sp-delivery dl:last-child dd {
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}
.sp-delivery dd .area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sp-delivery .area-name {
    font-size: .8rem;
}

.sp-delivery dl:first-child dd p{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-size: .9rem;

    padding: 1rem 0;
}
.sp-delivery dl:first-child dd span{
    font-weight: bold;
    font-size: 1rem;
}

/* 直接引渡し価格---------------------------------------------------------------**/
.direct .contents-area {
    width: 80%;
}
.direct .contents-item {
    display: flex;
    flex-direction: column;
}
.direct dl {
    display: flex;
    justify-content: space-between;
    
    border-bottom: .5px solid var(--txt-black);
}
.direct dt {
    display: flex;
    align-items: center;
    width: 20%;

    font-weight: normal;
    padding: 2rem 0;
}
.direct dd {
    display: flex;
    justify-content: flex-end;

    width: 40%;
    padding: 2rem ;
}
.direct .ts1-2 {
    border-right: none;
}
.direct dl:first-child  {
    border-bottom: none;
}
.direct dl:first-child dt {
    border-right: none;

    padding: 0;
}
.direct dl:first-child dd {
    justify-content: center;
    border-right: none;

    padding: .5rem;
}
.direct dl:first-child p {
    color: var(--txt-white);
    border-radius: 50px;

    width: 100%;
    padding: .5rem;
    text-align: center;
}
.direct dl:first-child .ts1-1 p {
    background: #4F654F;
}
.direct dl:first-child .ts1-2 p {
    background: #5C845C;
}

@media (max-width: 800px) {
    .direct .contents-area {
        width: 90%;
    }
}

@media (max-width: 600px) {

    .direct dt {
        width: 84px;
    }
    .direct dd {
        width: calc(50% - 42px);
        padding: 2rem .5rem;
    }
}
/* ---------------------------------------------------------------**/

/* アクセス--------------------------------------------------------------- */
.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(--grc-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(--grc-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%;
    }
}
/* --------------------------------------------------------------- */