@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700;900&display=swap");
/* =============================================
共通
============================================= */
#gift_matching {
  width: 990px;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: hidden;
}
#gift_matching * {
  box-sizing: border-box;
}
#gift_matching a {
  text-decoration: none;
}
#gift_matching .link-hover {
  text-decoration: none;
  transition: 0.4s;
}
#gift_matching .link-hover:hover {
  opacity: 0.7;
  cursor: pointer;
}
#gift_matching .section {
  margin-bottom: 110px;
}
#gift_matching .section:nth-last-child(2) {
  margin-bottom: 70px;
}
#gift_matching .section:last-child {
  margin-bottom: 0;
}

/* =============================================
見出し
============================================= */
#gift_matching h1 {
  font-size: 40px;
  margin: 0;
}

#gift_matching h2 {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 34px;
  margin: 0 auto 16px;
}
#gift_matching h2:first-child {
  margin-top: 70px;
}

#gift_matching .ttl-box {
  margin-bottom: 30px;
}
#gift_matching .ttl-box p {
  font-size: 14px;
  line-height: 1.5;
}

#gift_matching .h3 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 20px;
  padding-left: 12px;
  padding-top: 1px;
  position: relative;
  text-align: left;
}
#gift_matching .h3::before {
  background-color: #22469e;
  content: "";
  display: block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 4px;
}

/* =============================================
ナビ
============================================= */
#gift_matching .navi {
  display: flex;
  justify-content: space-between;
  margin: 12px auto 0;
}
#gift_matching .navi li {
  font-size: 18px;
  font-weight: bold;
  background: #fff;
  flex: 1;
  border-right: solid 1px #d8d8d8;
}
#gift_matching .navi li:last-child {
  border-right: none;
}
#gift_matching .navi li a {
  color: #010101;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
  width: 100%;
  height: 100%;
  padding: 1em 0.5em 1.5em;
  position: relative;
}
#gift_matching .navi li a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: solid 1px #010101;
  border-right: solid 1px #010101;
  position: absolute;
  bottom: 10px;
  left: 49%;
  transform: rotate(45deg) translate(-50%);
}

/* =============================================
PICK UP カテゴリ
============================================= */
#gift_matching .category-box {
  background: #faf6ee;
  padding: 40px;
  margin-bottom: 60px;
  position: relative;
}
#gift_matching .category-box::before {
  content: "";
  border-top: 2px solid #22469E;
  position: absolute;
  top: 0;
  left: 0;
  width: 48%;
  height: 2px;
}
#gift_matching .category-box::after {
  content: "";
  border-top: 2px solid #22469E;
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 2px;
}
#gift_matching .category-box .bg-ribbon {
  position: absolute;
  width: 40px;
  height: 24px;
  top: 0;
  left: 48%;
  transform: translateY(-48%);
}
#gift_matching .category-box .bg-ribbon img {
  width: 100%;
}
#gift_matching .category-box .category-list {
  display: flex;
  flex-wrap: wrap;
}
#gift_matching .category-box .category-list li {
  margin: 0 22px 22px 0;
  width: calc((100% - 22px ) / 2);
}
#gift_matching .category-box .category-list li:nth-child(2n) {
  margin-right: 0;
}
#gift_matching .category-box .category-list li:nth-last-child(-n+2) {
  margin-bottom: 0;
}
#gift_matching .category-box .category-list li a {
  display: block;
}
#gift_matching .category-box .category-list .category-img {
  background: #000;
  position: relative;
}
#gift_matching .category-box .category-list .category-img img {
  display: block;
  opacity: 0.5;
  width: 100%;
}
#gift_matching .category-box .category-list .category-img .category-name {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
#gift_matching .category-box .category-list li a .category-txt {
  color: #010101;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 24px;
  margin-top: 10px;
}

/* =============================================
スタッフおすすめ商品
============================================= */
#gift_matching .osusume-cont {
  margin-bottom: 42px;
}
#gift_matching .osusume-cont .osusume-col {
  display: flex;
  justify-content: space-between;
}
#gift_matching .osusume-cont .osusume-col .item-img {
  width: 320px;
  height: 320px;
  margin-right: 14px;
}
#gift_matching .osusume-cont .osusume-col .item-img img {
  width: 100%;
  border: 1px solid #ccc;
}
#gift_matching .osusume-cont .osusume-right-cont {
  position: relative;
  width: 630px;
  background: #eee;
  padding: 30px 40px;
  border-radius: 14px;
  text-align: left;
}
#gift_matching .osusume-cont .osusume-right-cont::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -33px;
  border: 15px solid transparent;
  border-right: 25px solid #eee;
}
#gift_matching .osusume-cont .osusume-right-cont h3.osusume-ttl1 {
  display: block;
  background: url(/ec/shop/images/campaign/cTop_gift/cTop_gift_scene/icon-staff01.svg) 0 0 no-repeat;
  background-size: 60px 60px;
  padding: 16px 0 0 72px;
  margin-bottom: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 18px;
  min-height: 60px;
}
#gift_matching .osusume-cont .osusume-right-cont h3.osusume-ttl2 {
  display: block;
  background: url(/ec/shop/images/campaign/cTop_gift/cTop_gift_scene/icon-staff02.svg) 0 0 no-repeat;
  background-size: 60px 60px;
  padding: 16px 0 0 72px;
  margin-bottom: 18px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 18px;
  min-height: 60px;
}
#gift_matching .osusume-cont .osusume-right-cont dl {
  margin-bottom: 5px;
  color: #010101;
}
#gift_matching .osusume-cont .osusume-right-cont dt {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 3px;
}
#gift_matching .osusume-cont .osusume-right-cont .item-box {
  background: #fff;
  padding: 18px 16px;
}
#gift_matching .osusume-cont .osusume-right-cont .item-box .item-name,
#gift_matching .osusume-cont .osusume-right-cont .item-box .item-price {
  font-weight: bold;
  font-size: 12px;
  line-height: 24px;
}
#gift_matching .osusume-cont .osusume-right-cont .item-box .item-price {
  margin-bottom: 2px;
}
#gift_matching .osusume-cont .osusume-right-cont .item-box .item-link {
  color: #22469E;
  font-weight: bold;
  font-size: 14px;
  position: relative;
}
#gift_matching .osusume-cont .osusume-right-cont .item-box .item-link::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: solid 1px #22469E;
  border-right: solid 1px #22469E;
  transform: rotate(45deg);
  position: absolute;
  top: 36%;
  right: -8px;
}
#gift_matching .osusume-cont .other-link-btn {
  width: 420px;
  height: 56px;
  margin: 24px 0 0 362px;
}
#gift_matching .osusume-cont .other-link-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22469E;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  height: 100%;
  width: 100%;
  letter-spacing: -0.02em;
}

/* =============================================
てのひらギフト
============================================= */
#gift_matching .tenohira-box {
  margin-bottom: 60px;
}
#gift_matching .tenohira-box .tenohira-col {
  border: 10px solid #B9E7D8;
  padding: 30px 50px;
  display: flex;
}
#gift_matching .tenohira-box .tenohira-ttl {
  margin-right: 26px;
  text-align: left;
  width: 270px;
  display: flex;
  align-items: center;
}
#gift_matching .tenohira-box .tenohira-ttl span {
  flex-direction: column;
}
#gift_matching .tenohira-box .tenohira-ttl img {
  width: 100%;
}
#gift_matching .tenohira-box .tenohira-ttl p {
  color: #010101;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 24px;
  margin-top: 24px;
}
#gift_matching .tenohira-box .item-img {
  display: inline-flex;
  align-items: center;
  width: 348px;
  margin-right: 16px;
}
#gift_matching .tenohira-box .item-img img {
  width: 100%;
}
#gift_matching .tenohira-box .tenohira-right-cont {
  display: inline-flex;
  align-items: center;
  width: 210px;
}
#gift_matching .tenohira-box .tenohira-right-cont p {
  text-align: left;
  font-size: 12px;
  line-height: 24px;
  color: #010101;
}

/* =============================================
TOPへ戻る
============================================= */
#gift_matching .btn-link-gifttop {
  width: 490px;
  height: 80px;
  margin: 0 auto;
}
#gift_matching .btn-link-gifttop a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #010101;
  border: 2px solid #22469E;
  width: 100%;
  height: 100%;
}

/* =============================================
調整用
============================================= */
#gift_matching .mb0 {
  margin-bottom: 0;
}
#gift_matching .mb10 {
  margin-bottom: 10px;
}
#gift_matching .mb20 {
  margin-bottom: 20px;
}
#gift_matching .mb30 {
  margin-bottom: 30px;
}
#gift_matching .mb40 {
  margin-bottom: 40px;
}
#gift_matching .mb50 {
  margin-bottom: 50px;
}
#gift_matching .pc {
  display: block;
}
#gift_matching .sp {
  display: none;
}