@charset "UTF-8";
/* RESPONSIVE BOTH---------------------------------------------------- */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, main, section, summary, time, mark, audio, video {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 1.9rem;
  line-height: 3.8rem;
  letter-spacing: 0.022em;
  color: #000;
}
/* clearfix */
.clearfix {
  display: inline-block;
  min-height: 1%;
  /* for IE 7 and MacIE5.5*/
  width: 100%;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}
a:focus, input:focus, select:focus, textarea:focus {
  outline: 0;
}
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: #ea3d15;
  text-align: center;
  color: #fff;
}
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  width: 260px;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
header .navigation {
  background: #ea3d15;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
header .navigation-recipe {
  background: #ea3d15;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
header .navigation-recipe .inner {
  padding: 15px 20px;
}
@media screen and (max-width: 768px) {
  header .navigation-recipe .inner {
    width: 80%;
    padding: 8px 0 12px 20px;
  }
}
header .navigation-recipe .inner p {
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .navigation-recipe .inner p {
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: #fff;
  }
}
#nav-toggle {
  position: fixed;
  top: 10px;
  right: 25px;
  height: 32px;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 36px;
}
#nav-toggle span {
  width: 100%;
  height: 3px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out, top .5s ease;
  transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 14px;
}
#nav-toggle span:nth-child(3) {
  top: 28px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 4px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 23px;
}
.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* z-index */
#nav-toggle {
  z-index: 1000;
}
#container {
  z-index: 900;
}
#gloval-nav {
  background: #ea3d15;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.6rem;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}
#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  transition: color .6s ease;
}
#gloval-nav a:hover {
  color: #aa2a0c;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  transition: opacity .2s ease, -webkit-transform .6s ease;
  transition: transform .6s ease, opacity .2s ease;
  transition: transform .6s ease, opacity .2s ease, -webkit-transform .6s ease;
  border-bottom: solid 1px #fff;
  padding: 5px 0;
}
#gloval-nav ul li:nth-child(2) {
  transition-delay: .15s;
}
#gloval-nav ul li:nth-child(3) {
  transition-delay: .3s;
}
#gloval-nav ul li:nth-child(4) {
  transition-delay: .45s;
}
#gloval-nav ul li:nth-child(5) {
  transition-delay: .6s;
}
#gloval-nav ul li:nth-child(6) {
  transition-delay: .75s;
}
#gloval-nav ul li:nth-child(7) {
  transition-delay: .9s;
}
@media screen and (max-width: 768px) {
  #gloval-nav ul li {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}
.box-btn-regist-menu {
  width: 207px;
  position: relative;
  margin: 30px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .box-btn-regist-menu {
    width: 70%;
    position: relative;
    margin: 20px auto 0 auto;
  }
}
ul#btn-top li {
  margin: 0 auto;
  list-style-type: none;
  border-bottom: none;
}
ul#btn-top li img {
  width: 130px;
}
@media screen and (max-width: 768px) {
  ul#btn-top li img {
    width: 40%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .box-btn-regist-menu ul#btn-regist {
    width: 90%;
    margin: 0 auto;
  }
}
.box-btn-regist-menu ul#btn-regist li {
  margin: 0 auto;
  list-style-type: none;
  border-bottom: none;
}
.box-btn-regist-menu ul#btn-regist li a {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .box-btn-regist-menu ul#btn-regist li a {
    width: 88%;
  }
}
.box-btn-regist-menu ul#btn-regist li a {
  color: #ea3d15 !important;
  font-weight: bold;
  font-size: 2.6rem;
  text-decoration: none;
  background: #fff;
  display: block;
  border-radius: 40px;
  background-image: url("../img/arrow-r.png");
  background-position: center left 2.6rem;
  background-repeat: no-repeat;
  background-size: 2.6rem auto;
  padding: 20px 0px 20px 26px;
  line-height: 2.6rem;
  cursor: pointer;
  transition: none;
}
@media screen and (max-width: 768px) {
  .box-btn-regist-menu ul#btn-regist li a {
    font-size: 2.0rem;
    background-position: center left 2.0rem;
    background-size: 2.0rem auto;
    line-height: 2.0rem;
    padding: 14px 0px 14px 26px;
  }
}
.box-btn-regist-menu ul#btn-regist li a:hover {
  color: #fff !important;
  background: #aa2a0c;
  background-image: url("../img/arrow.png");
  background-position: center left 2.6rem;
  background-repeat: no-repeat;
  background-size: 2.6rem auto;
}
@media screen and (max-width: 768px) {
  .box-btn-regist-menu ul#btn-regist li a:hover {
    font-size: 2.0rem;
    background-position: center left 2.0rem;
    background-size: 2.0rem auto;
    line-height: 2.0rem;
    padding: 14px 0px 14px 26px;
  }
}
.box-btn-regist-menu ul#btn-sns {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .box-btn-regist-menu ul#btn-sns {
    padding-top: 0px;
  }
}
.box-btn-regist-menu ul#btn-sns li {
  margin: 0 auto;
  list-style-type: none;
  border-bottom: none;
}
.box-btn-regist-menu ul#btn-sns li img {
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 769px) {
  .hide_pc {
    display: none;
  }
  .hide_sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .hide_sp {
    display: none;
  }
  .hide_pc {
    display: block;
  }
}
/* ここからメニュー外 */
.fadeUpMain {
  animation-name: fadeUpMainAnime;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpMainAnime {
  from {
    opacity: 0;
    transform: translateY(120px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
.delay-time04 {
  animation-delay: 0.4s;
}
.delay-time06 {
  animation-delay: 0.6s;
}
.delay-time08 {
  animation-delay: 0.8s;
}
.delay-time10 {
  animation-delay: 1.0s;
}
.delay-time12 {
  animation-delay: 1.2s;
}
.delay-time14 {
  animation-delay: 1.4s;
}
.fadeUpMainTrigger {
  opacity: 0;
}
.fadeInTrigger {
  opacity: 0;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.2s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
main {
  width: 100%;
}
main .mv {
  position: relative;
  background: url(../img/bg_main_pc.png);
  background-size: 1500px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
@media screen and (max-width: 768px) {
  main .mv {
    position: relative;
    background: url(../img/bg_main_sp.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
}
main .mv-inner {
  width: 984px;
  margin: 0 auto;
  text-align: center;
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  main .mv-inner {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 60px;
  }
}
main .mv-inner img.img-mv {
  max-width: 984px;
  height: 620px;
}
@media screen and (max-width: 768px) {
  main .mv-inner img.img-mv {
    max-width: 96%;
    height: auto;
  }
}
main .mv-box {
  display: block;
  overflow: hidden;
  margin-top: -583px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .mv-box {
    display: block;
    overflow: hidden;
    margin-top: -35vh;
    position: relative;
  }
}
main .mv-box h1 {
  max-width: 251px;
  height: 274px;
  float: right;
  margin-right: 29px;
  margin-top: 423px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .mv-box h1 {
    max-width: 25%;
    height: auto;
    float: right;
    margin-right: 5px;
    margin-top: 30vh;
    position: relative;
  }
}
main .mv-box h1 img {
  width: 251px;
  height: 274px;
}
@media screen and (max-width: 768px) {
  main .mv-box h1 img {
    width: 100%;
    height: auto;
  }
}
main .mv-box p {
  max-width: 94px;
  height: 538px;
  float: left;
  margin-left: 58px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .mv-box p {
    max-width: 12%;
    height: auto;
    float: left;
    margin-left: 8vw;
    position: relative;
  }
}
main .mv-box p img {
  width: 94px;
  height: 538px;
}
@media screen and (max-width: 768px) {
  main .mv-box p img {
    width: 100%;
    height: auto;
  }
}
.box-btn-regist {
  width: 180px;
  position: relative;
  margin: -80px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .box-btn-regist {
    width: 40%;
    position: relative;
    margin: -30px auto 0 auto;
  }
}
.box-btn-regist-right {
  width: 180px;
  position: relative;
  margin: 40px 0 40px 315px;
}
@media screen and (max-width: 768px) {
  .box-btn-regist-right {
    width: 46%;
    position: relative;
    margin: 20px auto;
  }
}
@media screen and (max-width: 768px) {
  .box-btn-regist ul, .box-btn-regist-right ul {
    width: 100%;
  }
}
.box-btn-regist ul li, .box-btn-regist-right ul li {
  margin: 0 auto;
  list-style-type: none;
}
.box-btn-regist ul li a, .box-btn-regist-right ul li a {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .box-btn-regist ul li a, .box-btn-regist-right ul li a {
    width: 80%;
  }
}
.box-btn-regist ul li a, .box-btn-regist-right ul li a {
  color: #fff;
  font-size: 2.6rem;
  text-decoration: none;
  background: #ea3d15;
  display: block;
  border-radius: 40px;
  background-image: url("../img/arrow.png");
  background-position: center left 2.6rem;
  background-repeat: no-repeat;
  background-size: 2.6rem auto;
  padding: 20px 0px 20px 30px;
  line-height: 2.6rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .box-btn-regist ul li a, .box-btn-regist-right ul li a {
    font-size: 2.0rem;
    background-position: center left 2.0rem;
    background-size: 2.0rem auto;
    line-height: 2.0rem;
    padding: 14px 0px 14px 26px;
  }
}
.box-btn-regist ul li a:hover, .box-btn-regist-right ul li a:hover {
  color: #fff;
  background: #aa2a0c;
  background-image: url("../img/arrow.png");
  background-position: center left 2.6rem;
  background-repeat: no-repeat;
  background-size: 2.6rem auto;
}
@media screen and (max-width: 768px) {
  .box-btn-regist ul li a:hover, .box-btn-regist-right ul li a:hover {
    font-size: 2.0rem;
    background-position: center left 2.0rem;
    background-size: 2.0rem auto;
    line-height: 2.0rem;
    padding: 14px 0px 14px 26px;
  }
}
.area-box {
  padding-top: 45px;
}
.area-box h2 {
  width: 869px;
  height: 328px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .area-box h2 {
    width: 96%;
    height: auto;
  }
}
.area-box h2 img {
  width: 869px;
  height: 328px;
}
@media screen and (max-width: 768px) {
  .area-box h2 img {
    width: 100%;
    height: auto;
  }
}
.area-box p {
  text-align: center;
  color: #fff;
  padding-top: 35px;
}
@media screen and (max-width: 768px) {
  .area-box p {
    width: 90%;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
.area-box h3 {
  width: 434px;
  height: 151px;
  margin: 0 auto;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .area-box h3 {
    width: 70%;
    height: auto;
  }
}
.area-box h3 img {
  width: 434px;
  height: 151px;
}
@media screen and (max-width: 768px) {
  .area-box h3 img {
    width: 100%;
    height: auto;
  }
}
.box-nice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 60px;
  gap: 0px 25px;
}
@media screen and (max-width: 768px) {
  .box-nice {
    width: 96%;
    margin: 0 auto;
    padding-top: 30px;
  }
}
.box-nice figure {
  width: 219px;
}
@media screen and (max-width: 768px) {
  .box-nice figure {
    width: 40%;
  }
}
.box-nice figure img {
  width: 219px;
  height: 219px;
}
@media screen and (max-width: 768px) {
  .box-nice figure img {
    width: 90%;
    height: 30%;
  }
}
.box-nice figcaption {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.0rem;
  font-weight: bold;
  padding: 10px 0 30px;
}
@media screen and (max-width: 768px) {
  .box-nice figcaption {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
}
main .info {
  position: relative;
  background: #fff;
}
.info-inner {
  width: 984px;
  margin: 0 auto;
  text-align: center;
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .info-inner {
    width: 96%;
    padding-top: 35px;
  }
}
.info-inner h2.tit-suggestion {
  width: 599px;
  height: 85px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .info-inner h2.tit-suggestion {
    width: 90%;
    height: auto;
  }
}
.info-inner h2.tit-suggestion img {
  width: 599px;
  height: 85px;
}
@media screen and (max-width: 768px) {
  .info-inner h2.tit-suggestion img {
    width: 100%;
    height: auto;
  }
}
.info-inner h2.tit-point {
  width: 630px;
  height: 38px;
  margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  .info-inner h2.tit-point {
    width: 70%;
    height: auto;
    margin: 35px auto 0;
  }
}
.info-inner h2.tit-point img {
  width: 630px;
  height: 38px;
}
@media screen and (max-width: 768px) {
  .info-inner h2.tit-point img {
    width: 100%;
    height: auto;
  }
}
.info-inner h2.tit-sdgs {
  width: 463px;
  height: 83px;
  margin: 98px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .info-inner h2.tit-sdgs {
    width: 60%;
    height: auto;
    margin: 44px auto 0 auto;
  }
}
.info-inner h2.tit-sdgs img {
  width: 463px;
  height: 83px;
}
@media screen and (max-width: 768px) {
  .info-inner h2.tit-sdgs img {
    width: 100%;
    height: auto;
  }
}
.info-inner p {
  padding-top: 56px;
  font-size: 1.8rem;
  line-height: 3rem;
}
@media screen and (max-width: 768px) {
  .info-inner p.txt-point {
    padding-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .info-inner p {
    padding-top: 40px;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
.box-point {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .box-point {
    padding-top: 20px;
  }
}
.box-point figcaption {
  width: 112px;
  height: 468px;
  margin: -530px 80px 0 0;
  position: relative;
  display: block;
  float: right;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .box-point figcaption {
    width: 15%;
    height: auto;
    margin: -30vh 40px 0px 0;
    padding: 0;
    position: relative;
    display: block;
    float: right;
    overflow: hidden;
  }
}
.box-point figcaption img {
  width: 112px;
  height: 468px;
}
@media screen and (max-width: 768px) {
  .box-point figcaption img {
    width: 100%;
    height: auto;
  }
}
.box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .box-info {
    width: 60%;
    display: block;
    margin: 0 auto;
    padding-top: 30px;
  }
}
.box-info img.arrow {
  width: 23px;
  height: 21px;
  margin-top: 118px;
}
@media screen and (max-width: 768px) {
  .box-info img.arrow {
    width: 8%;
    height: auto;
    transform: rotate(90deg);
    margin: 30px 0 20px 0;
  }
}
.box-info figure {
  width: 279px;
  height: 279px;
}
@media screen and (max-width: 768px) {
  .box-info figure {
    width: 100%;
    height: auto;
  }
}
.box-info figure img {
  width: 279px;
  height: 279px;
}
@media screen and (max-width: 768px) {
  .box-info figure img {
    width: 100%;
    height: auto;
  }
}
.box-info figcaption {
  font-size: 1.6rem;
  line-height: 2.0rem;
  padding: 10px 0 30px;
}
@media screen and (max-width: 768px) {
  .box-info figcaption {
    font-size: 1.4rem;
    line-height: 2.2rem;
    padding: 10px 0 0;
  }
}
.box-btn-howto {
  width: 385px;
  position: relative;
  margin: 160px auto 0;
}
@media screen and (max-width: 768px) {
  .box-btn-howto {
    width: 80%;
    position: relative;
    margin: 30px auto 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .box-btn-howto ul {
    width: 94%;
  }
}
.box-btn-howto ul li {
  margin: 0 auto;
  list-style-type: none;
}
.box-btn-howto ul li a {
  width: 385px;
}
@media screen and (max-width: 768px) {
  .box-btn-howto ul li a {
    width: 100%;
  }
}
.box-btn-howto ul li a {
  color: #fff;
  font-size: 2.4rem;
  text-decoration: none;
  background: #ea3d15;
  display: block;
  border-radius: 40px;
  background-image: url("../img/arrow.png");
  background-position: center left 2.4rem;
  background-repeat: no-repeat;
  background-size: 2.4rem auto;
  padding: 20px 0px 20px 40px;
  line-height: 2.4rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .box-btn-howto ul li a {
    font-size: 1.6rem;
    background-position: center left 1.6rem;
    background-size: 1.6rem auto;
    line-height: 1.6rem;
    padding: 14px 0px 14px 16px;
  }
}
.box-btn-howto ul li a:hover {
  color: #fff;
  background: #aa2a0c;
  background-image: url("../img/arrow.png");
  background-position: center left 2.4rem;
  background-repeat: no-repeat;
  background-size: 2.4rem auto;
}
@media screen and (max-width: 768px) {
  .box-btn-howto ul li a:hover {
    color: #fff;
    font-size: 1.6rem;
    background-position: center left 1.6rem;
    background-size: 1.6rem auto;
    line-height: 1.6rem;
    padding: 14px 0px 14px 16px;
  }
}
.box-buy {
  display: block;
  overflow: hidden;
  padding: 133px 0 70px 0;
  clear: both;
}
@media screen and (max-width: 768px) {
  .box-buy {
    display: block;
    overflow: hidden;
    padding: 35px 0 35px 0;
    clear: both;
    width: 96%;
    margin: 0 auto;
  }
}
sup {
  font-size: 12px;
  color: #666;
  vertical-align: super;
}
ul.note {
  margin-top:16px;
}
ul.note li {
  font-size: 12px;
  color: #666;
  margin-top:8px;
  line-height: 1.4;
}
.left-area {
  float: left;
  overflow: hidden;
  text-align: left;
  width: 393px;
}
@media screen and (max-width: 768px) {
  .left-area {
    clear: both;
    width: 100%;
  }
}
/*画像の横幅を100%にしてレスポンシブ化*/
.left-area img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}
/*メイン画像下に余白をつける*/
.gallery {
  margin: 0 0 5px 0;
}
.gallery li {
  list-style: none;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev, .slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc; /*矢印の色*/
  border-right: 2px solid #ccc; /*矢印の色*/
  height: 25px;
  width: 25px;
}
.slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}
.slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}
/*選択するサムネイル画像の設定*/
.choice-btn li {
  cursor: pointer;
  outline: none;
  width: 18% !important;
  margin: 15px 8px 0px 0;
  background: #fff;
}
.choice-btn li:last-of-type {
  margin-right: 0px;
}
.choice-btn li img {
  opacity: 0.6; /*選択されていないものは透過60%*/
  border-radius: 5px;
}
.choice-btn li.slick-current img {
  opacity: 1; /*選択されているものは透過しない*/
  border-radius: 5px;
}
.right-area {
  float: right;
  width: 556px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .right-area {
    clear: both;
    width: 100%;
    padding-top: 20px;
  }
}
.right-area h2 {
  font-size: 3.4rem;
  line-height: 5.4rem;
  font-weight: bold;
  text-align: left;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .right-area h2 {
    font-size: 2.0rem;
    line-height: 3.2rem;
  }
}
.right-area p {
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  margin: 0;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .right-area p {
    font-size: 1.4rem;
    line-height: 2.2rem;
    padding-top: 20px;
  }
}
.right-area p span.attention {
  font-size: 1.8rem;
  line-height: 2.8rem;
}
@media screen and (max-width: 768px) {
  .right-area p span.attention {
    font-size: 1.2rem;
    line-height: 1.8rem;
  }
}
.box-howto {
  margin: 0px 0 40px 0;
  border: solid #ea3d15 3px;
}
.box-howto-inner {
  background: #fdfaec;
  margin: 10px;
  border: solid #ea3d15 1px;
}
.box-howto-inner h2.tit-howto {
  width: 649px;
  height: 168px;
  margin: 0 auto;
  padding-top: 25px;
}
@media screen and (max-width: 768px) {
  .box-howto-inner h2.tit-howto {
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding-top: 25px;
  }
}
.box-howto-inner h2.tit-howto img {
  width: 649px;
  height: 168px;
}
@media screen and (max-width: 768px) {
  .box-howto-inner h2.tit-howto img {
    width: 100%;
    height: auto;
  }
}
.box-howto-inner h2.tit-recipe {
  width: 493px;
  height: 74px;
  margin: 0 auto;
  padding-top: 48px;
}
@media screen and (max-width: 768px) {
  .box-howto-inner h2.tit-recipe {
    width: 70%;
    height: auto;
    padding: 48px 0 20px;
  }
}
.box-howto-inner h2.tit-recipe img {
  width: 493px;
  height: 74px;
}
@media screen and (max-width: 768px) {
  .box-howto-inner h2.tit-recipe img {
    width: 100%;
    height: auto;
  }
}
.box-howto-inner h3, .box-howto-inner p {
  color: #ea3d15;
}
@media screen and (max-width: 768px) {
  .box-howto-inner p {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
.box-howto-inner h3 {
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .box-howto-inner h3 {
    padding-top: 40px;
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
.box-howto-inner figure {
  width: 832px;
  height: 508px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .box-howto-inner figure {
    width: 90%;
    height: auto;
    padding: 50px 0 0;
  }
}
.box-howto-inner figure img {
  width: 832px;
  height: 508px;
}
@media screen and (max-width: 768px) {
  .box-howto-inner figure img {
    width: 100%;
    height: auto;
  }
}
.box-howto-inner ul {
  width: 836px;
  margin: 0 auto;
  color: #ea3d15;
  padding: 36px 0 80px 0;
}
@media screen and (max-width: 768px) {
  .box-howto-inner ul {
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 10px 0 40px 0;
  }
}
.box-howto-inner ul li {
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  list-style: none; /* デフォルトのアイコンを消す */
  margin: 0; /* デフォルト指定上書き */
  padding: 0; /* デフォルト指定上書き */
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .box-howto-inner ul li {
    font-size: 1.4rem;
    line-height: 2.2rem;
    padding-bottom: 10px;
  }
}
.box-howto-inner ul li:before {
  content: ""; /* 空の要素作成 */
  width: 4px; /* 幅指定 */
  height: 4px; /* 高さ指定 */
  display: inline-block; /* インラインブロックにする */
  background-color: #ea3d15; /* 背景色指定 */
  border-radius: 100%; /* 要素を丸くする */
  position: relative; /* 位置調整 */
  top: -5px; /* 位置調整 */
  margin-right: 10px; /* 余白指定 */
}
.box-recipe {
  width: 750px;
  padding: 95px 0 90px 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .box-recipe {
    width: 80%;
    display: block;
    padding: 0px 0 40px 0;
  }
}
.box-recipe figure {
  width: 355px;
  height: 25vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0px 15px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .box-recipe figure {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 10px 0;
  }
}
.box-recipe figure img {
  width: 138px;
  height: 138px;
}
@media screen and (max-width: 768px) {
  .box-recipe figure img {
    width: 30%;
    height: auto;
  }
}
.box-recipe figure figcaption {
  text-align: left;
  font-size: 1.8rem;
  line-height: 3rem;
}
@media screen and (max-width: 768px) {
  .box-recipe figure figcaption {
    text-align: left;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
.box-recipe figure figcaption a {
  color: #ea3d15;
}
.box-recipe figure figcaption a:hover {
  color: #aa2a0c;
}
main .sv {
  position: relative;
  background: #f1eee8 url("../img/bg_sozai_pc.png");
  background-size: 1500px;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
@media screen and (max-width: 768px) {
  main .sv {
    position: relative;
    background: #f1eee8 url("../img/bg_sozai_sp.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }
}
main .sv-inner {
  width: 984px;
  margin: 0 auto;
  text-align: center;
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  main .sv-inner {
    width: 98%;
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
  }
}
main .sv-inner h1 {
  max-width: 373px;
  height: 324px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .sv-inner h1 {
    max-width: 50%;
    height: auto;
  }
}
main .sv-inner h2.txt-catch {
  color: #fff;
  padding: 40px 0 50px 0;
  font-size: 2.4rem;
  line-height: 3.6rem;
  letter-spacing: 0.8rem;
}
@media screen and (max-width: 768px) {
  main .sv-inner h2.txt-catch {
    color: #fff;
    padding: 20px 0 25px 0;
    font-size: 1.4rem;
    line-height: 2.2rem;
    letter-spacing: 0.6rem;
  }
}
main .sv-area {
  width: 100%;
  overflow: hidden;
  background: #f1eee8;
}
main .sv-txt {
  width: 520px;
}
@media screen and (max-width: 768px) {
  main .sv-txt {
    width: 70%;
    margin: 0 auto;
  }
}
main .sv-txt p {
  font-size: 2.4rem;
  line-height: 4.4rem;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 768px) {
  main .sv-txt p {
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin: 0;
    padding: 0;
  }
}
.sv-box-01, .sv-box-02, .sv-box-03 {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 50px;
}
.sv-box-01, .sv-box-02 {
  width: 830px;
}
@media screen and (max-width: 768px) {
  .sv-box-01, .sv-box-02 {
    width: 96%;
  }
}
.sv-box-03 {
  width: 875px;
}
@media screen and (max-width: 768px) {
  .sv-box-03 {
    width: 96%;
  }
}
.sv-box-01, .sv-box-03 {
  float: right;
}
.sv-box-02 {
  float: left;
}
@media screen and (max-width: 768px) {
  .sv-box-01, .sv-box-02, .sv-box-03 {
    clear: both;
    float: none;
    margin: 0 auto;
  }
}
.sv-box-01 h3 {
  width: 87px;
  height: 247px;
}
@media screen and (max-width: 768px) {
  .sv-box-01 h3 {
    width: 20%;
    height: auto;
    order: 2;
  }
}
.sv-box-01 h3 img {
  width: 48px;
  height: 192px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .sv-box-01 h3 img {
    width: 5vw;
    height: auto;
    margin: 0px;
  }
}
.sv-box-02 h3 {
  width: 46px;
  height: 242px;
  order: 2;
}
@media screen and (max-width: 768px) {
  .sv-box-02 h3 {
    width: 20%;
    height: auto;
    order: 1;
  }
}
.sv-box-02 h3 img {
  width: 46px;
  height: 242px;
  order: 1;
}
@media screen and (max-width: 768px) {
  .sv-box-02 h3 img {
    width: 5vw;
    height: auto;
    margin: 0px;
    overflow: hidden;
  }
}
.sv-box-03 h3 {
  width: 10%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sv-box-03 h3 {
    width: 20%;
    height: auto;
    order: 2;
  }
}
.sv-box-03 h3 img {
  width: 87px;
  height: 247px;
}
@media screen and (max-width: 768px) {
  .sv-box-03 h3 img {
    width: 10vw;
    height: auto;
    margin: 0px;
  }
}
.sv-box-01 figure img, .sv-box-03 figure img, .sv-box-02 figure img {
  width: 724px;
  height: 456px;
}
@media screen and (max-width: 768px) {
  .sv-box-01 figure, .sv-box-03 figure {
    width: 80%;
    height: auto;
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .sv-box-02 figure {
    width: 78%;
    height: auto;
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .sv-box-01 figure img, .sv-box-03 figure img, .sv-box-02 figure img {
    width: 100%;
    height: auto;
  }
}
.sv-box-01 figcaption, .sv-box-03 figcaption {
  width: 592px;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
}
.sv-box-01 figcaption {
  margin: 20px 0 0 180px;
}
.sv-box-03 figcaption {
  margin: 20px 0 0 225px;
}
.sv-box-02 figcaption {
  width: 592px;
  margin: 20px 0 0 70px;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  order: 3;
}
@media screen and (max-width: 768px) {
  .sv-box-01 figcaption, .sv-box-03 figcaption, .sv-box-02 figcaption {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2.2rem;
    text-align: left;
    order: 3;
    margin: 20px 0 0 0;
  }
}
main .fv {
  position: relative;
  background: #fff url("../img/bg_footer_pc.png");
  background-size: 1500px;
  background-repeat: no-repeat;
  background-position: 50% 0;
}
@media screen and (max-width: 768px) {
  main .fv {
    position: relative;
    background: #fff url("../img/bg_footer_sp.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
  }
}
main .fv-inner {
  width: 984px;
  margin: 0 auto;
  text-align: center;
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  main .fv-inner {
    width: 98%;
    margin: 0 auto;
    text-align: center;
    padding-top: 20vw;
    position: relative;
  }
}
main .fv-inner h1 {
  width: 674px;
  height: 39px;
  margin: 480px auto 0;
}
@media screen and (max-width: 768px) {
  main .fv-inner h1 {
    width: 60%;
    height: auto;
    margin: 60px auto 0;
    position: relative;
  }
}
main .fv-inner h1 img {
  width: 674px;
  height: 39px;
}
@media screen and (max-width: 768px) {
  main .fv-inner h1 img {
    width: 100%;
    height: auto;
  }
}
main .fv-inner p {
  width: 868px;
  margin: 50px auto 0;
  font-size: 1.8rem;
  line-height: 3rem;
}
@media screen and (max-width: 768px) {
  main .fv-inner p {
    width: 90%;
    margin: 25px auto 0;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
/*レシピここから*/
main .recipe {
  position: relative;
  margin-top: 60px;
}
.recipe-inner {
  width: 984px;
  margin: 0 auto;
  text-align: center;
  padding-top: 70px;
}
@media screen and (max-width: 768px) {
  .recipe-inner {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
  }
}
.recipe-inner h1 {
  font-size: 3.6rem;
  line-height: 4.8rem;
}
@media screen and (max-width: 768px) {
  .recipe-inner h1 {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
.recipe-inner figure {
  width: 604px;
  height: 578px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .recipe-inner figure {
    width: 80%;
    height: auto;
    margin: 30px auto 0;
  }
}
.recipe-inner figure img {
  width: 604px;
  height: 578px;
}
@media screen and (max-width: 768px) {
  .recipe-inner figure img {
    width: 100%;
    height: 100%;
  }
}
.recipe-inner .logo-box {
  width: 820px;
  height: 213px;
  margin: -10vw auto 0;
  position: relative;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .recipe-inner .logo-box {
    width: 100%;
    height: auto;
    margin: -15vw auto 0;
    position: relative;
    text-align: right;
  }
}
.recipe-inner img.img-logo {
  width: 195px;
  height: 213px;
}
@media screen and (max-width: 768px) {
  .recipe-inner img.img-logo {
    width: 30%;
    height: auto;
  }
}
.recipe-inner h2 {
  font-size: 2.4rem;
  line-height: 4.8rem;
  text-align: left;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .recipe-inner h2 {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
.recipe-inner p {
  font-size: 1.8rem;
  line-height: 3rem;
  padding-bottom: 50px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .recipe-inner p {
    font-size: 1.4rem;
    line-height: 2.2rem;
    padding-bottom: 25px;
  }
}
/*フッター共通ここから*/
footer {
  background: #fff;
  padding-bottom: 110px;
}
footer .footer-inner {
  width: 984px;
  margin: 0 auto;
  text-align: left;
  padding-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer-inner {
    width: 70%;
    padding-top: 30px;
  }
}
footer .footer-inner p {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  footer .footer-inner p {
    font-size: 1.2rem;
    line-height: 2.0rem;
  }
}
footer .footer-inner p span {
  font-size: 2.0rem;
}
@media screen and (max-width: 768px) {
  footer .footer-inner p span {
    font-size: 1.2rem;
    line-height: 2.0rem;
  }
}
footer .footer-inner p a {
  color: #000;
  text-decoration: none;
}
footer .footer-inner p a:hover {
  color: #999;
  text-decoration: none;
}
footer img {
  width: 186px;
  height: 162px;
}
@media screen and (max-width: 768px) {
  footer img {
    width: 30%;
    height: auto;
  }
}
#pagetop {
  display: inline;
  position: fixed;
  bottom: 0;
  right: 10px;
  width: 50px;
  text-align: right;
  line-height: 0;
}
#pagetop img {
  width: 50px;
}
#pagetop img:hover {
  cursor: pointer;
  opacity: 0.7;
}