@charset "utf-8";

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

/*body*/

body {
    color: #5a5a5a;
    font-family: "Noto Sans JP", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
}

.inner {
    max-width: 1400px;
    padding: 0 100px;
    margin: 0 auto;
    box-sizing: border-box;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
    opacity: 0.8;
}

input:hover,
a:hover img {
    outline: 0;
    opacity: 0.8;
}

.green {
    color: #1e6628;
}


.yellow {
    color: #fcbe00;
}


.orange {
    color: #ff7800;
}


/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv {
    background-image: radial-gradient(#faf096, #fadc5a);
}

.mv .inner {
    padding: 200px 0 100px;
    position: relative;
}

.mv .inner .img {
    text-align: center;
}

.mv .text {
    font-family: "Zen Maru Gothic", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 2.1rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    line-height: 2;
    margin-top: 60px;
}

.mv .text.green {
    color: #1e6628;
}

/* ----------------------------------------------------------
section
---------------------------------------------------------- */
.section {
    padding: 75px 0;
}

.section .title {
    font-family: "Zen Maru Gothic", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    text-align: center;
    font-size: 6.4rem;
    font-weight: bold;
}

.section .title img {
    margin-top: -35px;
}

/* ----------------------------------------------------------
type
---------------------------------------------------------- */

.type .layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 50px;
}

.type .layout .box {
    width: calc(33.333% - 40px);
}

.type .layout .box .name {
    font-family: "Zen Maru Gothic", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 3rem;
    text-align: center;
    margin-top: 20px;
}

.type .layout .box .name span {
    font-size: 1.8rem;
}

.type .layout .box .text {
    font-size: 1.8rem;
    margin-top: 10px;
}

/* ----------------------------------------------------------
contents
---------------------------------------------------------- */

.contents.section {
    padding-bottom: 0;
}

.contents .description {
    text-align: center;
}

.contents .contents_container {
    background: linear-gradient(180deg, #fff 0%, #fdd933 25%, #fdd933 75%, #fff 100%);
    padding: 150px 0 75px;
}

.contents .layout {
    display: flex;
    justify-content: space-between;
}

.contents .layout02,
.contents .layout03 {
    margin-top: 150px;
}

.contents .layout01 .box,
.contents .layout03 .box {
    width: calc(50% - 50px);
    padding-left: 30px;
    box-sizing: border-box;
}

.contents .layout02 .box {
    width: calc(50% - 50px);
    padding-right: 30px;
    box-sizing: border-box;
}


.contents .layout .box .heading {
    font-family: "Zen Maru Gothic", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.contents .box .text {
    margin-top: 20px;
}

.contents .layout .btn {
    margin-top: 20px;
}

.contents .layout .btn a {
    color: #fff;
    font-size: 1.6rem;
    padding: 10px 20px 12px;
    display: block;
    width: 250px;
    border-radius: 50px;
    position: relative;
}

.contents .layout .btn a::after {
    content: "";
    width: 8px;
    height: 13px;
    background-image: url(../images/arrow.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 16px;
    right: 20px;
}

.contents .layout01 .btn a,
.contents .layout03 .btn a {
    background-color: #1e6628;
}

.contents .layout02 .btn a {
    background-color: #ff7800;
}

.contents .layout01 .img,
.contents .layout03 .img {
    width: calc(50% + 50px);
}

.contents .layout02 .img {
    width: calc(50% - 50px);
}


.contents .layout .img {
    width: 50%;
    height: 500px;
    position: relative;
}

.contents .layout .img::after {
    content: "";
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
}

.contents .layout .img::after {
    width: calc(50vw + 50px);
}

.contents .layout01 .img::after {
    background-image: url(../images/contents_img01.webp);
    right: -50px;
}

.contents .layout02 .img::after {
    background-image: url(../images/contents_img02.webp);
    left: -50px;
}

.contents .layout03 .img::after {
    background-image: url(../images/contents_img03.webp);
    right: -50px;
}

/* ----------------------------------------------------------
other_contents
---------------------------------------------------------- */

.other_contents {
    padding-bottom: 250px;
    /* background-image: url(../images/company_bg.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom center; */
}

.other_contents .slide01 {
    margin-top: 30px;
}

.other_contents .slide01 li {
    padding: 0 15px;
}

.slide .prev-arrow {
    background-image: url(../images/slide_arrow_prev.svg);
    background-size: cover;
    width: 50px;
    height: 50px;
    position: absolute;
    right: calc(30% + 70px);
    bottom: -80px;
    z-index: 10;
    cursor: pointer;
    transition: 0.5s;
}

.slide .prev-arrow:hover {
    background-image: url(../images/slide_arrow_prev_active.svg);
}

.slide .next-arrow {
    background-image: url(../images/slide_arrow_next.svg);
    background-size: cover;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 30%;
    bottom: -80px;
    z-index: 10;
    cursor: pointer;
    transition: 0.5s;
}

.slide .next-arrow:hover {
    background-image: url(../images/slide_arrow_next_active.svg);
}

.slide .dots-wrap {
    position: absolute;
    right: calc(30% + 140px);
    bottom: -56px;
}

.slide .dots-wrap {
    display: flex;
}

.dots-wrap li {
    width: 85px;
    height: 4px;
    background: #bdbdbd;
    cursor: pointer;
}

.dots-wrap li.slick-active {
    background: #5a5a5a;
}

.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

/* ----------------------------------------------------------
company
---------------------------------------------------------- */

.company {
    background-color: #fff;
}

.company .layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.company .layout .img {
    height: 100px;
    line-height: 100px;
    text-align: center;
    width: calc(20% - 24px);
}

.company .layout .img img {
    max-width: 100%;
    max-height: 100%;
}



/* ----------------------------------------------------------
image
---------------------------------------------------------- */

.image.section {
    padding: 150px 0;
}

/* .image .image_box {
    height: 450px;
    background-image: url(../images/img.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
} */

/*
右から左へ
----------------------------*/
@-webkit-keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*
  左から右へ
  ----------------------------*/
@-webkit-keyframes infinity-scroll-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

@keyframes infinity-scroll-right {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

.slide_show {
    display: flex;
    overflow: hidden;
}

.slide_show_list {
    display: flex;
    list-style: none;
}

.slide_show_list_left {
    -webkit-animation: infinity-scroll-left 30s infinite linear 0.5s both;
    animation: infinity-scroll-left 30s infinite linear 0.5s both;
}

.slide_show_list_right {
    -webkit-animation: infinity-scroll-right 30s infinite linear 0.5s both;
    animation: infinity-scroll-right 30s infinite linear 0.5s both;
}

.slide_show_item img {
    max-width: none;
}



@media only screen and (max-width: 1400px) {

    .inner {
        padding: 0 30px;
    }

    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */

    .mv .inner {
        padding: 200px 30px 100px;
    }

    .section .title {
        font-size: 4.8vw;
    }

    /* ----------------------------------------------------------
type
---------------------------------------------------------- */

    .type .layout {
        gap: 30px;
    }

    .type .layout .box {
        width: calc(33.333% - 20px);
    }

    /* ----------------------------------------------------------
contents
---------------------------------------------------------- */

    .contents .layout01 .box,
    .contents .layout03 .box {
        width: calc(50% - 20px);
    }

    .contents .layout02 .box {
        width: calc(50% - 20px);
    }

    .contents .layout01 .img,
    .contents .layout03 .img {
        width: calc(50% + 20px);
    }

    .contents .layout02 .img {
        width: calc(50% - 20px);
    }

    .contents .layout .img::after {
        width: calc(50vw + 20px);
    }

    .contents .layout01 .img::after {
        background-image: url(../images/contents_img01.webp);
        right: 0;
    }

    .contents .layout02 .img::after {
        background-image: url(../images/contents_img02.webp);
        left: -40px;
    }

    .contents .layout03 .img::after {
        background-image: url(../images/contents_img03.webp);
        right: 0;
    }

    /* ----------------------------------------------------------
other_contents
---------------------------------------------------------- */

    .slide .prev-arrow {
        right: 100px;
    }

    .slide .next-arrow {
        right: 30px;
    }

    .slide .dots-wrap {
        position: absolute;
        right: 170px;
    }


    /* ----------------------------------------------------------
image
---------------------------------------------------------- */

    .image .image_box {
        height: 350px;
    }
}

@media only screen and (max-width: 768px) {

    body {
        font-size: 1.8rem;
    }

    .inner {
        width: 95%;
        padding: 0;
    }

    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */

    .mv {
        background-image: radial-gradient(#faf096, #fadc5a);
    }

    .mv .inner {
        padding: 150px 0 100px;
        position: relative;
    }

    .mv .inner .img {
        padding: 0 50px;
    }

    .mv .text {
        font-size: 3.4vw;
    }


    /* ----------------------------------------------------------
section
---------------------------------------------------------- */

    .section .title {
        font-size: 8vw;
    }

    .section .title img {
        margin-top: -15px;
    }

    /* ----------------------------------------------------------
type
---------------------------------------------------------- */

    .type .layout {
        display: block;
    }

    .type .layout .box {
        width: 100%;
        padding: 0 10px;
    }

    .type .layout .box .name {
        font-size: 2.4rem;
    }

    .type .layout .box .name span {
        font-size: 1.6rem;
    }

    .type .layout .box .text {
        font-size: 1.6rem;
    }

    .type .layout .box img {
        width: 100%;
    }

    /* ----------------------------------------------------------
contents
---------------------------------------------------------- */

    .contents .description {
        margin-top: 20px;
    }

    .contents .contents_container .inner {
        width: 100%;
    }

    .contents .layout {
        display: flex;
        flex-direction: column;
    }

    .contents .img {
        order: 0;
    }

    .contents .box {
        order: 1;
    }

    .contents .layout02,
    .contents .layout03 {
        margin-top: 150px;
    }

    /* .contents .layout02{
        margin-top: 75px;
    } */

    .contents .layout01 .box,
    .contents .layout03 .box {
        width: 100%;
        padding: 0 5%;
        margin-top: 20px;
    }

    .contents .layout02 .box {
        width: 100%;
        padding: 0 5%;
        margin-top: 20px;
    }


    .contents .layout .box .heading {
        font-size: 2.4rem;
    }

    .contents .layout01 .img,
    .contents .layout03 .img {
        width: 100%;
    }

    .contents .layout02 .img {
        width: 100%;
    }


    .contents .layout .img {
        width: 100%;
        height: 60vw;
    }

    .contents .layout .img::after {
        height: 60vw;
    }

    .contents .layout .img::after {
        width: 100%;
    }

    .contents .layout01 .img::after {
        background-image: url(../images/contents_img01.webp);
        right: 0;
    }

    .contents .layout02 .img::after {
        background-image: url(../images/contents_img02.webp);
        left: 0;
    }

    .contents .layout03 .img::after {
        background-image: url(../images/contents_img03.webp);
        right: 0;
    }

    /* ----------------------------------------------------------
other_contents
---------------------------------------------------------- */

    .slide .prev-arrow {
        width: 40px;
        height: 40px;
        right: calc(2.5% + 50px);
        bottom: -60px;
    }

    .slide .next-arrow {
        width: 40px;
        height: 40px;
        right: 2.5%;
        bottom: -60px;
    }

    .slide .next-arrow:hover {
        background-image: url(../images/slide_arrow_next_active.svg);
    }

    .slide .dots-wrap {
        position: absolute;
        right: calc(2.5% + 110px);
        bottom: -43px;
    }

    .dots-wrap li {
        width: 4.5vw;
        height: 4px;
    }

    /* ----------------------------------------------------------
company
---------------------------------------------------------- */

    .company .layout {
        gap: 15px;
    }

    .company .layout .img {
        height: 80px;
        line-height: 80px;
        width: calc(33.333% - 10px);
    }



    /* ----------------------------------------------------------
image
---------------------------------------------------------- */

    .image.section {
        padding: 75px 0;
    }

    /* .image .image_box {
        height: 50vw;
    } */

    .slide_show_item img {
        height: 50vw;
    }

    .slick-list {
        padding: 0 8% 0 0 !important;
    }

    .slick-slide {
        margin-right: 15px;
    }


}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/