@charset "UTF-8";
@media screen and (max-width: 767px) {
  .only-lg {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
/*共通*/
#top {
  margin-right: 200px;
}
@media screen and (max-width: 1024px) {
  #top {
    margin-right: 0;
  }
}

footer {
  margin-right: 200px;
}
@media screen and (max-width: 1024px) {
  footer {
    margin-right: 0;
  }
}

.oseibo2023_wrap {
  overflow: hidden;
  position: relative;
}

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

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

* {
  box-sizing: border-box;
}

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

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

p {
  line-height: 1.4;
}

/* -------------------------------------
        ＴＯＰ
------------------------------------- */
.fv {
  position: relative;
  background: url(../img/fv-bg.png) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .fv {
    background: url(../img/fv-bg-sp.png) no-repeat;
    background-size: cover;
  }
}
.fv .top_logo {
  position: absolute;
  z-index: 2;
  width: 60px;
  left: 10px;
  top: 10px;
}
@media screen and (max-width: 767px) {
  .fv .top_logo {
    width: 45px;
    top: 10px;
  }
}
.fv__ttlarea {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .fv__ttlarea {
    padding: 80px 0;
  }
}
.fv__ttl {
  max-width: 320px;
  padding: 40px 20px 40px 40px;
  background: url(../img/fv-ttlbg-pc.png) no-repeat;
  background-size: cover;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__ttl {
    max-width: 450px;
    padding: 0;
    width: 90%;
    margin: 0 auto;
    background: none;
  }
}

.kigen {
  background: #1B1B1B;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1em 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .kigen {
    display: block;
    margin-bottom: 50px;
  }
}
.kigen__main {
  display: flex;
}
@media screen and (max-width: 767px) {
  .kigen__main {
    width: 95%;
    margin: 0 auto;
  }
}
.kigen__main:nth-child(2) {
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .kigen__main:nth-child(2) {
    margin: 0 auto;
    margin-top: 8px;
  }
}
.kigen__main-txt {
  border: 1px solid #AE1010;
  background: #fff;
  padding: 4px 8px;
}
.kigen__main-txt p {
  color: #AE1010;
}
@media screen and (max-width: 767px) {
  .kigen__main-txt p {
    font-size: 0.9em;
  }
}
.kigen__main-day {
  margin-left: 8px;
}
.kigen__main-day p {
  color: #fff;
  font-size: 1.3em;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .kigen__main-day p {
    font-size: 1.2em;
  }
}

/* -------------------------------------
        メニュー
------------------------------------- */
nav {
  display: flex;
}
@media screen and (max-width: 1024px) {
  nav {
    width: 100%;
    position: fixed;
    pointer-events: none;
    z-index: 3;
  }
}
@media screen and (max-width: 1024px) {
  nav .nopen {
    z-index: 3;
  }
}

@media screen and (max-width: 1024px) {
  .drawer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 999;
  }
}

.menu {
  width: 200px;
  position: fixed;
  right: 0;
  top: 0;
  font-size: 0.9em;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 0;
  transform: translateX(0);
  padding: 90px 20px 0;
  text-align: center;
  height: 100vh;
  z-index: 999;
  box-shadow: 1px 1px 3px #6b6b6b;
}
@media screen and (max-width: 1024px) {
  .menu {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    transition: 0.5s ease;
    overflow-x: hidden;
    padding-top: 120px;
    transform: translateX(100%);
    height: 100vh;
    width: 100%;
  }
}
.menu::before {
  content: "";
  position: absolute;
  background: url(../img/nav_img.png) no-repeat;
  background-position: center;
  width: 32%;
  height: 60px;
  background-size: contain;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 20px;
}
@media screen and (max-width: 1024px) {
  .menu::before {
    top: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .menu.open {
    transform: translateX(0%);
    z-index: 10;
    height: 100vh;
  }
}
.menu ul li a {
  padding: 1em 0;
  color: #000;
  border-top: 1px dotted #ccc;
  display: block;
}
@media screen and (max-width: 1024px) {
  .menu ul li a {
    display: block;
    border-top: 1px dotted #ccc;
    color: #000;
    text-decoration: none;
    pointer-events: auto;
  }
}
.menu ul li a:hover {
  background-color: transparent;
}
.menu ul li:last-child a {
  border-bottom: 1px dotted #ccc;
}

.Toggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .Toggle {
    display: block;
    position: fixed;
    width: 46px;
    height: 46px;
    cursor: pointer;
    right: 15px;
    top: 10px;
    background-color: #fff;
    border: 1px solid #AE1010;
    border-radius: 4px;
    z-index: 999;
    pointer-events: auto;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  }
}
@media screen and (max-width: 1024px) {
  .Toggle span {
    display: block;
    position: absolute;
    width: 26px;
    border-bottom: solid 3px #AE1010;
    transition: 0.35s ease-in-out;
    left: 10px;
  }
  .Toggle span:nth-child(1) {
    top: 12px;
  }
  .Toggle span:nth-child(2) {
    top: 22px;
  }
  .Toggle span:nth-child(3) {
    top: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .Toggle.active span:nth-child(1) {
    top: 22px;
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 1024px) {
  .Toggle.active span:nth-child(2), .Toggle.active span:nth-child(3) {
    top: 22px;
    transform: rotate(45deg);
  }
}

/* -------------------------------------
        特典
------------------------------------- */
.tokuten {
  margin-bottom: 60px;
}
.tokuten__ttl {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tokuten__ttl {
    width: 70%;
    margin: 0 auto;
    max-width: 550px;
  }
}
.tokuten__subttl {
  margin-top: 12px;
  text-align: center;
}
.tokuten__subttl p {
  position: relative;
  display: inline-block;
  font-size: 1.2em;
}
.tokuten__subttl p::before, .tokuten__subttl p::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background: #AE1010;
  bottom: 0;
}
.tokuten__subttl p::before {
  left: -10%;
  transform: rotate(-30deg);
}
.tokuten__subttl p::after {
  right: -10%;
  transform: rotate(30deg);
}
.tokuten__subttl p span {
  color: #AE1010;
  font-size: 1.4em;
  font-weight: 700;
}
.tokuten__subttl p span.red {
  margin-left: 8px;
}
.tokuten__subttl p span.hin {
  font-size: 0.8em;
}
.tokuten__con {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
  margin-top: 16px;
  max-width: 1100px;
}
.tokuten__con--tuujo {
  margin-top: 40px;
}
.tokuten__item {
  width: 45%;
  margin: 0 12px;
  padding: 1em;
  background: #FFF6F6;
  border: 1px solid #AE1010;
}
@media screen and (max-width: 1024px) {
  .tokuten__item {
    width: 100%;
    max-width: 540px;
  }
}
.tokuten__item--online {
  background: #FFF9E6;
  border: 1px solid #BE922C;
}
@media screen and (max-width: 1024px) {
  .tokuten__item--online {
    margin-top: 16px;
  }
}
.tokuten__kigen {
  background: #AE1010;
  text-align: center;
  padding: 4px 0;
}
.tokuten__kigen--online {
  background: #BE922C;
}
.tokuten__kigen p {
  color: #fff;
  font-size: 1.4em;
}
.tokuten__kigen--tuujo {
  margin-bottom: 20px;
}
.tokuten__kigen--tuujo p {
  font-size: 1.1em;
}
@media screen and (max-width: 767px) {
  .tokuten__kigen--tuujo p {
    font-size: 1em;
  }
}
.tokuten__txt {
  margin: 16px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tokuten__txt {
    margin-bottom: 12px;
  }
}
.tokuten__txt p {
  font-size: 1.2em;
}
.tokuten__point {
  display: flex;
  justify-content: center;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .tokuten__point--tuujo {
    align-items: center;
  }
}
.tokuten__point-about {
  margin-right: 12px;
}
.tokuten__point-about p {
  background: #AE1010;
  padding: 4px;
  color: #fff;
  font-size: 1.2em;
}
@media screen and (max-width: 767px) {
  .tokuten__point-about p {
    font-size: 1em;
  }
}
.tokuten__point-about p.tuujo {
  background: none;
  color: #020202;
}
.tokuten__point-about--online p {
  background: #BE922C;
}
.tokuten__point-about--tuujo p {
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  .tokuten__point-about--tuujo p {
    text-align: center;
  }
}
.tokuten__point-bai p {
  color: #AE1010;
  font-size: 5em;
  font-weight: 700;
  line-height: 0.8;
}
@media screen and (max-width: 767px) {
  .tokuten__point-bai p {
    font-size: 4.5em;
  }
}
.tokuten__point-bai p span {
  font-size: 0.5em;
  font-weight: 500;
}
.tokuten__point-bai--online p {
  color: #BE922C;
}
.tokuten__point-bai--tuujo p {
  font-size: 4.5em;
}
@media screen and (max-width: 767px) {
  .tokuten__point-bai--tuujo p {
    font-size: 3em;
  }
}
.tokuten__notice {
  margin-top: 20px;
  text-align: center;
}
.tokuten__notice p {
  font-size: 0.9em;
}
.tokuten__btn {
  width: 50%;
  max-width: 380px;
  margin: 0 auto;
  margin-top: 24px;
  text-align: center;
  background: #AE1010;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .tokuten__btn {
    width: 95%;
    max-width: 350px;
  }
}
.tokuten__btn a {
  display: block;
  color: #fff;
  padding: 12px 8px 16px;
  font-size: 1.1em;
  position: relative;
}
.tokuten__btn a::after {
  content: "";
  position: absolute;
  background: url(../img/arrow.svg) no-repeat;
  background-position: center;
  width: 10px;
  height: 20px;
  right: 5%;
  bottom: 32%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .tokuten__btn a::after {
    right: 4%;
  }
}
.tokuten__btn a:hover::after {
  right: 3%;
}

/* -------------------------------------
        メイン
------------------------------------- */
.con--souki {
  background: url(../img/bg.png) repeat;
  padding-bottom: 120px;
}
.con--tuujo {
  background: #fff;
  padding-top: 120px;
}
.con--tuujo .item__img::after {
  background: url(../img/item-bg-gold2.png) no-repeat;
  background-size: contain;
  background-position: top left;
}
.con__ttl {
  position: relative;
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
  padding-top: 80px;
  text-align: center;
}
.con__ttl::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #AE1010;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 14%;
  z-index: 0;
}
.con__ttl p {
  position: relative;
  display: inline-block;
  padding: 0 1em;
  background: url(../img/bg.png) no-repeat;
  font-size: 1.6em;
  letter-spacing: 0.2em;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .con__ttl p {
    font-size: 1.4em;
    padding: 0 0.5em;
  }
}
.con__ttl p::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 44px;
  background: url(../img/con-ttl-dec.png) no-repeat;
  background-size: contain;
  left: 0;
  right: 0;
  top: -120%;
}
.con__ttl--souki p {
  color: #AE1010;
}
.con__ttl--tuujo::after {
  background: #BE922C;
}
.con__ttl--tuujo p {
  background: #fff;
  color: #BE922C;
  letter-spacing: 0.1em;
}
.con__ttl--tuujo p::before {
  background: url(../img/con-ttl-dec2.png) no-repeat;
  background-size: contain;
  background-position: center;
  top: -150%;
}
@media screen and (max-width: 767px) {
  .con__ttl--tuujo p::before {
    top: -180%;
  }
}
.con__ttl2 {
  text-align: center;
}
.con__ttl2 p {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #AE1010;
  color: #AE1010;
  font-size: 1.3em;
  letter-spacing: 1px;
}
.con__ttl2 p::before {
  content: "";
  position: absolute;
  width: 96px;
  height: 72px;
  background: url(../img/con-ttl2-dec.png) no-repeat;
  background-size: contain;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -80px;
}
@media screen and (max-width: 767px) {
  .con__ttl2 p::before {
    width: 72px;
    top: -70px;
  }
}
.con__subttl {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .con__subttl {
    width: 70%;
    margin: 0 auto;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .con__subttl--tuujo {
    width: 90%;
    max-width: 400px;
  }
}
.con__subttl2 {
  text-align: center;
  width: 95%;
  max-width: 500px;
  margin: 0 auto;
}
.con__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
  margin-top: 60px;
  background: #fff;
  padding: 20px 2em;
}
@media screen and (max-width: 767px) {
  .con__list {
    padding: 20px 0;
    margin-top: 40px;
  }
}
.con__notice {
  position: relative;
  width: 95%;
  max-width: 1100px;
  margin: 80px auto;
}
.con__notice p {
  font-size: 0.9em;
}
.con__notice-main {
  text-align: center;
  margin-bottom: 30px;
}
.con__notice-main p {
  display: inline;
  background: linear-gradient(transparent 70%, #F8DB1B 70%);
  font-size: 1.1em;
  line-height: 1.8;
}
.con__catalogarea {
  width: 100%;
  background: #FAFAFA;
}
.con__catalog {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95%;
  margin: 120px auto 40px;
  max-width: 1100px;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .con__catalog {
    margin: 40px auto;
    display: block;
  }
}
.con__catalog p {
  text-align: center;
}
.con__catalog__catalogarea {
  width: 95%;
  margin: 120px auto 40px;
  max-width: 1100px;
}
.con__catalog-txtarea {
  width: 40%;
  background: #FFF6F6;
  border-radius: 24px;
  padding: 2em 1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .con__catalog-txtarea {
    width: 100%;
    border-radius: 0;
  }
}
.con__catalog-txtarea--tuujo {
  background: none;
  border-radius: 0;
}
.con__catalog-txt p {
  color: #AE1010;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 2px;
}
.con__catalog-sub {
  margin-top: 8px;
}
.con__catalog-sub p {
  position: relative;
  display: inline-block;
  font-size: 1.1em;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .con__catalog-sub p {
    letter-spacing: 0;
  }
}
.con__catalog-sub p::before, .con__catalog-sub p::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background: #AE1010;
  bottom: 0;
}
.con__catalog-sub p::before {
  left: -5%;
  transform: rotate(-30deg);
}
.con__catalog-sub p::after {
  right: -5%;
  transform: rotate(30deg);
}
.con__catalog-sub p span {
  color: #AE1010;
  font-size: 1.2em;
  font-weight: 700;
}
.con__catalog-sub p span.hin {
  font-size: 0.8em;
}
.con__catalog-btn {
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .con__catalog-btn {
    margin-top: 12px;
  }
}
.con__catalog-btn a {
  position: relative;
  display: inline-block;
  padding: 0.5em 2em;
  background: #AE1010;
  border-radius: 40px;
  color: #fff;
  transform: all 0.3s;
}
.con__catalog-btn a::after {
  content: "";
  position: absolute;
  background: url(../img/arrow.svg) no-repeat;
  background-position: center;
  width: 10px;
  height: 20px;
  right: 5%;
  bottom: 24%;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .con__catalog-btn a::after {
    right: 4%;
  }
}
.con__catalog-btn a:hover {
  box-shadow: none;
}
.con__catalog-btn a:hover::after {
  right: 3%;
}
.con__catalog-btn--tuujo a {
  display: inline-block;
  padding: 0.5em 3em;
}
.con__catalog-img {
  max-width: 300px;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .con__catalog-img {
    width: 80%;
    margin: 20px auto;
  }
}
.con__catalog-img a {
  display: block;
  box-shadow: 0px 0px 10px rgba(122, 122, 122, 0.35);
  transform: all 0.3s;
}
.con__catalog-img a:hover {
  box-shadow: none;
}

.item {
  width: 46%;
  margin: 40px 12px;
  max-width: 480px;
}
@media screen and (max-width: 767px) {
  .item {
    width: 95%;
    margin: 60px auto;
  }
}
.item--w100 {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .item--w100 {
    width: 95%;
    margin: 0 auto;
    margin-top: 80px;
    display: block;
    padding-bottom: 40px;
    max-width: 480px;
  }
}
.item--w100 .item__img {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .item--w100 .item__img {
    width: 100%;
  }
}
.item--w100 .item__txt {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .item--w100 .item__txt {
    width: 100%;
    margin-top: 8px;
  }
}
.item__img {
  position: relative;
  text-align: center;
  z-index: 1;
}
.item__img::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: url(../img/item-bg-gold.png) no-repeat;
  background-size: contain;
  background-position: top left;
  left: 0;
  top: 0;
  z-index: -1;
}
.item__img img {
  width: 80%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .item__img img {
    width: 90%;
  }
}
.item__limited {
  position: absolute;
  display: inline-block;
  left: 0;
  top: -40px;
  border-radius: 4px;
  background: #AE1010;
  padding: 4px 8px;
}
.item__limited p {
  color: #fff;
  font-weight: 500;
}
.item__ttl {
  margin-bottom: 8px;
}
.item__ttl p {
  font-size: 1.3em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .item__ttl p {
    font-size: 1.1em;
  }
}
.item__product {
  margin-bottom: 8px;
}
.item__product p {
  font-size: 0.9em;
}
.item__price {
  border-top: 1px solid #AE1010;
  padding-top: 8px;
  margin-top: 12px;
  text-align: right;
}
.item__price p {
  font-size: 1.3em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .item__price p {
    font-size: 1.2em;
  }
}
.item__price p span.t-small {
  margin-left: 8px;
  font-size: 0.7em;
}
.item__price p span.t-red {
  margin-right: 12px;
  color: #CB0000;
}
.item__price-waribiki {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .item__price-waribiki {
    margin-bottom: 4px;
  }
}
.item__price-waribiki p {
  font-size: 0.9em;
}
.item__notice {
  margin-top: 8px;
}
.item__notice p {
  font-size: 0.9em;
}
.item__kigen {
  display: flex;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .item__kigen p {
    font-size: 0.9em;
  }
}
.item__kigen p:nth-child(2) {
  margin-left: 12px;
}
@media screen and (max-width: 767px) {
  .item__kigen p:nth-child(2) {
    margin-left: 4px;
  }
}
.item__kigen p span {
  margin-right: 4px;
  padding: 4px 8px;
  background: #E0E0E0;
}
.item__btn {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .item__btn {
    justify-content: space-between;
  }
}
.item__btnitem {
  width: 44%;
  margin: 0 12px;
  margin-top: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .item__btnitem {
    width: 48%;
    margin: 0;
    margin-top: 24px;
  }
}
.item__btnitem a {
  display: block;
  padding: 1em;
  border-radius: 4px;
  border: 1px solid #CACACA;
  box-shadow: 2px 2px 1px rgba(122, 122, 122, 0.35);
  color: #020202;
  transform: all 0.3s;
}
@media screen and (max-width: 767px) {
  .item__btnitem a {
    padding: 0.5em;
    font-size: 0.9em;
  }
}
.item__btnitem a:hover {
  box-shadow: none;
}
.item__btnitem--online a {
  background: #AE1010;
  color: #fff;
}
.item__iconarea {
  margin-top: 16px;
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .item__iconarea {
    margin-top: 12px;
  }
}
.item__icon {
  margin-left: 4px;
  border: 1px solid #4D4D4D;
  border-radius: 4px;
  padding: 4px;
}
.item__icon p {
  font-size: 0.9em;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.item__icon--red {
  border: 1px solid #AE1010;
}
.item__icon--red p {
  color: #AE1010;
}
.item__icon--blue {
  border: 1px solid #044289;
}
.item__icon--blue p {
  color: #044289;
}
.item__icon--gray {
  background: #131313;
  border: 1px solid #131313;
}
.item__icon--gray p {
  color: #fff;
}

.artist {
  display: flex;
  align-items: center;
  background: #603F0D;
  padding: 1em 2em;
}
@media screen and (max-width: 767px) {
  .artist {
    display: block;
    padding: 1em 0.5em;
    width: 100%;
  }
}
.artist p {
  color: #fff;
  line-height: 1.6;
}
.artist__txt {
  width: 64%;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .artist__txt {
    width: 100%;
  }
}
.artist__name {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #fff;
}
.artist__img {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .artist__img {
    width: 80%;
    margin: 0 auto;
    max-width: 400px;
    margin-top: 12px;
  }
}

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

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

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

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

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

.wrap {
  margin: 0 20px;
  position: relative;
  z-index: 2;
}

.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 .area__parent {
  display: none;
}

.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;
  border-bottom: 1px solid #D3D3D3;
}

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

.area__detail > div ul {
  display: flex;
}

.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: underline;
  }
  .sale__bd {
    border-bottom: 1px solid #D3D3D3;
    padding-bottom: 80px;
  }
  .sale__shoplist-cont {
    width: 95%;
    max-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: #B40067;
    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: 173px;
  }
  .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) {
  .wrap {
    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);
  }
}
/*footer*/
#s_footer .s_coNav li a,
#s_header .s_subNav a {
  transition: color 0.5s ease-out;
}

#s_footer a {
  color: #222;
}

#s_footer .s_coNav {
  padding: 0 39px;
  font-size: 0;
}

#s_footer .s_coNav li {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 2;
  white-space: nowrap;
}

#s_footer .s_coNav li a {
  padding-right: 14px;
  background: url("../img/arrow_pink.svg") no-repeat 100% 50%/6.828px auto;
}

@media (min-width: 768px) {
  #s_footer .s_coNav {
    padding-top: 65px;
    margin-bottom: 24px;
    text-align: center;
  }
  #s_footer .s_coNav li {
    display: inline-block;
    padding: 0 1em;
  }
}
@media (max-width: 767px) {
  #s_footer .s_coNav {
    padding: 50px 39px 21px;
  }
  #s_footer .s_coNav li {
    margin-bottom: 10px;
  }
}
#s_footer .s_coSubNav {
  padding: 0 39px;
  font-size: 0;
}

#s_footer .s_coSubNav li {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1em;
}

@media (max-width: 767px) {
  #s_footer .s_coSubNav li {
    font-size: 0.9rem;
  }
}
#s_footer .s_coSubNav li a:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  #s_footer .s_coSubNav {
    text-align: center;
    color: #6f6f6f;
  }
  #s_footer .s_coSubNav li {
    display: inline-block;
    white-space: nowrap;
  }
  #s_footer .s_coSubNav li:not(:last-child):after {
    content: "|";
    display: inline-block;
    padding: 0 1.5em;
  }
  #s_footer .s_coSubNav li a {
    color: #6f6f6f;
  }
}
@media (max-width: 767px) {
  #s_footer .s_coSubNav {
    margin-bottom: 34px;
  }
  #s_footer .s_coSubNav li:last-child {
    margin-bottom: 0;
  }
}
#s_footer .s_copyright {
  padding: 89px 0 51px;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #9d9d9d;
}

@media (max-width: 767px) {
  #s_footer .s_copyright {
    font-size: 0.8rem;
    padding: 19px 0 16px;
    background: #f5f5f5;
    color: #6f6f6f;
  }
}
#s_footer #s_toPageTop {
  padding: 50px;
  padding-top: 10px;
  padding-left: 10px;
  overflow: hidden;
  position: fixed;
  right: 180px;
  bottom: -26px;
  z-index: 50;
}

#s_footer #s_toPageTop button {
  width: 64px;
  height: 64px;
  overflow: hidden;
  position: relative;
  background: url("../img/pageTop.svg") no-repeat 50% 50%/64px 64px #fff;
  text-indent: -9999em;
  white-space: nowrap;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border: none;
}

#s_footer #s_toPageTop button:after {
  content: "";
  display: block;
  width: 18px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -9px;
  transform: rotate(-90deg);
  background: url("../img/arrow_black.svg") no-repeat 50% 50%/17px auto;
}

@media (max-width: 1023px) {
  #s_footer #s_toPageTop {
    right: -40px;
    bottom: 20px;
  }
  #s_footer #s_toPageTop button {
    width: 50px;
    height: 50px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
  }
  #s_footer #s_toPageTop button:after {
    width: 6px;
    height: 36px;
    margin-left: -3px;
    background-size: 5px auto;
  }
}
.one {
  margin-left: 0 !important;
}

#tenpo,
#s_footer {
  background: #fff;
}

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

.slick-dots li.slick-active button:before {
  color: #fff;
}

#movie {
  position: relative;
  z-index: 10;
}

.movie-youtube {
  text-align: center;
  position: relative;
  max-width: 980px;
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .movie-youtube {
    text-align: center;
    width: 600px;
    margin: auto;
    padding: 2em 1em;
    border-radius: 10px;
    margin-top: -2em;
  }
}
@media screen and (max-width: 767px) {
  .movie-youtube {
    margin: 0;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .movie-youtube iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.sp_footer_menu {
  position: fixed;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  background: rgba(116, 116, 116, 0.7);
  text-align: center;
  z-index: 999;
}
.sp_footer_menu li {
  position: relative;
  width: 85%;
  margin: 8px auto;
  border-radius: 5px;
  background: #fff;
}
.sp_footer_menu a {
  display: block;
  padding: 8px 0;
  line-height: 1.5;
  color: #c70079;
  font-weight: 700;
  font-size: 1.1em;
}/*# sourceMappingURL=style-2023oseibo.css.map */