@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap");
body {
  line-height: 2;
  color: #5c4c2a;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  margin: 0;
}

p,
ol,
ul,
dl,
table {
  margin-bottom: 1.5em;
}

ol {
  padding: 0;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child,
ol:first-child,
ul:first-child,
dl:first-child,
table:first-child {
  margin-top: 0;
}

ol:last-child,
ul:last-child,
dl:last-child,
table:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a img {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

li {
  list-style: none;
}

.sp-link {
  cursor: auto;
}

.sec-wrap {
  position: relative;
  background: #fdf5e5;
  padding: 220px 16px;
}
.sec-wrap::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 120px);
  right: 0;
  left: 0;
  height: 120px;
  background-image: url(../image/bg-top.svg);
  background-size: cover;
  background-position: 50% 0;
}
.sec-wrap::after {
  content: "";
  position: absolute;
  top: calc(100% - 120px);
  right: 0;
  left: 0;
  height: 120px;
  background-image: url(../image/bg-bottom.svg);
  background-size: cover;
  background-position: 50% 0;
}

.sec-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sec-ttl-box {
  text-align: center;
  margin: 0 0 56px;
}
.sec-ttl {
  margin: 0 0 20px;
}
.sec-ttl span {
  display: block;
  line-height: 1;
}

.sec-catch {
  font-size: 18px;
  color: #d65b0f;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0 0 56px;
}

.btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #fff;
  border-radius: 9999px;
  border: 1px solid #d65b0f;
  background: #d65b0f;
  padding: 13px 48px;
}
.btn a[href$=".pdf"]::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../image/icon-download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
  transform: translateY(-50%);
  transition: 0.3s;
}
.btn a span {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background: #a5460c;
  transform: translateY(-50%);
}
.btn a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -1px;
}

.btn a.coming-soon {
  pointer-events: none;
  color: #fff;
  border: 1px solid #E6E6E6;
  background: #E6E6E6;
}
.btn a.coming-soon span {
  background: #CCCCCC;
}

@media screen and (min-width: 897px) {
  .sp-only {
    display: none !important;
  }
  .btn a:hover {
    color: #d65b0f;
    background: #fff;
  }
  .btn a[href$=".pdf"]:hover::before {
    filter: none;
  }
}

@media screen and (max-width: 896px) {
  .pc-only {
    display: none !important;
  }
  .sec-wrap {
    padding: 80px 16px;
  }
  .sec-wrap::before {
    bottom: calc(100% - 28px);
    height: 28px;
  }
  .sec-wrap::after {
    top: calc(100% - 28px);
    height: 28px;
  }
  .sec-ttl-box {
    margin: 0 0 32px;
  }
  .sec-catch {
    text-align: left;
    margin: 0 0 40px;
  }
}

/* header
--------------------------------------*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding: 0 80px;
}
.logo a {
  display: inline-block;
}
.header-nav {
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background: #fff;
  padding: 0 32px;
}
.header-nav-li {
  display: flex;
  padding: 0;
}
.header-nav-item + .header-nav-item {
  margin: 0 0 0 32px;
}
.header-nav-item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  font-weight: 500;
  color: #5c4c2a;
}
.header-nav-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d65b0f;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s;
}

@media screen and (min-width: 896px) {
  .logo a:hover {
    opacity: 0.7;
  }
  .header-nav-item a:hover {
    color: #d65b0f;
  }
  .header-nav-item a:hover::before {
    transform: scale(1, 1);
  }
}

@media screen and (max-width: 1200px) {
  .header-inner {
    padding: 0 24px;
  }
  .logo img {
    width: 220px;
  }
  .header-nav-item + .header-nav-item {
    margin: 0 0 0 16px;
  }
}

@media screen and (max-width: 896px) {
  .header {
    top: 8px;
  }
  .header-inner {
    height: 56px;
    padding: 0 16px;
  }
  .logo img {
    width: 167px;
    vertical-align: middle;
  }
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    border-radius: 0;
    background: rgb(253, 245, 229);
    background: linear-gradient(180deg, rgba(253, 245, 229, 1) 0%, rgba(255, 230, 186, 1) 100%);
    padding: 106px 16px 160px;
  }
  .header-nav.is-open {
    right: 0;
  }
  .header-nav-li {
    flex-direction: column;
  }
  .header-nav-item + .header-nav-item {
    margin: 16px 0 0;
  }
  .menu-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    color: #d65b0f;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
    background: #fff;
    cursor: pointer;
    z-index: 300;
  }
  .menu-btn-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    top: 14px;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translateX(-50%);
  }
  .menu-btn-icon span {
    display: block;
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: #d65b0f;
    transition: 0.3s;
  }
  .menu-btn-icon .left-top {
    top: 0;
    left: 0;
  }
  .menu-btn-icon .right-top {
    top: 0;
    right: 0;
  }
  .menu-btn-icon .left-bottom {
    bottom: 0;
    left: 0;
  }
  .menu-btn-icon .right-bottom {
    right: 0;
    bottom: 0;
  }
  .menu-btn.is-open .left-top {
    opacity: 0;
  }
  .menu-btn.is-open .right-bottom {
    opacity: 0;
  }
  .menu-btn.is-open .right-top {
    width: 23px;
    height: 3px;
    border-radius: 3px;
    transform: translateY(3px) rotate(-45deg);
    left: -4px;
  }
  .menu-btn.is-open .left-bottom {
    width: 23px;
    height: 3px;
    border-radius: 3px;
    transform: translateY(-8px) rotate(45deg);
    left: -4px;
  }
  .menu-btn-label {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    text-align: center;
  }
}

/* kv
--------------------------------------*/
.kv-img img {
  width: 100%;
}

/* about
--------------------------------------*/
.about {
  position: relative;
  padding: 40px 16px 80px;
}
.about .sec-ttl-box {
  margin-bottom: 24px;
}
.about .sec-ttl span[lang="en"] {
  margin: 0 0 8px;
}
.about-detail {
  display: flex;
  gap: 40px;
  border: 2px solid #d65b0f;
  border-radius: 10px;
  padding: 40px;
}
.about-detail h3 {
  flex: 0 0 220px;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 500;
  color: #d65b0f;
}
.about-detail p {
  margin: 0;
}

@media screen and (max-width: 896px) {
  .about {
    padding: 40px 16px;
  }
  .about-img-sp {
    text-align: center;
    margin: 0 0 24px;
  }
  .about-img-sp-main {
    position: relative;
  }
  .about-img-sp-main::before {
    content: "";
    position: absolute;
    top: 20.37%;
    left: 6.67%;
    width: 144px;
    height: 144px;
    border-radius: 100%;
    background: #ffe1a5;
    filter: blur(50px);
    z-index: -5;
  }
  .about-img-sp-main::after {
    content: "";
    position: absolute;
    right: 2%;
    bottom: 7.41%;
    width: 180px;
    height: 180px;
    border-radius: 100%;
    background: #ffe971;
    filter: blur(50px);
    opacity: 0.5;
    z-index: -5;
  }
  .about-img-sp-main > img {
    width: 100%;
  }
  .about-img-sp ol li {
    position: relative;
    display: inline-block;
  }
  .about-img-sp ol li + li {
    margin: 16px 0 0;
  }
  .about-img-sp ol li:last-of-type {
    position: relative;
  }
  .about-img-sp ol li:last-of-type::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 92px;
    height: 92px;
    border-radius: 100%;
    background: #fffbeb;
    filter: blur(15px);
    z-index: 1;
  }
  .about-img-sp ol li span {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
  }
  .about-detail {
    display: block;
    padding: 16px;
  }
  .about-detail h3 {
    font-size: 20px;
    margin: 0 0 4px;
  }
}

@media screen and (max-width: 375px) {
  .about-img-sp ol li:last-of-type::before {
    width: 24.53vw;
    height: 24.53vw;
  }
  .about-img-sp ol li span img {
    width: 53.87vw;
  }
}

/* lineup
--------------------------------------*/
.lineup {
  position: relative;
  background: #fdf5e5;
  padding: 220px 16px;
}
.lineup::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 120px);
  right: 0;
  left: 0;
  height: 120px;
  background-image: url(../image/bg-top.svg);
  background-size: cover;
  background-position: 50% 0;
}
.lineup::after {
  content: "";
  position: absolute;
  top: calc(100% - 120px);
  right: 0;
  left: 0;
  height: 120px;
  background-image: url(../image/bg-bottom.svg);
  background-size: cover;
  background-position: 50% 0;
}
.lineup .sec-ttl span[lang="en"] {
  margin: 0 0 8px;
}
.lineup-li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 48px;
}
.lineup-item {
  position: relative;
  width: 46.36%;
}
.lineup-item:nth-of-type(n + 3) {
  margin: 80px 0 0;
}
.lineup-item-img {
  text-align: center;
}
.lineup-item-img > span {
  position: relative;
  display: inline-block;
}
.lineup-item-icon {
  position: absolute;
  top: -22px;
  left: -72px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 100%;
  background: #f7d547;
  z-index: 1;
}
.lineup-item-icon2 {
  position: absolute;
  top: 82px;
  left: -72px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  border-radius: 100%;
  background: #E9E9E9;
  z-index: 1;
}
.lineup-item-icon-New {
  position: absolute;
  top: 30px;
  right: -62px;
  width: 110px;
  height: auto;
  z-index: 6;
}
.lineup-item-icon-New img{
  width: 100%;
  height: auto;
}

.lineup-item-img img {
  position: relative;
  z-index: 5;
}
.lineup-item-detail {
  border-radius: 10px;
  background: #fff;
  padding: 98px 40px 40px;
  margin: -80px 0 0;
}
.lineup-item-detail.line {
  border: 2px solid #D92828;
}

.lineup-item-detail .head {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
}
.lineup-item-detail .category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  border-radius: 9999px;
  background: #5c4c2a;
  padding: 2px 32px;
  margin: 0 24px 0 0;
}
.lineup-item-detail .price {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #d65b0f;
}
.lineup-item-detail .price span {
  display: inline-block;
  font-size: 18px;
}
.product-txt {
  font-weight: 500;
  margin: 0 0 32px;
  min-height: 64px;
}
.product-detail h4 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 9999px;
  background: #faf8f5;
  padding: 2px 16px;
  margin: 0 0 8px;
}
.product-detail p {
  font-size: 14px;
  text-align: right;
  margin: 0 0 16px;
}
.product-detail .product-detail-li {
  padding: 0;
  margin: 0 0 24px;
}
.product-detail-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 0 0 10px;
}
.product-detail-item + .product-detail-item {
  margin: 10px 0 0;
}
.lineup-item .btn {
  max-width: 320px;
  margin: 0 auto;
}
.product-attention {
  text-align: right;
  margin: 18px 0 0;
  font-size: 14px;
}
.product-catalog {
  position: relative;
  background: #fff;
  padding: 40px 502px 56px 40px;
}
.product-catalog-img {
  position: absolute;
  top: 50%;
  right: 56px;
  transform: translateY(-50%);
}
.product-catalog-img img {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.16));
}
.product-catalog-data h3 {
  font-size: 18px;
  font-weight: 500;
  color: #d65b0f;
  margin: 0 0 16px;
}
.product-catalog-data h3 span {
  display: block;
  font-size: 24px;
}
.product-catalog-data p {
  margin: 0 0 32px;
}
.product-catalog .btn {
  max-width: 320px;
}

@media screen and (max-width: 896px) {
  .lineup {
    padding: 100px 16px;
  }
  .lineup::before {
    bottom: calc(100% - 46px);
    height: 46px;
  }
  .lineup::after {
    top: calc(100% - 46px);
    height: 46px;
  }
  .lineup .sec-catch {
    margin: 0 0 40px;
  }
  .lineup-li {
    display: block;
  }
  .lineup-item {
    width: auto;
  }
  .lineup-item + .lineup-item {
    margin: 24px 0 0;
  }
  .lineup-item:nth-of-type(n + 3) {
    margin: 24px 0 0;
  }
  .lineup-item-img {
    padding: 64px 0 0;
  }
  .lineup-item-icon {
    top: -64px;
    left: 28%;
    transform: translateX(-50%);
  }
  .lineup-item-icon2 {
    top: -64px;
    left: 75%;
    transform: translateX(-50%);
  }
  .lineup-item-detail {
    padding: 98px 16px 24px;
  }
  .lineup-item-detail .head {
    margin: 0 0 8px;
  }
  .lineup-item-detail .category {
    font-size: 14px;
    text-align: center;
    padding: 2px 16px;
    margin: 0 16px 0 0;
  }
  .lineup-item-detail .price span {
    font-size: 14px;
  }
  .product-txt {
    margin: 0 0 24px;
    min-height: auto;
  }
  .product-attention {
    margin: 0 0 24px;
  }
  .product-catalog {
    background: none;
    padding: 0;
  }
  .product-catalog-img {
    position: static;
    width: 83.87%;
    transform: none;
    margin: 0 auto;
  }
  .product-catalog-img img {
    width: 100%;
  }
  .product-catalog-data {
    border-radius: 10px;
    background: #fff;
    padding: 38px 16px 24px;
    margin: -24px 0 0;
  }
  .product-catalog-data p {
    margin: 0 0 16px;
  }
  .product-catalog .btn {
    margin: 0 auto;
  }
  .lineup-li .slick-prev,
  .lineup-li .slick-next {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background: #d65b0f;
    transform: none;
    z-index: 5;
  }
  .lineup-li .slick-prev {
    left: 24px;
  }
  .lineup-li .slick-prev::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    margin-left: 2px;
    opacity: 1;
  }
  .lineup-li .slick-next {
    right: 24px;
  }
  .lineup-li .slick-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    margin-left: -2px;
    opacity: 1;
  }
  .lineup-li .slick-next:focus,
  .lineup-li .slick-next:hover,
  .lineup-li .slick-prev:focus,
  .lineup-li .slick-prev:hover {
    background: #d65b0f;
  }
}

/* feature
--------------------------------------*/
.feature {
  padding: 0 16px 80px;
}
.feature-li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 80px;
}
.feature-item {
  width: 46.36%;
}
.feature-item:nth-of-type(n + 3) {
  margin: 80px 0 0;
}
.feature-item-ttl {
  position: relative;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 500;
  color: #d65b0f;
  text-align: center;
  letter-spacing: 0.08em;
  padding: 0 0 16px;
  margin: 0 0 24px;
}
.feature-item-ttl::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background-image: url(../image/feature-dots.svg);
  background-repeat: repeat-x;
}
.feature-item-img {
  text-align: center;
  margin: 0 0 24px;
}
.feature-other-ttl {
  font-size: 24px;
  font-weight: 400;
  color: #d65b0f;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 40px;
}
.feature-other-li {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 16px;
}
.feature-other-item {
  width: 22.27%;
}
.feature-other-img {
  position: relative;
  text-align: center;
}
.feature-other-img div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 5;
}
.feature-other-img h4 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-radius: 9999px;
  background: #5c4c2a;
  padding: 2px 24px;
}
.feature-attention {
  font-size: 14px;
  margin: 0;
}

@media screen and (max-width: 896px) {
  .feature {
    padding: 16px 16px 0;
    margin: 0 0 40px;
  }
  .feature-li {
    display: block;
  }
  .feature-item {
    width: auto;
  }
  .feature-item + .feature-item {
    margin: 40px 0 0;
  }
  .feature-item-ttl {
    font-size: 22px;
  }
  .feature-other-li {
    flex-wrap: wrap;
  }
  .feature-other-item {
    width: 47.52%;
  }
  .feature-other-item:nth-of-type(n + 3) {
    margin: 16px 0 0;
  }
  .feature-other-img h4 {
    display: flex;
    font-size: 12px;
    padding: 2px 8px;
  }
}

/* how to make
--------------------------------------*/
.howToMake {
  margin: 0 0 100px;
}
.howToMake .sec-ttl span[lang="en"] {
  margin: 0 0 -4px;
}
.howToMake-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
}
.howToMake-movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 896px) {
  .howToMake {
    margin: 0 0 40px;
  }
}

/* how to enjoy
--------------------------------------*/
.howToEnjoy .sec-inner {
  border-radius: 10px;
  background: #fff;
  padding: 80px;
}
.howToEnjoy-about {
  display: flex;
  margin: 0 0 56px;
}
.howToEnjoy-about-img {
  flex: 0 0 245px;
  margin: 0 48px 0 0;
}
.howToEnjoy-about-data {
  flex: 1;
}
.howToEnjoy-about-data h3 {
  position: relative;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0 0 16px;
  margin: 0 0 24px;
}
.howToEnjoy-about-data h3::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background-image: url(../image/feature-dots.svg);
  background-repeat: repeat-x;
}
.howToEnjoy-about-data p {
  margin: 0;
}
.recipe-sec-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  border-radius: 9999px;
  background: #5c4c2a;
  padding: 4px 16px;
  margin: 0 0 72px;
}
.recipe-slide-item {
  position: relative;
}
.recipe-num {
  position: absolute;
  top: 13px;
  left: 40px;
  font-family: adobe-handwriting-ernie, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 56px;
  color: #d65b0f;
  line-height: 1;
  z-index: 5;
}
.recipe-bubble {
  position: relative;
  text-align: right;
  z-index: 5;
}
.recipe-bubble a {
  display: inline-block;
  margin-right: 24px;
}
.recipe-bubble img {
  display: inline-block;
}
.slide-data {
  position: relative;
  border: 2px solid #d65b0f;
  border-radius: 10px;
  background: #faf8f5;
  padding: 40px;
  margin: -40px 0 0;
}
.recipe-slide-item .main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.recipe-slide-item .img {
  width: 48.84%;
}
.recipe-slide-item .img img {
  width: 100%;
  border-radius: 10px;
}
.recipe-slide-item .data {
  width: 47.67%;
}
.recipe-slide-item .data h4 {
  position: relative;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-weight: 500;
  padding: 0 0 16px;
}
.recipe-slide-item .data h4::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background-image: url(../image/feature-dots.svg);
  background-repeat: repeat-x;
}
.slide-data-wrap {
  margin: 24px 0 0;
}
.recipe-slide-item .data dl {
  margin: 0;
}
.recipe-slide-item .data dl + dl {
  margin: 24px 0 0;
}
.recipe-slide-item .data dl dt {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #d65b0f;
  line-height: 1.3;
  border: 1px solid #d65b0f;
  border-radius: 9999px;
  padding: 2px 16px;
  margin: 0 0 16px;
}
.recipe-slide-item .data dl dd {
  margin: 0;
}
.recipe-slide-item .data dl ul {
  padding: 0;
}
.recipe-slide-item .data dl ul li {
  position: relative;
  padding: 0 0 0 16px;
}
.recipe-slide-item .data dl ul li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #5c4c2a;
}
.recipe-slide-item .data dl ol li {
  list-style: decimal;
  list-style-position: inside;
  padding-left: 1em;
  text-indent: -1em;
}
.recipe-voice {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background: #fff;
  padding: 24px 40px;
  flex: 1 1 100%;
  margin: 40px 0 0;
}
.data .recipe-voice {
  display: none;
}
.recipe-voice h5 {
  position: absolute;
  top: -12px;
  left: 40px;
  z-index: 5;
}
.recipe-voice h5 span {
  display: inline-block;
  font-weight: 500;
  color: #d65b0f;
  border: 1px solid #d65b0f;
  border-radius: 9999px;
  background: #fff;
  padding: 0 16px;
}
.recipe-voice .icon {
  flex: 0 0 80px;
  margin: 0 24px 0 0;
}
.recipe-voice p {
  flex: 1;
  margin: 0;
}
.recipe-slide .slick-list {
  margin: 0 -20px;
}
.recipe-slide.slick-initialized .slick-slide {
  margin: 0 20px;
}
.kv-slide-function {
  margin: 32px 0 0;
}
.slick-num {
  text-align: center;
}
.recipe-slide .arrows {
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 0;
  width: 120px;
  height: 32px;
}
.recipe-slide .slick-prev,
.recipe-slide .slick-next {
  top: 40%;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: #d65b0f;
  transform: none;
  z-index: 5;
}
.recipe-slide .slick-prev {
  left: -15px;
}
.recipe-slide .slick-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: 2px;
  opacity: 1;
}
.recipe-slide .slick-next {
  right: -15px;
}
.recipe-slide .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -2px;
  opacity: 1;
}
.recipe-slide .slick-next:focus,
.recipe-slide .slick-next:hover,
.recipe-slide .slick-prev:focus,
.recipe-slide .slick-prev:hover {
  background: #d65b0f;
}

@media screen and (min-width: 897px) {
  .recipe-bubble a:hover {
    opacity: 0.8;
  }
}

@media screen and (max-width: 896px) {
  .howToEnjoy .sec-inner {
    padding: 40px 16px 16px;
  }
  .howToEnjoy-about {
    display: block;
    margin: 0 0 24px;
  }
  .howToEnjoy-about-img {
    text-align: center;
    margin: 0 0 16px;
  }
  .howToEnjoy-about-data h3 {
    font-size: 22px;
  }
  .recipe-sec-ttl {
    font-size: 20px;
    padding: 4px 16px;
    margin: 0 0 12px;
  }
  .recipe-slide .slick-list {
    margin: 0;
  }
  .recipe-slide .slick-slider {
    margin: 0 -12px;
  }
  .recipe-slide.slick-initialized .slick-slide {
    margin: 0 12px;
  }
  .recipe-slide .slick-prev,
  .recipe-slide .slick-next {
    top: 54vw;
  }
  .recipe-slide .slick-prev {
    left: -4px;
  }
  .recipe-slide .slick-next {
    right: -4px;
  }
  .recipe-num {
    position: relative;
    top: 20px;
    left: auto;
    display: block;
    text-align: center;
  }
  .recipe-bubble {
    display: none;
  }
  .recipe-bubble-sp {
    text-align: center;
    margin: 0 0 8px;
  }
  .slide-data {
    margin: 0;
  }
  .slide-data {
    padding: 24px 16px;
    margin: 0;
  }
  .recipe-slide-item .main {
    display: block;
  }
  .recipe-slide-item .img {
    width: auto;
    margin: 0 0 20px;
  }
  .recipe-slide-item .data {
    width: auto;
  }
  .recipe-slide-item .data h4 {
    font-size: 20px;
  }
  .recipe-slide-item .data h4 span {
    position: relative;
    display: block;
  }
  .recipe-slide-item .data h4 span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 12px;
    height: 2px;
    background: #5c4c2a;
    transform: translateY(-50%);
  }
  .recipe-slide-item .data h4 span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 21px;
    width: 2px;
    height: 12px;
    background: #5c4c2a;
    transform: translateY(-50%);
  }
  .recipe-slide-item .data h4.is-open span::after {
    content: none;
  }
  .recipe-slide-item .data dl dt {
    margin: 0 0 8px;
  }
  .recipe-voice {
    display: none;
    padding: 24px;
    margin: 24px 0 0;
  }
  .data .recipe-voice {
    display: block;
  }
  .recipe-voice h5 {
    right: 16px;
    left: 16px;
  }
  .recipe-voice h5 span {
    display: block;
    text-align: center;
  }
  .recipe-voice .icon {
    margin: 0 0 10px;
  }
  .recipe-voice .icon img {
    margin: 0 auto;
  }
  .kv-slide-function {
    margin: 16px 0 0;
  }
}

/* banner
--------------------------------------*/
.banner {
  padding: 64px 16px 100px;
}
.banner a {
  display: inline-block;
}

@media screen and (min-width: 897px) {
  .banner a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 896px) {
  .banner {
    text-align: center;
    padding: 40px 16px;
  }
}

/* footer
--------------------------------------*/
.footer-main {
  background: #fdeed1;
  padding: 0 16px;
}
.footer-main-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 56px 0;
}
.footer-logo {
  margin: 0 0 32px;
}
.footer address {
  font-size: 16px;
  font-style: normal;
  color: #5c4c2a;
  line-height: 1.6;
}
.footer-btn {
  margin: 0 0 24px;
}
.footer-btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 226px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: 1px solid #d65b0f;
  border-radius: 9999px;
  background: #d65b0f;
  padding: 4px 40px;
}
.footer-btn a span {
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #d65b0f;
  transform: translateY(-50%);
  transition: 0.3s;
}
.footer-btn a span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: -1px;
  transition: 0.3s;
}
.sns-item a {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: #5c4c2a;
}
.sns-item a img {
  margin: 0 0 0 16px;
}
.footer-bottom {
  background: #fff;
  padding: 24px 16px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom-nav {
  display: flex;
  padding: 0;
  margin: 0;
}
.footer-bottom-nav-item + .footer-bottom-nav-item {
  margin: 0 0 0 24px;
}
.footer-bottom-nav-item a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #5c4c2a;
}
.footer-bottom-nav-item a span {
  background: linear-gradient(#5c4c2a, #5c4c2a) 0 100%/0 1px no-repeat;
  transition: background 0.3s;
}
.copyright {
  font-size: 14px;
  text-align: center;
  margin: 0;
}

@media screen and (min-width: 897px) {
  .footer-btn a:hover {
    color: #d65b0f;
    background: #fff;
  }
  .footer-btn a:hover span {
    background: #fff;
  }
  .footer-btn a:hover span::before {
    border-color: #d65b0f;
  }
  .sns-item a:hover {
    opacity: 0.7;
  }
  .footer-bottom-nav-item a:hover span {
    background-size: 100% 1px;
  }
}

@media screen and (max-width: 896px) {
  .footer-main-box {
    display: block;
  }
  .footer-main-data {
    text-align: center;
    margin: 0 0 24px;
  }
  .footer-logo {
    margin: 0 0 24px;
  }
  .footer address {
    font-size: 14px;
  }
  .footer-btn a {
    display: flex;
    min-width: inherit;
  }
  .sns-item {
    text-align: center;
  }
  .footer-bottom {
    padding: 16px;
  }
  .footer-bottom-inner {
    flex-direction: column;
  }
  .footer-bottom-nav {
    flex-direction: column;
    align-items: center;
    margin: 0 0 8px;
  }
  .footer-bottom-nav-item + .footer-bottom-nav-item {
    margin: 4px 0 0;
  }
}

.banner-block {
  margin: 0 0 80px;
}
.banner-block a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 896px) {
  .banner-block {
    margin: 0 0 40px;
  }
}


.feature-graph05 {
    margin: 0 0 80px;
}
@media screen and (max-width: 896px) {
  .feature-graph05 {
    margin: 0 0 40px;
  }
}
