@charset "UTF-8";
/*共通*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap");
* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  padding: 0;
  margin: 0;
  font-family: YakuHanJP, Roboto, Noto Sans JP, sans-serif;
  font-family: "Noto Sans JP", sans-serif;
}

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

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

a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.2s ease-out !important;
  opacity: 1 !important;
  color: #444;
}

a:hover {
  opacity: 0.8 !important;
}

@media screen and (min-width: 481px) {
  .only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .only-pc {
    display: none !important;
  }
}
/**************************
共通
**************************/
/**************************
ロード
**************************/
.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1.2s;
}

.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}

/**************************
スクロール
**************************/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/*ハンバーガー*/
/* 
hamburger(ハンバーガーアイコン)
=================================== */
.hamburger {
  position: fixed;
  right: 1rem;
  top: 1rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 300;
  background: #fff;
  border-radius: 50%;
}
@media (max-width: 599px) {
  .hamburger {
    width: 40px;
    height: 40px;
  }
}

.hamburger__line {
  position: absolute;
  width: 50%;
  height: 2px;
  right: 12px;
  border-radius: 2px;
  background-color: #e52c45;
  transition: all 0.5s;
}
@media (max-width: 599px) {
  .hamburger__line {
    right: 10px;
  }
}

.hamburger__line--1 {
  top: 15px;
}
@media (max-width: 599px) {
  .hamburger__line--1 {
    top: 12px;
  }
}

.hamburger__line--2 {
  top: 24px;
}
@media (max-width: 599px) {
  .hamburger__line--2 {
    top: 20px;
  }
}

.hamburger__line--3 {
  top: 34px;
}
@media (max-width: 599px) {
  .hamburger__line--3 {
    top: 28px;
  }
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 24px;
}
@media (max-width: 599px) {
  .open .hamburger__line--1 {
    top: 20px;
  }
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 24px;
}
@media (max-width: 599px) {
  .open .hamburger__line--3 {
    top: 20px;
  }
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 30%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #e52c45;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
@media (max-width: 799px) {
  .sp-nav {
    width: 100%;
  }
}
.sp-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.sp-nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 1.5rem 0 1.3rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  border-bottom: 0.5px solid #fff;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

/**************************
TODO:おせち
**************************/
.wrap--1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.osechi__wrap {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  color: #231815;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
  overflow: hidden;
  font-weight: 500;
  /*一例タイトル*/
  /*TODO:商品一覧用 共通設定*/
  /*TODO:ゆめオンライン*/
  /*TODO:早期割引*/
  /*TODO:お申し込み方法*/
  /*タブ*/
  /*パネル*/
  /*TODO:オリジナルおせち*/
  /*オリジナルおせち商品*/
  /* ============================
             動画
  =============================*/
  /*選りすぐり食材27品*/
  /*TODO:和風おせち*/
  /*TODO:選べるおせち*/
  /*TODO:数量限定　注意*/
  /*デジカタ*/
  /*TODO:27品モーダル*/
  /*モーダルを開くボタン*/
  /*モーダル本体の指定 + モーダル外側の背景の指定*/
  /*モーダル本体の擬似要素の指定*/
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  /*モーダル枠の指定*/
  /*モーダルを閉じるボタンの指定*/
  /*モーダル内のコンテンツの指定*/
}
.osechi__wrap img {
  width: 100%;
}
.osechi__wrap header {
  position: relative;
  z-index: 10;
}
.osechi__wrap header .logoarea {
  width: 80px;
  height: 80px;
  padding: 0.5rem;
  position: absolute;
  top: 1em;
  left: 1em;
  z-index: 11;
  background: #fff;
}
@media (max-width: 799px) {
  .osechi__wrap header .logoarea {
    width: 50px;
    height: 50px;
    padding: 0.2rem;
  }
}
@media (max-width: 599px) {
  .osechi__wrap header .logoarea {
    width: 40px;
    height: 40px;
    padding: 0;
  }
}
.osechi__wrap header .logoarea .youme_logo {
  padding-top: 0.5rem;
}
.osechi__wrap .header-navi {
  position: absolute;
  top: 0;
  right: 4rem;
  padding: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.osechi__wrap .header-navi ul {
  display: flex;
  align-items: baseline;
  justify-content: end;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.7);
}
@media (max-width: 599px) {
  .osechi__wrap .header-navi ul {
    gap: 0.5rem;
  }
}
.osechi__wrap .header-navi ul .header-navi__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.625rem;
  line-height: 1.4;
}
.osechi__wrap .header-navi ul .header-navi__link img {
  max-width: 42px;
  height: auto;
  vertical-align: bottom;
}
@media (max-width: 1024px) {
  .osechi__wrap .header-navi ul .header-navi__link img {
    max-width: 24px;
  }
}
.osechi__wrap .header-navi ul .header-navi__link span {
  margin-top: 0.2rem;
  padding: 0.1rem;
}
.osechi__wrap .mv__wrap {
  position: relative;
}
.osechi__wrap .mv__wrap .mv__title--sub {
  position: absolute;
  width: 22%;
  top: 50%;
  left: 18.5%;
}
.osechi__wrap .mv__wrap .mv__title--sub img {
  max-width: 100%;
}
@media (max-width: 799px) {
  .osechi__wrap .mv__wrap .mv__title--sub {
    width: 35%;
    left: 4%;
  }
}
@media (max-width: 599px) {
  .osechi__wrap .mv__wrap .mv__title--sub {
    width: 38%;
    top: 41%;
  }
}
.osechi__wrap .main--osechi {
  width: 100%;
}
.osechi__wrap section {
  width: 100%;
}
.osechi__wrap .sec__title {
  max-width: 450px;
  margin: 0 auto;
}
.osechi__wrap .pic__wrap {
  margin: 0 auto;
}
.osechi__wrap .btn {
  display: inline-block;
  background: rgb(245, 206, 19);
  background: linear-gradient(90deg, rgb(245, 206, 19) 0%, rgb(252, 242, 192) 51%, rgb(245, 206, 19) 100%);
  color: #a00e27;
  border: 1px solid #e52c45;
  font-weight: 700;
  font-size: 1.1875rem;
  padding: 0.6rem 2.5rem;
  border-radius: 46px;
  text-align: center;
  margin: 1rem auto 0;
  transition: all 0.5s ease-in-out !important;
  opacity: 1 !important;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 799px) {
  .osechi__wrap .btn:first-of-type {
    font-size: 0.9375rem;
    margin: 0.8rem auto 0.5rem;
  }
}
@media (max-width: 799px) {
  .osechi__wrap .btn {
    font-size: 0.875rem;
    margin: 0.5rem auto;
  }
}
@media (max-width: 599px) {
  .osechi__wrap .btn {
    width: 85%;
    padding: 0.6rem 1.5rem;
  }
}
.osechi__wrap .btn:hover {
  opacity: 0.8 !important;
}
.osechi__wrap .one_sample.title {
  margin-top: 10%;
}
.osechi__wrap .one_sample.title img {
  max-width: 424px;
}
.osechi__wrap .product__list {
  margin: 0 auto;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
.osechi__wrap .product__item {
  width: 90%;
  display: flex;
  align-items: flex-start;
  margin: 8rem auto 0;
  gap: 2.5rem;
}
@media (max-width: 799px) {
  .osechi__wrap .product__item {
    width: 100%;
    margin: 4rem auto 0;
  }
}
@media (max-width: 599px) {
  .osechi__wrap .product__item {
    flex-direction: column;
    padding: 0 2%;
  }
}
.osechi__wrap .product__item:first-child {
  margin: 2rem auto 0;
}
.osechi__wrap .product__item:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 599px) {
  .osechi__wrap .product__item:nth-child(even) {
    flex-direction: column;
    padding: 0;
    padding: 0 2%;
  }
}
.osechi__wrap .product__imgbox {
  flex: 1;
  width: 48%;
}
@media (max-width: 599px) {
  .osechi__wrap .product__imgbox {
    width: 100%;
  }
}
.osechi__wrap .product__content {
  flex: 1;
  width: 48%;
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.5;
}
@media (max-width: 599px) {
  .osechi__wrap .product__content {
    width: 100%;
  }
}
.osechi__wrap .product__content .detail_area {
  padding: 2rem 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media (max-width: 599px) {
  .osechi__wrap .product__content .detail_area {
    padding: 1rem 0;
  }
}
.osechi__wrap .product__content .detail_area p {
  margin-top: 0.5rem;
}
.osechi__wrap .product__content .detail_area .product_name {
  font-size: 1.125rem;
  font-weight: 700;
}
.osechi__wrap .product__content .catalog_num_area .catalog_num {
  background: #fff;
  border: 1px solid #692856;
  color: #692856;
  padding: 0 2px;
  font-size: 0.8125rem;
}
.osechi__wrap .product__content .catalog_num_area .catalog_num.youme_ok {
  position: relative;
}
.osechi__wrap .product__content .catalog_num_area .catalog_num.youme_ok::after {
  position: absolute;
  top: 0;
  left: 3.5rem;
  content: "";
  background: url(../images/ico_product--youme.png);
  width: 59px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 799px) {
  .osechi__wrap .product__content .catalog_num_area .catalog_num.youme_ok::after {
    left: 3rem;
  }
}
.osechi__wrap .product__content .limited {
  display: inline-block;
  padding: 0 2px;
  background: #fff;
  border: 1px solid #c9391c;
  color: #c9391c;
  font-weight: 700;
}
.osechi__wrap .product__content .catalog_price {
  font-size: 0.8125rem;
}
.osechi__wrap .product__content .catalog_price .ly_big_price {
  font-size: 1.5rem;
  font-weight: 700;
}
.osechi__wrap .product__content .after_discount img {
  max-width: 70%;
}
@media (max-width: 799px) {
  .osechi__wrap .product__content .after_discount img {
    max-width: 100%;
  }
}
.osechi__wrap .product__content .spec {
  font-size: 0.75rem;
}
.osechi__wrap .product__content .receivable_area {
  display: flex;
  gap: 0.3rem;
  width: 100%;
}
.osechi__wrap .product__content .receivable_area .product--takeaway {
  max-width: 130px;
}
@media (max-width: 799px) {
  .osechi__wrap .product__content .receivable_area .product--takeaway {
    max-width: 106px;
  }
}
.osechi__wrap .product__content .receivable_area .product--delivery {
  max-width: 130px;
}
@media (max-width: 799px) {
  .osechi__wrap .product__content .receivable_area .product--delivery {
    max-width: 106px;
  }
}
.osechi__wrap .product__content .receivable_area .ico--square {
  max-width: 40px;
}
@media (max-width: 799px) {
  .osechi__wrap .product__content .receivable_area .ico--square {
    max-width: 33px;
  }
}
@media (max-width: 799px) {
  .osechi__wrap .product__content .btn_area.product {
    text-align: center;
    margin: 0 auto 3rem;
  }
}
.osechi__wrap .product__content .btn_area.product .btnimg.product {
  margin-top: 1.5rem;
}
@media (max-width: 799px) {
  .osechi__wrap .product__content .btn_area.product .btnimg.product {
    margin-top: 1.5rem;
    text-align: center;
  }
}
@media (max-width: 599px) {
  .osechi__wrap .product__content .btn_area.product .btnimg.product {
    margin-top: 0.8rem;
  }
}
.osechi__wrap .product__content .btn_area.product .btnimg.product img {
  max-width: 256px;
}
@media (max-width: 599px) {
  .osechi__wrap .product__content .btn_area.product .btnimg.product img {
    max-width: 224px;
  }
}
.osechi__wrap .sec_youme_online {
  padding: 5% 2%;
  background: #e52c45;
  color: #fff;
}
.osechi__wrap .sec_youme_online .pic__wrap:first-child img {
  max-width: 79%;
}
.osechi__wrap .sec_youme_online .wrap--flex {
  display: flex;
  margin-top: -2%;
}
@media (max-width: 599px) {
  .osechi__wrap .sec_youme_online .wrap--flex {
    flex-direction: column;
    margin-top: -3%;
  }
}
.osechi__wrap .sec_youme_online .wrap--flex .pic__wrap:first-child {
  -moz-text-align-last: left;
       text-align-last: left;
}
.osechi__wrap .sec_youme_online .wrap--flex .pic__wrap:first-child img {
  max-width: 97%;
}
@media (max-width: 599px) {
  .osechi__wrap .sec_youme_online .wrap--flex .pic__wrap:first-child img {
    max-width: 100%;
  }
}
.osechi__wrap .sec_youme_online p {
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 599px) {
  .osechi__wrap .sec_youme_online p {
    font-size: 0.75rem;
  }
}
.osechi__wrap .sec_early_discount {
  color: #fff;
  width: 100%;
  padding: 8% 3%;
  background: url(../images/bg_early_discount.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.osechi__wrap .sec_early_discount .osae__wrap {
  color: #fff;
}
@media (max-width: 799px) {
  .osechi__wrap .sec_early_discount .osae__wrap {
    margin-top: 1rem;
    font-size: 0.8125rem;
  }
}
.osechi__wrap .sec_early_discount .btn_area.wrap--flex {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 799px) {
  .osechi__wrap .sec_early_discount .btn_area.wrap--flex {
    flex-direction: column;
    margin: 1.5rem auto 0;
    gap: 0;
  }
}
.osechi__wrap .sec_early_discount .btn_area.wrap--flex .btn {
  flex: 1;
  max-width: 373px;
}
@media (max-width: 799px) {
  .osechi__wrap .sec_early_discount .btn_area.wrap--flex .btn {
    width: 60%;
  }
}
@media (max-width: 599px) {
  .osechi__wrap .sec_early_discount .btn_area.wrap--flex .btn {
    width: 90%;
  }
}
.osechi__wrap .sec_application_method {
  max-width: 100%;
  padding: 5% 2%;
  background: url(../images/bg_method.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Noto Sans JP", sans-serif;
}
.osechi__wrap .methhod__box {
  max-width: 88%;
  margin: 5% auto 0;
}
@media (max-width: 599px) {
  .osechi__wrap .methhod__box {
    max-width: 100%;
  }
}
.osechi__wrap .tab-area {
  display: flex; /* flexで横並び */
  cursor: pointer; /* カーソルポインターに */
  justify-content: space-between;
}
.osechi__wrap .tab-area .tab {
  width: 48%;
  padding: 2%;
  text-align: center;
  background-color: #848484;
  color: #fff;
  border-radius: 5px 5px 0 0;
  font-size: 1.25rem;
}
@media (max-width: 799px) {
  .osechi__wrap .tab-area .tab {
    width: 50%;
    font-size: 1rem;
  }
}
.osechi__wrap .tab-area .tab .tab__text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.osechi__wrap .tab-area .tab .tab__text img {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: top;
  margin-right: 0.4rem;
}
.osechi__wrap .tab-area .tab span {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.4;
}
@media (max-width: 599px) {
  .osechi__wrap .tab-area .tab span {
    font-size: 0.6875rem;
    text-align: left;
  }
}
.osechi__wrap .tab-area .tab:nth-child(n+2) {
  border-left: 2px solid;
}
.osechi__wrap .tab-area .tab.active {
  background-color: #2b883a;
  color: #fff;
}
.osechi__wrap .tab-area .tab.delivery.active {
  background-color: #315f98;
  color: #fff;
}
.osechi__wrap .panel-area .panel {
  display: none;
  text-align: center;
  font-size: 0.75rem;
}
@media (max-width: 599px) {
  .osechi__wrap .panel-area .panel {
    font-size: 0.625rem;
  }
}
.osechi__wrap .panel-area .panel.active {
  display: block;
  padding: 2%;
  border: 3px solid #2b883a;
  background: #fff;
  color: #2c893a;
}
.osechi__wrap .panel-area .panel.active p {
  text-align: left;
}
.osechi__wrap .panel-area .panel.delivery.active {
  padding: 2%;
  border: 3px solid #315f98;
  background: #fff;
  color: #315f98;
}
.osechi__wrap .panel-area .panel.delivery.active p {
  text-align: left;
}
.osechi__wrap .sec_original-osechi {
  width: 100%;
  padding: 5% 3%;
  background: url(../images/bg_original.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
.osechi__wrap .what-is-koreuma {
  max-width: 600px;
  margin: 5rem auto 0;
}
@media (max-width: 599px) {
  .osechi__wrap .what-is-koreuma {
    margin: 2.5rem auto 0;
  }
}
.osechi__wrap .what-is-koreuma p {
  line-height: 2;
}
.osechi__wrap .what-is-koreuma p.title {
  margin-bottom: 1rem;
  font-size: 1.375rem;
  line-height: 1.5;
}
@media (max-width: 599px) {
  .osechi__wrap .what-is-koreuma p.title {
    font-size: 1.5rem;
  }
}
.osechi__wrap .product__list.original-osechi {
  color: #000;
}
.osechi__wrap .product__list.original-osechi .detail_area {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.osechi__wrap #movie {
  padding-top: 100px;
  margin-top: 2rem;
  margin-bottom: 80px;
}
.osechi__wrap #movie .caution-text {
  text-align: center;
  margin-top: 100px;
}
.osechi__wrap #movie .caution-text + .caution-text {
  margin-top: 0;
}
.osechi__wrap .movie__wrap--bd {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: #a0141a;
  padding: 12px 12px 8px 12px;
}
@media (max-width: 799px) {
  .osechi__wrap .movie__wrap--bd {
    width: unset;
  }
}
@media (max-width: 599px) {
  .osechi__wrap .movie__wrap--bd {
    padding: 8px 8px 8px 8px;
  }
}
.osechi__wrap .movie__wrap--bd .movie__title {
  position: absolute;
  width: 32%;
  top: -21%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (max-width: 599px) {
  .osechi__wrap .movie__wrap--bd .movie__title {
    width: 43%;
    top: -29%;
  }
}
.osechi__wrap .movie-youtube {
  text-align: center;
  position: relative;
}
@media (max-width: 799px) {
  .osechi__wrap .movie-youtube {
    margin: 0;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    box-sizing: border-box;
  }
}
@media (max-width: 799px) {
  .osechi__wrap .movie-youtube iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.osechi__wrap .sec__selected {
  max-width: 100%;
  padding: 7rem 3%;
  background: url(../images/bg_selected27.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.osechi__wrap .sec__selected .selected__title {
  position: relative;
  letter-spacing: 0.5rem;
  font-size: 1.625rem;
  font-weight: 400;
}
@media (max-width: 599px) {
  .osechi__wrap .sec__selected .selected__title {
    font-size: 1rem;
  }
}
.osechi__wrap .sec__selected .selected__title .deco {
  width: 100%;
  position: absolute;
  top: -139%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.osechi__wrap .sec__selected .selected__title .deco img {
  max-width: 30%;
}
@media (max-width: 1024px) {
  .osechi__wrap .sec__selected .selected__title .deco img {
    max-width: 50%;
  }
}
@media (max-width: 799px) {
  .osechi__wrap .sec__selected .selected__title .deco img {
    max-width: 60%;
  }
}
@media (max-width: 599px) {
  .osechi__wrap .sec__selected .selected__title .deco img {
    max-width: 80%;
  }
}
.osechi__wrap .sec__selected ul {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 1rem auto 0;
  justify-content: center;
}
.osechi__wrap .sec__selected ul li {
  width: calc(20% - 1px);
  margin-top: 2rem;
}
@media (max-width: 799px) {
  .osechi__wrap .sec__selected ul li {
    width: 50%;
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
    align-items: center;
  }
}
@media (max-width: 599px) {
  .osechi__wrap .sec__selected ul li {
    width: 100%;
  }
}
.osechi__wrap .sec__selected ul li .selected_img_wrap {
  flex: 1;
}
.osechi__wrap .sec__selected ul li .selected_text_wrap {
  flex: 1;
  padding: 0.5rem;
  line-height: 1.7;
}
.osechi__wrap .sec__selected ul li .selected_text_wrap p {
  font-weight: 300;
}
.osechi__wrap .sec__selected ul li .selected_text_wrap p.santi {
  font-size: 0.875rem;
}
@media (max-width: 599px) {
  .osechi__wrap .sec__selected ul li .selected_text_wrap p.santi {
    font-size: 0.75rem;
  }
}
.osechi__wrap .sec__selected ul li .selected_text_wrap p.name--selected {
  font-size: 1.25rem;
}
@media (max-width: 599px) {
  .osechi__wrap .sec__selected ul li .selected_text_wrap p.name--selected {
    font-size: 1rem;
  }
}
.osechi__wrap .sec__selected ul li .selected_text_wrap p.text--selected {
  text-align: left;
  font-size: 0.8125rem;
}
@media (max-width: 599px) {
  .osechi__wrap .sec__selected ul li .selected_text_wrap p.text--selected {
    font-size: 0.625rem;
  }
}
.osechi__wrap .sec__selected .btn_area.selected {
  margin-top: 3rem;
}
.osechi__wrap .sec__selected .btn_area.selected .btnimg img {
  max-width: 256px;
}
@media (max-width: 599px) {
  .osechi__wrap .sec__selected .btn_area.selected .btnimg img {
    max-width: 224px;
  }
}
.osechi__wrap .sec__wafu_osechi {
  max-width: 100%;
  padding: 7rem 3%;
  background: url(../images/bg__wafu-osechi.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
@media (max-width: 599px) {
  .osechi__wrap .sec__wafu_osechi {
    padding: 3rem 3%;
  }
}
.osechi__wrap .sec__select_osechi {
  position: relative;
  width: 100%;
  padding: 5% 3%;
  background: url(../images/bg__select-osechi.jpg);
  background-size: contain;
  background-position: center;
  z-index: 0;
}
.osechi__wrap .sec__select_osechi .bg--deco_l,
.osechi__wrap .sec__select_osechi .bg--deco_r {
  position: absolute;
  background-image: url(../images/deco_selected.png);
  width: 40%;
  height: 10%;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 599px) {
  .osechi__wrap .sec__select_osechi .bg--deco_l,
  .osechi__wrap .sec__select_osechi .bg--deco_r {
    width: 70%;
    height: 5%;
  }
}
.osechi__wrap .sec__select_osechi .bg--deco_l {
  top: 6%;
  left: -15%;
}
@media (max-width: 599px) {
  .osechi__wrap .sec__select_osechi .bg--deco_l {
    top: 32%;
    left: -20%;
  }
}
.osechi__wrap .sec__select_osechi .bg--deco_r {
  position: absolute;
  bottom: 18%;
  right: -25%;
}
.osechi__wrap .pic__wrap.select-osechi-intro {
  margin-top: 3rem;
}
.osechi__wrap .pic__wrap.select-osechi-intro img {
  max-width: 720px;
}
.osechi__wrap .product__list.select_osechi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  color: #000;
}
@media (max-width: 599px) {
  .osechi__wrap .product__list.select_osechi {
    flex-direction: column;
  }
}
.osechi__wrap .product__list.select_osechi .detail_area {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.osechi__wrap .product__list.select_osechi .product__item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 3rem);
  margin: 1rem 0;
}
@media (max-width: 599px) {
  .osechi__wrap .product__list.select_osechi .product__item {
    width: 100%;
  }
}
.osechi__wrap .product__list.select_osechi .product__item .product__imgbox {
  flex: 1;
  width: 100%;
}
.osechi__wrap .product__list.select_osechi .product__item .product__content {
  flex: 1;
  width: 100%;
}
.osechi__wrap .product__list.select_osechi .product__item .btn_area.product {
  text-align: center;
  display: flex;
  padding: 1rem;
  gap: 0.8rem;
}
@media (max-width: 799px) {
  .osechi__wrap .product__list.select_osechi .product__item .btn_area.product {
    padding: 0;
  }
}
@media (max-width: 599px) {
  .osechi__wrap .product__list.select_osechi .product__item .btn_area.product {
    flex-direction: column;
    padding: 0 1.5rem;
    gap: 0;
  }
}
.osechi__wrap .sec__attention {
  width: 100%;
  padding: 5% 0;
}
.osechi__wrap .sec__attention .wrap--1200 {
  padding: 0 3%;
}
.osechi__wrap .sec__attention p.title {
  font-size: 1.125rem;
  font-weight: 800;
}
.osechi__wrap .sec__attention .text__wrap {
  max-width: 1024px;
  margin: 6rem auto 0;
  text-align: left;
  font-size: 0.875rem;
}
@media (max-width: 799px) {
  .osechi__wrap .sec__attention .text__wrap {
    margin-top: 2rem;
  }
}
.osechi__wrap .sec__digicata {
  padding: 4rem 2%;
  background: #f4f1ed;
}
.osechi__wrap .btn_area {
  margin-top: 1rem;
}
.osechi__wrap .btn_area img {
  max-width: 256px;
}
@media (max-width: 599px) {
  .osechi__wrap .btn_area img {
    max-width: 224px;
  }
}
.osechi__wrap .sec__digicata {
  padding: 8% 2%;
}
.osechi__wrap .to_web_catalog_area .flex__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 799px) {
  .osechi__wrap .to_web_catalog_area .flex__wrap {
    flex-direction: column-reverse;
  }
}
.osechi__wrap .to_web_catalog_area .inner {
  width: 50%;
  font-size: 1.625rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 799px) {
  .osechi__wrap .to_web_catalog_area .inner {
    width: 80%;
    text-align: center;
  }
}
@media (max-width: 599px) {
  .osechi__wrap .to_web_catalog_area .inner {
    width: 98%;
  }
}
.osechi__wrap .to_web_catalog_area .inner p {
  margin-top: 1rem;
}
@media (max-width: 799px) {
  .osechi__wrap .to_web_catalog_area .inner p {
    font-size: 1.25rem;
  }
}
.osechi__wrap .to_web_catalog_area .inner .btn_area {
  text-align: center;
  margin-top: 1rem;
}
.osechi__wrap .to_web_catalog_area .catalog_hyoshi {
  max-width: 352px;
}
.osechi__wrap .to_web_catalog_area .catalog_hyoshi a {
  opacity: 1;
  transform: translate(0, 0);
}
.osechi__wrap .to_web_catalog_area .catalog_hyoshi img {
  width: 100%;
  background: #fff;
  border-radius: 0px;
  transition: all 0.3s ease-in-out !important;
  box-shadow: 7px 8px 15px -5px #777777;
}
.osechi__wrap .to_web_catalog_area .catalog_hyoshi img:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .osechi__wrap .to_web_catalog_area .catalog_hyoshi img {
    width: 90%;
  }
}
.osechi__wrap .modal-open {
  cursor: pointer;
}
.osechi__wrap .modal-container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 80%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}
@media (max-width: 599px) {
  .osechi__wrap .modal-container {
    width: 100%;
  }
}
.osechi__wrap .modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.osechi__wrap .modal-container.active {
  opacity: 1;
  visibility: visible;
  overflow-x: hidden;
}
.osechi__wrap .modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  opacity: 1;
}
.osechi__wrap .modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 220px;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  cursor: pointer;
}
@media (max-width: 1024px) {
  .osechi__wrap .modal-close {
    bottom: -0.5rem;
    width: 95%;
  }
}
.osechi__wrap .modal-content {
  text-align: left;
  padding: 1rem 0;
}
.osechi__wrap .modal-content .pic__wrap {
  width: 90%;
  background: #fff;
}
.osechi__wrap .disc__text {
  font-weight: 700;
}
.osechi__wrap .inner .syubai {
  width: 80%;
  margin: 2rem auto 0;
  padding: 1rem 1rem 1.5rem;
  background: #fff;
  font-size: 1rem;
}
@media (max-width: 599px) {
  .osechi__wrap .inner .syubai {
    width: 100%;
    padding: 1rem 3% 1.5rem;
    font-size: 0.875rem;
    text-align: left;
  }
}
.osechi__wrap .inner .syubai .syubai__title {
  margin-top: 0;
  font-size: 1rem;
}
@media (max-width: 599px) {
  .osechi__wrap .inner .syubai .syubai__title {
    font-size: 0.875rem;
  }
}
.osechi__wrap .inner .syubai .syubai_item__text {
  text-align: left;
  font-size: 1rem;
  margin-top: 1rem;
}
@media (max-width: 599px) {
  .osechi__wrap .inner .syubai .syubai_item__text {
    font-size: 0.875rem;
  }
}
.osechi__wrap .inner .syubai .syubai_item__text span {
  display: inline-block;
  border-bottom: 1px solid #231815;
}
.osechi__wrap .inner .syubai .syubai_item__text:first-child {
  margin-top: 0;
}

#s_footer #s_toPageTop {
  padding: 50px;
  overflow: hidden;
  position: fixed;
  right: -26px;
  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 50px 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: 767px) {
  #s_footer #s_toPageTop {
    right: -40px;
    bottom: -28px;
  }
  #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;
  }
}/*# sourceMappingURL=style_osechi.css.map */