@charset "UTF-8";
.ingredients__page{
    max-width: 750px;
    margin: 0 auto;
}

.ingredients__page h1{
    text-align: center;
    font-size: 48px;
    margin-bottom: 42px;
}
@media screen and (max-width: 768px) {
    .ingredients__page{
        padding: 0 2%;
        font-size: 13px;
    }

    .ingredients__page h1{
        font-size: 24px;
        margin-bottom: 20px;
    }
}

.ingredients__box {
  display: none;
}
.ingredients__box.active {
  display: block;
}

.ingredients__cat ul{
    display: flex;
}
.ingredients__cat ul li{
    width: calc( 100% / 3 );
}
.ingredients__cat ul li span{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    width: 100%;
    height: 40px;
    border: 1px #666 solid;
    border-left: none;
    cursor: pointer;
    transition: all 0.6s ease;
}
.ingredients__cat ul li.active span{
    background: #231815;
    color: #FFF;
}
@media screen and (min-width: 769px) {
    .ingredients__cat ul li span:hover{
        background: #231815;
        color: #FFF;
    }
}
.ingredients__cat ul li:first-child span{
    border-radius: 20px 0 0 20px;
    border-left:1px #666 solid;
}
.ingredients__cat ul li:last-child span{
    border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 768px) {
    .ingredients__cat ul li span{
        font-size: 13px;
        height: 30px;
    }
}

.ingredients__box{
    padding: 20px 0;
}
.ingredients__page table{
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 10px;
}
.ingredients__page td,
.ingredients__page th,
.ingredients__page tr {
    border-color: #b8bcc0;
    border: 1px solid #b8bcc0;
}
.ingredients__page th{
    width: 20%;
}
.ingredients__page th.t__headline {
    width: 100%;
    padding: 8px 12px;
    background-color: #fafafa;
    font-weight: bold;
}
.ingredients__page td {
    width: 80%;
    padding: 8px 12px;
    vertical-align: middle;
    border: 1px solid #b8bcc0;
}
@media screen and (max-width: 768px) {
    .ingredients__box{
        padding: 10px 0;
    }
    .ingredients__page table{
        margin-bottom: 5px;
    }
    .ingredients__page th{
        width: 30%;
        font-size: 14px;
    }
    .ingredients__page td {
        width: 70%;
        font-size: 13px;
    }
}

.origin__box{
    padding-top: 30px;
}
.origin__box th.t__headline {
    width: 30%;
    padding: 8px 0 8px 25px;
    text-align: left;
}
.origin__box td {
    width: 50%;
}
.origin__box td.t__orijin {
    width: 20%;
    font-weight: bold;
}
.origin__box td .c__green{
    color: #1c853f;
}
.origin__box td .c__red{
    color: #912525;
}
.origin__box td .c__blue{
    color: #364c8a;
}
@media screen and (max-width: 768px) {
    .origin__box th.t__headline {
        width: 28%;
        padding: 8px 0 8px 10px;
        text-align: left;
        font-size: 13px;
    }
    .origin__box td {
        width: 46%;
    }
    .origin__box td.t__orijin {
        width: 26%;
        font-weight: bold;
    }
}