@charset "utf-8";
@import url("//fonts.googleapis.com/css?family=Comfortaa&display=swap");
@import url("//fonts.googleapis.com/css?family=Noto+Sans+JP:300,400&display=swap");
@import url("//fonts.googleapis.com/css?family=Source+Sans+Pro&display=swap");
#Main_inner {
  padding-bottom: 0px;
}

#Cont {
  width: auto;
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  #Cont {
    padding-bottom: 20px;
  }
}

#Cont * {
  font-family: 'Source Sans Pro','Comfortaa','Noto Sans JP', sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#Cont h1, #Cont h2, #Cont h3, #Cont h4, #Cont .eng {
  font-family: 'Comfortaa','Noto Sans JP', sans-serif;
  font-weight: 300;
}

#Cont a {
  color: inherit;
}

#Cont a:hover {
  opacity: 0.7;
}

#Cont .clearfix:after {
  content: "";
  clear: both;
  display: block;
}

#Cont .contentInner {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  #Cont .contentInner {
    padding: 0 15px;
  }
}

#Cont .sp {
  display: none;
}

@media screen and (max-width: 640px) {
  #Cont .sp {
    display: block;
  }
}

#Cont .clickBox {
  cursor: pointer;
}

#Cont .clickBox a {
  text-decoration: none;
  opacity: 1;
}

#Cont .popupWin {
  z-index: 1001;
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  visibility: hidden;
  cursor: pointer;
  text-align: center;
}

#Cont .popupWin.active {
  background: rgba(0, 0, 0, 0.5);
  visibility: visible;
  -webkit-transition: background 1s ease 0s, visibility 0s ease 0s;
  transition: background 1s ease 0s, visibility 0s ease 0s;
}

#Cont .popupWin.active .cont {
  -webkit-transition: background 0s ease 2s;
  transition: background 0s ease 2s;
  background: #fff;
}

#Cont .popupWin.active .cont::before {
  width: 100%;
  -webkit-transition: width 1s ease 1s;
  transition: width 1s ease 1s;
}

#Cont .popupWin.active .cont .inner .ttl {
  opacity: 1;
  -webkit-transition: opacity 1s ease 2s;
  transition: opacity 1s ease 2s;
}

#Cont .popupWin.active .cont .inner .board {
  opacity: 1;
  -webkit-transition: opacity 1s ease 2s;
  transition: opacity 1s ease 2s;
}

#Cont .popupWin.active .cont .inner .item {
  opacity: 1;
  -webkit-transition: opacity 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
  transition: opacity 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s, -webkit-transform 1s ease 0.5s;
  -webkit-transform: scale(1) translate(-50%, 50%);
  transform: scale(1) translate(-50%, 50%);
}

@media screen and (max-width: 640px) {
  #Cont .popupWin.active .cont .inner .item {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

#Cont .popupWin .openClose {
  position: absolute;
  top: 50%;
  left: calc(50% + 30px);
  display: block;
  height: 40px;
  width: 40px;
  cursor: pointer;
  z-index: 4;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .openClose {
    top: calc(50% + 10px);
    left: calc(50% - 40px);
  }
}

#Cont .popupWin .openClose span::before, #Cont .popupWin .openClose span::after {
  content: "";
  height: 40px;
  width: 1px;
  background: #FFF;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .openClose span::before, #Cont .popupWin .openClose span::after {
    height: 20px;
    background: #000;
    left: 20px;
  }
}

#Cont .popupWin .openClose span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#Cont .popupWin .openClose span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#Cont .popupWin .cont {
  visibility: hidden;
  padding: 0;
  max-width: 600px;
  max-height: 640px;
  height: 90%;
  width: 90%;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: default;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont {
    max-height: 90%;
    height: auto;
  }
}

#Cont .popupWin .cont#popup01, #Cont .popupWin .cont#popup02, #Cont .popupWin .cont#popup04 {
  max-width: 860px;
}

#Cont .popupWin .cont#popup01 .inner, #Cont .popupWin .cont#popup02 .inner, #Cont .popupWin .cont#popup04 .inner {
  width: 840px;
}

#Cont .popupWin .cont#popup01 .inner .item, #Cont .popupWin .cont#popup02 .inner .item, #Cont .popupWin .cont#popup04 .inner .item {
  left: 50%;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont#popup01 .inner .item, #Cont .popupWin .cont#popup02 .inner .item, #Cont .popupWin .cont#popup04 .inner .item {
    left: 10%;
  }
}

#Cont .popupWin .cont.active {
  overflow: auto;
  visibility: visible;
}

#Cont .popupWin .cont::before {
  content: "";
  height: 100%;
  width: 0%;
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

#Cont .popupWin .cont .inner {
  height: 620px;
  width: 580px;
  padding: 30px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner {
    display: block;
    height: auto !important;
    width: auto !important;
    padding: 30px 20px 30px;
  }
}

#Cont .popupWin .cont .inner .ttl {
  opacity: 0;
  width: calc(100% - 366px);
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner .ttl {
    width: auto;
    padding-right: 0;
    margin-bottom: 20px;
  }
}

#Cont .popupWin .cont .inner .ttl .box {
  display: block;
  position: relative;
  max-width: 290px;
  padding-left: 30px;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner .ttl .box {
    padding-left: 0;
    max-width: 100%;
  }
}

#Cont .popupWin .cont .inner .ttl .box::before {
  content: "";
  height: 100%;
  width: 1px;
  background: #000;
  display: block;
  position: absolute;
  top: 10px;
  right: -60px;
  -webkit-transform: rotate(17deg);
  transform: rotate(17deg);
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner .ttl .box::before {
    display: none;
  }
}

#Cont .popupWin .cont .inner .ttl .box .lead {
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner .ttl .box .lead {
    font-size: 15px;
  }
}

#Cont .popupWin .cont .inner .ttl .box .btn {
  font-size: 14px;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner .ttl .box .btn {
    font-size: 10px;
  }
}

#Cont .popupWin .cont .inner .ttl .box .btn a {
  display: block;
  padding: 5px 0;
  color: #B19752;
  border-top: 1px solid #B19752;
  border-bottom: 1px solid #B19752;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner .ttl .box .btn a {
    text-align: left;
    position: relative;
  }
}

#Cont .popupWin .cont .inner .ttl .box .btn a:hover {
  opacity: 1;
  text-decoration: none;
}

#Cont .popupWin .cont .inner .ttl .box .btn a:hover::after {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

#Cont .popupWin .cont .inner .ttl .box .btn a::after {
  content: "";
  margin-left: 10px;
  height: 7px;
  width: 16px;
  background: url(../images/arrow01_b.svg) no-repeat;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner .ttl .box .btn a::after {
    position: absolute;
    top: 13px;
    right: 0;
  }
}

#Cont .popupWin .cont .inner .board {
  opacity: 0;
  width: 398px;
  height: 578px;
  padding: 40px 40px 50px 40px;
  background: url(../images/bk_board.png) center top no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner .board {
    background: url(../images/bk_board.png) right top no-repeat;
    width: 65vw;
    margin-left: 13vw;
    height: 92vw;
    background-size: contain;
    padding: 10% 10% 10% 13%;
  }
}

#Cont .popupWin .cont .inner .board .btn {
  margin-top: auto;
  width: 100%;
}

#Cont .popupWin .cont .inner .board .btn li {
  margin-top: 15px;
  font-size: 14px;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner .board .btn li {
    font-size: 12px;
    text-align: left;
  }
}

#Cont .popupWin .cont .inner .board .btn li a {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  padding: 7px;
  background: url(../images/arrow01_w.svg) right 15px center no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#Cont .popupWin .cont .inner .board .btn li a:hover {
  text-decoration: none;
  opacity: 1;
  color: #000;
  background: url(../images/arrow01.svg) #fff right 5px center no-repeat;
}

#Cont .popupWin .cont .inner .item {
  opacity: 0;
  position: absolute;
  bottom: 50%;
  left: 25%;
  -webkit-transform: scale(0.5) translate(-50%, 50%);
  transform: scale(0.5) translate(-50%, 50%);
  -webkit-transform-origin: center left;
  transform-origin: center left;
  padding-right: 30px;
  padding-top: 30px;
  z-index: 2;
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner .item {
    left: 10%;
    top: inherit;
    bottom: 30px;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

#Cont .popupWin .cont .inner .item img {
  width: 247px;
  height: 548px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: 50% 100%;
  object-position: 50% 100%;
  font-family: 'object-fit: contain;object-position: 50% 100%;';
}

@media screen and (max-width: 640px) {
  #Cont .popupWin .cont .inner .item img {
    width: auto;
    height: 250px;
    width: 80px;
  }
}

#Cont #pageNav {
  height: 60px;
  background: #fff;
  border-top: 1px solid #DCDCDC;
  position: relative;
  z-index: 10;
  text-align: center;
}

@media screen and (max-width: 640px) {
  #Cont #pageNav {
    position: absolute;
    border-top: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1000;
  }
}

#Cont #pageNav nav {
  -webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}

#Cont #pageNav nav.fixed {
  position: fixed;
}

#Cont #pageNav nav .contentInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  #Cont #pageNav nav .contentInner {
    padding: 0 0 0 10px;
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .contentInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#Cont #pageNav nav .logo {
  width: 170px;
  padding-top: 15px;
}

@media screen and (max-width: 730px) {
  #Cont #pageNav nav .logo {
    padding-top: 22px;
    width: 100px;
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .logo {
    padding-top: 10px;
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .logo img {
    height: 20px;
  }
}

#Cont #pageNav nav .openClose {
  display: none;
  width: 40px;
  height: 40px;
  background: #3e1a81;
  cursor: pointer;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .openClose {
    display: block;
  }
}

#Cont #pageNav nav .openClose span {
  width: 20px;
  height: 2px;
  background: #FFF;
  position: absolute;
  top: calc(50% - 2px);
  left: 10px;
}

#Cont #pageNav nav .openClose span::before, #Cont #pageNav nav .openClose span::after {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
}

#Cont #pageNav nav .openClose span::before {
  top: -7px;
}

#Cont #pageNav nav .openClose span::after {
  bottom: -7px;
}

@media screen and (min-width: 641px) {
  #Cont #pageNav nav .inner {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
  }
}

#Cont #pageNav nav .inner .nav1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 20px;
}

@media screen and (max-width: 1000px) {
  #Cont #pageNav nav .inner .nav1 {
    padding: 0 5px;
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav1 {
    height: auto;
    display: block;
    background: #E1CD98;
    padding: 10px 0;
    letter-spacing: 0.1em;
  }
}

#Cont #pageNav nav .inner .nav1 li {
  font-size: 15px;
  font-weight: bold;
  padding: 0 10px;
  white-space: nowrap;
  line-height: 1.2;
}

@media screen and (max-width: 1000px) {
  #Cont #pageNav nav .inner .nav1 li {
    font-size: 12px;
    padding: 0 5px;
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav1 li {
    font-size: 15px;
    padding: 0;
  }
}

#Cont #pageNav nav .inner .nav1 li .ja {
  display: block;
  font-size: 12px;
}

@media screen and (max-width: 1000px) {
  #Cont #pageNav nav .inner .nav1 li .ja {
    font-size: 10px;
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav1 li .ja {
    display: inline-block;
  }
  #Cont #pageNav nav .inner .nav1 li .ja::before {
    content: "/ ";
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav1 li a {
    display: block;
    padding: 10px 0;
  }
}

#Cont #pageNav nav .inner .nav2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav2 {
    display: block;
    background: #fff;
  }
}

#Cont #pageNav nav .inner .nav2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  font-weight: bold;
  border-left: 1px solid #DCDCDC;
  border-bottom: 3px solid #dcdcdc;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  #Cont #pageNav nav .inner .nav2 li {
    font-size: 12px;
    height: 60px;
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav2 li {
    height: auto;
    font-size: 15px;
    display: block;
    padding: 0;
    border-left: 3px solid #dcdcdc;
    border-bottom: 1px solid #DCDCDC !important;
  }
}

#Cont #pageNav nav .inner .nav2 li:nth-child(1) {
  color: #ff7741;
  border-bottom-color: #ff7741;
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav2 li:nth-child(1) {
    border-left-color: #ff7741;
  }
}

#Cont #pageNav nav .inner .nav2 li:nth-child(2) {
  color: #7c50cf;
  border-bottom-color: #7c50cf;
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav2 li:nth-child(2) {
    border-left-color: #7c50cf;
  }
}

#Cont #pageNav nav .inner .nav2 li:nth-child(3) {
  color: #f965a1;
  border-bottom-color: #f965a1;
  border-right: 1px solid #DCDCDC;
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav2 li:nth-child(3) {
    border-right: none;
    border-left-color: #f965a1;
  }
}

#Cont #pageNav nav .inner .nav2 li a {
  position: relative;
  white-space: nowrap;
  padding: 0 30px 0 10px;
  display: block;
}

@media screen and (max-width: 1000px) {
  #Cont #pageNav nav .inner .nav2 li a {
    padding: 0 15px 0 5px;
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav2 li a {
    padding: 10px;
  }
}

#Cont #pageNav nav .inner .nav2 li a:hover {
  text-decoration: none;
}

#Cont #pageNav nav .inner .nav2 li a::before, #Cont #pageNav nav .inner .nav2 li a::after {
  content: "";
  height: 5px;
  width: 6px;
  border: 1px solid #A0A0A0;
  display: block;
  position: absolute;
}

#Cont #pageNav nav .inner .nav2 li a::before {
  top: 10px;
  right: 10px;
}

@media screen and (max-width: 1000px) {
  #Cont #pageNav nav .inner .nav2 li a::before {
    right: 1px;
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav2 li a::before {
    right: 10px;
    top: 20px;
  }
}

#Cont #pageNav nav .inner .nav2 li a::after {
  top: 7px;
  right: 13px;
}

@media screen and (max-width: 1000px) {
  #Cont #pageNav nav .inner .nav2 li a::after {
    right: 4px;
  }
}

@media screen and (max-width: 640px) {
  #Cont #pageNav nav .inner .nav2 li a::after {
    right: 13px;
    top: 17px;
  }
}

#Cont .topImg {
  margin-bottom: 60px;
}

@media screen and (max-width: 640px) {
  #Cont .topImg {
    margin-bottom: 30px;
    padding-top: 40px;
  }
}

#Cont .topImg .contentInner {
  position: relative;
}

@media screen and (max-width: 640px) {
  #Cont .topImg .contentInner {
    padding: 0;
  }
}

#Cont .topImg .img img {
  margin: 0 auto;
}

#Cont .topImg .txt {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 640px) {
  #Cont .topImg .txt {
    position: static;
  }
}

#Cont .titleStyle01 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #36241F;
}

@media screen and (max-width: 640px) {
  #Cont .titleStyle01 {
    font-size: 25px;
  }
}

#Cont .leadStyle01 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
}

@media screen and (max-width: 640px) {
  #Cont .leadStyle01 {
    font-size: 14px;
  }
}

#Cont > .top {
  overflow: hidden;
  text-align: center;
  background: url(../images/top/bk_product.jpg);
}

#Cont > .top #mainImg {
  background: url(../images/top/bk_main2.jpg) center center;
  background-size: cover;
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  #Cont > .top #mainImg {
    background-image: url(../images/top/bk_main_sp.jpg);
    padding-top: 40px;
  }
}

#Cont > .top #mainImg .inner {
  position: relative;
  margin: 0 auto;
  max-width: 1366px;
  min-height: 536px;
}

#Cont > .top #mainImg .inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  background: url(../images/top/bk_main.png) no-repeat left center;
  width: 1366px;
  height: 536px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 640px) {
  #Cont > .top #mainImg .inner::before {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .top #mainImg .inner .txt {
    width: 60%;
  }
}

#Cont > .top #mainImg .inner .slide {
  position: absolute;
  top: 60px;
  left: 40%;
  width: 55%;
}

@media screen and (max-width: 640px) {
  #Cont > .top #mainImg .inner .slide {
    top: inherit;
    bottom: 10%;
    left: 5%;
    width: 90%;
  }
}

#Cont > .top #mainImg .inner .slide ul li {
  position: relative;
  display: inline-block;
}

#Cont > .top #mainImg .inner .slide ul li a {
  display: inline-block;
  background: #FFF;
}

#Cont > .top #mainImg .inner .slide ul li a:hover {
  opacity: 1;
  text-decoration: none;
}

#Cont > .top #mainImg .inner .slide ul li a img {
  -webkit-box-shadow: 10px 10px 10px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 10px 5px rgba(0, 0, 0, 0.2);
}

#Cont > .top #mainImg .inner .slide ul li a p {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  padding: 7px 10px;
  line-height: 1.1;
}

@media screen and (max-width: 1000px) {
  #Cont > .top #mainImg .inner .slide ul li a p {
    font-size: 18px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .top #mainImg .inner .slide ul li a p {
    font-size: 15px;
    left: 50%;
    bottom: -10px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

#Cont > .top #mainImg .inner .slide ul li a p .jp {
  font-size: 20px;
}

@media screen and (max-width: 1000px) {
  #Cont > .top #mainImg .inner .slide ul li a p .jp {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .top #mainImg .inner .slide ul li a p .jp {
    font-size: 12px;
  }
}

#Cont > .top #products {
  position: relative;
  height: 890px;
  padding-top: 60px;
  background: url(../images/top/bk_product2.png) no-repeat center 440px, url(../images/top/bk_product.jpg) no-repeat center center/cover;
}

@media screen and (max-width: 640px) {
  #Cont > .top #products {
    background: linear-gradient(to bottom, white 0px, white 150px, rgba(255, 255, 255, 0) 200px), url(../images/top/bk_product.jpg) no-repeat center center/cover;
    padding-top: 40px;
    height: 910px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .top #products::before {
    content: "";
    width: 100%;
    height: 200px;
    background: url(../images/top/bk_product3_sp.png) no-repeat center top;
    background-size: 100% auto;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
  }
}

#Cont > .top #products > .ttl {
  font-size: 44px;
  line-height: 1.4;
}

@media screen and (max-width: 640px) {
  #Cont > .top #products > .ttl {
    font-size: 27px;
  }
}

#Cont > .top #products > .subttl {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 300;
  color: #666;
}

@media screen and (max-width: 640px) {
  #Cont > .top #products > .subttl {
    font-size: 17px;
  }
}

#Cont > .top #products > .lead {
  font-size: 16px;
}

@media screen and (max-width: 640px) {
  #Cont > .top #products > .lead {
    font-size: 14px;
  }
}

#Cont > .top #products .list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  left: 50%;
  top: 282px;
  width: 770px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 640px) {
  #Cont > .top #products .list ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: auto;
    left: 8vw;
    -webkit-transform: none;
    transform: none;
    top: 180px;
    width: 84vw;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .top #products .list ul li:nth-child(1)::before, #Cont > .top #products .list ul li:nth-child(5)::before, #Cont > .top #products .list ul li:nth-child(10)::before {
    content: "";
    width: 98vw;
    height: 100px;
    background: #f00;
    background: url(../images/top/bk_product2_sp.png) no-repeat;
    background-size: contain;
    display: block;
    top: 190px;
    left: -6vw;
    position: absolute;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .top #products .list ul li:nth-child(1)::before {
    top: 190px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .top #products .list ul li:nth-child(5)::before {
    top: 387px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .top #products .list ul li:nth-child(10)::before {
    top: 584px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .top #products .list ul li:nth-child(n+5) {
    width: 15vw;
  }
}

#Cont > .top #products .list ul li a {
  display: block;
  opacity: 1 !important;
  padding: 10px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

#Cont > .top #products .list ul li a:hover {
  padding: 0 0 10px;
}

#Cont > .top #products .list ul li img {
  margin: 0 auto;
  opacity: 1 !important;
  width: 110px;
  height: 187px;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  -o-object-position: 50% 100%;
  object-position: 50% 100%;
  font-family: 'object-fit: scale-down;object-position: 50% 100%;';
}

@media screen and (max-width: 640px) {
  #Cont > .top #products .list ul li img {
    width: 21vw;
  }
}

#Cont > .top #products .list .list02 {
  top: 518px;
}

#Cont > .top #recipe {
  padding: 100px 0;
  position: relative;
  margin-top: -40px;
  z-index: 4;
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe {
    padding: 50px 0;
  }
}

#Cont > .top #recipe::before {
  content: "";
  background: url("../images/top/bk_recipe.jpg");
  position: absolute;
  top: 0;
  left: 0;
  width: 150vw;
  height: 100%;
  top: 0;
  left: 50%;
  display: block;
  z-index: 1;
  -webkit-transform: translateX(-50%) rotate(-4deg);
  transform: translateX(-50%) rotate(-4deg);
}

#Cont > .top #recipe .inner {
  position: relative;
  z-index: 2;
}

#Cont > .top #recipe .ttl {
  font-size: 40px;
  line-height: 1.4;
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .ttl {
    font-size: 27px;
  }
}

#Cont > .top #recipe .subttl {
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 300;
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .subttl {
    font-size: 17px;
  }
}

#Cont > .top #recipe .lead {
  font-size: 16px;
  margin-bottom: 25px;
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .lead {
    font-size: 14px;
  }
}

#Cont > .top #recipe .bnr {
  padding: 0 1%;
  margin: 0 auto 50px;
  max-width: 1366px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .bnr {
    padding: 0 15px;
  }
}

#Cont > .top #recipe .bnr:hover {
  opacity: 0.7;
}

#Cont > .top #recipe .bnr ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#Cont > .top #recipe .bnr ul li {
  width: 24.5%;
  margin-bottom: 0.5%;
  background: #000;
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .bnr ul li {
    width: 49.5%;
    margin-bottom: 1%;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .bnr ul li:nth-child(3), #Cont > .top #recipe .bnr ul li:nth-child(4), #Cont > .top #recipe .bnr ul li:nth-child(7), #Cont > .top #recipe .bnr ul li:nth-child(8) {
    display: none;
  }
}

#Cont > .top #recipe .bnr ul li img {
  opacity: 0.5;
}

#Cont > .top #recipe .bnr .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("../images/arrow01.svg") right 30px center #fff no-repeat;
  font-size: 20px;
  width: 300px;
  padding: 12px 0;
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .bnr .btn {
    font-size: 15px;
    width: 200px;
  }
}

#Cont > .top #recipe .bnr .btn::before {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .bnr .btn::before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }
}

#Cont > .top #recipe .ttl2 {
  font-size: 30px;
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .ttl2 {
    font-size: 22px;
  }
}

#Cont > .top #recipe .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .link {
    display: block;
  }
}

#Cont > .top #recipe .link dl {
  border-bottom: 1px solid #000;
  width: 32%;
  padding-bottom: 10px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .link dl {
    margin-bottom: 30px;
    width: auto;
  }
}

#Cont > .top #recipe .link dl:hover {
  opacity: 0.7;
}

#Cont > .top #recipe .link dl dt {
  margin-bottom: 10px;
}

#Cont > .top #recipe .link dl .img {
  position: absolute;
  bottom: 25px;
  right: 10px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  background: #eee;
  border: 10px solid #fff;
  width: 128px;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .link dl .img {
    border: 5px solid #fff;
    bottom: 50px;
    width: 27vw;
  }
  #Cont > .top #recipe .link dl .img img {
    width: 27vw;
    height: 27vw;
  }
}

#Cont > .top #recipe .link dl .txt {
  font-size: 16px;
  text-align: left;
}

@media screen and (max-width: 640px) {
  #Cont > .top #recipe .link dl .txt {
    font-size: 14px;
  }
}

#Cont > .top #recipe .link dl .txt::after {
  content: "";
  height: 10px;
  width: 16px;
  margin-left: 10px;
  background: url("../images/arrow01.svg") no-repeat;
  display: inline-block;
  vertical-align: middle;
}

#Cont > .top #about {
  background: #000;
  padding: 130px;
  margin-top: -50px;
  position: relative;
}

@media screen and (max-width: 640px) {
  #Cont > .top #about {
    padding: 100px 15px 50px;
  }
}

#Cont > .top #about::before, #Cont > .top #about::after {
  content: "";
  height: 105%;
  width: 100%;
  position: absolute;
  top: -5%;
  left: 0;
  background: no-repeat;
  background-size: cover;
}

#Cont > .top #about::before {
  background-image: url(../images/top/bk_about.jpg);
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 1s ease 0.5s;
  transition: opacity 1s ease 0.5s;
}

@media screen and (max-width: 640px) {
  #Cont > .top #about::before {
    background-image: url(../images/top/bk_about_sp.jpg);
  }
}

#Cont > .top #about::after {
  background-image: url(../images/top/bk_about2.jpg);
  z-index: 1;
  opacity: 0.5;
}

@media screen and (max-width: 640px) {
  #Cont > .top #about::after {
    background-image: url(../images/top/bk_about2_sp.jpg);
  }
}

#Cont > .top #about.inview::before {
  opacity: 1;
}

#Cont > .top #about.inview .box {
  opacity: 0;
}

#Cont > .top #about.inview .box .inner {
  opacity: 0;
}

#Cont > .top #about .box {
  position: relative;
  background: #fff;
  padding: 50px;
  opacity: 1;
  -webkit-transition: opacity 1s ease 1.5s;
  transition: opacity 1s ease 1.5s;
  z-index: 3;
}

@media screen and (max-width: 640px) {
  #Cont > .top #about .box {
    padding: 25px 5px;
  }
}

#Cont > .top #about .box::before {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 640px) {
  #Cont > .top #about .box::before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }
}

#Cont > .top #about .box .inner {
  opacity: 1;
  -webkit-transition: opacity 1s ease 2.5s;
  transition: opacity 1s ease 2.5s;
}

#Cont > .top #about .box .inner .ttl {
  font-size: 40px;
  line-height: 1.4;
}

@media screen and (max-width: 640px) {
  #Cont > .top #about .box .inner .ttl {
    font-size: 27px;
  }
}

#Cont > .top #about .box .inner .subttl {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 300;
  color: #666;
}

@media screen and (max-width: 640px) {
  #Cont > .top #about .box .inner .subttl {
    font-size: 17px;
  }
}

#Cont > .top #about .box .inner .txt01 {
  font-size: 20px;
  margin-bottom: 15px;
}

@media screen and (max-width: 640px) {
  #Cont > .top #about .box .inner .txt01 {
    font-size: 14px;
  }
}

#Cont > .top #about .box .inner .txt02 {
  font-size: 16px;
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  #Cont > .top #about .box .inner .txt02 {
    font-size: 14px;
    margin-bottom: 40px;
  }
}

#Cont > .top #about .box .inner .btn {
  text-align: center;
}

#Cont > .top #about .box .inner .btn a {
  display: inline-block;
  border: 1px solid #000;
  min-width: 240px;
  padding: 8px 0;
  font-size: 18px;
  position: relative;
}

@media screen and (max-width: 640px) {
  #Cont > .top #about .box .inner .btn a {
    font-size: 14px;
    min-width: 200px;
  }
}

#Cont > .top #about .box .inner .btn a:hover {
  text-decoration: none;
}

#Cont > .top #about .box .inner .btn a::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #000;
  display: block;
  position: absolute;
  top: 50%;
  right: -20px;
}

#Cont > .products {
  background: linear-gradient(to bottom, white 0px, white 500px, rgba(255, 255, 255, 0) 1500px), url(../images/products/bk_block.jpg) center center/cover no-repeat;
  position: relative;
}

@media screen and (max-width: 640px) {
  #Cont > .products {
    background: linear-gradient(to bottom, white 0px, white 300px, rgba(255, 255, 255, 0) 1000px), url(../images/products/bk_block.jpg) center center/cover no-repeat;
    padding-bottom: 50px;
  }
}

#Cont > .products::before, #Cont > .products::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}

#Cont > .products::before {
  background: url(../images/products/bk_plant01.png) no-repeat;
  height: 685px;
  width: 283px;
  left: 50%;
  margin-left: -683px;
}

@media screen and (min-width: 1366px) {
  #Cont > .products::before {
    margin-left: 0;
    left: 0;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .products::before {
    background: url(../images/products/bk_plant01_sp.png) no-repeat;
    background-size: contain;
    height: 147px;
    width: 111px;
    margin-left: 0;
    left: 0;
  }
}

#Cont > .products::after {
  background: url(../images/products/bk_plant02.png) no-repeat;
  height: 836px;
  width: 449px;
  right: 50%;
  margin-right: -683px;
}

@media screen and (min-width: 1366px) {
  #Cont > .products::after {
    margin-right: 0;
    right: 0;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .products::after {
    background: url(../images/products/bk_plant02_sp.png) no-repeat;
    background-size: contain;
    height: 347px;
    width: 174px;
    margin-right: 0;
    right: 0;
  }
}

#Cont > .products .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0.5%;
}

@media screen and (max-width: 640px) {
  #Cont > .products .list {
    padding: 0;
  }
}

#Cont > .products .list li {
  width: 33.33%;
  margin-bottom: 95px;
  cursor: pointer;
  position: relative;
}

@media screen and (max-width: 640px) {
  #Cont > .products .list li {
    width: 50%;
    margin-bottom: 60px;
    z-index: 2;
    padding: 0 2%;
  }
}

@media screen and (min-width: 641px) {
  #Cont > .products .list li:nth-child(3n+1) {
    z-index: 4;
  }
  #Cont > .products .list li:nth-child(3n+2) {
    -webkit-transform: translateX(-5%);
    transform: translateX(-5%);
    z-index: 3;
  }
  #Cont > .products .list li:nth-child(3n+3), #Cont > .products .list li:nth-child(13) {
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
    z-index: 2;
  }
  #Cont > .products .list li:nth-child(3n+3) img, #Cont > .products .list li:nth-child(13) img {
    position: relative;
    z-index: 2;
  }
  #Cont > .products .list li:nth-child(3n+3)::after, #Cont > .products .list li:nth-child(13)::after {
    content: "";
    width: 1098px;
    height: 100px;
    background: url(../images/bk_shelf.png) no-repeat center top;
    background-size: contain;
    display: block;
    position: absolute;
    bottom: -94px;
    right: -140px;
    z-index: 1;
  }
  #Cont > .products .list li:nth-child(13) {
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }
  #Cont > .products .list li:nth-child(13)::after {
    right: inherit;
    left: 0;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .products .list li:nth-child(odd) img {
    z-index: 2;
    position: relative;
  }
  #Cont > .products .list li:nth-child(odd)::after {
    content: "";
    width: 100vw;
    height: 100px;
    background: url(../images/bk_shelf_sp.png) no-repeat center top;
    background-size: contain;
    display: block;
    position: absolute;
    bottom: -90px;
    left: 0;
    z-index: 1;
  }
}

@media screen and (max-width: 1000px) {
  #Cont > .products .list li:nth-child(3n+3)::after, #Cont > .products .list li:nth-child(13)::after {
    width: 100vw;
    right: -10vw;
  }
}

@media screen and (max-width: 1000px) {
  #Cont > .products .list li:nth-child(13) {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

#Cont > .about {
  position: relative;
  padding-bottom: 20px;
  background: url(../images/about/bk_block.jpg) center center/cover no-repeat;
}

@media screen and (max-width: 640px) {
  #Cont > .about {
    padding-bottom: 10px;
  }
}

#Cont > .about::before, #Cont > .about::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 6;
  pointer-events: none;
}

#Cont > .about::before {
  background: url(../images/about/bk_plant01.png) no-repeat;
  width: 283px;
  height: 313px;
  left: 50%;
  margin-left: -683px;
}

@media screen and (min-width: 1366px) {
  #Cont > .about::before {
    margin-left: 0;
    left: 0;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .about::before {
    background: url(../images/about/bk_plant01_sp.png) no-repeat;
    background-size: contain;
    width: 142px;
    height: 113px;
    margin-left: 0;
    left: 0;
  }
}

#Cont > .about::after {
  background: url(../images/about/bk_plant02.png) no-repeat;
  width: 436px;
  height: 472px;
  right: 50%;
  margin-right: -683px;
}

@media screen and (min-width: 1366px) {
  #Cont > .about::after {
    margin-right: 0;
    right: 0;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .about::after {
    background: url(../images/about/bk_plant02_sp.png) no-repeat;
    background-size: contain;
    width: 123px;
    height: 243px;
    margin-right: 0;
    right: 0;
  }
}

#Cont > .about .box {
  padding-bottom: 140px;
  margin-bottom: 40px;
  position: relative;
}

@media screen and (max-width: 640px) {
  #Cont > .about .box {
    padding-bottom: 20vw;
  }
}

#Cont > .about .box::before {
  content: "";
  display: block;
  background: url(../images/bk_shelf.png) center bottom/contain no-repeat;
  height: 100px;
  width: 1098px;
  position: absolute;
  bottom: 0;
  left: -20px;
  z-index: 5;
  pointer-events: none;
}

@media screen and (max-width: 1000px) {
  #Cont > .about .box::before {
    width: 108vw;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .about .box::before {
    background: url(../images/bk_shelf_sp.png) center bottom/contain no-repeat;
    width: 100vw;
    left: -10px;
  }
}

#Cont > .about .box .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 20px;
}

@media screen and (max-width: 640px) {
  #Cont > .about .box .inner {
    display: block;
    padding-top: 0;
  }
}

#Cont > .about .box .inner .txt {
  font-size: 16px;
  width: 48%;
}

@media screen and (max-width: 640px) {
  #Cont > .about .box .inner .txt {
    width: auto;
    margin-bottom: 30px;
  }
}

#Cont > .about .box .inner .txt p {
  margin-bottom: 20px;
}

#Cont > .about .box .inner .txt p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {
  #Cont > .about .box .inner .txt p {
    font-size: 14px;
  }
}

#Cont > .about .box .inner .txt .note {
  font-size: 14px;
  margin-bottom: 10px;
  text-indent: -1.8em;
  padding-left: 1.8em;
  line-height: 1.3;
}

#Cont > .about .box .inner .img {
  width: 48%;
}

@media screen and (max-width: 640px) {
  #Cont > .about .box .inner .img {
    width: auto;
  }
}

#Cont > .about .box .inner .img img {
  border: 10px solid #fff;
  -webkit-box-shadow: 0 0 14px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 14px 0px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 640px) {
  #Cont > .about .box .inner .img img {
    margin: 0 auto;
    border: 5px solid #fff;
  }
}

#Cont > .about .box .inner .img.num2 .inner {
  min-height: 280px;
  position: relative;
}

@media screen and (max-width: 1000px) {
  #Cont > .about .box .inner .img.num2 .inner {
    min-height: 30vw;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .about .box .inner .img.num2 .inner {
    min-height: 50vw;
  }
}

#Cont > .about .box .inner .img.num2 .inner img {
  position: absolute;
  width: 55%;
}

#Cont > .about .box .inner .img.num2 .inner img:first-child {
  top: 0;
  left: 0;
  z-index: 2;
}

#Cont > .about .box .inner .img.num2 .inner img:last-child {
  bottom: 0;
  right: 0;
  z-index: 1;
}

#Cont > .about .box:nth-child(even) .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 640px) {
  #Cont > .about .box:nth-child(1) .inner .txt {
    padding-bottom: 40px;
  }
}

#Cont > .about .box:nth-child(1) .inner .txt p {
  position: relative;
}

#Cont > .about .box:nth-child(1) .inner .txt p::before {
  content: "";
  width: 55px;
  height: 44px;
  display: block;
  position: absolute;
  bottom: -50px;
  right: 10px;
  background: url(../images/about/icon01.png) center center/contain no-repeat;
}

@media screen and (max-width: 640px) {
  #Cont > .about .box:nth-child(2) .inner .txt {
    padding-bottom: 40px;
  }
}

#Cont > .about .box:nth-child(2) .inner .txt p {
  position: relative;
}

#Cont > .about .box:nth-child(2) .inner .txt p::before {
  content: "";
  width: 72px;
  height: 64px;
  display: block;
  position: absolute;
  top: -100px;
  left: 10px;
  background: url(../images/about/icon02.png) center center/contain no-repeat;
}

@media screen and (max-width: 1000px) {
  #Cont > .about .box:nth-child(2) .inner .txt p::before {
    width: 50px;
    top: -80px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .about .box:nth-child(2) .inner .txt p::before {
    width: 40px;
    top: -110px;
  }
}

#Cont > .about .box:nth-child(2) .inner .txt p::after {
  content: "";
  width: 110px;
  height: 66px;
  display: block;
  position: absolute;
  bottom: -100px;
  right: 10px;
  background: url(../images/about/icon03.png) center center/contain no-repeat;
}

@media screen and (max-width: 640px) {
  #Cont > .about .box:nth-child(2) .inner .txt p::after {
    width: 70px;
    bottom: -50px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .about .box:nth-child(3) .inner::before {
    content: "";
    width: 50px;
    height: 101px;
    display: block;
    position: absolute;
    bottom: 15vw;
    left: 0px;
    background: url(../images/about/icon04.png) center center/contain no-repeat;
  }
}

#Cont > .about .box:nth-child(3) .inner .txt {
  position: relative;
}

#Cont > .about .box:nth-child(3) .inner .txt::before {
  content: "";
  width: 97px;
  height: 101px;
  display: block;
  position: absolute;
  bottom: -50px;
  right: -120px;
  background: url(../images/about/icon04.png) center center/contain no-repeat;
}

@media screen and (max-width: 1000px) {
  #Cont > .about .box:nth-child(3) .inner .txt::before {
    right: -100px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .about .box:nth-child(3) .inner .txt::before {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .about .box:nth-child(3) .inner .img {
    margin-bottom: 20px;
  }
}

#Cont > .recipe {
  position: relative;
  padding-bottom: 50px;
  background: url(../images/recipe/bk_block.jpg) center top;
  background-size: 100% auto;
}

#Cont > .recipe::before, #Cont > .recipe::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 6;
  pointer-events: none;
}

#Cont > .recipe::before {
  background: url(../images/recipe/bk_plant01.png) no-repeat;
  width: 225px;
  height: 740px;
  left: 50%;
  margin-left: -683px;
}

@media screen and (min-width: 1366px) {
  #Cont > .recipe::before {
    margin-left: 0;
    left: 0;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .recipe::before {
    background: url(../images/recipe/bk_plant01_sp.png) no-repeat;
    background-size: contain;
    width: 142px;
    height: 113px;
    margin-left: 0;
    left: 0;
  }
}

#Cont > .recipe::after {
  background: url(../images/recipe/bk_plant02.png) no-repeat;
  width: 464px;
  height: 755px;
  right: 50%;
  margin-right: -683px;
}

@media screen and (min-width: 1366px) {
  #Cont > .recipe::after {
    margin-right: 0;
    right: 0;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .recipe::after {
    background: url(../images/recipe/bk_plant02_sp.png) no-repeat;
    background-size: contain;
    width: 123px;
    height: 243px;
    margin-right: 0;
    right: 0;
  }
}

#Cont > .recipe .topImg .txt {
  display: none;
}

#Cont > .recipe .recommend {
  padding-bottom: 50px;
}

#Cont > .recipe .recommend .inner > dl:nth-child(1) > dt .openClose {
  border-color: #fe7109;
}

#Cont > .recipe .recommend .inner > dl:nth-child(1) > dt .openClose::before, #Cont > .recipe .recommend .inner > dl:nth-child(1) > dt .openClose::after {
  background-color: #fe7109;
}

#Cont > .recipe .recommend .inner > dl:nth-child(1) > dd {
  display: none;
}

#Cont > .recipe .recommend .inner > dl:nth-child(1) > dd .cont .box {
  background: #FAF6EA;
}

#Cont > .recipe .recommend .inner > dl:nth-child(2) > dt .openClose {
  border-color: #442b74;
}

#Cont > .recipe .recommend .inner > dl:nth-child(2) > dt .openClose::before, #Cont > .recipe .recommend .inner > dl:nth-child(2) > dt .openClose::after {
  background-color: #442b74;
}

#Cont > .recipe .recommend .inner > dl:nth-child(2) > dd {
  display: none;
}

#Cont > .recipe .recommend .inner > dl:nth-child(2) > dd .cont .box {
  background: #f0eef6;
}

#Cont > .recipe .recommend .inner > dl:nth-child(3) > dt .openClose {
  border-color: #772f1e;
}

#Cont > .recipe .recommend .inner > dl:nth-child(3) > dt .openClose::before, #Cont > .recipe .recommend .inner > dl:nth-child(3) > dt .openClose::after {
  background-color: #772f1e;
}

#Cont > .recipe .recommend .inner > dl:nth-child(3) > dd {
  display: none;
}

#Cont > .recipe .recommend .inner > dl:nth-child(3) > dd .cont .box {
  background: #f7ece8;
}

#Cont > .recipe .recommend .inner > dl.active > dt .openClose::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#Cont > .recipe .recommend .inner > dl > dt {
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
  background: #FFF;
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .recommend .inner > dl > dt {
    margin-bottom: 15px;
  }
}

#Cont > .recipe .recommend .inner > dl > dt:hover img {
  opacity: 0.7;
}

#Cont > .recipe .recommend .inner > dl > dt img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#Cont > .recipe .recommend .inner > dl > dt .openClose {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 25px;
  border: 1px solid #fff;
  z-index: 1;
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .recommend .inner > dl > dt .openClose {
    width: 25px;
    height: 25px;
  }
}

#Cont > .recipe .recommend .inner > dl > dt .openClose::before, #Cont > .recipe .recommend .inner > dl > dt .openClose::after {
  content: "";
  display: block;
  position: absolute;
  background: #fff;
  width: 60%;
  height: 1px;
  top: 50%;
  left: 20%;
}

#Cont > .recipe .recommend .inner > dl > dt .openClose::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#Cont > .recipe .recommend .inner > dl > dd {
  display: none;
}

#Cont > .recipe .recommend .inner > dl > dd .cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .recommend .inner > dl > dd .cont {
    display: block;
  }
}

#Cont > .recipe .recommend .inner > dl > dd .cont .box {
  width: 48.5%;
  background: #FAF6EA;
  margin-bottom: 30px;
  padding: 10px 30px 10px;
}

@media screen and (max-width: 1000px) {
  #Cont > .recipe .recommend .inner > dl > dd .cont .box {
    padding: 10px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .recommend .inner > dl > dd .cont .box {
    padding: 10px 30px 10px;
    width: auto;
    margin-bottom: 15px;
  }
}

#Cont > .recipe .recommend .inner > dl > dd .cont .box .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

#Cont > .recipe .recommend .inner > dl > dd .cont .box .ttl .img {
  margin-left: -20px;
}

#Cont > .recipe .recommend .inner > dl > dd .cont .box .ttl .img img {
  border: 10px solid #fff;
  width: 130px;
  height: 130px;
  -webkit-box-shadow: 1px 5px 7px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 1px 5px 7px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: rotate(-13deg);
  transform: rotate(-13deg);
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .recommend .inner > dl > dd .cont .box .ttl .img img {
    width: 80px;
    height: 80px;
    border: 5px solid #fff;
  }
}

#Cont > .recipe .recommend .inner > dl > dd .cont .box .ttl .txt {
  font-weight: bold;
  font-size: 24px;
  padding-left: 20px;
  width: calc(100% - 130px);
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .recommend .inner > dl > dd .cont .box .ttl .txt {
    font-size: 17px;
  }
}

#Cont > .recipe .recommend .inner > dl > dd .cont .box ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #D2D2D2;
  padding: 6px 0;
  font-size: 16px;
}

#Cont > .recipe .recommend .inner > dl > dd .cont .box ul li:last-child {
  border-bottom: none;
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .recommend .inner > dl > dd .cont .box ul li {
    font-size: 14px;
  }
}

#Cont > .recipe .recommend .inner > dl > dd .noteTxt {
  margin-top: -20px;
  padding-bottom: 20px;
  text-align: right;
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .recommend .inner > dl > dd .noteTxt {
    margin-top: -10px;
    padding-bottom: 10px;
  }
}

#Cont > .recipe .other .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .other .inner {
    display: block;
  }
}

#Cont > .recipe .other .inner .box {
  width: 48.5%;
  background: rgba(229, 229, 229, 0.8);
  margin-bottom: 30px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 20px;
}

@media screen and (max-width: 1000px) {
  #Cont > .recipe .other .inner .box {
    padding: 10px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .other .inner .box {
    padding: 10px 20px;
    width: auto;
  }
}

#Cont > .recipe .other .inner .box > .img {
  width: 106px;
}

@media screen and (max-width: 1000px) {
  #Cont > .recipe .other .inner .box > .img {
    width: 80px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .other .inner .box > .img {
    width: 65px;
  }
}

#Cont > .recipe .other .inner .box ul {
  padding-top: 10px;
  width: calc(100% - 106px);
}

@media screen and (max-width: 1000px) {
  #Cont > .recipe .other .inner .box ul {
    width: calc(100% - 80px);
  }
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .other .inner .box ul {
    width: calc(100% - 65px);
  }
}

#Cont > .recipe .other .inner .box ul li {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 30px;
}

@media screen and (max-width: 1000px) {
  #Cont > .recipe .other .inner .box ul li {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .other .inner .box ul li {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

#Cont > .recipe .other .inner .box ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #A2863D;
  padding: 5px 20px;
  height: 100px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
  #Cont > .recipe .other .inner .box ul li a {
    height: 80px;
    padding: 5px 40px 5px 5px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .other .inner .box ul li a {
    height: 100px;
    min-height: 70px;
    padding: 5px 100px 5px 20px;
  }
}

@media screen and (max-width: 500px) {
  #Cont > .recipe .other .inner .box ul li a {
    padding: 5px 100px 5px 10px;
  }
}

#Cont > .recipe .other .inner .box ul li a:hover {
  text-decoration: none;
  opacity: 1;
  background: #A2863D;
  color: #fff;
}

#Cont > .recipe .other .inner .box ul li a:hover img {
  opacity: 1 !important;
}

#Cont > .recipe .other .inner .box ul li a:hover .txt::after {
  background-color: #755b18;
}

#Cont > .recipe .other .inner .box ul li a .txt::after {
  content: "";
  height: 20px;
  width: 20px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAICAYAAADaxo44AAAANUlEQVQYV2NkYGBg+P//fwOIZmRkBNNgNlSwHspvhEkyIulAkQRLYJXEK4HNHvyWw+xAdi4A6iMlA3hESjUAAAAASUVORK5CYII=) no-repeat center center #A2863D;
  display: inline-block;
  margin-left: 10px;
  border-radius: 10px;
  vertical-align: middle;
  margin-top: -5px;
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .other .inner .box ul li a .txt::after {
    position: absolute;
    top: 45%;
    right: 75px;
  }
}

#Cont > .recipe .other .inner .box ul li a .img {
  border: 5px solid #fff;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 1000px) {
  #Cont > .recipe .other .inner .box ul li a .img {
    right: -20px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .other .inner .box ul li a .img {
    right: 0;
    border: 3px solid #fff;
  }
}

#Cont > .recipe .other .inner .box ul li a .img img {
  width: 80px;
  height: 80px;
}

@media screen and (max-width: 1000px) {
  #Cont > .recipe .other .inner .box ul li a .img img {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 640px) {
  #Cont > .recipe .other .inner .box ul li a .img img {
    width: 60px;
    height: 60px;
  }
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-image-holder .mfp-close span, .mfp-iframe-holder .mfp-close span {
  opacity: 0;
}

.mfp-image-holder .mfp-close::before, .mfp-image-holder .mfp-close::after, .mfp-iframe-holder .mfp-close::before, .mfp-iframe-holder .mfp-close::after {
  content: "";
  height: 30px;
  width: 2px;
  background: #000;
  display: block;
  position: absolute;
  top: 50px;
  right: 40px;
}

@media screen and (max-width: 640px) {
  .mfp-image-holder .mfp-close::before, .mfp-image-holder .mfp-close::after, .mfp-iframe-holder .mfp-close::before, .mfp-iframe-holder .mfp-close::after {
    width: 2px;
    height: 20px;
    background: #FFF;
    top: 15px;
    right: 20px;
  }
}

.mfp-image-holder .mfp-close::before, .mfp-iframe-holder .mfp-close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mfp-image-holder .mfp-close::after, .mfp-iframe-holder .mfp-close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
