@charset "UTF-8";


/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.mainvisual {
    height: 600px;
    margin-bottom: 120px;
    position: relative;
}

.mainvisual .fade-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.mainvisual .fade-img li {
    width: 70%;
    position: absolute;
    right: 0;
    opacity: 0;
    animation: fade 15s infinite;
}

.mainvisual .fade-img li:nth-child(1) {
    animation-delay: 0s;
}

.mainvisual .fade-img li:nth-child(2) {
    animation-delay: 5s;
}

.mainvisual .fade-img li:nth-child(3) {
    animation-delay: 10s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    30% {
        opacity: 1;
    }

    45% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.mainvisual .catchphrase {
    font-family: 'Zen Old Mincho', serif;
    font-size: 50px;
    text-shadow: 1px 1px 3px #fff;
    position: absolute;
    top: 70px;
    left: 6%;
}

/*-------------------------------------------
btn-area
-------------------------------------------*/
.btn-area {
    position: relative;
    top: -350px;
    left: 6%;
}

.products-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.products-btn a {
    background: #191970;
    border-radius: 50px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-size: 22px;
}

.products-btn:first-child {
    margin-bottom: 20px;
}

.products-btn a:hover {
    background: #EBF6F7;
    color: #191970;
}

/*-------------------------------------------
Company
-------------------------------------------*/
.company {
    margin-bottom: 120px;
}

.company .section-title {
    margin: 0 0 -3vw 4vw;
    position: relative;
    z-index: 10;
}

.company .flex {
    display: flex;
    align-items: center;
}

.company .flex .img {
    width: 50%;
}

.company .flex .img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.company .flex .text {
    width: 35%;
    background-color: #fff;
    padding: 3% 0 3% 5%;
    margin-left: -8%;
}

.company .text .title {
    font-family: 'Zen Kaku Gothic New', serif;
    font-size: 24px;
    margin-bottom: 40px;
}

.company .text .description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/*-------------------------------------------
Products
-------------------------------------------*/
.products {
    margin-bottom: 120px;
    position: relative;
}

.products::after {
    content: "";
    width: 70%;
    height: 480px;
    background-color: #EBF6F7;
    display: block;
    position: absolute;
    top: 6vw;
    right: 0;
    z-index: -10;
}

.products .text {
    width: 70%;
    padding: 0 5%;
    margin-left: auto;
}

.products .text .section-title {
    margin-bottom: 30px;
}

.products .text .description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
}

.products-list {
    display: flex;
    justify-content: space-between;
    padding: 0 5% 80px;
}

.products-list .item {
    width: 48%;
    position: relative;
}

.products-list .item::before {
    content: "";
    width: 100%;
    height: 50px;
    background-color: #191970;
    position: absolute;
    top: 0;
    left: 0;
}

.products-list .item .title {
    color: #fff;
    position: absolute;
    font-size: 22px;
    text-align: center;
    top: 8px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.products-list .description {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
    margin-bottom: 10px;
}


/*-------------------------------------------
Information
-------------------------------------------*/
.information {
    margin-bottom: 120px;
    position: relative;
}

.information::after {
    content: "";
    width: 74%;
    height: 540px;
    background-color: #EBF6F7;
    display: block;
    position: absolute;
    top: 6vw;
    left: 0;
    z-index: -10;
}

.information .text {
    width: 70%;
    padding: 0 5%;
    margin-right: auto;
}

.information .text .section-title {
    margin-bottom: 30px;
}

.information .text .description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
}

.information-item {
    display: flex;
    padding: 0 5% 80px;
}

.information-item img {
    border-radius: 30px;
}

.information-item time {
    font-size: 14px;
}

.information-item .title {
    font-size: 16px;
    margin-top: 10px;
}

.information-item .item-left {
    width: 100%;
    max-width: 450px;
    padding-right: 40px;
}

.information-item .item-left .img {
    margin-bottom: 10px;
}

.information-item .item-left img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.information-item .item-right {
    border-left: solid 1px #333;
    padding-left: 40px;
}

.information-item .item-right .img {
    margin-right: 20px;
}

.information-item .item-right .item-top {
    margin-bottom: 40px;
}

.information-item .item-right .item-top a,
.information-item .item-right .item-bottom a {
    display: flex;
}

.information-item .item-right .item-top .img,
.information-item .item-right .item-bottom .img {
    width: 100%;
    max-width: 220px;
}

.information .btn {
    margin: 0 5%;

}






/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
    .section-title {
        font-size: 12vw;
    }

    /*-------------------------------------------
Mainvisual
-------------------------------------------*/
    .mainvisual {
        height: 360px;
        margin-bottom: 40px;
    }

    .mainvisual .fade-img img {
        height: 360px;
    }

    .mainvisual .fade-img li {
        width: 100%;
    }

    .mainvisual .catchphrase {
        color: #1f1f1f;
        font-size: 26px;
        top: 25px;
        left: 6%;
        display: inline-block;
        padding: 0px 8px;
        background: rgba(255, 255, 255, .8);
    }

    /*-------------------------------------------
btn-area
-------------------------------------------*/
    .btn-area {
        position: relative;
        top: 0px;
        left: 0;
        margin-bottom: 60px;
    }

    .products-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .products-btn a {
        font-size: 20px;
    }

    /*-------------------------------------------
  Company
  -------------------------------------------*/
    .company {
        margin-bottom: 60px;
    }

    .company .section-title {
        margin: 0 0 -7vw;
        text-align: center;
    }

    .company .flex {
        flex-direction: column;
    }

    .company .flex .img {
        width: 100%;
    }

    .company .flex .img img {
        height: 300px;
    }

    .company .flex .text {
        width: 100%;
        margin-left: 0;
        padding: 20px 20px 0;
    }

    .company .flex .text .title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .company .flex .text .description {
        margin-bottom: 20px;
    }

    /*-------------------------------------------
  products
  -------------------------------------------*/
    .products {
        margin-bottom: 60px;
    }

    .products::after {
        width: 100%;
        height: 250px;
        top: 10vw;
    }

    .products .text {
        width: 100%;
        padding: 0 20px;
    }

    .products .text .section-title {
        text-align: center;
    }

    .products .text .description {
        margin-bottom: 20px;
    }

    .products-list {
        flex-direction: column;
        padding: 0 20px 40px;
    }

    .products-list .item {
        width: 100%;
        margin-bottom: 20px;
    }

    .products-list .item .title .en {
        font-size: 8vw;
    }



    /*-------------------------------------------
information
-------------------------------------------*/
    .information {
        margin-bottom: 100px;
    }

    .information::after {
        width: 100%;
        height: 250px;
        top: 10vw;
    }

    .information .text {
        width: 100%;
        padding: 0 20px;
    }

    .information .text .section-title {
        text-align: center;
    }

    .information .text .description {
        margin-bottom: 20px;
    }

    .information-item {
        flex-direction: column;
    }

    .information-item .item-left {
        max-width: 100%;
        padding: 0 0 40px;
    }

    .information-item .item-right {
        border-left: none;
        padding-left: 0;
    }

    .information-item .item-right .item-top a,
    .information-item .item-right .item-bottom a {
        flex-direction: column;
    }

    .information-item .item-right .item-top .img,
    .information-item .item-right .item-bottom .img {
        max-width: 100%;
        margin: 0 0 10px;
    }

    .information-item .item-right .text {
        padding-left: 0;
    }


}