@charset "UTF-8";

/*====================================

    ----------------------------------
        Color
    ----------------------------------

    Main     : #ffdc00
    Accent   : #141414

    ----------------------------------
        Structure
    ----------------------------------

      0. メインビジュアル
      1. コンセプト
      2. ポイント
      3. ラインナップ
      4. ギャラリー

====================================*/


/*===============================

いますぐ購入するフローティングボタン

================================*/

#order-section {
    position: fixed;
    width: 100%;
    bottom: 3%;
    z-index: 2;
}

#order-section .order{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    clear: both;
    text-align: center;
    position: relative;
}

#order-section .order span {
    position: relative;
    display: inline-block;
    padding: 8px 30px;
    border: 3px solid #CE1D1D;
    background: #CE1D1D;
    border-radius: 200px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: .3s;
    z-index: 1;
    font-weight: bold;
    font-size: 25px;
}

@media screen and (max-width:600px) {
    #order-section .order span {
        padding: 8px 20px;
        font-size: 18px;
    }
}

#order-section .order a:hover {
    opacity: 1 !important;
}

#order-section .order a span:hover {
    background-color: #FFF;
    color: #CE1D1D;
}



/*===============================

メインビジュアル

================================*/


#main-visual {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    text-align: center;
    display: table;
}

@media screen and (max-width: 600px) {
    #main-visual {
        margin-top: 56px;
    }
}

#main-visual .dot:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, .3);
    background-image: radial-gradient(#111 30%, transparent 0), radial-gradient(#111 30%, transparent 0);
    background-position: 0 0, 3px 3px;
    background-size: 6px 6px;
}

#main-visual .dot video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
}

#main-visual .dot img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
    opacity: 0;
    animation: slideshow 12s linear infinite;
}

#main-visual .dot img:nth-child(2) {
    animation-delay: 4s;
}

#main-visual .dot img:last-child {
    animation-delay: 8s;
}


@keyframes slideshow {
    0% {
        opacity: 0;
    }

    12.5% {
        opacity: 1;

    }

    37.5% {
        opacity: 1;

    }

    50% {
        opacity: 0;

    }

    100% {
        transform: scale(1.5);
    }
}


#main-visual .content img {
    width: 80%;
    max-height: 45%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}



#main-visual .scroll {
    position: absolute;
    right: 80px;
    bottom: 0;
    margin: auto;
    z-index: 1;
    color: #ffdc00;
    writing-mode: vertical-lr;
    font-weight: bold;
    padding-bottom: 50px;
    padding-left: 30px;
}

#main-visual .scroll::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 3px;
    height: 200px;
    background: #141414;
}

#main-visual .scroll::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 3px;
    height: 200px;
    background: #ffdc00;
}

@media screen and (max-width: 600px) {
    #main-visual .scroll {
        right: 30px;
        padding-bottom: 30px;
    }

    #main-visual .scroll::after {
        height: 140px;
    }

    #main-visual .scroll::before {
        height: 140px;
    }

}


#main-visual .scroll::after {
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}





/*===============================

コンセプト

================================*/





#concept-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #ffdc00;
}

#concept-section::before {
    content: "";
    background: url(https://ideal.itembox.design/item/img/icon/inumeshi-value_4.svg) repeat center center;
    background-size: cover;
    background-size: 160px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: .3;
}

.concept {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.concept:after {
    content: "";
    clear: both;
    display: block;
}

.concept .box {
    margin: 0 auto;
    text-align: center;
}

.concept .box h1 {
    font-size: 4.2rem;
    letter-spacing: 3px;
    padding: 0 2% 15px;
    font-style: oblique;
    }

.concept .box h2 {
    font-size: 3.0rem;
    letter-spacing: 3px;
    padding: 0 2%;
    font-style: oblique;
    margin-bottom: 30px;
}

.concept .box img {
    width: 400px;
    margin-bottom: 30px;
}

.concept .box span {
    display: block;
    margin: 0 auto 30px;
    padding: 0 2%;
}

.concept .box .price {
    width: 100%;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: -10px;
    color: #333;
    font-family: 'Roboto',arial,sans-serif!important;
    }

.concept .box .price span{
    display: inline-block;
    margin: 0 8px 0 0;
    padding: 0;
    font-size: 4.8rem;
    color: #e5530b;  
}

@media screen and (max-width: 600px) {
    .concept .box h1 {
        font-size: 2.4rem;
        letter-spacing: 0px;
        padding: 0 5% 10px;
    }
    .concept .box h2 {
        font-size: 1.8rem;
        letter-spacing: 0px;
        padding: 0 5%;
    }
    .concept .box img {
        width: 300px;
        margin-bottom: 20px;
    }
    .concept .box span {
        padding: 0 5%;
    }
    .concept .box .price {
        font-size: 1.8rem;
    }
    .concept .box .price span{
        font-size: 3.6rem;
        margin: 0 3px 0 0;
    }

}



/*===============================

プロブレム

================================*/


#problem-section {
    position: relative;
    padding-bottom: 100px;
    background: #efefef;
    padding-top: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid #eaeaea;
}

@media screen and (max-width: 600px) {
    #problem-section:after {
        border-width: 40px 40px 0 40px;
    }
}

.problem {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.problem:after {
    content: "";
    clear: both;
    display: block;
}

.problem h2 {
    position: relative;
    text-align: center;
    font-size: 3.6rem;
    margin-bottom: 50px;

}

.problem h2 span {
    font-size: 4.8rem;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 2px;
    margin-right: 2px;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: #efefef;
    text-shadow:1px 0 0 #141414,0 1px 0 #141414,-1px 0 0 #141414,0 -1px 0 #141414,3px 3px 0 #141414;
}


@media screen and (max-width: 600px) {
    .problem h2 {
        font-size: 2.0rem;
        padding: 0 5%;
        margin-bottom: 30px;
    }

    .problem h2 span {
        font-size: 3.0rem;
        padding-left: 1px;
        padding-right: 1px;
        margin-left: 1px;
        margin-right: 1px;
    }

}

.problem .box {
    float: left;
    overflow: hidden;
    position: relative;
    width: 40%;
    margin: 20px 5% 40px;
    text-align: center;
    border: 1px solid #eee;
}

.problem .box .pic {
    width: 100%;
    padding-top: 66.66%;
    position: relative;
    margin-bottom: 20px;
}

.problem .box .pic .tmb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
}

.problem .box .baloon {
    position: relative;
    background: #FFF;
    padding: 0 2%;
    height: 110px;
    display: table;
    width: 100%;
}

.problem .box .baloon:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 20px solid #FFF;
}

.problem .box .baloon .comment {
    display: table-cell;
    vertical-align: middle;
}

.problem .box .baloon .comment h3 {
    position: relative;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

.problem .box .baloon .comment span {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
}

@media screen and (max-width:600px) {
    .problem .box {
        width: 46%;
        margin: 20px 2% 40px;
    }

    .problem .box .pic {
        padding-top: 100%;
        margin-bottom: 14px;
    }

    .problem .box .baloon {
        height: 90px;
    }

    .problem .box .baloon:before {
        content: "";
        position: absolute;
        top: -20px;
        left: 50%;
        margin-left: -10px;
        border: 10px solid transparent;
        border-bottom: 15px solid #FFF;
    }

    .problem .box .baloon .comment h3 {
        font-size: 1.4rem;
    }

    .problem .box .baloon .comment span {
        font-size: 1.0rem;
    }

}


/*===============================

ソリューション

================================*/


#solution-section {
    width: 100%;
    height: 650px;
    overflow: hidden;
    position: relative;
    text-align: center;
    display: table;
}

@media screen and (max-width: 600px) {
   #solution-section  {
       height: 500px;
    }
}

#solution-section .dot:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, .3);
    background-image: radial-gradient(#111 30%, transparent 0), radial-gradient(#111 30%, transparent 0);
    background-position: 0 0, 3px 3px;
    background-size: 6px 6px;
}


#solution-section .dot img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
    opacity: 0;
    animation: slideshow02 12s linear infinite;
}


#solution-section .dot img:nth-child(2) {
    animation-delay: 2s;
}

#solution-section .dot img:nth-child(3) {
    animation-delay: 4s;
}
#solution-section .dot img:nth-child(4) {
    animation-delay: 6s;
}
#solution-section .dot img:nth-child(5) {
    animation-delay: 8s;
}

#solution-section .dot img:last-child {
    animation-delay: 10s;
}


@keyframes slideshow02 {
    0% {
        opacity: 0;
    }
    8% {
        opacity: 1;

    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: scale(1.5);
    }
    }

#solution-section .content{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

#solution-section .content h2 {
    font-size: 3.6rem;
    letter-spacing: 3px;
    line-height: 1.8;
    color: #ffffff;
}

@media screen and (max-width: 600px) {
    #solution-section .content h2 {
        font-size: 2.4rem;
    }
}

/*===============================

ポイント

================================*/


#point-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #F3F4F7;
}

#point-section2 {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #FFF;

}

#point-section3 {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #F3F4F7;

}

.point-icon {
    position: absolute;
    width: 150px;
    margin: auto;
    left: 0;
    right: 0;
    margin-top: -180px;
}


.point {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

.point:after {
    content: "";
    clear: both;
    display: block;
}

.point .box {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

.point .box .number {
    position: absolute;
    font: 15.0rem "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: bold;
    right: 0;
    opacity: .1;
    padding-right: 5px;
}

.point .box .number2 {
    position: absolute;
    font: 15.0rem "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: bold;
    left: 0;
    opacity: .1;
    padding-left: 5px;
}

.point .box .text {
    width: 46%;
    margin: 30px 2%;
    display: inline-block;
    float: right;
}

.point .box .text2 {
    width: 46%;
    margin: 30px 2%;
    display: inline-block;
    float: left;
}

.point .box h2 {
    padding-bottom: 20px;
    font-size: 3.6rem;
}

.point .box h2::first-letter {
    font-size: 4.8rem;
}

.point .image img {
    left: 0px;
    width: 46%;
    margin: 30px 2%;
}


@media screen and (max-width:600px) {
    .point-icon {
        width: 110px;
        margin-top: -155px;
    }

    .point .box h2 {
        font-size: 2.4rem;
    }

    .point .box h2::first-letter {
        font-size: 3.6rem;
    }

    .point .box img {
        width: 90%;
        margin: 20px 5%;
    }

    .point .box .text {
        width: 90%;
        margin: 20px 5%;
    }

    .point .box .text2 {
        width: 90%;
        margin: 20px 5%;
    }
}


/*===============================

フィーチャー

================================*/


#feature-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 110px;
    background: #141414;
    color: #FFF;
}

.feature {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

.feature:after {
    content: "";
    clear: both;
    display: block;
}

.feature .box {
    float: left;
    overflow: hidden;
    position: relative;
    width: 29.33333%;
    margin: 20px 2% 40px;
    text-align: center;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif !important;
}


.feature .box .image {
    position: relative;
    width: 30%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.feature .box span {
    position: relative;
    font-size: 1.2rem;
    color: #a7a7a7;
}

.feature .box h3 {
    position: relative;
    font-size: 1.4rem;
}


@media screen and (max-width:600px) {
    .feature {
        padding-left: 2px;
        padding-right: 2px;
    }

    .feature .box {
        width: 31.33%;
        margin: 10px 1% 30px;
    }

    .feature .box .image {
        width: 40%;
        margin: 5px auto 5px;
    }

    .feature .box span {
        font-size: 0.8rem;
    }

    .feature .box h3 {
        font-size: 1.0rem;
    }
}


/*===============================

メインビジュアル2

================================*/

#main-visual2 {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    text-align: center;
    display: table;
    color: #FFF;
}

@media screen and (max-width: 600px) {
    #main-visual2 {
        height: 450px;
    }
}

#main-visual2 .dot:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    background-image: radial-gradient(#111 30%, transparent 0), radial-gradient(#111 30%, transparent 0);
    background-position: 0 0, 3px 3px;
    background-size: 6px 6px;
}

#main-visual2 .dot video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
}

#main-visual2 .content span {
    position: absolute;
    width: 100%;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: sans-serif;
}

#main-visual2 .content h2 {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.2rem;
}

@media screen and (max-width: 600px) {

    #main-visual2 .content span {
        font-size: 1.2rem;
    }

    #main-visual2 .content h2 {
        font-size: 1.8rem;
    }
}

/*===============================

ラインナップ

================================*/

#lineup-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #FFF;

}

.lineup-2 {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

.lineup-2:after {
    content: "";
    clear: both;
    display: block;
}

.lineup-2 .box {
    position: relative;
    width: 46%;
    margin: 0 2%;
    display: inline-block;
    float: left;
}


.lineup-2 .box span {
    position: relative;
    display: block;
    left: 0;
    right: 0;
    margin: 10px auto;
    width: 70%;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #FFF;
    font-weight: bold;
    background: #141414;
    border: 3px solid #141414;
    border-radius: 300px;
    text-align: center;
    font: 3.6rem "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: bold;
    text-decoration: none;
    transition: .3s;
}

@media screen and (max-width:600px) {
    .lineup-2 .box span {
        font-size: 1.8rem;
        margin: 0 auto 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}


.lineup-2 .box a:hover {
    opacity: 1 !important;
}

.lineup-2 .box span:hover {
    background-color: #FFF;
    color: #141414;
}


.lineup-2 .box img.tmb {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
    filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.3));
}

.lineup-2 .box p {
    font-size: 1.4rem;
    position: relative;
    color: #777;
    text-align: center;
}

@media screen and (max-width:600px) {
    .lineup-2 .box p {
        font-size: 1.0rem;
    }
}

/*===============================

ギャラリー

================================*/


#gallery-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background: #F3F4F7;
}

#gallery-section .backicon {
    position: absolute;
    right: 0;
    width: 45%;
    margin-top: -30px;
}

@media screen and (max-width:1200px) {
    #gallery-section .backicon {
        right: 3%;
    }
}

.gallery {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

.gallery:after {
    content: "";
    clear: both;
    display: block;
}

.gallery .box {
    float: left;
    overflow: hidden;
    position: relative;
    width: 29.333%;
    margin: 20px 2%;
}

@media screen and (max-width:600px) {
    .gallery .box {
        margin: 10px 2%;
    }
}

.gallery .box .image {
    width: 100%;
    padding-top: 100%;
}

.gallery .box .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.gallery .box02 {
    position: relative;
    text-align: center;

}


.gallery .box02 .insta_btn2 {
    margin-top: 60px;
    color: #FFF;
    position: relative;
    display: inline-block;
    padding: 10px 40px;
    text-align: center;
    font-weight: bold;
    font-size: 3.0rem;
    color: #FFF !important;
    background: #141414;
    overflow: hidden;
    text-decoration: none;
    border-radius: 50px;
}


@media screen and (max-width:600px) {
    .gallery .box02 .insta_btn2 {
        padding: 8px 30px;
        font-size: 1.8rem;
    }
}

.gallery .box02 .insta_btn2:hover {
    opacity: 1;
}

.gallery .box02 .insta_btn2 img.icon {
    height: 35px;
    position: relative;
}

@media screen and (max-width:600px) {
    .gallery .box02 .insta_btn2 img.icon {
        height: 18px;
    }
}

.gallery .box02 .insta_btn2 span {
    display: inline-block;
    position: relative;
    transition: .5s
}

.gallery .insta_btn2:hover span {
    -webkit-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    transform: rotateX(360deg);
}

/*===============================

サービス

================================*/


#service-section {
    position: relative;
    padding-bottom: 100px;
    background: #FFF;
    padding-top: 100px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eaeaea;
}

.service {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.service:after {
    content: "";
    clear: both;
    display: block;
}

.service .box {
    float: left;
    overflow: hidden;
    position: relative;
    width: 46%;
    margin: 20px 2% 40px;
    text-align: center;
    border: 1px solid #eee;
    padding: 20px 20px 40px;
}

.service .box .pic {
    width: 100%;
    padding-top: 66.66%;
    position: relative;
    margin-bottom: 20px;
}

.service .box .pic .tmb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: inherit;
    object-fit: cover;
}

.service .box h3 {
    position: relative;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif !important;
}

.service .box span {
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
}

@media screen and (max-width:600px) {
    .service .box {
        width: 84%;
        margin: 10px 8% 30px;
    }

    .service .box h3 {
        font-size: 1.8rem;
    }

    .service .box span {
        font-size: 1.0rem;
    }

}


/*===============================

商品情報

================================*/


#iteminfo-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    background: #efefef;
}

#iteminfo-section .backicon {
    position: absolute;
    right: 0;
    width: 45%;
    margin-top: -30px;
    opacity: .8;
}

@media screen and (max-width:1200px) {
    #iteminfo-section .backicon {
        right: 3%;
    }
}


.iteminfo {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

.iteminfo:after {
    content: "";
    clear: both;
    display: block;
}


.spec {
    border: 1px solid #eee;
    background-color: rgb(255, 255, 255, .6);
    padding: 50px 10%;
    width: 94%;
    text-align: left;
    margin: 0 auto;
}

.spec p {
    font-size: 1.1rem;
    color: #666;
}

.spec-1 {
    display: block;
    font-weight: bold;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 2px dotted #eee;

}

.spec table {
    margin: 15px auto;
    font-size: 1.1rem;
    width: 70%;
    color: #666;
}

.spec table th {
    width: 50%;
    text-align: center;
    border: 1px solid #eee;
}

.spec table td {
    width: 50%;
    text-align: center;
    border: 1px solid #eee;
}

@media screen and (max-width: 600px) {
    .spec {
        padding: 50px 4%;
    }

    .spec table {
        width: 95%;
    }
}


/*===============================

給与量

================================*/


#feeding-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    background: #FFF;
}

#feeding-section .backicon {
    position: absolute;
    right: 0;
    width: 45%;
    margin-top: -30px;
    opacity: .8;
}

@media screen and (max-width:1200px) {
    #feeding-section .backicon {
        right: 3%;
    }
}


.feeding {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

.feeding:after {
    content: "";
    clear: both;
    display: block;
}

.feeding {
    border: solid 1px #eee;
    padding: 30px;
    margin-bottom: 100px;
    width: 94%;
    margin: 0 auto;
}

.feeding table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.feeding table th,
.feeding table td {
    padding: 10px 0;
    text-align: center;
}

.feeding table tr:nth-child(odd) {
    background-color: #eee;
}

@media screen and (max-width: 600px) {
    .feeding {
        margin: 30px auto;
        padding: 10px;
        font-size: 80%;
    }

    .feeding table th,
    .feeding table td {
        padding: 5px 0;
    }
}


/*===============================

FAQ

================================*/


#faq-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    background: #efefef;
}

.faq {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto;
}

.faq:after {
    content: "";
    clear: both;
    display: block;
}

.faq .box {
    width: 94%;
    margin: 0 auto;
    border-top: 1px solid #dedede;
    padding: 20px 0;
}

.faq .box .faq-q {
    padding: 10px 5px;
}

.faq .box .faq-q:after {
    content: "";
    clear: both;
    display: block;
}

.faq .box .faq-q .icon {
    width: 10%;
    float: left;
    min-width: 40px;
    font-size: 3rem;
    color: #9e9e9e;
}

.faq .box .faq-q .text {
    width: 85%;
    float: right;
    font-weight: bold;
}

.faq .box .faq-a {
    padding: 10px 5px;
}


.faq .box .faq-a:after {
    content: "";
    clear: both;
    display: block;
}

.faq .box .faq-a .icon {
    width: 10%;
    float: left;
    min-width: 40px;
    font-size: 3rem;
    color: #9e9e9e;
}

.faq .box .faq-a .text {
    width: 85%;
    float: right;
}

.faq .box .faq-a .text a{
    color: #0000ff;
    text-decoration: underline;
}