@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: "HuiFont";
  src: url("../font/HuiFontP29.woff") format("woff2"),
       url("../font/HuiFontP29.woff") format("woff");
}
.hui{
	font-family: 'HuiFont', "sans-serif";
}
.red{
	color: #b22222;
}
.page_img {
	background-image: url("../img/product/business/bg_head_business.jpg");
}
section{
	margin-bottom: 60px;
}
.btn a {
    color: #fff;
    text-align: center;
    background: #b22222;
    display: block;
    width: 86%;
	max-width: 446px;
    padding: 1.2em 60px;
    border-radius: 5px;
    border: 1px solid #b22222;
    position: relative;
    box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.3);
	margin-left: auto;
	margin-right: auto;
}
.btn a::before {
    content: "";
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
}
.btn a.link::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
}
.btn a:hover{
	background: #ffffff;
	color: #b22222;
}
.btn a.link:hover::after{
	border-color: #b22222;
}

.ttl_s {
    font-size: 0.52em;
}
.page_ttl .inner .ttl_gyomu {
  line-height: 100%;
}

/*=====おいしさと作業の効率化を======*/

.flex_koritsu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.sec_koritsu .img {
    width: 49%;
}
.sec_koritsu .txt {
    width: 46%;
}

@media screen and (max-width:600px) {
.sec_koritsu .img,
.sec_koritsu .txt{
		width: 100%;
		margin-bottom: 10px;
	}
}

/*=====それぞれ======*/

.flex_gyomu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.gyomu01 .img {
    width: 51%;
}
.gyomu01 .txt {
    width: 44%;
}

.box_alphaka {
    width: 46%;
}
.box_alphaka .img ,.box_alphaka .txt{
  margin-bottom: 20px;
}

.genmai_btn {
    width: 100%;
    max-width: 368px;
}
.btn a {
    width: 100%;
}
.btn a {
    color: #fff;
    text-align: center;
    background: #b22222;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 76px;
    line-height: 150%;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #b22222;
    position: relative;
    box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.3);
    margin-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
}

.sec_genmai .txt p {
  margin-bottom: 45px;
}
.sec_genmai .img p {
  margin-bottom: 15px;
}

.tab_content h4.ttl,.ttl_bdr{
    background: #fefae6;
    border-bottom: 1px solid #edd2a3;
    border-top: 1px solid #edd2a3;
    color: #a28047;
    font-size: 1.2em;
    line-height: 100%;
    padding: 12px 15px;
    margin-bottom: 30px;
}

.cooking_wrap{
  width: 100%;
  border-left: 1px solid #d69e34;
  border-right: 1px solid #d69e34;
  border-bottom: 1px solid #d69e34;
  border-radius: 15px 15px 0 0;
}
.list_p {
  margin-bottom: 60px;
}


@media screen and (max-width:600px) {
.gyomu01 .img,
.gyomu01 .txt,.box_alphaka{
		width: 100%;
		margin-bottom: 10px;
	}
  .flex_gyomu {
    flex-wrap: wrap-reverse;
    margin-bottom: 20px;
  }
  .genmai_btn {
      max-width: 100%;
  }
  .tab_content h4.ttl, .ttl_bdr {
      margin-bottom: 20px;
  }
.list_p {
  margin-bottom: 30px;
}
.cooking_wrap{
  border: none;
}
}

/*=====数字リスト======*/

ol {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}

.list_chouri li{
  position: relative;
  padding-left: 1.3em;
}
.list_chouri li:before {
  content: counter(my-counter);
      counter-increment: my-counter;
      padding-left: -1.3em;
      border: 1px solid #000;
      display: block;
      float: left;
      line-height: 17.5px;
      text-align: center;
      height: 15px;
      width: 15px;
      border-radius: 50%;
      font-size: 13px;
      position: absolute;
      top: 5px;
      left: 0;
}


.atto_btn.btn .link:before {
    background-image: url(../img/common/ico_alpha.png);
}

/*=====アコーディオン======*/

.acd-check{
    display: none;
}
.acd-label{
    background: #fefae6;
    color: #40220f;
    font-size: 1.43em;
    display: block;
    margin-bottom: 1px;
    padding: 20px 1em 20px 3.5em;
    position: relative;
    border: 1px solid #edd2a3;
}
.acd-label:after{
    background: #FFF;
    border: 1px solid #b19f8b;
    color: #b19f8b;
    box-sizing: border-box;
    content: '+';
    display: block;
    height: 30px;
    width: 30px;
    position: absolute;
    right: 26px;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
}
.acd-content{
    border-left: 1px solid #edd2a3;
    border-right: 1px solid #edd2a3;
    border-bottom: 1px solid #edd2a3;
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
}
.acd-check:checked + .acd-label:after{
    content: '-';
}
.acd-check:checked + .acd-label + .acd-content{
    height: auto;
    opacity: 1;
    padding: 40px;
    visibility: visible;
}
.acd-label ::before {
  content: url(../img/product/business/ico_gohan.svg);
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0.8em;
}


.acd-content .ttl_dot {
    font-size: 1.7em;
    font-weight: bold;
    color: #40220f;
    font-feature-settings: "palt"1;
    letter-spacing: 1.5px;
    background: url(../img/company/dotted.png) repeat-x left bottom;
    padding: 0 0 15px 15px;
    margin-bottom: 30px;
}

.txt_last {
  margin-bottom: 50px;
}

.list_chouri li {
  margin-bottom: 10px;
}

.red {
  color: #e40012;
}


@media screen and (max-width:600px) {
  .acd-check:checked + .acd-label + .acd-content{
      padding: 15px;
  }
  .acd-label {
    font-size: 1.2em;
    padding: 15px 1em 15px 3.8em;
  }
.acd-content .ttl_dot {
    font-size: 1.6em;
    padding-left: 0;
    text-align: center;
    margin-bottom: 20px;
}
.txt_last {
  margin-bottom: 30px;
}



}


/*=====タブ======*/
.cooking_wrap {
  width: 97%;
  margin: 0 auto;
}
.cooking_wrap h3.ttl {
    color: #40220f;
    font-size: 1.6em;
    padding: 0 0 15px 15px;
    background: url("../img/company/dotted.png") repeat-x bottom right;
    margin-bottom: 50px;
}
ul.tab_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #d69134;
}
ul.tab_list li {
    width: 47.78%;
    text-align: center;
    display: flex;
}
ul.tab_list li label {
    width: 100%;
    display: block;
    color: #ffffff;
    background: #d69134;
    line-height: 100%;
    font-size: 1.3em;
    padding: 20px 0;
    border: 1px solid #d69134;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    cursor: pointer;
    position: relative;
}
ul.tab_list li label:hover{
	background: #ffffff;
	color: #d69134;
}

.tab_list li:first-child label{
  border-left: none;
}
.tab_list li:last-child label{
  border-right: none;
}
.tab_content {
    width: 90%;
    margin: 40px auto;
}
.tab_content li{
    height: 0;
	transform: scale(1,0);
	transform-origin: top;
/*	transition: all ease 400ms;*/
	background: #ffffff;
}
.tab_content .list_chouri li{
    height: auto;
	transform: none;
}
.tab_content .method{
	margin-bottom: 20px;
}
.tab_content .method .name {
    color: #a28047;
    font-weight: bold;
    font-size: 1.125em;
    margin-bottom: 5px;
}
.tab_content .method .name::before{
	content: "●";
}
.tab_content .method .txt{
	counter-increment: number;
}
.tab_content .method .txt::before {
    content: counter(number);
    width: 1em;
    text-align: center;
    font-size: 0.9em;
    display: inline-block;
    line-height: 100%;
    border: 1px solid #000;
    border-radius: 50%;
}
.cooking_wrap input[type="radio"]:nth-of-type(1):checked ~ ul.tab_list li:nth-of-type(1) label,
.cooking_wrap input[type="radio"]:nth-of-type(2):checked ~ ul.tab_list li:nth-of-type(2) label,
.cooking_wrap input[type="radio"]:nth-of-type(3):checked ~ ul.tab_list li:nth-of-type(3) label,
.cooking_wrap input[type="radio"]:nth-of-type(4):checked ~ ul.tab_list li:nth-of-type(4) label,
.cooking_wrap input[type="radio"]:nth-of-type(5):checked ~ ul.tab_list li:nth-of-type(5) label{
	background: #ffffff;
	color: #d69134;
}
.cooking_wrap input[type="radio"]:nth-of-type(1):checked ~ ul.tab_list li:nth-of-type(1) label::after,
.cooking_wrap input[type="radio"]:nth-of-type(2):checked ~ ul.tab_list li:nth-of-type(2) label::after,
.cooking_wrap input[type="radio"]:nth-of-type(3):checked ~ ul.tab_list li:nth-of-type(3) label::after,
.cooking_wrap input[type="radio"]:nth-of-type(4):checked ~ ul.tab_list li:nth-of-type(4) label::after,
.cooking_wrap input[type="radio"]:nth-of-type(5):checked ~ ul.tab_list li:nth-of-type(5) label::after{
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	z-index: 2;
	bottom: -1px;
	left: 0;
	background: #ffffff;
}
.cooking_wrap input[type="radio"]:nth-of-type(1):checked ~ .tab_content li:nth-of-type(1),
.cooking_wrap input[type="radio"]:nth-of-type(2):checked ~ .tab_content li:nth-of-type(2),
.cooking_wrap input[type="radio"]:nth-of-type(3):checked ~ .tab_content li:nth-of-type(3),
.cooking_wrap input[type="radio"]:nth-of-type(4):checked ~ .tab_content li:nth-of-type(4),
.cooking_wrap input[type="radio"]:nth-of-type(5):checked ~ .tab_content li:nth-of-type(5){
	transform: scale(1,1);
    height: auto;
}



@media screen and (max-width:768px) {
ul.tab_list li label {
    font-size: 1em;
}

}
@media screen and (max-width:600px) {
.cooking_wrap h3.ttl {
    margin-bottom: 20px;
}
ul.tab_list li {
    width: 48.4%;
}
ul.tab_list li label {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #d69134;
}
ul.tab_list {
    border-bottom: none;
}
.tab_content {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0px;
}
.cooking_wrap input[type="radio"]:checked ~ ul.tab_list li label::after{
	opacity: 0;
	}
  .tab_list li:first-child label{
    border-left: 1px solid #d69e34;
  }
  .tab_list li:last-child label{
    border-right: 1px solid #d69e34;
  }
}




/*=====商品一覧======*/
.anchorlink_list{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.anchorlink_list li{
	width: 31%;
	position: relative;
	border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
	overflow: hidden;
  margin: 0 10px 20px 10px;
}
.anchorlink_list .link_name {
    color: #b22222;
    font-size: 1em;
    text-align: center;
    width: 100%;
    max-width: 280px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffff;
    padding: 1.1em 0;
    border-radius: 25px 0 0 0;
    line-height: 120%;
    transition: all ease 300ms;
}
.list_genmai .link_name ,.list_alphakamai .link_name {
    padding: 0.5em 0;
}
.anchorlink_list .link_name::after {
    content: "→";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0.5em;
    height: 1em;
    transform: scale(1.5,1);
    transform-origin: right;
    transition: right ease 300ms;
}
.anchorlink_list .inner:hover .link_name{
	color: #ffffff;
	background: #b22222;
}
.anchorlink_list .inner:hover .img{
	transform-origin: center;
}


@media screen and (max-width: 960px){
.anchorlink_list .link_name {
    padding-right: 30px;
    padding-left: 10px;
    text-align: left;
}
}


@media screen and (max-width:600px) {

.anchorlink_list li {
    width: 100%;
    margin-bottom: 10px;
    justify-content: flex-start;
    padding-left: 0;
    background-image: none;
    background-color: #ffffff;
    border: 1px solid #b22222;
    border-radius: 10px;
    font-weight: bold;
}
.anchorlink_list .img {
    width: 70px;
}
.anchorlink_list .link_name {
    width: calc(100% - 70px);
    position: static;
    background: none;
}
.anchorlink_list li .inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
}
}
@media all and (-ms-high-contrast: none){
	.tab_content .method .txt::before{
		line-height: 13px;
}
}