@charset "UTF-8";
/* CSS Document */

/*主食の合わせ方ここから*/

.color-green{
    color: #82af20;
}
.color-pink{
    color: #E68087;
}
.color-blue{
    color: #1d90cb;
}

.select-tab-area{
    width: 100%;
}

.select-tabs{
    justify-content: space-between;
    display: flex;
    max-width: 950px;
    margin: 0 auto;
}
@media screen and (max-width: 767.98px){
    .select-tabs{
        display: block;
    }
}

.select-tab{
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: #4E3230;
    border-radius: 10px 10px 0 0;
    background: #fff;
    text-decoration: none;
    width: calc( 100% / 3 - 4px );
    height: 50px;
    align-items: center;
    /*display: flex;*/
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
}

@media screen and (min-width: 767px){
    .select-tabs .select-tab{
        line-height: 1.2;
    }
    .select-tabs .select-tab.level1,
    .select-tabs .select-tab.level2,
    .select-tabs .select-tab.level3{
        line-height: 50px;
    }
}

@media screen and (max-width: 767.98px){
    .select-tab{
        width: 100%;
        border-width: 1px;
        border-radius: 10px;
        margin-bottom: 10px;
        max-width: 100%;
    }
}

.select-tab.is-active{
    cursor: default;
}

.select-tab.ckd.is-active,
.select-tab.dm.is-active,
.select-tab.ht.is-active,
.select-tab.is-active{
    border-width: 1px 1px 4px 1px;
    z-index: 10;
}

.select-tab.ckd.is-active{
    border-color: #82af20 #82af20 #fff #82af20;
    color: #82af20;
}
.select-tab.dm.is-active{
    border-color: #E68087 #E68087 #fff #E68087;
    color: #E68087;
}
.select-tab.ht.is-active{
    border-color: #1d90cb #1d90cb #fff #1d90cb;
    color: #1d90cb;
}
.select-tab.level1.is-active{
    border-color: #FFA836 #FFA836 #fff #FFA836;
    color: #FFA836;
}
.select-tab.level2.is-active{
    border-color: #FF8652 #FF8652 #fff #FF8652;
    color: #FF8652;
}
.select-tab.level3.is-active{
    border-color: #FFA395 #FFA395 #fff #FFA395;
    color: #FFA395;
}

@media screen and (max-width: 767.98px){
    .select-tab.ckd.is-active,
    .select-tab.dm.is-active,
    .select-tab.ht.is-active,
	.select-tab.is-active{
        border-width: 1px;
    }
    .select-tab.ckd.is-active{
        border-color: #82af20;
    }
    .select-tab.dm.is-active{
        border-color: #E68087;
    }
    .select-tab.ht.is-active{
        border-color: #1d90cb;
    }
	.select-tab.level1.is-active{
    border-color: #FFA836;
}
.select-tab.level2.is-active{
    border-color: #FF8652;
}
.select-tab.level3.is-active{
    border-color: #FFA395;
}
}

.select-tab-content{
    display: none;
    padding-top: 2rem;
    margin-top: -4px;
    margin-bottom: 6rem;
    flex: 100%;
}
@media screen and (max-width: 767.98px){
    .select-tab-content{
        padding-top: 1rem;
        margin-bottom: 2rem;
    }
}

.select-tab-content.is-active{
    display: block;
}

.select-tab-content.ckd{
    border-top: 4px solid #82af20;
}
.select-tab-content.dm{
    border-top: 4px solid #E68087;
}
.select-tab-content.ht{
    border-top: 4px solid #1d90cb;
}
.select-tab-content.level1{
    border-top: 4px solid #FFA836;
}
.select-tab-content.level2{
    border-top: 4px solid #FF8652;
}
.select-tab-content.level3{
    border-top: 4px solid #FFA395;
}
@media screen and (max-width: 767.98px){
    .select-tab-content.ckd,
    .select-tab-content.dm,
    .select-tab-content.ht,
	.select-tab-content.level1,
	.select-tab-content.level2,
	.select-tab-content.level3{
        border-top: none;
    }
}

.select-tab-content h2{
    border-bottom: 0;
    background: #000;
    color: #fff;
    padding: 1rem;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
}

.select-tab-content.ckd h2{
    background: #82af20;
}
.select-tab-content.dm h2{
    background: #E68087;
}
.select-tab-content.ht h2{
    background: #1d90cb;
}
.select-tab-content.fat h2{
    background: #e4c02a;
}
.select-tab-content.level1 h2{
    background: #FFA836;
}
.select-tab-content.level2 h2{
    background: #FF8652;
}
.select-tab-content.level3 h2{
    background: #FFA395;
}

.select-tab-content h3{
    padding: 1rem 2rem 1rem 1rem;/*文字周りの余白*/
    font-size: 1.125rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: bold;
}
@media screen and (max-width: 767.98px){
    .select-tab-content h3{
        display: block;
    }
}

.select-tab-content.ckd h3{
    background: #F1F6E3;/*背景色*/
    border-left: solid 5px #82af20;/*左線（実線 太さ 色）*/
}
.select-tab-content.dm h3{
    background: #FCF2F4;/*背景色*/
    border-left: solid 5px #E68087;/*左線（実線 太さ 色）*/
}
.select-tab-content.ht h3{
    background: #EAF5FB;/*背景色*/
    border-left: solid 5px #1D90CB;/*左線（実線 太さ 色）*/
}
.select-tab-content.fat h3{
    background: #F8F4E9;/*背景色*/
    border-left: solid 5px #e4c02a;/*左線（実線 太さ 色）*/
}
.select-tab-content.level1 h3{
    background: rgb(255, 168, 54, .2);/*背景色*/
    border-left: solid 5px #FFA836;/*左線（実線 太さ 色）*/
}
.select-tab-content.level2 h3{
    background: rgb(255, 133, 86, .2);/*背景色*/
    border-left: solid 5px #FF8652;/*左線（実線 太さ 色）*/
}
.select-tab-content.level3 h3{
    background: rgb(255, 165, 153, .2);/*背景色*/
    border-left: solid 5px #FFA395;/*左線（実線 太さ 色）*/
}

.select-tab-content-item{
    margin-bottom: 4rem;
}
@media screen and (max-width: 767.98px){
    .select-tab-content-item{
        margin-bottom: 3rem;
    }
}

.select-tab-content h4{
    position: relative;/*相対位置*/
    padding-left: 1.5em;/*アイコン分のスペース*/
    line-height: 1.4;/*行高*/
    font-size: 1.125rem;
}

.select-tab-content h4::before{
    font-family: "Font Awesome 5 Free";/*忘れずに*/
     content: "●";/*アイコンのユニコード*/
    font-weight: 900;
    position: absolute;/*絶対位置*/
    font-size: 1em;/*サイズ*/
    left: 0;/*アイコンの位置*/
    top: 50%;/*アイコンの位置*/
    transform: translateY(-50%);
}

.select-tab-content.ckd h4::before{
    color: #82af20;
}
.select-tab-content.dm h4::before{
    color: #E68087;
}
.select-tab-content.ht h4::before{
    color: #1D90CB;
}
.select-tab-content.fat h4::before{
    color: #e4c02a;
}
.select-tab-content.level1 h4::before{
    color: #FFA836;
}
.select-tab-content.level2 h4::before{
    color: #FF8652;
}
.select-tab-content.level3 h4::before{
    color: #FFA395;
}

.select-tab-content .point-box{
    max-width: 800px;
    margin: 0 auto;
}

.select-tab-content .point-box-ttl{
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 10px 10px 0 0;
    display: inline-block;
}
.select-tab-content.ckd .point-box-ttl{
    background: #82af20;
}
.select-tab-content.dm .point-box-ttl{
    background: #E68087;
}
.select-tab-content.ht .point-box-ttl{
    background: #1D90CB;
}
.select-tab-content.fat .point-box-ttl{
    background: #e4c02a;
}
.select-tab-content.level1 .point-box-ttl{
    background: #FFA836;
}
.select-tab-content.level2 .point-box-ttl{
    background: #FF8652;
}
.select-tab-content.level3 .point-box-ttl{
    background: #FFA395;
}

.select-tab-content .point-box-text{
    padding: 2rem 2.5rem;
    border-radius: 0 10px 10px 10px;
}
@media screen and (max-width: 767.98px){
    .select-tab-content .point-box-text{
        padding: 1rem;
    }
}

.select-tab-content.ckd .point-box-text{
    border: 1px solid #82af20;
    background: #F1F6E3;
}
.select-tab-content.dm .point-box-text{
    border: 1px solid #E68087;
    background: #FCF2F4;
}
.select-tab-content.ht .point-box-text{
    border: 1px solid #1D90CB;
    background: #EAF5FB;
}
.select-tab-content.fat .point-box-text{
    border: 1px solid #e4c02a;
    background: #F8F4E9;
}
.select-tab-content.level1 .point-box-text{
    border: 1px solid #FFA836;
    background: rgb(255, 168, 54, .2);
}
.select-tab-content.level2 .point-box-text{
    border: 1px solid #FF8652;
    background: rgb(255, 133, 86, .2);
}
.select-tab-content.level3 .point-box-text{
    border: 1px solid #FFA395;
    background: rgb(255, 165, 153, .2);
}

.select-tab-content .point-box-text p{
    margin-bottom: 0;
}

.select-tab-content .point-box .row{
    justify-content: center;
}

.select-tab-content .point-box .point-box-item{
    background: #fff;
    padding: .5rem;
    position: relative;
    width: 15%;
    margin-right: 2rem;
    text-align: center;
}
.select-tab-content .point-box .point-box-item:last-child{
    margin-right: 0;
}
@media screen and  (max-width: 767.98px){
    .select-tab-content .point-box .point-box-item{
        width: 19%;
        margin-right: 1.5rem;
    }
}

.select-tab-content .point-box .point-box-item::before{
    content: "";
    position: absolute;
    margin: auto;
    top: 40%;
    right: -1.3rem;
    width: 15px;
    height: 15px;
    border-top: 3px solid #E68087;
    border-right: 3px solid #E68087;
    transform: rotate(45deg);
}
@media screen and  (max-width: 767.98px){
    .select-tab-content .point-box .point-box-item::before{
        right: -1rem;
    }
}

.select-tab-content .point-box .point-box-item:last-child::before{
    display: none;
}

.select-tab-content .recommend-box{
    padding: 1.5rem;
    margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px){
    .select-tab-content .recommend-box{
        padding: 1rem;
    }
}
.select-tab-content.ckd .recommend-box{
    background: #F1F6E3;
}
.select-tab-content.dm .recommend-box{
    background: #FCF2F4;
}
.select-tab-content.ht .recommend-box{
    background: #EAF5FB;
}
.select-tab-content.fat .recommend-box{
    background: #F8F4E9;
}
.select-tab-content.level1 .recommend-box{
    background: rgb(255, 168, 54, .2);
}
.select-tab-content.level2 .recommend-box{
    background: rgb(255, 133, 86, .2);
}

.select-tab-content .recommend-box-inner{
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
}
@media screen and (max-width: 767.98px){
    .select-tab-content .recommend-box-inner{
        padding: 2rem 1rem;
    }
}
.select-tab-content.ckd .recommend-box-inner{
    border: 1px solid #82af20;
}
.select-tab-content.dm .recommend-box-inner{
    border: 1px solid #E68087;
}
.select-tab-content.ht .recommend-box-inner{
    border: 1px solid #1D90CB;
}
.select-tab-content.fat .recommend-box-inner{
    border: 1px solid #e4c02a;
}
.select-tab-content.level1 .recommend-box-inner{
    border: 1px solid #FFA836;
}
.select-tab-content.level2 .recommend-box-inner{
    border: 1px solid #FF8652;
}
.select-tab-content.level3 .recommend-box-inner{
    border: 1px solid #FFA395;
}

.recommend-ttl{
    font-size: 1.125rem;
}

.recommend-sub-ttl{
    padding: 0.25em 0.5em;/*上下 左右の余白*/
  background: transparent;/*背景透明に*/
}
.select-tab-content.ckd .recommend-sub-ttl{
  border-left: solid 5px #82af20;/*左線*/
}
.select-tab-content.dm .recommend-sub-ttl{
  border-left: solid 5px #E68087;/*左線*/
}
.select-tab-content.ht .recommend-sub-ttl{
  border-left: solid 5px #1D90CB;/*左線*/
}
.select-tab-content.fat .recommend-sub-ttl{
  border-left: solid 5px #e4c02a;/*左線*/
}

.recommend-box-row-img{
    width: 30%;
}

.recommend-box-text{
    width: 70%;
}
@media screen and (max-width: 767.98px){
    .recommend-box-row-img,
    .recommend-box-text{
        width: 100%;
    }
}


/*cssでのタブ切り替え用*/

input[name="tab_menu"] {
  display: none;
}

input#ckd:checked ~ #ckd_content,
input#dm:checked ~ #dm_content,
input#ht:checked ~ #ht_content {
  display: block;
}

.tab-contents input#ckd:checked + .select-tab.ckd {
    border-color: #82af20 #82af20 #fff #82af20;
    color: #82af20;
}
.tab-contents input#dm:checked + .select-tab.dm {
    border-color: #E68087 #E68087 #fff #E68087;
    color: #E68087;
}
.tab-contents input#ht:checked + .select-tab.ht {
    border-color: #1d90cb #1d90cb #fff #1d90cb;
    color: #1d90cb;
}
@media screen and (max-width: 767.98px){
    .tab-contents input#ckd:checked + .select-tab.ckd{
        border-color:#82af20;
    }
    .tab-contents input#dm:checked + .select-tab.dm{
        border-color: #E68087;
    }
    .tab-contents input#ht:checked + .select-tab.ht{
        border-color: #1d90cb;
    }
}


/*主食の合わせ方ここまで*/