@charset "utf-8";
/* CSS Document */






/* ==========　冒頭ここから　　========== */

.cate_intro {
  max-width: 980px;
  margin: 18px auto 30px;
  padding: 0 20px;
  text-align: center;
}
.cate_intro_text {
  max-width: 920px;
  margin: 0 auto;
  color: #222;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.brand_detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
  color: #555;
  font-size: 12px;
  line-height: 1;
}
.brand_detail_name {
  color: #444;
  font-weight: 500;
}
.brand_detail_link {
  color: #777;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  font-size: 0.6rem;
  margin-bottom: 0;
}
.brand_detail_link:hover {
  color: #000;
}
.cate_modal_toggle {
  display: none;
}
.cate_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.cate_modal_toggle:checked + .cate_modal {
  display: block;
}
.cate_modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}
.cate_modal_content {
  position: relative;
  z-index: 1;
  width: min(380px, calc(100% - 32px));
  max-height: calc(100vh - 64px);
  margin: 32px auto;
  background: #fff;
  border-radius: 12px;
  overflow: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}
.cate_modal_close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 34px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  font-weight: 300;
}
.cate_modal_image img {
  display: block;
  width: 100%;
  height: auto;
}
.cate_modal_body {
  padding: 30px 30px 34px;
  text-align: left;
}
.cate_modal_body h2 {
  margin: 0 0 22px;
  color: #111;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}
.cate_modal_body p {
  margin: 0 0 18px;
  color: #333;
  font-size: 13px;
  line-height: 1.9;
}
.cate_modal_body p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .cate_intro {
    margin: 16px auto 26px;
    padding: 0 16px;
    text-align: left;
  }
  .cate_intro_text {
    font-size: 13px;
    line-height: 1.8;
  }
  .brand_detail {
    justify-content: flex-start;
    margin-top: 9px;
    font-size: 12px;
  }
  .cate_modal_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 28px);
    max-height: calc(100vh - 40px);
    margin: 0;
    border-radius: 10px;
    transform: translate(-50%, -50%);
  }
  .cate_modal_body {
    padding: 26px 24px 30px;
  }
  .cate_modal_close {
    width: 44px;
    height: 44px;
    font-size: 30px;
    line-height: 40px;
  }
}

/* ==========　冒頭ここまで　========== */



/* ==========　冒頭　絞り込みメニュー　ここから　========== */

section#hd_search_menu {
    margin: 15px auto 0 auto;
    position: relative;
}
details {
    width: 100%;
    height: 45px;
    position: relative;
}
details#hd_theme[open] {
    height: 200px;
}
summary {
    width: 190px;
    border-radius: 5px;
    border: 1px solid #ddd;
    position: absolute;
    list-style: none;
    cursor: pointer;
}
details summary span::after, details li span::after{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #999;
    top: 0;
    right: 5%;
    bottom: 0;
    margin: auto;
    transform:rotate(-90deg);
}
details li span::after{
    border-width: 4px 0 4px 4px;
    transform:rotate(0deg);
}
details li a{
    text-decoration: none;
}
details[open] summary span::after{
    transform:rotate(90deg);
}


summary#hd_theme_btn {
    right: 50.5%;
    line-height: 45px;
    text-align: center;
}
#hd_sort {
    width: 190px;
    left: 50.5%;
    line-height: 45px;
    text-align: center;
    position: absolute;
    top:0;
}

details div {
    width: 100%;
    position: absolute;
    margin: 60px auto 0 auto;
    background: #f9f9f9;
    z-index: 2;
}
details#hd_sort div {
    margin: 47px auto 0 auto;
}
details ul{
    width: 100%;
    display: grid;
    align-items: center;
    gap: 9px;
    grid-template-columns: repeat(5, 1fr);
    padding: 10px;
    box-sizing: border-box;
    margin: 0 auto !important;
}
details li{
    vertical-align: top;
    text-align: left;
        list-style: none;
}
details li a{
    padding: 0 18px 0 20px;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .1));
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
    width: 100%;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 5px;
    box-sizing: border-box;
}
details p{
    line-height: 45px !important;
    margin: 0 !important;
}

@media screen and (max-width: 900px) {
details ul{
    grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 600px) {
details#hd_theme[open] {
    height: 250px;
}
details ul{
    grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 410px) {
summary#hd_theme_btn, #hd_sort{
    width: 48%;
}
#hd_sort_btn {
    width: 100%;
}
}

/* ==========　冒頭　絞り込みメニュー　ここまで　========== */




/* ==========　ランキング　ここから　========== */

#ranking_area {
  clear: both;
  width: 100%;
  max-width: 1180px;
  margin: 72px auto 56px;
  padding: 34px 20px 36px;
  background: #f2f2f2;
  box-sizing: border-box;
  overflow: hidden;
}
#ranking_area * {
  box-sizing: border-box;
}
.ranking_area {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
/* タイトル行 */
.ranking_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0 0 22px;
}
.ranking_title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
  color: #777;
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ranking_title span {
  color: #000;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.ranking_more {
  flex: 0 0 auto;
  color: #333;
  font-size: 12px;
  line-height: 1;
  text-decoration: underline;
}
/* 横スクロール */
.ranking_slider {
  position: relative;
  width: 100%;
}
.ranking_scroll {
  width: 100%;
  padding: 0 0 18px;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  counter-reset: ranking;
}
/* 商品カード */
.rank_list {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 184px;
  margin: 0 8px 0 0;
  padding: 0 0 14px;
  background: #fff;
  white-space: normal;
  counter-increment: ranking;
}
.rank_list::before {
  content: counter(ranking);
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.14);
}
.rank_list a {
  display: block;
  color: #333;
  text-decoration: none;
}
.rank_list a img {
  display: block;
  width: 100%;
  height: 244px;
  margin: 0;
  object-fit: cover;
}
.rank_list span {
  display: block;
  height: 48px;
  padding: 10px 12px 0;
  overflow: hidden;
  color: #333;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
}
/* 左右矢印 */
.ranking_arrow {
  position: absolute;
  top: 102px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}
.ranking_arrow_prev {
  left: -20px;
}
.ranking_arrow_next {
  right: -20px;
}
/* スクロールバー */
.ranking_scroll::-webkit-scrollbar {
  height: 6px;
}
.ranking_scroll::-webkit-scrollbar-track {
  background: #ddd;
}
.ranking_scroll::-webkit-scrollbar-thumb {
  background: #999;
}
/* スマホ */
@media only screen and (max-width: 520px) {
  #ranking_area {
    clear: both;
    width: calc(100% - 24px);
    max-width: none;
    margin: 80px auto 40px;
    padding: 24px 12px 28px;
  }
.ranking_header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px 8px;
  margin-bottom: 16px;
}
.ranking_title {
  width: 100%;
  flex: 0 0 100%;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ranking_title span {
  font-size: 21px;
}

.ranking_more {
  display: block;
  width: 100%;
  flex: 0 0 100%;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.4;
  text-align: right;
  white-space: normal;
}  .rank_list {
    width: 152px;
    margin-right: 8px;
  }
  .rank_list a img {
    height: 212px;
  }
  .rank_list span {
    height: 46px;
    padding: 8px 10px 0;
    font-size: 11px;
    line-height: 1.55;
  }
  .rank_list::before {
    width: 26px;
    height: 26px;
    font-size: 12px;
    line-height: 26px;
  }
  .ranking_arrow {
    top: 86px;
    width: 34px;
    height: 40px;
    font-size: 28px;
    line-height: 38px;
  }
  .ranking_arrow_prev {
    left: 0;
  }
  .ranking_arrow_next {
    right: 0;
  }
}

/* ==========　ランキング　ここまで　========== */





/* ==========　関連記事リスト　ここから　========== */

ul.cp_list {
position: relative;
padding: 0 0.5em;
margin-top: 10em;
list-style-type: none;
border: solid 2px #29B6F6;
}
ul.cp_list::after {
position: absolute;
bottom: 100%;
left: -2px;
content: "関連記事";
padding: 10px;
font-weight: bold;
font-size: .8em;
color: #fff;
background: #29B6F6;
border-radius: 4px 4px 0px 0px;
}
ul.cp_list li {
padding: 5px 5px 5px 20px;
border-bottom: 1px dashed #81D4FA;
text-align: left;
}
ul.cp_list li::before {
position: absolute;
left : 5px;
color: #29B6F6;
content: "\f138";
font-family: "Font Awesome 5 Free";
font-weight: 900;
}
ul.cp_list li:last-of-type {
border-bottom: none;
color: #FF5722;
}
ul.cp_list li:last-of-type {
  border-bottom: none;
}


ul.dress_kanren::after {
  content: "パーティードレスの関連記事";
}
ul.down_kanren::after {
  content: "ダウンコート・ダウンジャケットの関連記事";
}
ul.setup_kanren::after {
  content: "セットアップの関連記事";
}
ul.suits_kanren::after {
  content: "レディーススーツの関連記事";
}
ul.ceremony_kanren::after {
  content: "入卒ママスーツの関連記事";
}
ul.blouse_kanren::after {
  content: "ブラウス・シャツの関連記事";
}
ul.shichigosan_kanren::after {
  content: "七五三・お宮参り・100日参りの関連記事";
}


/* ==========　関連記事リスト　ここまで　========== */















