@charset "UTF-8";
@media screen and (max-width: 767px) {
  .only-lg {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
  .only-tab {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .only-lg {
    display: none !important;
  }
  .only-tab {
    display: inline-block !important;
  }
}
/*共通*/
.osechi2026 {
  overflow: hidden;
  position: relative;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #000;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
}

p {
  line-height: 1.4;
}

/* -------------------------------------
        メイン
------------------------------------- */
.inner {
  position: relative;
}
.inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  background-image: linear-gradient(to top, rgba(255, 240, 244, 0.6) 0% 50%, rgba(255, 240, 244, 0.3) 50% 100%);
  left: 0;
  top: -80px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .inner::before {
    height: 50px;
    top: -50px;
  }
}

.con {
  position: relative;
}
.con__about {
  padding: 40px 0;
  background: #F3EBCD;
  background: linear-gradient(-90deg, rgb(243, 235, 205) 0%, rgb(255, 255, 255) 80%);
}
.con__txt {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 16px;
  text-align: center;
  font-size: 1.2em;
}
@media screen and (max-width: 767px) {
  .con__txt {
    font-size: 1em;
  }
}
.con__icon {
  padding: 0.5em 1.5em;
  background: #fff;
  width: 95%;
  margin: 0 auto;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .con__icon {
    padding: 1em 0.5em;
    justify-content: flex-start;
  }
}
.con__icon .iconitem {
  display: flex;
  align-items: center;
  margin: 8px 4px;
}
@media screen and (max-width: 767px) {
  .con__icon .iconitem {
    width: 100%;
    margin: 4px 0;
  }
}
.con__icon .iconitem .iconimg {
  width: 40px;
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  .con__icon .iconitem .iconimg {
    width: 10%;
    max-width: 50px;
  }
}
.con__icon .iconitem p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .con__icon .iconitem p {
    width: 88%;
  }
}
.con__icon .iconitem--tenpo p {
  color: #00693e;
}
.con__icon .iconitem--deli p {
  color: #004097;
}
.con__icon .iconitem--ganjitsu p {
  color: #b37400;
}
.con__icon .iconitem--nenshi p {
  color: #7f4221;
}
.con__main {
  padding: 80px 0;
  background: url(../img/con-bg-dec.png), url(../img/con-bg.png);
  background-repeat: repeat-y, no-repeat;
  background-size: contain, cover;
  background-position: top center;
}
@media screen and (max-width: 767px) {
  .con__main {
    padding: 40px 0;
    background: url(../img/con-bg-dec-sp.png), url(../img/con-bg-sp.png) no-repeat;
    background-repeat: repeat-y, no-repeat;
    background-size: contain, cover;
    background-position: top center;
  }
}
.con__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
}
.con__top {
  padding: 40px 0;
  width: 100%;
  background: url(../img/con-bg-dec.png), url(../img/top-bg.png);
  background-repeat: repeat-y, no-repeat;
  background-size: contain, cover;
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .con__top {
    padding: 60px 0;
    background: url(../img/con-bg-dec-sp.png), url(../img/top-bg.png);
    background-repeat: repeat-y, no-repeat;
    background-size: contain, cover;
  }
}

.item {
  position: relative;
  width: 48%;
  max-width: 500px;
  padding-bottom: 1.5em;
  margin: 20px 24px;
  background: #F3EBCD;
  background: linear-gradient(-90deg, rgb(243, 235, 205) 0%, rgb(255, 255, 255) 50%);
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .item {
    width: 100%;
    margin: 30px 0;
  }
}
.item::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 20%;
  background: url(../img/dec-right.png) no-repeat;
  background-size: contain;
  background-position: right bottom;
  transform: scale(-1, 1);
  bottom: 0;
  left: 0;
}
.item__img {
  position: relative;
  padding: 0.5em;
  z-index: 1;
  width: 100%;
}
.item__img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  background: url(../img/item-bg.png) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: 0;
}
.item__img::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 30%;
  background: url(../img/dec-rt.png) no-repeat;
  background-size: contain;
  background-position: right top;
  top: 0;
  right: 0;
  z-index: 0;
}
.item__img img {
  position: relative;
  z-index: 1;
}
.item__img-deli {
  position: absolute;
  width: 16%;
  bottom: 1em;
  right: 1em;
}
.item--w100 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 40px 2em;
  min-height: 600px;
}
@media screen and (max-width: 1024px) {
  .item--w100 {
    display: block;
    max-width: 440px;
    padding: 1.5em 1em 2em;
    margin: 30px auto;
  }
}
.item--w100::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 20%;
  background: url(../img/dec-left.png) no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
}
.item--w100::after {
  transform: scale(1);
  bottom: 0;
  left: auto;
  right: 0;
}
.item--w100 .item__img {
  position: relative;
  z-index: 10;
  width: 60%;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .item--w100 .item__img {
    margin: 0;
    width: 100%;
  }
}
.item--w100 .item__img::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: #ceb680;
  border-radius: 50%;
  right: 4%;
  bottom: 10%;
  z-index: -1;
  top: auto;
  left: auto;
}
@media screen and (max-width: 767px) {
  .item--w100 .item__img::before {
    width: 100px;
    height: 100px;
    right: 0;
  }
}
.item--w100 .item__img::after {
  content: none;
}
.item--w100 .about {
  width: 35%;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .item--w100 .about {
    margin: 0;
    width: 100%;
  }
}
.item--w100-sec .item__img::before {
  bottom: 0;
  right: auto;
  left: 4%;
}
@media screen and (max-width: 767px) {
  .item--w100-sec .item__img::before {
    bottom: 4%;
  }
}
.item--w100--recommend {
  margin-top: 0;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .item--w100--recommend {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .item--w100--recommend {
    padding: 1.5em 0.5em;
    margin-bottom: 60px;
  }
}
.item--w100--recommend::before {
  width: 10%;
  height: 20%;
}
@media screen and (max-width: 767px) {
  .item--w100--recommend::before {
    width: 20%;
    height: 20%;
  }
}
.item--w100--recommend::after {
  display: none;
}
.item--w100--recommend .item__img {
  padding: 0;
}
.item--w100--recommend .item__img::before {
  content: none;
}
.item--w100--recommend .item__img-deli {
  width: 12%;
  bottom: -6%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .item--w100--recommend .item__img-deli {
    width: 18%;
    bottom: -2em;
  }
}
.item--w100--recommend .about {
  width: 38%;
}
@media screen and (max-width: 1024px) {
  .item--w100--recommend .about {
    margin: 0;
    width: 100%;
  }
}
.item--w100--recommend .detailmenu {
  margin-top: 40px;
  background: #8C0B0B;
  padding: 1.5em 1em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .item--w100--recommend .detailmenu {
    margin-top: 40px;
    padding: 1.5em 0.5em;
    margin-bottom: 20px;
  }
}
.item--w100--recommend .detailmenu p {
  color: #fff;
}
.item--w100--recommend .detailmenu__ttl {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .item--w100--recommend .detailmenu__ttl {
    font-size: 1.2em;
  }
}
.item--w100--recommend .detailmenu--hana {
  background: url(../img/1212/hana-bg.png) no-repeat;
  background-size: cover;
}
.item--w100--recommend .detailmenu--hana p {
  color: #000;
}
.item--w100--recommend .detailmenu__wrap ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.item--w100--recommend .detailmenu__wrap ul li {
  width: 18%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .item--w100--recommend .detailmenu__wrap ul li {
    width: 31%;
    margin: 0 0 24px 0;
  }
}
@media screen and (max-width: 1024px) {
  .item--w100--recommend .detailmenu__wrap ul li p {
    font-size: 0.9em;
  }
}
.item--w100--recommend .detailmenu__wrap ul li p.ttl {
  margin: 0.5em 0;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .item--w100--recommend .detailmenu__wrap ul li p.ttl {
    flex: 1;
    height: 100%;
  }
}
.item--w100--recommend .detailmenu__wrap ul li p.ttl span {
  font-size: 0.9em;
}
.item--w100--recommend .detailmenu__wrap ul li p.txt {
  margin-top: auto;
  font-size: 0.9em;
}
@media screen and (max-width: 1024px) {
  .item--w100--recommend .detailmenu__wrap ul li p.txt {
    margin-top: 0;
    flex: 2;
    height: 100%;
    min-height: 0%;
  }
}
.item--w100--recommend .detailmenu__wrap--original ul li p.txt {
  margin-top: 0.5em;
}
@media screen and (max-width: 1024px) {
  .item--w100--recommend .detailmenu__wrap--original ul li p.txt {
    margin-top: 0;
  }
}
.item--w100--recommend .detailmenulist {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .item--w100--recommend .detailmenulist {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.item--w100--recommend--main .item__img {
  position: relative;
}
.item--w100--recommend--main .item__img::before {
  content: "" !important;
  position: absolute;
  width: 160px;
  height: 160px;
  background: #ceb680;
  border-radius: 50%;
  right: 10%;
  top: 20%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .item--w100--recommend--main .item__img::before {
    width: 100px;
    height: 100px;
    right: 0;
    top: auto;
  }
}
@media screen and (max-width: 767px) {
  .item--w100--recommend--main .item__img-deli {
    bottom: 0;
  }
}
.item--w100--recommend--online .btn--wrap .orderbtn {
  width: 100%;
  max-width: 400px;
}
.item--w100--recommend--online .item__img {
  position: relative;
}
.item--w100--recommend--online .item__img::before {
  content: "" !important;
  position: absolute;
  width: 160px;
  height: 160px;
  background: #ceb680;
  border-radius: 50%;
  right: 2%;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .item--w100--recommend--online .item__img::before {
    width: 100px;
    height: 100px;
    right: 0;
    top: auto;
  }
}
.item--w100--recommend--online .btn--wrap {
  justify-content: center;
}
.item--w100rev {
  flex-direction: row-reverse;
}
.item--w100rev .item__img::before {
  left: auto;
  top: auto;
  right: -8%;
  bottom: -8%;
}
@media screen and (max-width: 767px) {
  .item--w100rev .item__img::before {
    right: 0;
    bottom: 30%;
  }
}
.item--main {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .item--main {
    margin-bottom: 0;
  }
}
.item--main .item__img img {
  width: 100%;
}
.item--main .item__img::before {
  content: none;
}
@media screen and (max-width: 1024px) {
  .item--main--collab {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .item--main--collab2 .item__img-deli {
    bottom: 0;
    right: 2%;
  }
}
.item--main--collab::after, .item--main--collab2::after {
  content: none;
}
.item--recommend {
  margin-top: 0;
}
.item--recommend .item__img {
  padding: 0;
  margin-bottom: 10px;
}
.item--recommend .about {
  padding: 0 1em;
}
.item__topttl {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .item__topttl {
    max-width: 500px;
  }
}
.item__topttl p {
  display: inline-block;
  max-width: 440px;
  margin-left: 0;
  margin-right: auto;
  padding: 1;
  padding: 16px 32px;
  background: #8C0B0B;
  border-radius: 40px 40px 0 0;
  text-align: center;
  color: #fff;
  font-size: 1.4em;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .item__topttl p {
    font-size: 1.2em;
    border-radius: 20px 20px 0 0;
    padding: 12px;
  }
}
.item__topttl--delivery p {
  background: #0B1059;
}

/* -------------------------------------
        ＴＯＰ
------------------------------------- */
.top_logo {
  position: absolute;
  z-index: 2;
  width: 80px;
  padding: 5px;
  background: #fff;
  left: 10px;
  top: 10px;
}
@media screen and (max-width: 767px) {
  .top_logo {
    width: 50px;
    top: 10px;
    left: 10px;
  }
}

.fv {
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv {
    height: 85vh;
  }
}
.fv::before, .fv::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 100%;
  background: url(../img/1212/fv-goldbg.png?a) no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .fv::before {
    width: 100%;
    left: 0;
    background: url(../img/1212/fv-main.png?a) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.fv::after {
  left: auto;
  right: 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .fv::after {
    width: 45%;
    height: 100px;
    background: url(../img/fv-dec.png) no-repeat;
    background-size: contain;
    z-index: 2;
    left: -10%;
    top: 40%;
  }
}
.fv__dec {
  position: absolute;
  width: 28%;
  height: 100%;
  z-index: 1;
}
.fv__dec--lf {
  left: 0;
  top: 4%;
}
@media screen and (max-width: 767px) {
  .fv__dec--lf {
    display: none;
  }
}
.fv__dec--rg {
  right: 0;
  transform: scale(-1, -1);
  bottom: 12%;
}
@media screen and (max-width: 767px) {
  .fv__dec--rg {
    display: none;
  }
}
.fv__dec--kira-lf {
  width: 10%;
  height: 90px;
  left: 10%;
  bottom: 10%;
}
@media screen and (max-width: 767px) {
  .fv__dec--kira-lf {
    display: none;
  }
}
.fv__dec--kira-rg {
  width: 10%;
  height: 90px;
  right: 5%;
  top: 5%;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .fv__dec--kira-rg {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .fv__dec--sp {
    width: 60%;
    right: -10%;
    bottom: 6%;
    height: 100px;
  }
}
.fv__main {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fv__main {
    height: 100%;
  }
}
.fv__main::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 160px;
  background: url(../img/fv-dec-kira.png) no-repeat;
  background-size: contain;
  left: 6%;
  bottom: 35%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .fv__main::before {
    width: 35%;
    left: -4%;
    bottom: 60%;
    height: 60px;
  }
}
.fv__ttl {
  position: absolute;
  width: 18%;
  right: 2%;
  padding: 80px 1.5em;
  text-align: center;
  background: url(../img/1212/fv-ttl-bg.png) no-repeat;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .fv__ttl {
    width: 40%;
    right: 4%;
    padding: 60px 1em 40px;
  }
}
.fv__ttl::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 100px;
  background: url(../img/fv-dec-kira.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  right: -14%;
  bottom: 5%;
}
.fv__mainimg {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1150px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fv__mainimg {
    display: none;
  }
}
.fv__mainimg img {
  width: 100%;
}
.fv__mainimg::before, .fv__mainimg::after {
  content: "";
  position: absolute;
  width: 30%;
  height: 160px;
  background: url(../img/fv-dec.png) no-repeat;
  background-size: contain;
  z-index: 2;
}
.fv__mainimg::before {
  left: -10%;
  bottom: 20%;
}
.fv__mainimg::after {
  top: 5%;
  right: 0;
}

/* -------------------------------------
        ナビ
------------------------------------- */
.unkernav {
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 80px 0;
}
.unkernav__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.unkernav__item {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .unkernav__item {
    width: 48%;
  }
}
.unkernav__link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100px;
  border-radius: 8px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  margin: 8px 0;
  font-weight: 700;
  font-size: 1.15em;
  line-height: 1.3;
  padding-left: 54%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .unkernav__link {
    font-size: 0.8em;
    padding-left: 40%;
    height: 64px;
  }
}
.unkernav__link::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .unkernav__link::before {
    width: 70%;
    left: -30%;
  }
}
.unkernav__link:hover {
  box-shadow: none;
}
.unkernav__link--original {
  background: url(../img/1212/unker-bg1.png) no-repeat;
  background-size: cover;
}
.unkernav__link--original::before {
  background: url(../img/1212/unker-img1.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .unkernav__link--original::before {
    background-size: cover;
  }
}
.unkernav__link--recommend {
  background: url(../img/1212/unker-bg2.png) no-repeat;
  background-size: cover;
}
.unkernav__link--recommend::before {
  background: url(../img/1212/unker-img2.png) no-repeat;
  background-size: cover;
}
.unkernav__link--delivery {
  background: url(../img/1212/unker-bg3.png) no-repeat;
  background-size: cover;
}
.unkernav__link--delivery::before {
  background: url(../img/1212/unker-img3.png) no-repeat;
  background-size: cover;
}
.unkernav__link--meiten {
  background: url(../img/1212/unker-bg4.png) no-repeat;
  background-size: cover;
}
.unkernav__link--meiten::before {
  background: url(../img/1212/unker-img4.png) no-repeat;
  background-size: cover;
}
.unkernav__link--collab {
  background: url(../img/1212/unker-bg5.png) no-repeat;
  background-size: cover;
  color: #fff;
}
.unkernav__link--collab::before {
  background: url(../img/1212/unker-img5.png) no-repeat;
  background-size: cover;
}
.unkernav__link--online {
  background: url(../img/1212/unker-bg6.png) no-repeat;
  background-size: cover;
  color: #fff;
}
.unkernav__link--online::before {
  background: url(../img/1212/unker-img6.png) no-repeat;
  background-size: cover;
}
.unkernav__collab {
  max-width: 640px;
  margin: 0 auto;
  margin-top: 24px;
  text-align: center;
}
.unkernav__collab a {
  display: block;
  color: #E27C7C;
}
.unkernav__collab a.banner {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 10px;
}
.unkernav__collab a.link {
  position: relative;
  display: inline-block;
  font-size: 1.2em;
  font-weight: 600;
  border-bottom: 1px solid #E27C7C;
  padding-right: 1em;
}
.unkernav__collab a.link::before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #E27C7C;
  border-right: 2px solid #E27C7C;
  transform: rotate(45deg);
  right: 8px;
  top: 30%;
  transition: all 0.3s;
}
.unkernav__collab a.link:hover::before {
  right: 0;
}
.unkernav__collab a:hover {
  box-shadow: none;
}

/* -------------------------------------
        おすすめの品
------------------------------------- */
.recommend::before {
  content: none;
}
.recommend__mainttl {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  border: 3px solid #D8B565;
  padding: 12px 0;
  background: #0A475D;
  border-radius: 50px 0 50px 0;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .recommend__mainttl {
    max-width: 500px;
    border-radius: 20px 0 20px 0;
    margin-bottom: 20px;
  }
}
.recommend__mainttl p {
  font-size: 1.4em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .recommend__mainttl p {
    font-size: 1.2em;
  }
}
.recommend__mainttl--collab {
  background: #2F0002;
}
.recommend__mainttl--online {
  background: #A01B21;
}
.recommend__about {
  padding: 60px 0;
  background: #FFF0F4;
}
.recommend__about .dayabout {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 1100px;
  background: #fff;
  border-radius: 16px;
  text-align: center;
  padding: 1em 0.5em;
}
.recommend__about .dayabout__ttl {
  font-weight: 700;
  font-size: 1.8em;
  color: #C60079;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .recommend__about .dayabout__ttl {
    font-size: 1.2em;
  }
}
.recommend__about .dayabout__flx {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .recommend__about .dayabout__flx {
    width: 85%;
  }
}
.recommend__about .dayabout__flx .ttl {
  width: 32%;
  padding-top: 2px;
  background: #C60079;
  color: #fff;
  border-radius: 4px;
  margin-right: 0.5em;
  font-weight: 700;
  min-width: 200px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .recommend__about .dayabout__flx .ttl {
    width: 80%;
    max-width: 260px;
    padding-bottom: 4px;
  }
}
.recommend__about .dayabout__flx .day {
  font-size: 1.4em;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .recommend__about .dayabout__flx .day {
    font-size: 1.5em;
  }
}
.recommend__about .dayabout__flx .day span.small {
  font-size: 0.6em;
  margin-right: 4px;
}
.recommend__about .dayabout__flx .day span.detail {
  font-size: 0.8em;
}
.recommend__about .otoku {
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 20px 1em;
  border: 4px solid #C60079;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .recommend__about .otoku {
    max-width: 800px;
  }
}
.recommend__about .otoku__ttl {
  text-align: center;
}
.recommend__about .otoku__ttl p {
  text-align: center;
  font-size: 1.6em;
  font-weight: 700;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .recommend__about .otoku__ttl p {
    font-size: 1.4em;
  }
}
.recommend__about .otoku__ttl p span.pink {
  color: #C60079;
}
.recommend__about .otoku__ttl p span.line {
  background: linear-gradient(transparent 70%, #FFEF1F 70%);
}
.recommend__about .otoku__wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .recommend__about .otoku__wrap {
    display: block;
  }
}
.recommend__about .otoku__wrap-no1 {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  .recommend__about .otoku__wrap-no1 {
    width: 100%;
  }
}
.recommend__about .otoku__wrap-no2 {
  width: 69%;
}
@media screen and (max-width: 1024px) {
  .recommend__about .otoku__wrap-no2 {
    width: 100%;
    margin-top: 10px;
  }
}
.recommend__icon {
  padding: 40px 0;
  background: #FFF0F4;
}
.recommend__top {
  position: relative;
  padding: 80px 0;
  background: url(../img/1212/con-bg-dec.png), url(../img/1212/con-bg.jpg?a);
  background-repeat: repeat-y, no-repeat;
  background-size: contain, cover;
  background-position: top center;
}
@media screen and (max-width: 767px) {
  .recommend__top {
    background: url(../img/1212/con-bg-dec-sp.png), url(../img/1212/con-bg.jpg?a);
    background-repeat: repeat-y, no-repeat;
    background-size: contain, cover;
    background-position: top center;
  }
}
.recommend__ttl {
  width: 95%;
  margin: 0 auto;
  max-width: 750px;
  margin-bottom: 40px;
  text-align: center;
  padding: 20px 0;
  border-radius: 50px 0 50px 0;
  box-shadow: 3px 3px 0 #8C0B0B;
}
@media screen and (max-width: 1024px) {
  .recommend__ttl {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .recommend__ttl {
    padding: 16px 0;
    border-radius: 20px 0 20px 0;
    margin-bottom: 30px;
  }
}
.recommend__ttl p {
  font-size: 1.4em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .recommend__ttl p {
    font-size: 1.2em;
  }
}
.recommend__ttl--original {
  background: url(../img/1212/original-bg.png) no-repeat;
  background-size: cover;
}
.recommend__ttl--recommend {
  background: url(../img/1212/recommend-bg.png) no-repeat;
  background-size: cover;
}
.recommend__ttl--delivery {
  background: url(../img/1212/takuhai-bg.png) no-repeat;
  background-size: cover;
}
.recommend__ttl--meiten {
  background: url(../img/1212/meiten-bg.png) no-repeat;
  background-size: cover;
}
.recommend__ttl--collab {
  background: url(../img/1212/collab-bg.png) no-repeat;
  background-size: cover;
}
.recommend__ttl--collab p {
  color: #fff;
}
.recommend__ttl--online {
  background: url(../img/1212/online-bg.png) no-repeat;
  background-size: cover;
}
.recommend__ttl--online p {
  color: #fff;
}
.recommend__main {
  background: #BFB588;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .recommend__main {
    padding-bottom: 40px;
  }
}
.recommend__mainwrap {
  position: relative;
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .recommend__mainwrap {
    padding-top: 60px;
  }
}
.recommend__mainwrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/1001/hon-main-dec.png) no-repeat;
  background-size: contain;
  top: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .recommend__mainwrap::before {
    width: 260%;
    right: -50%;
  }
}
.recommend__mainwrap--pick {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .recommend__mainwrap--pick {
    padding-bottom: 0;
  }
}
.recommend__wrap {
  position: relative;
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
}

#tenpo {
  margin-top: 40px;
}

.tenpo__order {
  padding-top: 40px;
  background: #F5F5F5;
}

.order {
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
  border: 3px solid #7D0909;
  background: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.order__ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-right: 1em;
}
.order__ttl p {
  position: relative;
  font-size: 1.6em;
  font-weight: 700;
  display: inline-block;
  color: #7D0909;
  padding: 1em 0;
  padding-left: 1.5em;
}
@media screen and (max-width: 767px) {
  .order__ttl p {
    font-size: 1.2em;
  }
}
.order__ttl p::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
  background: #7D0909;
  left: 0;
  top: 0;
}
.order__ttl-toggle {
  position: relative;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  line-height: 1;
  background: #7D0909;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .order__ttl-toggle {
    width: 1.4em;
    height: 1.4em;
    font-size: 1.8em;
  }
}
.order__ttl-toggle::before, .order__ttl-toggle::after {
  content: "";
  position: absolute;
  width: 0.8em;
  height: 2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #fff;
}
.order__ttl-toggle.open::after {
  transform: rotate(90deg);
}
.order__wrap {
  padding: 1em;
  display: none;
}
@media screen and (max-width: 767px) {
  .order__wrap {
    padding: 1em 0.5em;
  }
}
.order__notice {
  margin-top: 10px;
  text-align: center;
  font-size: 0.9em;
}
.order .orderbox {
  margin-top: 20px;
}
.order .tab-area {
  display: flex;
  cursor: pointer;
  justify-content: center;
}
.order .tab-area .tab {
  width: 46%;
  margin: 0 4px;
  padding: 12px;
  text-align: center;
  background-color: #E79B9B;
  color: #fff;
  border-radius: 10px 10px 0 0;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .order .tab-area .tab {
    font-size: 0.85em;
    border-radius: 10px 10px 0 0;
    padding: 8px;
  }
}
.order .tab-area .tab img {
  width: 32px;
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .order .tab-area .tab img {
    width: 18px;
  }
}
.order .tab-area .tab .tab__text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.order .tab-area .tab .tab__text img {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: top;
  margin-right: 0.4rem;
}
.order .tab-area .tab .tab__text span {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .order .tab-area .tab .tab__text span {
    font-size: 0.65em;
  }
}
.order .tab-area .tab:nth-child(n+2) {
  border-left: 2px solid;
}
.order .tab-area .tab.active {
  background-color: #7D0909;
  color: #fff;
}
.order .tab-area .tab.delivery.active {
  background-color: #7D0909;
  color: #fff;
}
.order .panel {
  display: none;
  text-align: center;
  background: #7D0909;
}
.order .panel.active {
  display: block;
  padding: 2em;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .order .panel.active {
    padding: 1em 0.5em;
  }
}
.order .panel img {
  width: 100%;
}
.order .panel__notice {
  margin-top: 10px;
}
.order .panel__notice p {
  padding-left: 1em;
  text-indent: -1em;
  color: #fff;
  text-align: left;
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .order .panel__notice p {
    font-size: 0.8em;
  }
}

.moremenu {
  position: relative;
}
.moremenu label {
  text-align: center;
  width: 100%;
  height: 200px;
  bottom: 20px;
  left: 0;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  background: linear-gradient(to bottom, rgba(255, 246, 246, 0) 0%, rgb(246, 246, 246) 100%);
}
.moremenu label span {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 16px 0;
}
.moremenu label span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 12px;
  transform: rotate(90deg);
  background: url(../img/arrow_black.svg) no-repeat;
  background-size: contain;
  right: 34%;
  top: 40%;
}
.moremenu input:checked + label {
  height: 0px;
}
.moremenu input:checked + label {
  display: none !important;
}
.moremenu input {
  display: none !important;
}
.moremenu input:checked ~ .moremenu__content {
  height: auto;
}
@media screen and (max-width: 1024px) {
  .moremenu__content {
    overflow: hidden;
    height: 200px;
  }
}
.moremenu__content.open {
  display: block;
}

.about {
  padding: 0 1.5em;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.about .detailp {
  display: flex;
  background: #fff;
  padding: 1em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .about .detailp {
    padding: 1em 0.5em;
  }
}
.about .detailp--tera {
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .about .detailp--tera {
    margin-top: 40px;
  }
}
.about .detailp__img {
  width: 28%;
  margin-right: 2%;
}
.about .detailp__txt {
  width: 70%;
}
.about .detailp__txt .ttl {
  font-size: 1.1em;
  border-bottom: none;
  padding-bottom: 0;
}
.about .detailp__txt .txt {
  font-size: 0.9em;
}
.about .comment {
  position: relative;
  padding: 1em 1em 12px;
  background: #fff;
  border: 1px solid #b37400;
  margin-bottom: 16px;
}
.about .comment::before {
  content: "";
  position: absolute;
  width: 2em;
  height: 2em;
  background: url(../img/dec-comment.png) no-repeat;
  background-size: contain;
  left: -12px;
  top: -12px;
  animation: spin-rotate 10s linear infinite;
}
.about .comment p {
  font-size: 1.1em;
  font-weight: 600;
}
.about .limitedset {
  color: #e50020;
  font-size: 1.2em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .about .limitedset {
    font-size: 1.1em;
  }
}
.about .iconflx {
  display: flex;
  align-items: center;
}
.about .iconflx .no {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 4px;
  background: #5f1985;
  border: 1px solid #fff;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-right: 8px;
}
.about .youmeoriginal {
  margin-top: 4px;
}
.about .ttl {
  font-weight: 700;
  font-size: 1.4em;
  padding-bottom: 6px;
  margin-top: 4px;
  margin-bottom: 6px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  .about .ttl {
    font-size: 1.3em;
  }
}
.about .ttl span.small {
  font-size: 0.8em;
}
.about .icon {
  display: flex;
  margin: 8px 0 4px;
}
.about .icon img {
  width: 24px;
}
.about .icon p.icontxt {
  display: inline-block;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding: 2px 6px;
  font-size: 0.85em;
}
.about .icon__wrap {
  display: flex;
}
.about .icon__img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .icon--tenpo .icon__img {
  background: #00693e;
}
.about .icon--tenpo p.icontxt {
  border: 1px solid #00693e;
  color: #00693e;
  margin-right: 8px;
}
.about .icon--deli .icon__img {
  background: #004097;
}
.about .icon--deli p.icontxt {
  border: 1px solid #004097;
  color: #004097;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .about .contents p {
    font-size: 0.9em;
  }
}
.about .detail {
  display: inline-block;
  padding: 2px 6px;
  font-size: 0.9em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #fff;
  margin-right: 4px;
  margin-bottom: 10px;
}
.about .detail--paper {
  background: #598e35;
  border: 1px solid #598e35;
}
.about .detail--nenshi {
  background: #7f4221;
  border: 1px solid #7f4221;
}
.about .detail--ganjitsu {
  background: #b37400;
  border: 1px solid #b37400;
}
.about .detail--reizo {
  border: 2px solid #20aee5;
  color: #20aee5;
  background: #fff;
}
.about .detail__wrap {
  display: flex;
}
.about .moto {
  text-align: center;
  font-size: 1.1em;
  color: #e50020;
  font-weight: 700;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .about .moto {
    font-size: 1em;
  }
}
.about .price {
  font-size: 1.6em;
  font-weight: 700;
  text-align: right;
}
.about .price span.tax {
  font-size: 0.8em;
  margin-left: 4px;
}
.about .waribiki {
  text-align: center;
  background: #e50020;
  border: 3px solid #e50020;
}
.about .waribiki .waribikigo {
  color: #fff;
  font-size: 1.2em;
  padding-bottom: 4px;
}
.about .waribiki .price {
  padding: 4px 0;
  background: #fff;
  font-size: 1.6em;
  font-weight: 700;
  color: #e50020;
}
.about span.tax {
  font-size: 0.8em;
  margin-left: 4px;
}

.tenpodetail {
  padding: 0.5em;
  background: #563032;
  border-radius: 10px;
  border: 2px solid #E4BF69;
  margin-bottom: 8px;
}
.tenpodetail ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tenpodetail ul li {
  width: 48%;
  margin: 10px 0;
  display: flex;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .tenpodetail ul li {
    width: 100%;
  }
}
.tenpodetail-img {
  width: 42%;
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  .tenpodetail-img {
    width: 28%;
    margin-right: 8px;
  }
}
.tenpodetail-img img {
  width: 100%;
}
.tenpodetail-txt {
  width: 56%;
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  .tenpodetail-txt {
    width: 70%;
  }
}
.tenpodetail-ttl {
  display: inline-block;
  border-bottom: 1px solid #fff;
  font-size: 1.1em;
  font-weight: 700;
}

.btn {
  position: relative;
  text-align: center;
  border-radius: 40px;
  z-index: 10;
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 95%;
  }
}
.btn--wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: none;
}
.btn--wrap .orderbtn {
  width: 50%;
}
.btn--wrap .orderbtn a {
  padding: 8px 0;
  font-size: 1em;
  line-height: 1.2;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn a {
  position: relative;
  display: block;
  width: 95%;
  margin: 0 auto;
  padding: 16px 0;
  background: #EBCA1A;
  background: linear-gradient(90deg, rgb(235, 202, 26) 0%, rgb(255, 251, 208) 50%, rgb(235, 202, 26) 100%);
  border-radius: 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 4px solid #fff;
  font-size: 1.1em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 1em;
  }
}
.btn a::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: url(../img/arrow_black.svg) no-repeat;
  background-size: contain;
  right: 4%;
  top: 32%;
  transition: all 0.3s;
}
.btn a:hover::before {
  right: 2%;
}

@keyframes spin-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* -------------------------------------
        注意文
------------------------------------- */
.mainnotice {
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 40px 0;
}

.notice p {
  padding-left: 1em;
  text-indent: -1em;
}

/* -------------------------------------
        デジタルカタログ
------------------------------------- */
.catalog {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  background: #f4f1ed;
}
@media screen and (max-width: 767px) {
  .catalog {
    display: block;
    padding-bottom: 40px;
  }
}
.catalog__txtarea {
  width: 45%;
  max-width: 400px;
  margin-right: 20px;
  padding: 3em 0.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .catalog__txtarea {
    width: 95%;
    margin: 0 auto;
    padding: 0 1em 3em 1em;
  }
}
.catalog__ttl {
  margin-bottom: 16px;
  font-size: 1.2em;
  font-weight: 700;
}
.catalog__ttl span.big {
  font-size: 2em;
}
.catalog__txt {
  position: relative;
  margin-bottom: 16px;
  font-size: 1.2em;
}
.catalog__txt span.big {
  font-size: 1.5em;
}
.catalog__btn a {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 40px;
  padding: 16px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background: #e50020;
  color: #fff;
}
.catalog__btn a::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  right: 3%;
  top: 32%;
  transition: all 0.3s;
}
.catalog__btn a:hover::before {
  right: 2%;
}
.catalog__img {
  width: 40%;
  max-width: 350px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .catalog__img {
    width: 80%;
    margin: 0 auto;
  }
}
.catalog__img img {
  width: 100%;
}
.catalog__img a {
  display: block;
  text-align: center;
  padding: 0.5em;
  box-shadow: 0 0 10px #919191;
}
.catalog__img a:hover {
  box-shadow: none;
}
.catalog__img--hon a {
  padding: 0;
}

/* -------------------------------------
        イズミグループ各店舗
------------------------------------- */
.grouptenpo {
  position: relative;
  width: 95%;
  margin: 0 auto;
  max-width: 980px;
}
.grouptenpo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 90%;
  background: #FFF6FA;
  bottom: 0;
  z-index: 0;
}
.grouptenpo__ttl {
  position: relative;
  text-align: center;
  z-index: 1;
}
.grouptenpo__ttl p {
  display: inline-block;
  border-bottom: 2px solid #C60079;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .grouptenpo__ttl p {
    display: block;
    font-size: 1.3em;
    padding-bottom: 10px;
    width: 95%;
    margin: 0 auto;
  }
}
.grouptenpo__img {
  position: relative;
  text-align: center;
  padding: 40px 1em;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .grouptenpo__img {
    padding: 20px 1em;
  }
}

/*アニメーション*/
.anime-l {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(-40px);
}

.anime-b {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
}

.anime-o {
  opacity: 0;
  visibility: hidden;
  transition: 2.5s;
}

.anime-o2 {
  opacity: 0;
  visibility: hidden;
  transition: 3.5s;
  transition-delay: 0.4s;
}

.anime-o3 {
  opacity: 0;
  visibility: hidden;
  transition: 3.5s;
  transition-delay: 1.6s;
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* -------------------------------------
        スマホ版フローティングバナー
------------------------------------- */
.sp_footer_menu {
  position: fixed;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: 999;
  background: rgba(116, 116, 116, 0.7);
}
.sp_footer_menu li {
  list-style: none;
  width: 85%;
  margin: 8px auto;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  background: #fff;
  border-radius: 5px;
}
.sp_footer_menu a {
  text-align: center;
  display: block;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 8px 0;
  line-height: 1.5;
  color: #c70079;
  font-weight: 700;
  font-size: 1.1em;
}

@media (max-width: 767px) {
  #s_footer #s_toPageTop {
    right: -40px;
  }
}
#tenpo,
#s_footer {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.sale__bd {
  border-bottom: none;
  padding-bottom: 40px;
}