@charset "utf-8";
/* CSS Document */
body {
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}
img {
  width: 100%;
}
.coupon {
  margin: 0 auto;
  display: flex;
  max-width: 960px;
  background-color: #FFF;
  text-align: center;
}
.contents_innner {
  padding-top: 120px;
  margin-top: -120px;
}
.text_red {
  color: #b00a0a;
  font-weight: bold;
}
.heading {
  font-weight: bold;
  font-size: 18px;
}
/*=========その場でふわっ===============*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*=========スクロールしたらふわっ===============*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*========= 上部固定させるためのCSS ===============*/
#header {
  height: 120px; /*高さ指定*/
  width: 100vw; /*横幅指定*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  color: #fff;
  text-align: center;
  padding-top: 80px;
}
/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 999; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
}
/*========= 上部固定させるためのCSS終わり ===============*/
.nav_text {
  color: #ffffff;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  #header {
    padding-top: 30px;
    height: auto;
  }
  #header.fixed {
    position: initial;
  }
}
.price-category {
  display: flex;
  margin: 0 auto 30px;
  align-items: center;
  background: #b00a0a;
  border-radius: 8px;
  justify-content: center;
}
.price-category img {
  width: 10%;
}
.price-category p {
  font-size: 1.7rem;
  color: #ffffff;
  font-weight: bold;
}
.strong {
  font-size: 42px;
}
.guide_schedule {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #b00a0a;
  border: solid 3px #b00a0a;
  margin: 40px auto 20px;
  border-radius: 8px;
  padding: 20px;
}
.staff_recommend_title {
  font-weight: bold;
  font-size: 26px;
  color: #b00a0a;
  margin-bottom: 10px;
}
.staff_recommend_text {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}
.bg_knit {
  background-image: url("bk/img/22129528.jpg");
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  padding-bottom: 100px;
}
.staff_comment {
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
  border: solid #b00a0a;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: #ffffff;
}
/*MENU*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 1000;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -80%;
  width: 20%;
  height: 100vh; /*ナビの高さ*/
  background: #b00a0a;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}
/*ナビゲーション*/
.parent {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 45%;
  left: 40%;
  transform: translate(-50%, -50%);
}
.child {
  margin-left: 30px;
}
/*リストのレイアウト設定*/
.parent li a {
  font-size: 15px;
  color: #ffffff;
  text-decoration: underline;
  padding: 5px;
  display: block;
  font-weight: bold;
  margin: 15px auto;
  text-align: left;
  line-height: 1;
}
.parent ul a {
  font-size: 14px;
  text-decoration: none;
}
.nav_footer {
  font-size: 14px;
  position: absolute;
  bottom: 50px;
  right: 40%;
  color: #ffffff;
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 70px;
  height: 70px;

  background-color: #b00a0a;
  border-radius: 50px;
}
/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
}
.openbtn1 span:nth-of-type(1), .openbtn1 span:nth-of-type(3) {
  height: 1px;
  background: #fff;
  width: 70%;
  left: 15%;
}
.openbtn1 span:nth-of-type(1) {
  top: 30%;
}
.openbtn1 span:nth-of-type(2) {
  top: 48%;
  left: 15%;
  text-transform: uppercase;
  color: #fff;
}
.openbtn1 span:nth-of-type(3) {
  top: 65%;
}
/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn1.active span:nth-of-type(1) {
  top: 30px;
  left: 22px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 42px;
  left: 22px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}
.box p {
  text-align: left;
}
.guide_title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  background-color: #b00a0a;
  border-radius: 8px;
  padding: 15px;
  color: #ffffff;
  line-height: 1.2;
}
.guide_section {
  margin: 40px auto 60px;
}
.guide_text {
  font-size: 20px;
}
.flex-container-recommend {
  display: flex;
  padding: 20px;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 50px;
  box-shadow: 1.5px 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  position:relative;
}
.flex-container-recommend2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 1.5px 0 15px rgba(0, 0, 0, 0.2);
}
.flex-container-recommend3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
.bg-topimg img {
  margin-bottom: 50px;
}
.item_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.item_wrap div {
  width: 49%;
}
/*贈る相手から探す*/
.item_gr img {
  width: 100%;
}
.container_gr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.item_gr {
  text-align: center;
  width: 23%;
  margin: 10px 0;
}
.item_gr p {
  text-align: center;
}
.comment {
  margin: 5px 0 10px;
}
.recipient {
  font-size: 20px;
}
.gr_btn_more {
  background-color: #b00a0a;
  color: #ffffff;
  border-radius: 5px;
  padding: 5px 0;
}
.gr_btn_more:hover {
  opacity: 0.5;
}
.section-icon {
  width: 10%;
}
.item-price {
  font-weight: bold;
  font-size: 1.6em;
}
.title_line {
  width: 50px;
  display: block;
  margin: 10px auto 5px;
}
.read {
  font-family: 'Zen Old Mincho', serif;
  max-width: 960px;
  margin: 50px auto 10px;
  display: flex;
  justify-content: space-between;
}
.read p {
  margin-top: 30px;
  line-height: 1.7;
  font-size: 18px;
  font-weight: bold;
}
.read img {
  width: 45%;
  object-fit: cover;
  margin: 0;
  padding: 0;
}
.service_wrap {
  display: flex;
  justify-content: space-between;
  margin: 40px auto;
}
.service_wrap img {
  width: 48%;
  object-fit: cover;
}
.service_wrap p {
  font-size: 20px;
  width: 48%;
}
.title_line02 {
  width: 90px;
  display: block;
  margin: 15px auto;
}
.service_wrap span {
  font-size: 14px;
  color: #b00a0a;
}
.section_title {
  text-align: center;
  font-size: 28px;
  font-family: Zen Old Mincho;
  font-weight: bold;
  line-height: 1.5;
  background: none;
  color: #b00a0a;
  width: 90%;
  margin: 0 auto;
}
.section_subtitle {
  font-size: 12px;
  color: #B4A581;
  letter-spacing: 2.64px;
  text-align: center;
  font-weight: 500;
  line-height: 2;
}
/*manner*/
.accordion-area {
  list-style: none;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 15px 0;
}
.accordion-area div {
  border: 2px solid #FFF;
  background: #FFF;
  border-radius: 8px;
}
/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: normal;
  padding: 2% 2% 2% 3%;
  transition: all .5s ease;
  font-family: 'Zen Old Mincho', serif;
}
/*アイコンの＋と×*/
.title::before, .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #B4A581;
}
.title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
section {
  max-width: 960px;
  margin: 50px auto;
}
.cover-sp {
  display: none;
}
.cover-pc {
  display: block;
  margin: 0 auto;
}
.main-item {
  width: 90%;
  margin: 10px;
  background-color: #ffffff;
}
/*tkd追加分 2021.07.01*/
.bg-beige {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff7e5;
  width: 100vw;
  text-align: center;
  padding: 50px 0 50px 0;
}
.nav-6col {
  width: 11%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.nav-6col img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .nav-6col {
    width: 28%;
    margin-bottom: 10px;
  }
}
.recommend-item {
  width: 50%;
}
.recommend-item img {
  width: 100%;
}
.recommend-item2 {
  width: 38%;
}
.recommend-item2 img {
  width: 100%;
  padding: 20px;
}
.recommend-item3 {
  width: 38%;
}
.recommend-item3 img {
  width: 100%;
}
.recommend-sideitem {
  width: 40%;
  margin-right: 40px;
}
.recommend-sideitem p {
  text-align: left;
}
.recommend-sideitem2 {
  width: 62%;
  padding: 20px;
}
.recommend-sideitem2 p {
  text-align: left;
}
.recommend-sideitem3 {
  width: 58%;
}
.recommend-sideitem3 p {
  text-align: left;
}
.item-option {
  font-weight: bold;
  font-size: 0.8em;
  color: #010066;
  border: 2px solid #010066;
  border-radius: 5px;
  padding: 1px 4px;
  margin: 1px;	
}
.flex-gift {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}
.gift-item {
  width: 45%;
}
.gift-item p {
  text-align: left;
}
/*tkd追加分 2021.01.13*/
.inner960 {
  text-align: center;
  margin: 0 auto;
  max-width: 960px;
}
.inner960 a:hover {
  opacity: 0.7;
}
@media only screen and (max-width:750px) {
  .recommend-sideitem3 {
    width: 90%;
  }
  .inner960 {
    width: auto;
  }
}
.text_bold {
  font-weight: bold;
}
/*tkd追加分 2020.11.10*/
.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-80 {
  margin-top: 80px;
}
.mt-100 {
  margin-top: 100px;
}
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-60 {
  margin-bottom: 60px;
}
.pb-20 {
  padding-bottom: 20px;
}
.coupon_img {
  width: 95%;
  margin: 10px auto;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .coupon {
    display: block;
  }
  .coupon_img {
    width: 90%;
  }
}

.coupon_text {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}
/*tkd追加分 end*/
/*商品画像リンク*/
.goods-img {
  width: 500px;
  height: 500px;
  background-size: cover;
}
.goods-img:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 750px) {
  .goods-img {
    display: block;
    width: 315px;
    height: 315px;
    margin: 0 auto;
    background-size: cover;
  }
}
#footer {
  text-align: center;
  padding: 30px 0;
  background: #b00a0a;
  color: #FFF;
}
#footer a {
  color: #FFF;
  text-decoration: underline;
}
@media screen and (max-width: 750px) {
  #footer a {
    font-size: 14px;
  }
}
/* TOPへ戻る */
.return-btn {
  position: fixed;
  bottom: 5%;
  right: 0.5%;
}
.return-btn img {
  width: 80px;
}
@media only screen and (max-width: 750px) {
  .return-btn img {
    width: 50px;
  }
  .return-btn {
    bottom: 2%;
    right: 2%;
  }
}
/*1229に追加*/
.inner {
  width: 960px;
  margin: 0 auto;
}
@media only screen and (min-width:750px) {
  .inner {
    width: auto;
    margin: 0 auto;
  }
}
.flex-container-4col {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
  max-width: 960px;
  margin: 10px auto 40px;
}
/*item*/
.main-item img {
  width: 100%;
}
.main-item-4col {
  width: 24%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.main-item-4col img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .main-item-4col {
    width: 48%;
  }
}
@media screen and (max-width: 750px) {
  .box-2col {
    width: 49%;
  }
  .box-2col div {
    width: 49%;
  }
}
/*2column END*/
/*best recommend*/
.flex-container-recommend-1 {
  flex-basis: 30%;
}
.flex-container-recommend-1 p {
  text-align: left;
}
/*best recommend END*/
/*ボタン*/
/*購入ボタン*/
.btn-008 {
  width: 350px;
  padding: 14px;
  text-align: center;
  dasplay: block;
  background-color: #b00a0a;
  color: #fff;
  border-radius: 5px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.btn-008:hover {
  opacity: 0.7;
}
.btn-007 {
  width: 50%;
  padding: 14px;
  text-align: center;
  dasplay: block;
  background-color: #b00a0a;
  color: #fff;
  border-radius: 50px;
  margin: 0 auto;
  margin-bottom: 100px;
}
.btn-007:hover {
  opacity: 0.7;
}
/*もっとみるボタン*/
.btn-010 {
  text-align: right;
  font-size: 1rem;
  color: #000;
  font-weight: bold;
  border-bottom: solid 1px #000;
  padding-bottom: 5px;
  margin-right: 20px;
}
.btn-010:hover {
  opacity: 0.7;
}
@media screen and (max-width: 750px) {
  .btn-010 {
    font-size: 0.8rem;
    border-bottom: solid 2px #000;
    padding-bottom: 2px;
    margin-right: 10px;
  }
}
/*ボタンおわり*/
.goods-img {
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
/*20230515追記******************************************/
a, a:hover, a:visited {
  color: inherit;
}
.sub_text {
  font-size: 18px;
  text-align: center;
  margin: 10px auto 30px;
}
.gift-item_name {
  font-size: 1.1em;
  font-weight: bold;
}
.gift-item_text {
  font-size: 0.9em;
  margin-bottom: 20px;
  line-height: 1;
}
.gift-item_price {
  font-size: 0.9em;
  margin-bottom: 20px;
}
.gift-item_more {
  margin-top: 30px;
}
.inner {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.box-4col {
  width: 24%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-color: #fff;
  padding: 10px 10px 10px;
  box-shadow: 1.5px 0 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
.box-4col img {
  width: 100%;
  margin-bottom: 10px;
}
.link-100 {
  display: block;
}
.link-100:hover {
  opacity: 0.7;
}
.flex-container-recommend-1 {
  flex-basis: 47%
}
.item-option2 {
  background-color: #b00a0a;
  font-size: 0.7rem;
  color: #fff;
  padding: 3px 4px;
  vertical-align: super;
　font-weight: bold;
}
.item-option3 {
  font-weight: bold;
  font-size: 0.7rem;
  color: #010066;
  border: 1.5px solid #010066;
  border-radius: 5px;
  padding: 2px 5px;
} 
.flex-container-2col {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 80px;
}
.present-item-4col {
  width: 24%;
  background-color: #FFFFFF;
  padding: 0 0 20px 0;
  border-radius: 8px;
  box-shadow: 1.5px 0 15px rgba(0, 0, 0, 0.2);
}
.present-item-4col img {
  width: 100%;
  margin-bottom: 10px;
}
.present_catchcopy {
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 10px 0px 10px 0px;
  background-color: #b00a0a;
  border-radius: 8px 8px 0 0;
}
.name {
  font-size: 0.9em;
  font-weight: bold;
  padding: 0 10px;
  text-align: left;
  padding-bottom: 10px;
}
.title-img {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0 14px;
}
.br-sp {
  display: none;
}
.br-pc {
  display: block;
}
.r_name {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 1.5em;
}
.r_contents {
  margin-bottom: 30px;
  font-weight: bold;
}
.r_text {
  margin-bottom: 20px;
}
@media only screen and (max-width:750px) {
  .staff_recommend_title {
    font-size: 22px;
  }
  .staff_comment {
    width: 88%;
    margin: 20px auto;
  }
  .btn-007 {
    width: 90%;
  }
  .flex-container-4col {
    width: 95%;
    margin-bottom: 0px;
  }
  .box-4col {
    width: 47%;
    margin-bottom: 35px;
  }
  .btn-008 {
    width: 90%;
  }
  .item_gr {
    width: 48%;
  }
  .read {
    display: block;
  }
  .read img {
    width: 100%;
  }
  .service_wrap {
    display: block;
  }
  .service_wrap img {
    width: 100%;
  }
  .coupon_text {
    font-size: 18px;
  }
  .recommend-item, .recommend-sideitem {
    width: 90%;
    margin: 10px auto;
  }
  .recommend-item2, .recommend-item3, .recommend-sideitem2 {
    width: 90%;
    margin: 10px auto;
  }
  .gift-item_name {
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .gift-item_text {
    font-size: 0.7em;
  }
  .gift-item_price {
    font-size: 0.7em;
    letter-spacing: -0.2px;
  }
  .gift-item_more {
    margin-top: 0px;
  }
  .r_contents {
    margin-bottom: 10px;
    font-weight: bold;
  }
  .r_text {
    margin-bottom: 10px;
    font-size: 0.9em;
  }
  .br-pc {
    display: none;
  }
  .flex-container-2col {
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 10px;
    margin-bottom: 0px;
  }
  .flex-container-recommend {
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 10px;
    margin-bottom: 0px;
  }
  .flex-container-recommend2, .flex-container-recommend3 {
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 10px;
    margin-bottom: 0px;
  }
  .present-item-4col {
    width: 47%;
    margin-bottom: 35px;
    padding-bottom: 15px;
  }
  .presentpresentpresentpresent    line-height: 2.3;    line-height: 2.3;    line-height: 2.3;t_catchcopy {
    font-size: 0.7em;
  }
  .inner, .inner960 {
    width: 95%;
    margin: 0 auto;
    justify-content: space-evenly;
  }
  .title-img {
    width: 90%;
    padding: 0;
  }
  .br-sp {
    display: block;
  }
  .gift-item_price {
    margin-bottom: 5px;
  }
  .price-category {
    width: 90%;
  }
  .price-category p {
    font-size: 1.2rem;
  }
  .price-category img {
    width: 20%;
  }
  .read p {
    width: 90%;
    margin: 0 auto;
  }
  .parent li a {
    margin: 5px auto;
  }
  .parent {
    left: 50%;
    width: 80%;
  }
  .service_wrap p {
    width: 100%;
  }
  .guide_schedule {
    font-size: 20px;
  }
  .strong {
    font-size: 30px;
  }
  .guide_section {
    width: 90%;
  }
  #g-nav {
    width: 85%;
    right: -85%;
  }
  section {
    width: 95%;
    margin: 50px auto;
  }
  .cover-pc {
    display: none;
  }
  .cover-sp {
    display: block;
  }
  .item-option {
  font-size: 0.7em;
}
  .gift-item p {
  line-height: 1.5;
}
	}
/*2024追記******************************************/
  .ranking_number {
   top: 0;
   left: 0;
   border-left: 80px solid rgb(215, 196, 116, 0.95);
   border-bottom: 80px solid transparent;
   position: absolute;
   z-index: 0;
 }
  .ranking_number p {
   color: #ffffff;
   text-align: center;
   font-size: 30px;
   font-weight: bold;
   font-family: 'Cinzel Decorative', serif;
   position: absolute;
   left: -62px;
   z-index: 999;
}
.gift-item p {
  line-height: 1.6;
}
#excel {
    text-align: center;
}
.item-option4 {
  line-height: 2.2;
  font-weight: bold;
  font-size: 0.7rem;
  color: #b00a0a;
  border: 1.5px solid #b00a0a;
  border-radius: 5px;
  padding: 2px 5px;
} 
.omatome-item-4col {
  width: 24%;
  background-color: #FFFFFF;
  padding: 0 0 20px 0;
  border-radius: 8px;
  box-shadow: 1.5px 0 15px rgba(0, 0, 0, 0.2);
}
.omatome-item-4col img {
  width: 100%;
  margin-bottom: 10px;

}
.omatome_catchcopy {
  font-size: 0.7em;	
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  padding: 10px 0px 10px 0px;
  background-color: #b00a0a;
  border-radius: 8px 8px 0 0;
}
  .omatome-item-4col {
    width: 47%;
    margin-bottom: 35px;
    padding-bottom: 15px;
  }
/*2025追記******************************************/
#giftrecipient {
    padding-top: 230px;
	margin-top:-230px;
}
@media screen and (max-width: 750px) {
#giftrecipient {
    padding-top: 10px;
	margin-top:-10px;
}
}
