@charset "UTF-8";
@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
/*共通*/
.wrap {
  width: auto;
}

main.main {
  border: none;
  padding: 0;
}
@media screen and (max-width: 834px) {
  main.main {
    padding: 0;
  }
}

.ehomaki_wrap {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  color: #000;
}
.ehomaki_wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ehomaki_wrap ul li {
  margin: 0;
}
.ehomaki_wrap * {
  box-sizing: border-box;
}
.ehomaki_wrap a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
.ehomaki_wrap img {
  max-width: 100%;
}
.ehomaki_wrap p {
  line-height: 1.4;
}
.ehomaki_wrap p span.youbi {
  font-size: 0.8em;
}

/* -------------------------------------
        ＴＯＰ
------------------------------------- */
.tophead {
  position: relative;
  padding: 0.5em;
  background: #fff;
  box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.16);
  z-index: 2;
}
.tophead__umai {
  width: 50%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tophead__umai {
    width: 95%;
    margin-top: 4px;
  }
}
.tophead .top_logo {
  position: absolute;
  display: block;
  width: 160px;
  left: 10px;
  top: 10px;
}
@media screen and (max-width: 767px) {
  .tophead .top_logo {
    width: 90px;
    position: relative;
    left: 0;
    top: 0;
    height: 20px;
  }
}
.tophead .top_logo img {
  vertical-align: top;
}

.fv {
  position: relative;
  background: url(../img/fv-bg.jpg);
  overflow: hidden;
}
.fv::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 60%;
  background: url(../img/fv-left.png) no-repeat;
  background-size: contain;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fv::before {
    width: 40%;
    height: 40%;
  }
}
.fv::after {
  content: "";
  position: absolute;
  width: 25%;
  height: 60%;
  background: url(../img/fv-right.png) no-repeat;
  background-size: contain;
  background-position: top right;
  right: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fv::after {
    background: url(../img/fv-left.png) no-repeat;
    background-size: contain;
    transform: scale(-1);
    top: auto;
    bottom: 40px;
    width: 70%;
  }
}
.fv__dec {
  position: absolute;
  width: 100%;
  bottom: 60px;
}
@media screen and (max-width: 767px) {
  .fv__dec {
    bottom: 20px;
  }
}
.fv__dec img {
  width: 100%;
}
.fv__ttlarea {
  padding-top: 20px;
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .fv__ttlarea {
    width: 100%;
    max-width: 640px;
  }
}
.fv__mainimg {
  position: absolute;
  width: 85%;
  max-width: 1000px;
  right: -28%;
  top: -8%;
}
.fv__mainimg img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv__mainimg {
    position: relative;
    width: 100%;
    right: -30px;
    margin-top: -40px;
  }
}
.fv__ttl {
  position: relative;
  width: 40%;
  max-width: 500px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .fv__ttl {
    width: 75%;
    margin: 0 auto;
    max-width: 400px;
  }
}
.fv__ehou {
  position: relative;
  text-align: center;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .fv__ehou {
    margin-top: -20px;
  }
}
.fv__ehou::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: #241902;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.fv__ehou--img {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fv__ehou--img {
    width: 90%;
  }
}
.fv__ehou--img img {
  position: relative;
  z-index: 2;
}

/* -------------------------------------
        商品一覧
------------------------------------- */
.con {
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .con {
    padding: 0 0 60px;
  }
}
.con__wrap {
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
}
.con__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .con__list {
    justify-content: space-around;
  }
}

.item {
  position: relative;
  margin: 10px 8px;
  padding: 1em;
  background: #fff;
  border-radius: 16px;
  border: 3px solid #241902;
}
@media screen and (max-width: 767px) {
  .item {
    margin: 6px 0;
    padding: 1em 0.5em;
    max-width: 500px;
  }
}
.item--w100wide {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 2px 2px 2px #BA0007;
}
@media screen and (max-width: 1024px) {
  .item--w100wide {
    max-width: 500px;
  }
}
.item--w100wide .item__img {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .item--w100wide .item__img {
    width: 100%;
  }
}
.item--w100wide .item__img--item6 {
  position: relative;
}
.item--w100wide .item__img--item6::before {
  content: "";
  position: absolute;
  width: 15%;
  height: 15%;
  background: url(../img/dec-yellow.png) no-repeat;
  background-size: contain;
  top: 5%;
  left: 0;
}
.item--w100wide .item__txtarea {
  margin-left: 20px;
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .item--w100wide .item__txtarea {
    width: 100%;
    margin-left: 0;
  }
}
.item--w100 {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .item--w100 {
    margin-top: 8%;
  }
}
.item--w100 .item__com {
  width: 16%;
  right: 0;
  top: -10%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .item--w100 .item__com {
    width: 14%;
    top: -12%;
  }
}
.item--w50 {
  width: 48.5%;
  background: #fff;
  padding: 1em;
  box-shadow: 2px 2px 2px #BA0007;
  display: flex;
  flex-direction: column;
  min-width: 480px;
}
@media screen and (max-width: 767px) {
  .item--w50 {
    width: 100%;
    padding: 1.5em 0.5em;
    min-width: auto;
  }
}
.item--w50 .item__mainttl {
  font-size: 1.8em;
}
@media screen and (max-width: 767px) {
  .item--w50 .item__mainttl {
    font-size: 1.3em;
  }
}
.item--w50 .item__price {
  font-size: 2.2em;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .item--w50 .item__price {
    font-size: 1.8em;
  }
}
.item__img {
  position: relative;
  margin-bottom: 8px;
}
.item__menu {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .item__menu {
    width: 55%;
  }
}
.item__menu--item2 {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .item__menu--item2 {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .item__menu--item3 {
    width: 40%;
  }
}
.item__day {
  position: absolute;
  width: 24%;
  bottom: 0;
  left: 0;
}
.item__about {
  padding: 6px 8px;
  border-radius: 6px;
  background: #BA0007;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .item__about {
    font-size: 0.9em;
  }
}
.item__mainttl {
  font-weight: 800;
  font-size: 2em;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .item__mainttl {
    font-size: 1.3em;
  }
}
.item__mainttl span {
  font-size: 0.6em;
  font-weight: 500;
  padding: 0 4px;
  margin: 0 4px;
}
@media screen and (max-width: 767px) {
  .item__mainttl span {
    display: inline-block;
    margin-top: 4px;
  }
}
.item__mainttl span.small {
  display: block;
  padding: 0;
  margin: 0;
  margin-bottom: 4px;
  font-size: 0.7em;
}
.item__mainttl span.set {
  color: #BA0007;
  border: 2px solid #BA0007;
}
.item__mainttl span.hon {
  color: #fff;
  background: #E50012;
  border: 2px solid #241902;
}
.item__price {
  text-align: right;
  font-weight: 700;
  font-size: 2.5em;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .item__price {
    font-size: 1.8em;
  }
}
.item__price span.yen {
  font-size: 0.7em;
}
.item__price span.small {
  font-size: 0.4em;
}
.item__price span.tax {
  font-size: 0.8em;
}
.item__corner {
  width: 24%;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .item__corner {
    width: 30%;
    font-size: 0.9em;
  }
}
.item__corner--meet {
  background: #B81C22;
  padding: 4px;
}

.ehomaki {
  position: relative;
  background: url(../img/ehomaki-bg.jpg);
  background-size: contain;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .ehomaki .item--w50min {
    width: 48%;
    padding: 1em 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .ehomaki .item--w50min .item__day {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .ehomaki .item--w50min .item__notice {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .ehomaki .item--w50min .item__mainttl {
    font-size: 1em;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .ehomaki .item--w50min .item__mainttl span {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 767px) {
  .ehomaki .item--w50min .item__price {
    font-size: 1.5em;
  }
}

.oniku {
  position: relative;
  background: url(../img/oniku-bg.jpg);
  background-size: contain;
  overflow: hidden;
}
.oniku::before, .oniku::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 16px;
  background: url(../img/temaki-line.png) repeat-x;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .oniku::before, .oniku::after {
    background-size: cover;
  }
}
.oniku::before {
  top: 0;
}
.oniku::after {
  bottom: 0;
}
.oniku__ttl {
  position: relative;
  width: 70%;
  margin: 0 auto;
  max-width: 900px;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .oniku__ttl {
    width: 95%;
  }
}
.oniku__kikan {
  width: 90%;
  margin: 0 auto;
  max-width: 700px;
  margin-bottom: 30px;
  background: #78340F;
  border-radius: 50px;
  padding: 8px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .oniku__kikan {
    padding: 0.5em 2em;
  }
}
.oniku .con__list {
  position: relative;
}
.oniku .con__list::before, .oniku .con__list::after {
  content: "";
  position: absolute;
  background: url(../img/dec-orange.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .oniku .con__list::before, .oniku .con__list::after {
    content: none;
  }
}
.oniku .con__list::before {
  width: 10%;
  height: 10%;
  left: -16%;
  top: 40%;
}
.oniku .con__list::after {
  width: 6%;
  height: 6%;
  right: -10%;
  bottom: 6%;
}
.oniku .item {
  border: 2px solid #E84709;
  box-shadow: none;
}
.oniku .item--w50 {
  box-shadow: none;
}
.oniku .item--w50 .item__mainttl {
  font-size: 1.8em;
}
@media screen and (max-width: 767px) {
  .oniku .item--w50 .item__mainttl {
    font-size: 1.3em;
  }
}
.oniku .item--w50 .item__price {
  font-size: 2.2em;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .oniku .item--w50 .item__price {
    font-size: 1.8em;
  }
}
.oniku .item__mainttl {
  line-height: 1.3;
  margin-bottom: 8px;
}
.oniku .item__mainttl span.small {
  display: block;
  font-size: 0.6em;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.oniku .item__price {
  color: #E84709;
  border-top: 3px solid #A5C834;
}
.oniku .item__price span.atari {
  font-size: 0.5em;
  font-weight: 600;
  color: #241902;
  margin-right: 4px;
}

/* -------------------------------------
        注意文
------------------------------------- */
.mainnotice {
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
  padding: 20px 0;
}
.mainnotice__main {
  padding: 1em;
  background: #fff;
  font-size: 0.9em;
}
.mainnotice p {
  font-weight: 600;
}
.mainnotice p.main {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 20px;
}

.notice {
  width: 95%;
  max-width: 1100px;
  margin: 60px auto;
}
.notice p {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.9em;
}

@media screen and (max-width: 1023px) {
  body:where(.mblt-header-mobile-buttons, .mblt-header-and-footer-mobile-buttons) {
    margin-top: 0;
  }
}
/*アニメーション*/
.anime-l {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(-40px);
}

.anime-b {
  opacity: 0;
  visibility: hidden;
  transition: 0.8s;
  transition-delay: 0.6s;
  transform: translateY(50px);
}

.anime-o {
  opacity: 0;
  visibility: hidden;
  transition: 0.8s;
  transform: translateY(50px);
}

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

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

.anime-bound {
  opacity: 0;
  visibility: hidden;
  transition: 0.8s;
  transform: scale(0.6);
  transform-origin: center bottom;
}

.anime-bound2 {
  transition: 0.6s;
  transform: scale(0.6);
  transform-origin: center bottom;
}

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

/* -------------------------------------
        スマホ版フローティングバナー
------------------------------------- */
#tenpo {
  background: #fff;
  padding-bottom: 60px;
}

.sale__shoplist-btn {
  background-color: #F5F5F5;
  padding: 80px 0 50px;
}

.sale__shoplist-btn h2 {
  text-align: center;
}

.sale__shoplist-btn .list {
  display: none;
}

.sale__shoplist-cont h2 {
  background-color: #D3D3D3;
  height: 70px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid #fff;
}

.sale__shoplist-cont h3 {
  background-color: #EBEBEB;
  height: 70px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid #fff;
}

.area__detail {
  display: none;
}

.area__detail > div {
  padding: 30px 20px;
  border-bottom: 1px solid #D3D3D3;
}

.area__detail > div .ttl {
  font-size: 15px;
  margin-bottom: 16px;
}

.area__detail > div ul {
  display: flex;
  justify-content: flex-end;
}

.area__detail > div ul a {
  color: #2E3192;
  font-size: 14px;
}

.area__detail > div ul li:last-child {
  margin-left: 30px;
}

.addr {
  display: none;
}

.sale__shoplist-cont h2::before {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 28px;
  margin: auto;
  transition: 0.3s;
}

.sale__shoplist-cont h2::after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transition: 0.3s;
}

.area__detail > div ul a::after {
  content: "";
  display: inline-block;
  background: url(../img/link_arrow_blue.svg) no-repeat 50% 50%/contain;
  width: 8px;
  height: 10px;
  margin-left: 10px;
  transition: 0.3s;
}

.sale__shoplist-btn h2 {
  font-weight: bold;
  font-size: 1.3em;
}

@media screen and (min-width: 1024px) {
  .area__detail {
    display: block !important;
  }
  .sale__shoplist-cont h3 {
    pointer-events: none;
  }
  .sale__shoplist-btn {
    padding: 80px 0;
    margin-bottom: 80px;
  }
  .sale__shoplist-btn .wrap {
    display: flex;
    align-items: center;
  }
  .sale__shoplist-btn h2 {
    text-align: center;
    margin-right: 194px;
    flex: none;
  }
  .sale__shoplist-btn .list {
    display: block;
    flex: none;
  }
  .sale__shoplist-btn .list dl {
    display: flex;
    margin-bottom: 20px;
  }
  .sale__shoplist-btn .list dt {
    margin-right: 50px;
    font-weight: 500;
  }
  .sale__shoplist-btn .list dd {
    margin-right: 40px;
    font-weight: 400;
  }
  .sale__shoplist-btn .list dl a {
    color: #333;
    text-decoration: none;
  }
  .sale__bd {
    border-bottom: 1px solid #D3D3D3;
    padding-bottom: 80px;
  }
  .sale__shoplist-cont {
    width: 1000px;
    margin: 0 auto;
  }
  .sale__shoplist-cont h2 {
    display: none;
  }
  .sale__shoplist-cont .area__parent {
    display: block;
  }
  .sale__shoplist-cont h3 {
    background-color: #fff;
    height: auto;
    padding-left: 0px;
    display: block;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
  }
  .sale__shoplist-cont h3::before {
    content: "";
    width: 61px;
    height: 3px;
    background-color: #008d8f;
    display: block;
    margin-bottom: 20px;
  }
  .area__detail {
    display: block;
    margin-bottom: 80px;
  }
  .area__detail > div:first-child {
    border-top: 1px solid #D3D3D3;
  }
  .area__detail > div {
    border-bottom: 1px solid #D3D3D3;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .area__detail > div .ttl {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 500;
    width: auto;
  }
  .area__detail > div ul {
    display: flex;
    width: 330px;
  }
  .area__detail > div ul a {
    color: #2E3192;
    font-size: 14px;
  }
  .area__detail > div ul li:last-child {
    margin-left: 40px;
  }
}
@media screen and (min-width: 768px) {
  .tenpowrap {
    display: flex;
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
  }
}
@media screen and (max-width: 1023px) {
  .sale__shoplist-cont h3::after {
    content: "";
    background: url(https://www.izumi.jp/themes/custom/izumi/img/icon/arrow_black.svg) no-repeat 50% 50%/contain;
    width: 8px;
    height: 10px;
    display: block;
    position: absolute;
    right: 23px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
  }
  .sale__shoplist-cont h3.act::after {
    transform: rotate(90deg);
  }
}
#content {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  z-index: 0;
}