@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ===============================
フォント・カラー設定
=============================== */
:root {
  --font_noto_sans: 'Noto Sans JP', sans-serif;
  --font_noto_serif: 'Noto Serif JP', sans-serif;
  --font_libre: 'Libre Baskerville', serif;
  --color_brown: #572301;
  --color_red: #BC012E;
  --color_beige: #F8F6F0;
}
.font_libre {
  font-family: 'Libre Baskerville', serif;
  font-weight: 500;
}
#valentine_page_2023 * {
    color: var(--color_brown);
}
/* ===============================
行間・文字間隔等
=============================== */
#valentine_page_2023 h2,
#valentine_page_2023 h3,
#valentine_page_2023 h4,
#valentine_page_2023 h5 {
  line-height: 1.6em!important;
  letter-spacing: 0.05em!important;
}
#valentine_page_2023 p,
#valentine_page_2023 p span,
#valentine_page_2023 p small {
  line-height: 2.2em!important;
  letter-spacing: 0.06em!important;
  font-family: var(--font_noto_sans)!important;
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 h2,
  #valentine_page_2023 h3,
  #valentine_page_2023 h4,
  #valentine_page_2023 h5 {
    line-height: 1.5em!important;
  }
  #valentine_page_2023 li {
    letter-spacing: 0em!important;
  }
}
#valentine_page_2023 .inner {
  margin-bottom: 6rem;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .inner {
    margin-bottom: 4rem;
  }
}
/* ===============================
リンク設定
=============================== */
#valentine_page_2023 a {
  text-decoration: none!important;
}
#valentine_page_2023 a:hover {
  color: inherit!important;
}
/* ===============================
ベースレイアウト
=============================== */
@media screen and (max-width: 599px) {
  #valentine_page_2023 {
    width: csalc(100% + 16px);
    margin: -8px -8px 0;
  }
}
/* ===============================
リード文
=============================== */
.valentine_page_2023_lead {
  display: flex;
}
@media screen and (max-width: 599px) {
  .valentine_page_2023_lead {
    flex-direction: column;
  }
}
.valentine_page_2023_lead div {
  width: 50%;
}
@media screen and (max-width: 599px) {
  .valentine_page_2023_lead div {
    width: 100%;
  }
}
.valentine_page_2023_lead_img img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 599px) {
  .valentine_page_2023_lead_img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }  
}
.valentine_page_2023_lead_txt {
  background-color: var(--color_red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
}
@media screen and (max-width: 599px) {
  .valentine_page_2023_lead_txt {
    padding: 2.5rem 4%;
  }
}
.valentine_page_2023_lead_txt * {
  color: #FFF!important;
}
.valentine_page_2023_lead_txt h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 599px) {
  .valentine_page_2023_lead_txt h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
  }  
}
#valentine_page_2023 .valentine_page_2023_lead_txt h2 + p {
  font-size: 1.6rem;
  font-family: var(--font_noto_serif)!important;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .valentine_page_2023_lead_txt h2 + p {
    font-size: 1.4rem;
    font-family: var(--font_noto_sans)!important;
    font-weight: 400;
    text-align: center;
  }
}
@media screen and (max-width: 1430px) {
  .valentine_page_2023_lead_txt p br {
    display: none;
  }
}
/* ===============================
ギフト特典
=============================== */
#valentine_2023_tokuten_area {
  background-color: var(--color_beige);
  padding: 8rem 0;
}
@media screen and (max-width: 599px) {
  #valentine_2023_tokuten_area {
    padding: 3rem 0;
  }
}
.valentine_2023_tokuten {
  width: 800px;
  margin: 0 auto;
  border: solid #EAE1D3 6px; 
  display: flex;
  justify-content: space-between;
  padding: 3rem;
}
@media screen and (max-width: 1430px) {
  .valentine_2023_tokuten {
    width: 94%;
  }
}
@media screen and (max-width: 599px) {
  .valentine_2023_tokuten {
    flex-direction: column;
    padding: 2rem;
  }
}
.valentine_2023_tokuten_box {
  width: 48%;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .valentine_2023_tokuten_box {
    width: 100%;
    margin-bottom: 3rem;
  }
  .valentine_2023_tokuten .valentine_2023_tokuten_box:nth-child(2) {
    margin-bottom: 0;
  }
}
.valentine_2023_tokuten_box p,
.valentine_2023_tokuten_box p * {
  font-size: 1.3rem!important;
}
@media screen and (max-width: 599px) {
  .valentine_2023_tokuten_box p br {
    display: none;
  }
}
.valentine_2023_tokuten_ttl {
  font-size: 1.7rem;
  text-align: center;
  border-bottom: solid 1px #EAE1D3;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .valentine_2023_tokuten_ttl {
    font-size: 1.6rem;
    font-weight: 600!important;
  }  
}
#valentine_page_2023 .valentine_2023_tokuten_ttl i {
  color: var(--color_red);
  font-size: 3.5rem;
  margin-right: 1rem;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .valentine_2023_tokuten_ttl i {
    font-size: 2.0rem;
    margin-right: 0.5rem;
  }
}
#valentine_page_2023 .valentine_2023_tokuten_box span {
  color: var(--color_red);
}
#valentine_page_2023 .valentine_2023_tokuten_box a {
  text-decoration: underline!important;
  font-size: 1.4rem!important;
}
#valentine_page_2023 .valentine_2023_tokuten_box a:hover {
  text-decoration: none!important;
  opacity: 1!important;
}    
/* ===============================
ギフトアイテム共通
=============================== */
#valentine_2023_watchband,
#valentine_2023_belt,
#valentine_2023_bag,
#valentine_2023_other {
  background-color: var(--color_beige);
}
.valentine_2023_header {
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#valentine_2023_other .valentine_2023_header {
  height: 320px;  
}
@media screen and (max-width: 899px) {
  .valentine_2023_header {
    width: 100%;
    height: 360px;
  }
}
@media screen and (max-width: 599px) {
  .valentine_2023_header {
    width: 100%;
    height: 240px;
  }
  #valentine_2023_other .valentine_2023_header {
    height: 200px;  
  }
}
.valentine_2023_header:after {
  content: '';
  background-color: rgba(0,0,0,.3);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#valentine_2023_other .valentine_2023_header:after {
  background-color: var(--color_red);
}
#valentine_page_2023 .valentine_2023_header h2 {
  text-align: center;
  color: #FFF!important;
  font-size: 2.4rem;
  position: relative;
  z-index: 10;
  text-shadow:2px 2px 5px #000;
}
#valentine_page_2023 .valentine_2023_header h2 span {
  font-family: var(--font_libre);
  color: #FFF!important;
  font-size: 4.8rem;
  display: block;
  margin-bottom: 1rem;
}
#valentine_2023_other .valentine_2023_header h2 {
  text-shadow: none;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .valentine_2023_header h2 {
    font-size: 1.8rem;
  }
  #valentine_page_2023 .valentine_2023_header h2 span {
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
  }
}
#valentine_2023_watchband .valentine_2023_header {
  background: url(https://morpho1995noij.itembox.design/item/valentine/2023/header_01.jpg) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 899px) {
  #valentine_2023_watchband .valentine_2023_header {
    background: url(https://morpho1995noij.itembox.design/item/valentine/2023/header_01_sp.jpg) no-repeat center;
    background-size: cover;
  }
}
#valentine_2023_belt .valentine_2023_header {
  background: url(https://morpho1995noij.itembox.design/item/valentine/2023/header_02.jpg) no-repeat center;
  background-size: cover;
}
#valentine_2023_bag .valentine_2023_header {
  background: url(https://morpho1995noij.itembox.design/item/valentine/2023/header_03.jpg) no-repeat center;
  background-size: cover;
}
.valentine_2023_item_conts {
  width: 930px;
  margin: 0 auto;
  padding: 4rem 0;
}
@media screen and (max-width: 1430px) {
  .valentine_2023_item_conts {
    width: 94%;
  }
}
@media screen and (max-width: 599px) {
  .valentine_2023_item_conts {
    padding: 2rem 0;
  }
}
#valentine_page_2023 .valentine_2023_item_conts p:first-child {
  text-align: center;
  font-size: 1.7rem;
  font-family: var(--font_noto_serif)!important;
  font-weight: 500;
  margin-bottom: 6rem;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .valentine_2023_item_conts p:first-child {
    font-size: 1.5rem;
    margin-bottom: 2.6rem;
  }
  #valentine_page_2023 .valentine_2023_item_conts p:first-child br {
    display: none;
  }
}
#valentine_page_2023 .valentine_2023_item_conts .valentine_2023_ttl_01 {
  font-size: 2.8rem;
  font-family: var(--font_libre);
  text-align: center;
  margin-bottom: 2.6rem;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .valentine_2023_item_conts .valentine_2023_ttl_01 {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }  
}
.valentine_2023_item_conts .valentine_2023_ttl_01 span {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.valentine_2023_item_conts .valentine_2023_ttl_01 span:before,
.valentine_2023_item_conts .valentine_2023_ttl_01 span:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color_brown);
}
.valentine_2023_item_conts .valentine_2023_ttl_01 span:before {
  margin-right: 1.4rem;
}
.valentine_2023_item_conts .valentine_2023_ttl_01 span:after {
  margin-left: 1.4rem;
}
/* ===============================
3カラム
=============================== */
.valentine_2023_3col_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-left: -4.5%;
}
.valentine_2023_3col_box {
  width: calc(100% / 3);
  padding: 0 0 0 4.5%;
  margin-bottom: 9%;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .valentine_2023_3col_box {
    width: calc(100% / 2);
  }  
}
.valentine_2023_3col_box:nth-last-of-type(-n+3) {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .valentine_2023_3col_box:nth-last-of-type(-n+3) {
    margin-bottom: 9%;
  }
  .valentine_2023_3col_box:nth-last-of-type(-n+2) {
    margin-bottom: 0;
  }
}
.valentine_2023_3col_box,
.valentine_2023_3col_box > a {
  display: flex;
  flex-direction: column;
}
#valentine_page_2023 .valentine_2023_3col_box h4 {
  order: 3;
  font-family: var(--font_noto_sans)!important;
  font-size: 1.4rem;
  font-weight: 500!important;
  line-height: 1.6!important;
}
#valentine_page_2023 .valentine_2023_3col_box h4 span {
  display: block;
  line-height: 1.6!important;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .valentine_2023_3col_box h4,
  #valentine_page_2023 .valentine_2023_3col_box h4 span {
    letter-spacing: 0!important;
  }
}
#valentine_page_2023 .valentine_2023_3col_box ul {
  order: 4;
}
#valentine_page_2023 .valentine_2023_3col_box ul li {
  font-family: var(--font_noto_sans)!important;
  font-size: 1.4rem;
  font-weight: 400!important;
  list-style: disc;
  list-style-position: inside;
  line-height: 1.6!important;
  margin-bottom: 0.4rem;
}
#valentine_page_2023 .valentine_2023_3col_box ul a {
  text-decoration: underline!important;
}
#valentine_page_2023 .valentine_2023_3col_box ul a:hover {
  text-decoration: none!important;
}
#valentine_page_2023 p.valentine_2023_3col_txt {
  order: 2;
  line-height: 1.6!important;
  font-size: 1.7rem;
  font-family: var(--font_noto_serif)!important;
  font-weight: 600!important;
  margin-bottom: 1rem;
  letter-spacing: 0.05em!important;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 p.valentine_2023_3col_txt {
    font-size: 1.6rem;
    letter-spacing: 0.01em!important;
  }
}
.valentine_2023_3col_img {
  order: 1;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 599px) {
  .valentine_2023_3col_img {
    margin-bottom: 1rem;
  }
}
/* ===============================
moreボタン
=============================== */
#valentine_page_2023 .btn_more_bk {
  display: none!important;
}
#valentine_page_2023 .btn_more_valentine_2023 {
  font-size: 1.4rem!important;
  font-family: var(--font_noto_sans)!important;
  display: inline-block;
  min-width: 320px;
  margin: 6rem auto 0;
  cursor: pointer;
  color: #fff!important;
  border-radius: 100vh;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all .2s ease;
  position: relative;
  background-color: var(--color_red);
}
#valentine_page_2023 #ranking_item_page .btn_more_valentine_2023 {
  margin: 0 auto;
}
#valentine_page_2023 #ranking_item_page #panel1 .btn_more_valentine_2023 {
  background-color: #254280;
}
#valentine_page_2023 #ranking_item_page #panel1 .btn_more_valentine_2023:hover {
  background-color: #08348b;
}
#valentine_page_2023 #ranking_item_page #panel2 .btn_more_valentine_2023 {
  background-color: #731a2e;
}
#valentine_page_2023 #ranking_item_page #panel2 .btn_more_valentine_2023:hover {
  background-color: #ad2745;
}
@media screen and (max-width: 1430px) {
  #valentine_page_2023 .btn_more_valentine_2023 {
    min-width: 84%;
    font-size: 1.3rem!important;
  }
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .btn_more_valentine_2023 {
    min-width: 90%;
    margin: 3rem auto 0;
  }
}
#valentine_page_2023 .btn_more_valentine_2023:hover {
  background-color: #db0603;
}
#valentine_page_2023 .btn_more_valentine_2023 a {
  color: #FFF!important;
  font-size: 1.4rem!important;
  font-family: var(--font_noto_sans)!important;
  display: inline-block;
  width: 100%;
  padding: 2rem;
  line-height: 2.6!important;
} 
@media screen and (max-width: 1430px) {
  #valentine_page_2023 .btn_more_valentine_2023 a {
    font-size: inherit;
    padding: 1.6rem 2rem;
  }
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .btn_more_valentine_2023 a {
    width: auto;
  }
}
#valentine_page_2023 .btn_more_valentine_2023:after {
  content:'\f138';
  font-family: var(--fontawe);
  font-weight: 900;
  font-size: 2rem;
  position: absolute;
  right: 1.6rem;
  top: 32%;
  transition: all .3s ease;
}
#valentine_page_2023 .btn_more_valentine_2023:hover:after {
  position: absolute;
  right: 1rem;
}
#valentine_page_2023 .btn_more_valentine_2023 span {
  color: #FFF!important;
}
#valentine_page_2023 .btn_more_valentine_2023:hover {
  opacity: 1.0!important;
}
#valentine_page_2023 .btn_more_valentine_2023:hover a {
  opacity: 1.0!important;
}
#valentine_page_2023 .btn_more_vale_2023_2col_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3rem;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .btn_more_vale_2023_2col_wrap {
    flex-direction: column;
    align-items: center;
  }
}
#valentine_page_2023 .valentine_2023_reco_1st .btn_more_valentine_2023 {
  margin: 3rem 0 0!important;
}
#valentine_page_2023 .valentine_2023_reco_1st .btn_more_vale_2023_2col_wrap .btn_more_valentine_2023 {
  display: block;
  margin: 0 2rem!important;
}
@media screen and (max-width: 1430px) {
  #valentine_page_2023 .valentine_2023_reco_1st .btn_more_vale_2023_2col_wrap .btn_more_valentine_2023 {
    min-width: 49%;
    margin: 0 1rem!important;
  }
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .valentine_2023_reco_1st .btn_more_vale_2023_2col_wrap .btn_more_valentine_2023 {
    min-width: 90%;
    margin: 0 0 3rem!important;
  }
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .valentine_2023_reco_1st .btn_more_vale_2023_2col_wrap > *:last-child, 
  #valentine_page_2023 .valentine_2023_reco_1st .btn_more_vale_2023_2col_wrap > *:last-child > *:last-child, 
  #valentine_page_2023 .valentine_2023_reco_1st .btn_more_vale_2023_2col_wrap > *:last-child > *:last-child > *:last-child {
    margin-bottom: 0!important;
  }
}
/* ===============================
ページ内リンク
=============================== */
.gift_for_valentine_link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
@media screen and (max-width: 599px) {
  .gift_for_valentine_link {
    margin-bottom: 2rem;
  }
}
#valentine_page_2023 .gift_for_valentine_link li {
  width: 23%;
  text-align: center;
  font-size: 1.6rem!important;
  border: solid 1px var(--color_brown);
  border-radius: 100vh;
  font-weight: 400!important;
}
@media screen and (max-width: 899px) {
  #valentine_page_2023 .gift_for_valentine_link li {
    width: 48.5%;
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .gift_for_valentine_link li {
    width: 100%;
  }
}
.gift_for_valentine_link li a {
  display: block;
  background: url(https://morpho1995noij.itembox.design/item/valentine/2023/icon_arrow_down.png) no-repeat center 80%;
  background-size: 19px auto;
  padding: 3.4rem 1rem 4.5rem;
}
.gift_for_valentine_link li a:hover {
  background: url(https://morpho1995noij.itembox.design/item/valentine/2023/icon_arrow_down.png) no-repeat center 90%;
  background-size: 19px auto;
}
@media screen and (max-width: 599px) {
  .gift_for_valentine_link li a {
    background: url(https://morpho1995noij.itembox.design/item/valentine/2023/icon_arrow_down.png) no-repeat 90% 50%;
    background-size: 19px auto;
    padding: 2.4rem 1rem 2.5rem;
  }
  .gift_for_valentine_link li a:hover {
    background: url(https://morpho1995noij.itembox.design/item/valentine/2023/icon_arrow_down.png) no-repeat 90% 60%;
    background-size: 19px auto;
  }
}
/* ===============================
バレンタインギフトを選ぶ
=============================== */
#valentine_2023_other #category_item_page,
#valentine_2023_other #ranking_item_page {
  padding-top: 0!important;
}
#valentine_page_2023 #valentine_2023_other .valentine_2023_ttl_01 {
  font-family: var(--font_noto_serif)!important;
  font-size: 2.4rem!important;
  line-height: 1.4!important;
  letter-spacing: 0!important;
}
#valentine_page_2023 #valentine_2023_other .valentine_2023_ttl_01 span {
  letter-spacing: 0.05em!important;
  font-family: var(--font_libre)!important;
  margin-bottom: 1rem;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 #valentine_2023_other .valentine_2023_ttl_01 {
    font-size: 1.8rem!important;
    line-height: 1.3!important;
  }
  #valentine_page_2023 #valentine_2023_other .valentine_2023_ttl_01 span {
    margin-bottom: 1rem;
  }
}
#valentine_page_2023 #valentine_2023_other .top_ranking_num {
  color: #FFF!important;
}
.valentine_2023_price_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .valentine_2023_price_list {
    flex-direction: column;
    align-items: center;
  }
}
.valentine_2023_price_list li {
  width: 32%;
  text-align: center;
  font-family: var(--font_noto_sans);
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFF;
  letter-spacing: 0.15rem!important;
}
@media screen and (max-width: 599px) {
  .valentine_2023_price_list li {
    width: 90%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.valentine_2023_price_list li a {
  width: 100%;
  display: inline-block;
  border: solid 4px #EAE1D3;
  background-color: ;
  padding: 3.5rem 1rem;
}
@media screen and (max-width: 599px) {
  .valentine_2023_price_list li a {
    padding: 2rem 1rem;
  }
}
.valentine_2023_price_list li a {
  text-decoration: none!important;
}
.valentine_2023_price_list li a:hover {
  text-decoration: none!important;
  background-color: #EAE1D3;
  opacity: 1.0!important;
}
.valentine_2023_other_3col_wrap {
  width: 100%;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.valentine_2023_other_3col_box {
  width: 31.5%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 599px) {
  .valentine_2023_other_3col_wrap {
    width: 94%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
  .valentine_2023_other_3col_box {
    width: 100%;
    margin-bottom: 4rem;
  }
  .valentine_2023_other_3col_box:last-child {
    margin-bottom: 0;
  }
}
#valentine_page_2023 .valentine_2023_other_3col_box h4 {
  order: 1;
  font-size: 2.1rem;
  text-align: center;
  border-bottom: solid 1px #EAE1D3;
  padding-bottom: 1.4rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .valentine_2023_other_3col_box h4 {
    font-size: 1.7rem;
  }
}
.valentine_2023_other_3col_box a {
  order: 0;
  margin-bottom: 2rem;
}
.valentine_2023_other_3col_box a img {
  width: 100%;
}
.valentine_2023_other_3col_box p {
  order: 2;
  text-align: center;
}
/* ===============================
リコメンアイテム横100％
=============================== */
.valentine_2023_reco_1st {
  margin-bottom: 5rem;
}
@media screen and (max-width: 599px) {
  .valentine_2023_reco_1st > div img {
    object-fit: cover;
    width: 100%;
    height: 200px;
  }
}
#valentine_page_2023 .vale_2023_reco_ttl {
  text-align: center;
  font-size: 2.0rem;
  font-weight: 600!important;
  margin-top: 3.6rem;
  margin-bottom: 1.6rem;
}
#valentine_page_2023 .vale_2023_reco_ttl small {
  display: block;
  font-family: var(--font_libre);
}
@media screen and (max-width: 599px) {
  #valentine_page_2023 .vale_2023_reco_ttl {
    font-size: 1.8rem;
    margin-top: 2.6rem;
  }
}
.vale_2023_reco_ttl_02 {
  font-size: 1.7rem;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
}
.vale_2023_reco_ttl_02 span {
  margin-left: 2rem;
}
.vale_2023_reco_ttl_02:before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 25px;
  background: url(https://morpho1995noij.itembox.design/item/valentine/2023/icon_reco_star.png) no-repeat;
  background-size: 26px auto;
  margin-right: 1rem;
}
@media screen and (max-width: 599px) {
  .vale_2023_reco_ttl_02 {
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
  }
}




