@charset "UTF-8";
/*-----------------------------------
    ヘッダー
-----------------------------------*/
/*
#header {
    background-color: #f5f7f5;
    background-image: none;
}
*/

/*-----------------------------------
    メインビジュアル
-----------------------------------*/
#main_img {
    display: none; /* 非表示 */
    position: relative;
    padding-top: 180px;
}

.main_img_inner {
    width: calc(100% - 100px);
    margin: 0 auto;
    position: relative;
}

.main_img_inner picture {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background-color: #C1BDBD;
}

.main_img_inner img.main_img {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.main_img_inner img.main_logo {
    max-width: 270px;
    width: 90%;
    position: absolute;
    top: 110px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.main_location {
    position: absolute;
    bottom: 0;
    left: 50px;
    right: 50px;
    display: flex;
    justify-content: space-between;
}

.location_tag {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 700;
    color: #232323;
    background: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}
.tag_01{
    border-radius: 0 5px 0 10px;
    white-space: nowrap;
}
.tag_02{
    border-radius: 5px 0 10px 0;
    white-space: nowrap;
}
/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
    #main_img {
        padding-top: 75px;
    }

    .main_img_inner {
        width: 100%;
    }
    /*
    .main_img_inner picture {
        border-radius: 0 0 10px 10px;
    }
    */
    .main_img_inner img {
        height: 420px;
    }
    .main_img_inner img.main_img {
        height: 550px;
    }

    .main_location {
        left: 0;
        right: 0;
    }

    .location_tag {
        font-size: 14px;
        padding: 8px 14px;
    }
    .tag_01{
        border-radius: 0 5px 0 0;
        white-space: nowrap;
    }
    .tag_02{
        border-radius: 5px 0 0 0;
        white-space: nowrap;
    }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
    .main_img_inner img {
        height: 240px;
    }

    .location_tag {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/*-----------------------------------
    新着情報
-----------------------------------*/
#news_block {
    position: relative;
    /*padding: 6vw 0 8vw;*/
    padding: 250px 0 8vw;
    overflow: hidden;
}

#news_block .contents_inner {
    position: relative;
    z-index: 1;
}

.news_list {
    margin-bottom: 50px;
    border-radius: 20px;
    /* box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06); */
    overflow: hidden;
    background: #fff;
}

.news_item {
    border-bottom: 1px solid #e8e8e8;
}

.news_item:last-child {
    border-bottom: none;
}

.news_link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 30px;
    color: #232323;
    background: #fff;
    transition: background 0.2s;
}

.news_link:hover {
    background: #f6fef5;
    opacity: 1;
}

.news_date {
    flex-shrink: 0;
    min-width: 65px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #979797;
    white-space: nowrap;
}

.news_tag {
    display: inline-block;
    flex-shrink: 0;
    min-width: 70px;
    padding: 2px 10px;
    border: 1px solid #61bc53;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: #61bc53;
    white-space: nowrap;
}

.news_title {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #232323;
}

.news_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 37px;
    height: 18px;
    margin-left: auto;
    border: 1px solid #3FAF37;
    border-radius: 30px;
    /* transition: border-color 0.2s, background 0.2s; */
}

.news_arrow::after {
    content: '';
    display: block;
    width: 12px;
    height: 5px;
    background: url(../img/common/arrow_green.svg) no-repeat center center /cover;
    /* border-top: 2px solid #999; */
    /* border-right: 2px solid #999; */
    /* transform: rotate(45deg) translateX(-2px); */
    /* transition: filter 0.2s; */
}
/* .news_link:hover .news_arrow::after{ */
    /* filter: brightness(0) invert(1); */
/* } */

/* .news_link:hover .news_arrow { */
    /* border-color: #3faf37; */
    /* background: #3faf37; */
/* } */

/* .news_link:hover .news_arrow::after { */
    /* border-color: #fff; */
/* } */

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/


/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
    #news_block {
        padding: 130px 0 60px;
    }
    #news_block .h2_style {
        margin-bottom: 20px;
    }
    .news_link {
        flex-wrap: wrap;
        gap: 10px;
        padding: 16px 20px;
    }

    .news_title {
        flex: none;
        width: 100%;
    }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
    #news_block {
        padding: 130px 0 50px;
    }
    .news_link {
        padding: 14px 16px;
    }
    .news_list {
        margin-bottom: 30px;
    }
}

/*-----------------------------------
    会社情報 / 商品案内
-----------------------------------*/
#company_block {
    position: relative;
    padding-bottom: 80px;
}

.company_row {
    display: flex;
    gap: 60px;
}

.company_card {
    width: calc(( 100% - 60px ) / 2 );
    position: relative;
    display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
    min-height: 507px;
    overflow: hidden;
    background: rgb(183, 220, 198, .3);
    border-radius: 30px;
    transition: background .3s ease;
}
.company_card:hover {
    background: rgb(183, 220, 198, .7)
}
.company_bg_text {
    width: 90%;
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 0;
    /* font-family: 'Poppins', sans-serif; */
    /* font-size: 110px; */
    /* font-weight: 700; */
    /* line-height: 1; */
    /* color: rgba(255, 255, 255, 0.7); */
    white-space: nowrap;
    pointer-events: none;
}



.company_card .link_more {
    position: relative;
    z-index: 1;
}

.company_center_img {
    position: absolute;
    bottom: -40px;
    left: 50%;
    z-index: 10;
    width: 32vw;
    max-width: 475px;
    pointer-events: none;
    transform: translateX(-50%);
}

.company_center_img picture {
    display: block;
}

.company_center_img img {
    display: block;
    width: 100%;
    height: auto;
}

/*-----------------------------------
    レスポンシブ: PC小 (max-width: 1280px)
-----------------------------------*/
@media screen and (max-width: 1280px) {
    .company_card {
        min-height: 420px;
    }

    .company_bg_text {
        font-size: 90px;
    }

    .company_center_img {
        width: 300px;
        bottom: 0;
    }
}

/*-----------------------------------
    レスポンシブ: タブレット (max-width: 840px)
-----------------------------------*/
@media screen and (max-width: 840px) {
    .company_row{
        gap: 30px;
    }
    .company_card {
        width: calc(( 100% - 30px ) / 2 );
        min-height: 300px;
    }

    .company_bg_text {
        font-size: 70px;
    }

    .company_center_img {
        width: 280px;
        bottom: -20px;
    }
}

/*-----------------------------------
    レスポンシブ: スマートフォン (max-width: 640px)
-----------------------------------*/
@media screen and (max-width: 640px) {
    #company_block {
        padding-bottom: 0;
    }

    /* .company_row { */
        /* flex-direction: column; */
    /* } */
    .company_row{
        gap: 20px;
    }
    .company_card {
        width: calc(( 100% - 20px ) / 2 );
        padding: 40px 20px;
        min-height: 220px;
    }

    .company_bg_text {
        font-size: 55px;
    }

    .company_center_img {
        display: none;
    }
}
@media screen and (max-width: 400px) {
    .company_row {
        flex-direction: column;
    }
    .company_card {
        width: 100%;
    }
}
