@charset "UTF-8";


* {
  font-family: 'Overpass', 'Noto Sans JP', sans-serif;
}


html {
  font-size: 62.5%;
}

/* =====================
   FAVORITE ITEMS PAGE
===================== */

/* 全体 */
.favorite-page {
  width: 100%;
  margin: 0 auto;
}

/* KV */
.favorite-kv {
  background: #faf7f0;
  text-align: center;
  padding: 120px 20px;
}

/* 英字タイトル */
.en-title {
  font-size: 11px;
  letter-spacing: 0.45em;
  margin-bottom: 35px;
}

/* 発行月 */
.issue {
  margin-top: 15px;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #777;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .en-title {
  margin-bottom: 15px;
  }

  .issue {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #777;
  margin-bottom: 20px;
  }
}

/* メインタイトル */
.favorite-kv h1 {
  font-size: 32px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* 説明文 */
.lead {
  margin-top: 35px;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* 商品一覧 */
.favorite-items {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 20px;
  padding: 80px 20px;
}

/*ブランド名*/
.favorite-items h2 {
  margin-top: 5px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .favorite-items {
    padding: 40px 16px;
    gap: 32px 10px;
  }

  .favorite-kv {
    padding: 60px 10px;
  }

  .favorite-kv h1 {
    font-size: 22px;
  }

  .lead {
    font-size: 12px;
  }

}


/* 商品カード */
.item-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  animation: fadeUp .8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ITEM番号 */
.item-number {
  font-size: 12px;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
  color: #888;
}


/* 商品画像 */
.item-card img {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  display: block;
  transition: .4s ease;
}

.item-card:hover img {
  opacity: .85;
}

/* 商品名 */
.item-name {
  margin-top: 2px;
  font-size: 13px;
  letter-spacing: 0.2rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {

  .item-card h2 {
    font-size: 10px;
  }

 .item-name {
    width: 100%;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* 価格 */
.price {
  margin-top: 3px;
  font-size: 11px;
}

.item-card .price span {
  font-size: 10px !important;
  color: #777 !important;
  margin-left: 5px;
}

/* 商品を見るボタン */
.item-link {
  display: inline-block;
  margin-top: 10px;
  margin-left: auto;
  padding: 10px 22px;
  font-size: 10px;
  letter-spacing: 0.2em;
  border: 1px solid #222;
  border-radius: 30px;
  text-decoration: none;
  color: #222;
}

@media screen and (max-width: 767px) {

  .item-link {
    padding: 9px 12px;
    font-size: 10px;
  }

}

@media screen and (max-width: 767px) {

  .favorite-items {
    gap: 40px 12px;
  }

}

/* 締めの文章 */
.favorite-footer {
  text-align: center;
  padding: 80px 20px;
  background: #faf7f0;
}

.favorite-footer p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
}

/* .favorite-footer a {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 50px;
  border: 1px solid #222;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-decoration: none;
  color: #222;
} */

.footer-main-link {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 50px;
  background: #5f5f5f;
  color: #fff; !important;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: .15em;
}

.footer-sub-link {
  display: block;
  margin-top: 25px;
  font-size: 11px;
  letter-spacing: .15em;
  text-decoration: underline;
  color: #555;
}

@media screen and (max-width: 767px) {
  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-links a {
    width: 220px;
  }
}

.favorite-footer .footer-main-link,
.favorite-footer .footer-main-link:link,
.favorite-footer .footer-main-link:visited,
.favorite-footer .footer-main-link:hover {
  color: #fff !important;
  text-decoration: none !important;
}

/*----------------------------------------
	clearfix
----------------------------------------*/
.clearfix:after {
content: "";
display: block;
clear: both;
}
/*----------------------------------------
	clearfix
----------------------------------------*/

/* .magazine {
  width: 1000px;
  height: auto;
  margin: 7% auto 0;
  width: 650px;
}

.magazine h1 {
  font-size: 43px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: .03em;
}

.magazine p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 180%;
  letter-spacing: .03em;
}


.magazine img {
  width: 100%;
  height: auto;
}

.magazine .topcmt p {
  width: 90%;
  font-size: 14px;
  margin: 5% auto 0%;
} */












/*----------------------------------------
	reset
----------------------------------------*/
body {
  min-width: auto;
}
.fs-l-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.fs-l-pageMain {
  width: 100%;
  max-width: none;
}

.layout_menu {
  display: none;
}

.layout_header_delivery {
  display: none!important;
}

.fs-c-heading.fs-c-heading--page {
display: none!important;
}

.layout_header_keywords {
  display: none;
}

.layout_header_form_input {
  font-size: 0;
}


.layout_header_search {
  display: none;
}

.re_gnavi_wrap {
  display: none;
}

.layout_header_user {
  display: none;
}

.re_layout_header_utility .layout_header_utility-navi {
  display: none;
}

.re_header_user_menu {
  display: none;
}


/*----------------------------------------
	reset
----------------------------------------*/










  /*----------------------------------------
  	pc/sp
  ----------------------------------------*/

/* PCだけで表示させたい
スマホのときは消えてほしい*/
  .sp-invisible
  {
      display: block;
  }
/* スマホで表示させたい
PCのときは消えてほしい*/
  .sp-display
  {
      display: none;
  }
  /*----------------------------------------
    pc/sp
  ----------------------------------------*/


  /* ----------------------------------------
  	Tablet
  ---------------------------------------- */

  @media only screen and (max-width: 768px)
  {

    .layout_header_meta_inner {
      width: 768px;
    }

    .layout_header_navi {
      width: 768px;
    }

    .re_layout_footer_wrap {
      display: none;
    }
  }



  /* ----------------------------------------
  	Tablet
  ---------------------------------------- */








  @media only screen and (max-width: 519px)
  {


/*----------------------------------------
	pc/sp
----------------------------------------*/

/* PCだけで表示させたい
スマホのときは消えてほしい*/
.sp-invisible
{
    display: none;
}
/* スマホで表示させたい
PCのときは消えてほしい*/
.sp-display
{
    display: block;
}

/*----------------------------------------
  pc/sp
----------------------------------------*/

.magazine {
  width: 100%;
  margin: 30% auto;
}

.magazine h1 {
  font-size: 56px;
}

.magazine .topimg img {
  width: 100%;
  margin: 20% auto 0%;
}

.magazine .topcmt p {
  width: 95%;
  font-size: 13px;
}










/* sp_footer_navi */

.sp_footer_navi220426_magazine {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  background: #f7f7f7;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 800000001;
  position: fixed;
  box-shadow: 0 -2px 4px 0 rgb(0 0 0 / 13%);
}

.sp_footer_navi_box220426_magazine {
  width: 20%;
  padding: 2%;
  display: block;
  text-align: center;
  /* border-right: 1px solid #fff; */
}

.sp_footer_navi_box220426_magazine p {
  font-size: 10px;
  margin-top: 4px;
  line-height: 1;
}

.sp_footer_navi_box220426_magazine img {
  width: 40%;
}


#toTop {
  bottom: 60px;
}


/* sp_footer_navi */



/*----------------------------------------
reset
----------------------------------------*/

body {
  min-width: auto;
}

.fs-l-main {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.fs-l-pageMain {
  width: 100%;
  /* 左右の余白削除 */
  padding-left: 0px;
  padding-right: 0px;
}

.layout_header_navi {
  display: none;
}

.header-gnavi-category {
  display: none!important;
}

ul.sp-header-gnavi.fs-p-accountInfo.fs-clientInfo.is-ready {
  display: none!important;
}

.fs-l-header__drawerOpener {
  display: none;
}

.psLink img {
  display: none;
}

.re_keyword_form_wrap {
  display: none;
}

.search-price {
  display: none;
}

.re_footer-navi {
  display: none!important;
}

.footer-sns {
  display: none;
}

.footer-under {
  display: none;
}

.fs-clientInfo.is-ready {
    display: none;
}



/*----------------------------------------
reset
----------------------------------------*/



}
