/*
Version:1.0.0
*/

body {
    background-color: var(--color-backcolor2);
}


/*---------------------------------------------------------*/
/* hero start */
/*---------------------------------------------------------*/
.hero {
    position: relative;
    width: 100vw;
    background-color: var(--color-backcolor1);
}

.hero_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.hero>.flexrow {
    position: relative;
    height: 100vh;
    align-items: center;
    z-index: 10;
}

.hero_text {
    width: 50%;
    padding-left: 50px;
}

.hero_subtitle {
    font-size: var(--fontsize-medium);
}

.hero_title {
    font-size: var(--fontsize-super-L);
    font-weight: bold;
    line-height: var(--lineheight-medium);
    margin: 10px 0;
}

.hero_discri {
    font-size: var(--fontsize-normal-L);
    color: var(--color-blue1);
}

.hero_icons {
    width: 100%;
    margin: 10px auto;
}

.hero_icon {
    background-color: var(--color-white);
    width: 180px;
    min-width: 180px;
    height: 180px;
    min-height: 180px;
    border-radius: 50%;
    margin: 10px;
}

.hero_projects {
    width: 50%;
}

.hero_projects>div {
    margin-right: 20px;
}

@media screen and (max-width: 991px) {
    .hero>.flexrow {
        flex-direction: column;
    }

    .hero_text,
    .hero_projects {
        width: 100%;
        padding: 20px;
    }

    .hero_projects>div {
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .hero>.flexrow {
        height: auto;
        margin: 0 auto;
        padding: 30px 0;
    }

    .hero_icon {
        width: 120px;
        height: 120px;
        margin: 5px;
    }

    .hero_background {
        left: 50%;
        transform: translateX(-50%);
        height: 50vh;
    }
}

/*---------------------------------------------------------*/
/* support start */
/*---------------------------------------------------------*/
.support {
    padding: 0 0 100px 0;
    background-color: var(--color-backcolor1);
}

.support p {
    text-align: center;
    margin-bottom: 25px;
}

.support_single {
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
    
}

.support_single_title {
    text-align: center;
    width: 100%;
    font-size: var(--fontsize-medium);
    color: var(--color-blue2);
    margin-bottom: 100px;
}

.support_single_discri {
    font-size: var(--fontsize-normal);
}

@media screen and (max-width: 768px) {
    .support {
        padding: 0 0 50px 0;
    }

    .support_single {
        padding: 10px;
        margin: 5px;
        width: 47%;
    }

    .support_single_title {
        margin-bottom: 50px;
    }
}

/*---------------------------------------------------------*/
/* results start */
/*---------------------------------------------------------*/
.results {
    margin: 0 auto;
    padding: 100px 0;
    background-color: var(--color-backcolor2);
    text-align: center;
}

.results_count {
    font-size: var(--fontsize-medium-L);
    font-weight: bold;
    color: var(--color-red);
}

.results>.section_main>.flexrow>div {
    margin: 0 20px;
}

.results_unt {
    width: fit-content;
    margin: 0 auto;
    font-size: var(--fontsize-large);
    font-weight: bold;
}

@media screen and (max-width: 479px) {
    .results {
        padding: 50px 0;   
    }
}

/*---------------------------------------------------------*/
/* jobs start */
/*---------------------------------------------------------*/
.jobs {
    padding: 100px 0;
    background-color: var(--color-backcolor3);
}

.jobs>.section_main>p {
    text-align: center;
    font-weight: bold;
    max-width: 850px;
    margin: 50px auto;
}

.jobs_carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    max-width: 850px;
    margin: 0 auto;
}

.jobs_carousel_pack {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

.jobs_carousel_single {
    flex-basis: calc(33.33% - 20px);
    height: calc(50% - 30px);
    margin: 15px 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    background-color: var(--color-backcolor2);
    border-radius: 20px;
    overflow: hidden;
}

.jobs_carousel_single>a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.jobs_carousel_single>a>div:first-child {
    flex-grow: 4;
}

.jobs_carousel_single>a>div:last-child {
    flex-grow: 1;
}

.jobs_carousel_single_text {
    text-align: center;
    font-size: var(--fontsize-normal-L);
    padding: 5px 0;
}

.jobs_carousel_navigation {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.jobs_carousel_navigation li {
    width: 12px;
    height: 12px;
    background: var(--color-gray);
    border-radius: 50%;
    margin: 0 7px;
    cursor: pointer;
}

.jobs_carousel_navigation li.active {
    background: var(--color-blue2);
    cursor: default;
}

@media screen and (max-width: 479px) {
    .jobs {
        padding: 50px 0;
    }
}

/*---------------------------------------------------------*/
/* discription start */
/*---------------------------------------------------------*/
.discription {
    background-color: var(--color-backcolor4);
    padding: 100px 0;
}

.discription_img1,
.discription_img2,
.discription_img3,
.discription_img4,
.discription_img1_sp,
.discription_img2_sp,
.discription_img3_sp,
.discription_img4_sp {
    width: 100%;
    margin: 50px auto;
}

.discription_img1_sp,
.discription_img2_sp,
.discription_img3_sp,
.discription_img4_sp {
    display: none;
}

.discription_img1,
.discription_img2,
.discription_img3,
.discription_img1_sp,
.discription_img2_sp,
.discription_img3_sp {
    max-width: 800px;
}

.discription_img4,
.discription_img4_sp {
    max-width: 1000px;
}

@media screen and (max-width: 479px) {
    .discription {
        padding: 50px 0;
    }

    .discription_img1,
    .discription_img2,
    .discription_img3,
    .discription_img4 {
        display: none;
    }

    .discription_img1_sp,
    .discription_img2_sp,
    .discription_img3_sp,
    .discription_img4_sp {
        display: block;
    }

    .discription_img1,
    .discription_img2,
    .discription_img3,
    .discription_img4,
    .discription_img1_sp,
    .discription_img2_sp,
    .discription_img3_sp,
    .discription_img4_sp {
        margin: 10px auto;
    }
}

/*---------------------------------------------------------*/
/* production start */
/*---------------------------------------------------------*/
.production {
    background-color: var(--color-backcolor2);
    padding: 100px 0;
}

.production_title {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.production_title_back {
    width: 100%;
    position: relative;
}

.production_title_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--fontsize-large);
}

.product {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 20px auto;
}

.product_back {
    display: block;
}

.product_back_sp {
    display: none;
}

.product_title {
    position: absolute;
    top: 7%;
    left: 20%;
    transform: translate(-50%, -50%);
    font-size: var(--fontsize-medium);
}

.product_img {
    width: 100%;
    height: 100%;
    max-width: 280px;
    max-height: 280px;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}

.product_img img {
    object-fit: contain;
}

.product_discription {
    position: absolute;
    top: 18%;
    left: 51%;
    font-size: 1.4rem;
}

.product_syosai {
    position: absolute;
    bottom: 0%;
    right: 9%;
    transform: translate(50%, -50%);
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 479px) {
    .production {
        padding: 50px 0;
    }

    .production_title {
        margin: 0 auto 20px auto;
    }

    .product_back {
        display: none;
    }

    .product_back_sp {
        display: block;
        width: 90%;
        margin: 0 auto;
    }

    .product_title {
        top: 5%;
        left: 50%;
    }
    
    .product_img {
        max-width: 250px;
        max-height: 250px;
        top: 28%;
        left: 50%;
    }

    .product_discription {
        top: 54%;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        height: 230px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .product_syosai {
        bottom: 1%;
        right: auto;
        left: 50%;
        transform: translate(-50%,-50%);
        background-color: var(--color-backcolor4);
        padding: 5px 30px;
        border-radius: 30px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    }
}

/*---------------------------------------------------------*/
/* illust start */
/*---------------------------------------------------------*/
.illust {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}

.illust_toptitle {
    position: relative;
    font-size: var(--fontsize-large);
    text-align: left;
    width: 100%;
    max-width: 400px;
}

.illust_toptitle_text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.illust_single {
    margin: 50px 0;
}

.illust_single_title {
    background-color: var(--color-backcolor7);
    font-size: var(--fontsize-normal-L);
    padding: 3px 10px;
    border-radius: 0 50px 50px 0;
    margin: 10px 0;
}

.illust_single_row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
}

.illust_single_row>div {
    width: 50%;
}

.illust_single_row>div:first-child {
    position: relative;
}

.illust_single_row>div:first-child>div {
    margin: 20px 0;
}

.illust_single_menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.illust_single_pad {
    padding-left: 13px;
}

.illust_single_small {
    font-size: var(--fontsize-small);
}

.illust_single_nouhin {
    padding: 5px 30px;
    background-color: var(--color-backcolor7);
    width: fit-content;
    border-radius: 50px;
}

.illust_single_button {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    cursor: pointer;
    text-decoration: none;
    background-color: var(--color-white);
    width: fit-content;
    padding: 10px 15px;
    font-size: var(--fontsize-normal-L);
    border-radius: 5px;
    box-shadow: 0 5px 0 var(--color-backcolor7);
    margin: 50px 0 0 0;
}

.illust_single_blueblock {
    content: "";
    display: block;
    width: 13px !important;
    height: 13px !important;
    background-color: var(--color-backcolor7) !important;
}

.illust_single_row>div:last-child {
    position: relative;
    background-color: var(--color-backcolor7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.illust_single_zirei {
    font-size: var(--fontsize-medium);
    text-align: center;
    margin: 20px auto ;
}

.illust_single_carousel {
    width: 100%;
    margin: 0 auto;
}

.illust_single_img {
    width: 80%;
    margin: 0 auto;
}

.slick-slide img {
    display: block;
    max-height: 350px;
    object-fit: contain;
}

.slick-track {
	display: flex !important;
	align-items: center !important;
}

.illust_single_discri {
    width: fit-content;
    margin: 20px auto;
    background-color: var(--color-backcolor8);
    padding: 0 40px;
}

.slick-prev, .slick-next {
    width: 0;
    height: 0;
    border-style: solid;
}

.slick-prev {
    position: absolute;
    top: 50%;
    left: 3%;
    background-color: transparent;
    border-width: 20px 20px 20px 0;
    border-color: transparent var(--color-backcolor4) transparent transparent;
}

.slick-next {
    position: absolute;
    top: 50%;
    right: 3%;
    background-color: transparent;
    border-width: 20px 20px 20px 0;
    border-color: transparent var(--color-backcolor4) transparent transparent;
    transform: rotateZ(180deg);
}

@media screen and (max-width: 479px) {
    .illust_single_row {
        flex-wrap: wrap;
    }
    
    .illust_single_row>div {
        width: 100%;
    }

    .illust_single_row>div:first-child {
        margin-bottom: 20px;
    }

    .illust_single_button {
        position: inherit;
        margin: 20px auto;
    }
}