﻿@charset "utf-8";
/* ------------------------------------------------
フォント
------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}
.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}
/* ------------------------------------------------
トップページヘッダー/共通ヘッダー
------------------------------------------------ */
/* レイアウト */
#header {
  padding-top: 32px;
  background: #fff;
}
#header:has(> .header_news[style="display: none;"]) {
  padding-top: 0;
}
#header a {
  color: #121212;
}
#header .header_navi_area {
  width: 100%;
  height: 60px;
  background: #000;
}
#header .header_navi_area.hna_fixed {
  position: fixed;
  top: 0;
  z-index: 999999998;
}
#header .header_news[style="display: none;"] + .header_navi_area {
  top: 0 !important;
}
.header_link_area {}
body:not(.page-top) .header_link_area .header_link_icon {
  display: none;
}
.header_inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.header_navi_area .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header_link_area .header_inner {
  padding: 7px 0 15px;
}
/* ヘッダーニュース */
.header_news {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  color: #fff;
  width: 100%;
  height: 32px;
  background: #015AB4;
  transition : all 1.5s;
}
.header_news_inner {
  position: relative;
  width: 97%;
  max-width: 1200px;
  padding: 0 40px 2px;
}
.header_news_inner p {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  line-height: 1.1;
}
.header_news_close {
  display: block;
  position: absolute;
  top: -3px;
  right: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.header_news_close::before, .header_news_close::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 2px;
  height: 15px;
  background: #fff;
}
.header_news_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.header_news_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/* 読み込みレイアウト表示調整 */
.header_news_slider p {
  opacity: 0;
  transition: opacity .9s linear;
}
.header_news_slider.slick-initialized p {
  opacity: 1;
}
/* 検索窓 */
.header_navi_search, .header_search_form {
  position: relative;
  width: 100%;
  max-width: 300px;
}
.header_navi_search .keyword_, .header_search_form .keyword_, .dmy_form_btn {
  width: 100%;
  height: 40px;
  font-size: 14px;
  padding-left: 12px;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
}
.header_navi_search .keyword_::placeholder, .header_search_form .keyword_::placeholder, .dmy_form_btn {
  color: #C9C9C9;
}
.header_navi_search button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: inline-block;
  margin: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  color: #121212;
  border: none;
  background: url(/img/header/header_icon_search2.png) no-repeat top left;
  background-size: 19px auto;
  width: 19px;
  height: 19px;
  padding: 10px 0 11px;
  box-sizing: inherit;
}
.dmy_form_btn {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  background: #fff url(/img/header/header_icon_search2.png) no-repeat center right 10px;
  background-size: 19px auto;
}
/* h1 */
.header_navi_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 92px;
  margin: 0;
  padding: 0;
  line-height: 1;
}
/* リンク */
.header_navi_link {
  display: flex;
  font-size: 8px;
  margin: 3px 13px 0 0;
}
#header .header_navi_link a {
  display: block;
}
.header_navi_link a:hover {
  text-decoration: none;
}
.header_navi_icon {
  color: #fff;
  text-align: center;
  margin-left: 23px;
}
[data-browse-mode="P"] #header .header_navi_icon a {
  color: #fff;
}
.header_navi_icon img {
  display: block;
  height: 21px;
  margin: 0 auto 5px;
}
.js-cart-count:not(:empty) {
  position: absolute;
  top: 12px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  font-family: "Lato", sans-serif;
  font-size: 8px;
  font-weight: 400;
  font-style: normal;
  background: #015AB4;
  border-radius: 50%;
}
/* ○○から探す */
.header_link_btn {
  display: flex;
  justify-content: center;
}
.header_link_btn li {
  margin-right: 10px;
}
.header_link_btn li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 162px;
  height: 34px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  background: #F2F2F2;
  border-radius: 20px;
}
.header_link_btn li a:hover {
  text-decoration: none;
}
/* */
.header_link_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px auto 0;
}
.header_link_icon li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  font-size: 14px;
  line-height: 1;
  margin: 0 25px;
}
.header_link_icon li a img {
  height: 20px;
  margin-right: 15px;
}
/* カートリセット */
#header.flow-pane-header {
  background: #222;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  /* レイアウト */
  #header .header_navi_area {
    height: calc(44 * (100vw / 375));
  }
  .header_navi_area .header_inner {
    padding: calc(11 * (100vw / 375)) 0 calc(12 * (100vw / 375));
  }
  .header_link_area .header_inner {
    padding: calc(10 * (100vw / 375)) 0 calc(7 * (100vw / 375));
  }
  /* ヘッダーニュース */
  .header_news {
    font-size: 16px;
  }
.header_news_inner p {
  font-size: 12px;
}
  .header_news_close {
    top: -2px;
  }
  /* リンク */
  .header_navi_link {
    font-size: calc(8 * (100vw / 375));
    margin: 0 calc(15 * (100vw / 375)) 0 0;
  }
  .header_navi_icon {
    margin-left: calc(17 * (100vw / 375));
  }
  .header_navi_icon span {
    display: block;
    color: #fff;
    text-align: center;
  }
  .header_navi_icon img {
    height: calc(20 * (100vw / 375));
    margin: auto;
  }
  .js-cart-count:not(:empty) {
    top: -5px;
    right: -10px;
  }
  /* h1 */
  .header_navi_logo {
    max-width: calc(75 * (100vw / 375));
  }
  /* 検索窓 */
  .header_navi_search {
    /*display: none;*/
    padding-top: calc(8 * (100vw / 375));
  }
  .header_navi_search, .header_search_form {
    width: 100%;
    max-width: 100%;
    padding: calc(8 * (100vw / 375)) calc(10 * (100vw / 375)) 0;
    background: #fff;
  }
  .header_search_form {
    width: calc(95% - calc(48 * (100vw / 375)));
    margin: calc(50 * (100vw / 375)) calc(24 * (100vw / 375)) 0;
    padding: calc(8*(100vw / 375)) 0 0;
  }
  .header_navi_search .keyword_, .header_search_form .keyword_, .dmy_form_btn {
    height: calc(44 * (100vw / 375));
    font-size: calc(14 * (100vw / 375));
    padding-left: calc(10 * (100vw / 375));
  }
  .header_navi_search form, .header_search_form form {
    position: relative;
  }
  .header_search_form form input[type=text] {
    /*iOS対策*/
    font-size: 16px;
    /*transform: scale(0.8);*/
  }
  .header_navi_search button, .header_search_form button {
    position: absolute;
    top: calc(60% - calc(3 * (100vw / 375)));
    right: calc(10 * (100vw / 375));
    transform: translateY(-50%);
    display: inline-block;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    color: #121212;
    border: none;
    background: url(/img/header/header_icon_search2.png) no-repeat top left;
    background-size: calc(19 * (100vw / 375)) auto;
    width: calc(19 * (100vw / 375));
    height: calc(19 * (100vw / 375));
    padding: 10px 0 11px;
    box-sizing: inherit;
  }
  .header_search_form .block-search-box--placeholder {
    display: none !important;
  }
  .dmy_form_btn {
    background: url(/img/header/header_icon_search2.png) no-repeat center right calc(10 * (100vw / 375));
    background-size: calc(19 * (100vw / 375)) auto;
  }
  /*  .hna_fixed + .header_navi_search {
    position: fixed;
    top: calc(44*(100vw / 375));
    z-index: 9999;
    padding-bottom: calc(8 * (100vw / 375));
  }*/
  /* ○○から探す */
  .header_link_btn {
    /*min-width: 800px;*/
    padding: 0 0 10px;
    justify-content: flex-start;
  }
  .header_link_btn li {
    margin-right: calc(5 * (100vw / 375));
  }
  .header_link_btn li a {
    max-width: 100%;
    height: calc(32 * (100vw / 375));
    padding: 0 calc(15 * (100vw / 375));
    font-size: calc(12 * (100vw / 375));
    border-radius: calc(20 * (100vw / 375));
    white-space: nowrap;
  }
  /* */
  .header_link_icon {
    margin: calc(10 * (100vw / 375)) calc(12 * (100vw / 375)) 0;
  }
  .header_link_icon li {
    width: calc(100% / 6);
  }
  .header_link_icon li a {
    display: block;
    height: auto;
    font-size: calc(10 * (100vw / 375));
    text-align: center;
    letter-spacing: -1px;
    margin: 0;
  }
  .header_link_icon li a img {
    display: block;
    height: calc(27 * (100vw / 375));
    margin-right: auto;
    margin-left: auto;
    margin-bottom: calc(10 * (100vw / 375));
  }
  /* カートリセット */
  #header.buy-header2019-bk {
    background: #222;
    padding-top: 0;
  }
}
/* ----------------PCメニューstart---------------- */
@media screen and (min-width: 769px) {
  body.js-scroll-control {
    overflow: hidden;
  }
  /* モーダル背景 */
  .js_modal_bg {
    display: none;
  }
  body.js-scroll-control .js_modal_bg {
    display: block;
    position: absolute;
    top: -32px;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: calc(100vh + 32px);
    background: #000000B3;
    transition: all 0.6s;
  }
  /* ナビ背景 */
  #g-nav02 {
    position: fixed;
    z-index: 10000;
    top: -1000vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: all 2s;
	  font-size: 16px;
	  color: #444;
  }
  #g-nav02.js-active-panel {
    top: 0;
    transition: all 0.5s;
  }
  /* ナビリスト背景 */
  #g-nav02.js-active-panel #g-nav-list2 {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    margin: auto;
    padding-bottom: 28px;
  }
  .g-nav02-inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 126px 0 50px;
  }
  .square_btn {
    position: absolute;
    right: 0;
    top: 40px;
    display: block;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
  .square_btn::before, .square_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 24px;
    background: #121212;
  }
  .square_btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .square_btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  /* 検索 */
  .header_search_form {
    max-width: 100%;
  }
  .header_search_form .keyword_ {
    height: 60px;
    font-size: 16px;
    padding-left: 20px;
  }
  .header_search_form button {
    position: absolute;
    top: calc(60% - 6px);
    right: 20px;
    transform: translateY(-50%);
    display: inline-block;
    margin: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    white-space: nowrap;
    color: #121212;
    border: none;
    background: url(/img/header/header_icon_search2.png) no-repeat top left;
    background-size: 19px auto;
    width: 19px;
    height: 19px;
    padding: 10px 0 11px;
    box-sizing: inherit;
  }
  /* ナビリスト（#g-nav02） */
  #header .header_navi_area #g-nav02 ul.header_menu_main {
    margin: 0;
    background: #F7F7F7;
  }
  #header .header_navi_area #g-nav02 ul.header_menu_main li a {
    display: flex;
  }
  #header .header_navi_area #g-nav02 ul.header_menu_main img {
    height: 18px;
    margin: 0 15px 0 0;
  }
  /* 人気検索キーワード */
  .header_search_keyword {
    display: flex;
    align-items: center;
    margin: 30px auto 80px;
  }
  .header_search_keyword h2 {
    width: 170px;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: #121212;
    text-align: left;
    background-color: unset;
  }
  .header_search_keyword .scroll_box {
    width: calc(100% - 170px);
    margin-left: 0;
  }
  .header_search_btn {
    display: flex;
    min-width: 400px;
  }
  .header_search_btn li {
    margin-right: 10px;
  }
  .header_search_btn li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 34px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #121212;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    white-space: nowrap;
  }
  .header_search_btn li a:hover {
    text-decoration: none;
  }
  .header_menu_list {
    display: flex;
  }
  /* ○○から探す */
  .header_menu_sub {
    display: flex;
    margin-right: 40px;
  }
  .header_menu_sub li {
    width: 330px;
    flex-shrink: 0;
    margin-right: 40px;
  }
  .header_menu_sub li:last-of-type {
    margin-right: 0;
  }
  .header_menu_sub li h3 {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    padding-bottom: 13px;
    border-bottom: 1px solid #E5E5E5;
  }
  .header_menu_sub li p {
    margin-bottom: 8px;
  }
  /* ブランドから探す,チームから探す */
  .header_menu_item {
    /*display: flex;*/
    width: 460px;
  }
  .header_menu_item li {
    width: 460px;
    flex-shrink: 0;
    /*margin-right: 40px;*/
  }
  .header_menu_item li:last-of-type {
    margin-right: 0;
  }
  .header_menu_item li h3 {
    display: block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
    padding-bottom: 13px;
    border-bottom: 1px solid #E5E5E5;
  }
  .header_menu_item-img {
    display: flex;
    width: 460px;
    flex-shrink: 0;
    flex-wrap: wrap;
    margin: 22px 0 20px;
    text-align: center;
  }
  .header_menu_item-img p {
    width: 82px;
    height: 82px;
    margin: 0 12px 12px 0;
    border: 1px solid #e1e5e4;
  }
  .header_menu_item-img p:nth-child(5n) {
    margin: 0 0 12px;
  }
  .header_menu_item-img p a {
    display: block;
    height: 82px;
  }
  .header_menu_item-img p a span {
    display: block;
    margin-top: 5px;
  }
  .header_menu_item .header_menu_item-img img {
    display: block;
    height: 100%;
    margin: auto;
    padding: 3px;
  }
  /* 閲覧履歴,お気に入り */
  .header_menu_myitem {
    margin: 100px 0 0;
  }
  .header_menu_myitem:not(:first-of-type) {
    margin: 70px 0 0;
  }
  .header_menu_myitem:last-of-type {
    margin: 70px 0;
  }
  .header_menu_myitem h3 {
    margin: 0 0 20px;
    font-size: 24px;
  }
  .header_menu_goods-img {
    display: flex;
    margin-bottom: 15px;
  }
  .header_menu_goods-img li {
    width: 160px;
    margin-right: 30px;
    flex-shrink: 0;
  }
  .scroll_box_pc {
    overflow-x: auto;
    width: 100%;
  }
.header_menu_myitem .scroll_box_pc::-webkit-scrollbar {
    height: 6px;
    background-color: #fff; 
}

.header_menu_myitem .scroll_box_pc::-webkit-scrollbar-thumb {
    background: #7d7d7d;
    height: 5px;
    border-radius: 15px;
}
.header_menu_myitem .scroll_box_pc::-webkit-scrollbar-thumb:hover {
    background-color: rgba(150, 150, 150, 0.6);
}
  /* SP reset */
  #g-nav01, [id^="g-nav-sub"] {
    display: none;
  }
}
/* ----------------/PCメニューstart---------------- */
/* ----------------SPメニューstart---------------- */
@media screen and (max-width: 768px) {
  body.js-scroll-control {
    overflow: hidden;
  }
  .header_navi_icon {
    position: relative;
  }
  /* モーダル背景 */
  .js_modal_bg {
    display: none;
  }
  body.js-scroll-control .js_modal_bg {
    display: block;
    position: absolute;
    top: -32px;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: calc(100vh + 32px);
    background: #000000B3;
    transition: all 0.6s;
  }
  /* ナビ背景 */
  #g-nav01 {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: -100%;
    width: 90%;
    height: 100vh;
    background: #fff;
    transition: all 0.6s;
  }
  #g-nav01.js-active-panel {
    left: 0;
    height: 100vh;
    height: -webkit-fill-available;
  }
  #g-nav02 {
    position: fixed;
    z-index: 10000;
    top: -150vh;
    left: 0;
    width: 100%;
    height: 30vh;
    background: #fff;
    transition: all 0.6s;
    overflow: hidden;
  }
  #g-nav02.js-active-panel {
    top: 0;
    height: 100vh;
    height: -webkit-fill-available;
    overflow: unset;
  }
  #g-nav-list2 {
    background: #fff;
  }
  /* 第一階層 */
  nav[id*="g-nav-sub"] {
    display: none;
    position: fixed;
    z-index: 20000;
    top: 0;
    left: 0;
    width: 90%;
    height: 100vh;
    overflow: auto;
    padding: calc(40 * (100vw / 375)) 0;
    background: #fff;
    transition: all 0.6s;
  }
  .header_navi_link:has(.color_black_close) nav[id*="g-nav-sub"] {
    width: 100%;
  }
  nav[id*="g-nav-sub"].js-active-panel {
    display: block;
    right: 0;
  }
  nav[id*="g-nav-sub"].js-left-move {
    right: unset;
    left: -100%;
  }
  nav[id*="g-nav-sub"].js-active-panel.js-left-move {
    left: 0;
  }
  nav[id*="g-nav-sub"].js-active-panel.js-left-move.js-left-lastmove {
    right: unset;
    left: -100%;
  }
  nav[id*="g-nav-sub"].hierarchy1_area.js-right-move {
    left: 0;
  }
  /* 第二階層 */
  nav[id*="g-nav-sub"].hierarchy2_area {
    z-index: 30000;
  }
  nav[id*="g-nav-sub"].hierarchy2_area.js-right-move {
    right: 0
  }
  /* ナビリスト背景 */
  #g-nav01.js-active-panel #g-nav-list, #g-nav02.js-active-panel #g-nav-list2 {
    position: fixed;
    z-index: 10000;
    width: 90%;
    height: 100vh;
    height: -webkit-fill-available;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav02.js-active-panel #g-nav-list2 {
    padding-bottom: calc(28 * (100vw / 375));
  }
  #g-nav02.js-active-panel #g-nav-list2 {
    width: 100%;
  }
  /* ナビリスト（[id^="g-nav0"]） */
  .header_navi_area nav[id*="g-nav-sub"] h2 {
    padding: calc(25 * (100vw / 375)) calc(24 * (100vw / 375)) 0;
    font-size: calc(18 * (100vw / 375));
    font-weight: 500;
    color: #121212;
    text-align: left;
    background-color: transparent;
  }
  .header_navi_area #g-nav01 ul, .header_navi_area nav[id*="g-nav-sub"] .header_menu_sub, .header_navi_area #g-nav02 ul:not(.header_search_btn) {
    padding: calc(24 * (100vw / 375));
    font-size: calc(13 * (100vw / 375));
  }
  #header .header_navi_area #g-nav01 ul.header_menu_main, #header .header_navi_area #g-nav02 ul.header_menu_main {
    margin: 0;
    background: #F7F7F7;
  }
  #header .header_navi_area #g-nav01 ul.header_menu_main li a, #header .header_navi_area #g-nav02 ul.header_menu_main li a {
    display: flex;
  }
  #header .header_navi_area #g-nav01 ul.header_menu_main img, #header .header_navi_area #g-nav02 ul.header_menu_main img {
    height: calc(18 * (100vw / 375));
    margin: 0 calc(15 * (100vw / 375)) 0 0;
  }
  #g-nav01 ul:not(.header_menu_guide):not(.header_menu_other):not(.header_menu_benefits):not(.header_myitem_list) li, .header_navi_area nav[id*="g-nav-sub"] .header_menu_sub li, #g-nav02 ul:not(.header_search_btn) li {
    text-align: left;
    line-height: 1.7;
    border-bottom: 1px solid #E5E5E5;
  }
  #header .header_navi_link #g-nav01 ul li a, #header .header_navi_link #g-nav01 ul:not(.header_menu_benefits):not(.header_myitem_list) li span, #header .header_navi_area nav[id*="g-nav-sub"] .header_menu_sub li a, #header .header_navi_area nav[id*="g-nav-sub"] .header_menu_sub li span, #header #g-nav02 ul:not(.header_search_btn):not(.header_menu_item) li a, #header #g-nav02 ul:not(.header_search_btn) li span {
    position: relative;
    display: block;
    color: #121212;
    text-align: left;
    padding: calc(17 * (100vw / 375)) calc(30 * (100vw / 375)) calc(13 * (100vw / 375)) 0;
  }
  #header .header_navi_link #g-nav01 ul:not(.header_menu_guide):not(.header_menu_other):not(.header_menu_benefits):not(.header_myitem_list) li a::after, #header .header_navi_link #g-nav01 ul:not(.header_menu_guide):not(.header_menu_other):not(.header_menu_benefits):not(.header_myitem_list) li span::after, #header .header_navi_area nav[id*="g-nav-sub"] .header_menu_sub li a::after, #header .header_navi_area nav[id*="g-nav-sub"] .header_menu_sub li span::after, #header #g-nav02 ul:not(.header_search_btn):not(.header_menu_item) li a::after, #header #g-nav02 ul:not(.header_search_btn):not(.header_menu_item) li span::after {
    content: "";
    position: absolute;
    right: calc(10 * (100vw / 375));
    top: 0;
    bottom: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #121212;
    border-right: 2px solid #121212;
    transform: rotate(-45deg);
  }
  #header .header_navi_link #g-nav01 ul:not(.header_menu_guide):not(.header_menu_other):not(.header_menu_benefits):not(.header_myitem_list) li a.header_arrow_none::after, #header .header_navi_area nav[id*="g-nav-sub"] .header_menu_sub li.header_arrow_none a::after, #header #g-nav02 ul:not(.header_search_btn) li a.header_arrow_none::after {
    position: static;
    right: 0;
    width: 0;
    height: 0;
    border: none;
  }
  /* ユーザー情報（ログイン後） */
  .header_menu_login {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: calc(24*(100vw / 375)) calc(24*(100vw / 375)) 0;
    background: #F7F7F7;
  }
  #header .header_navi_area #g-nav01 .header_menu_login + ul.header_menu_main {
    margin: 0;
    padding-top: 0;
  }
  .header_navi_icon .header_menu_login {
    font-size: calc(14 * (100vw / 375));
    color: #121212;
    text-align: left;
  }
  .header_navi_icon .ajax_login_point p span {
    display: inline-block;
    color: #121212;
    text-align: left;
  }
  .header_navi_icon .ajax_login_point p span.login_point_icon span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(13 * (100vw / 375));
    color: #fff;
    width: calc(20 * (100vw / 375));
    height: calc(20 * (100vw / 375));
    margin-right: 5px;
    background: #001E55;
    border-radius: 50%;
  }
  .header_navi_icon .ajax_login_point p span.login_point_number {
    font-size: calc(16 * (100vw / 375));
    font-weight: 600;
  }
  .header_menu_myitem {
    padding: 0 0 calc(23*(100vw / 375));
    background: #F7F7F7;
  }
  .header_menu_myitem h2 {
    padding: calc(13*(100vw / 375)) calc(24*(100vw / 375)) calc(6*(100vw / 375)) calc(24*(100vw / 375));
    font-size: calc(14 * (100vw / 375));
    font-weight: 500;
    color: #121212;
    text-align: left;
    background-color: unset;
  }
  .header_menu_myitem .scroll_box {
    width: calc(100% - calc(24*(100vw / 375)));
    margin-left: calc(24*(100vw / 375));
  }
  .header_menu_myitem > .scroll_box:last-of-type {
    margin-left: calc(24*(100vw / 375));
    margin-bottom: calc(21*(100vw / 375));
  }
  .header_navi_area #g-nav01 ul.header_myitem_list {
    display: flex;
    min-width: 400px;
    padding: 0 0 10px;
  }
  #header .header_navi_link #g-nav01 ul.header_myitem_list li {
    width: calc(80*(100vw / 375));
    height: calc(80*(100vw / 375));
    flex-shrink: 0;
    margin-right: 5px;
  }
  #header .header_navi_link #g-nav01 ul.header_myitem_list li a {
    padding: 0;
  }
  .header_navi_icon .header_myitem_list img {
    width: calc(80*(100vw / 375));
    height: calc(80*(100vw / 375));
    margin: 0;
  }
  .header_navi_icon .header_menu_myitem .bookmark-none {
    margin-bottom: 15px;
  }
  .header_navi_icon .header_menu_myitem p {
    font-size: calc(10 * (100vw / 375));
    color: #121212;
    padding: 15px 0;
  }
  /* 会員特典/お買い物ガイド（ナビリスト） */
  .header_menu_box {
    padding-bottom: calc(50 * (100vw / 375));
    background: #F7F7F7;
  }
  .header_menu_heading {
    font-size: calc(14 * (100vw / 375));
    color: #121212;
    text-align: left;
    margin-bottom: calc(-15 * (100vw / 375));
    padding: calc(24 * (100vw / 375)) 0 0 calc(24 * (100vw / 375));
  }
  .header_navi_area #g-nav01 ul.header_menu_main:has(+ .header_menu_box) {
    padding-bottom: calc(12*(100vw / 375));
  }
  .header_menu_heading:has(+ .header_menu_benefits) {
    padding: calc(10 * (100vw / 375)) 0 0 calc(24 * (100vw / 375));
  }
  /* 会員特典（ログイン前） */
  #header .header_navi_link #g-nav01 ul.header_menu_benefits {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: calc(12 * (100vw / 375));
    padding-bottom: calc(15*(100vw / 375));
  }
  #header .header_navi_link #g-nav01 ul.header_menu_benefits li {
    width: calc((100% - 7px) / 2);
    margin-bottom: calc(7 * (100vw / 375));
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
  }
  #header .header_navi_link #g-nav01 ul.header_menu_benefits li a {
    font-size: calc(13 * (100vw / 375));
    text-align: center;
    line-height: 1.3;
    padding: calc(14 * (100vw / 375)) 0 calc(10 * (100vw / 375));
  }
  #header .header_navi_link #g-nav01 ul.header_menu_benefits li .header_menu_benefits_p {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(50 * (100vw / 375));
    letter-spacing: -0.5px;
  }
  #header .header_navi_link #g-nav01 ul.header_menu_benefits li:nth-child(1) .header_menu_benefits_p,#header .header_navi_link #g-nav01 ul.header_menu_benefits li:nth-child(3) .header_menu_benefits_p {
    line-height: 1.5;
  }
  #header .header_navi_link #g-nav01 ul.header_menu_benefits li:nth-child(2) .header_menu_benefits_p {
    line-height: 1;
    margin-top: -8px;
  }
  #header .header_navi_link #g-nav01 ul.header_menu_benefits li img {
    display: block;
    height: calc(48 * (100vw / 375));
    margin: 0 auto calc(10 * (100vw / 375));
  }
  .header_navi_icon .header_menu_benefits span {
    display: unset;
    color: unset;
  }
  .header_icon_txt10 {
    font-size: calc(10 * (100vw / 375));
  }
  .header_icon_txt12 {
    font-size: calc(12 * (100vw / 375));
  }
  .header_navi_icon span.header_icon_txt13blue {
    font-size: calc(12 * (100vw / 375));
    font-weight: 600;
    color: #015AB4;
  }
  .header_navi_icon span.header_icon_txt16blue {
    font-size: calc(16 * (100vw / 375));
    font-weight: 600;
    color: #015AB4;
  }
  .header_navi_icon span.header_icon_txt18blue {
    font-size: calc(18 * (100vw / 375));
    font-weight: 600;
    color: #015AB4;
  }
  .header_navi_icon span.header_icon_txt30blue {
    font-size: calc(30 * (100vw / 375));
    font-weight: 600;
    color: #015AB4;
  }
  /* お買い物ガイド */
  #header .header_navi_link #g-nav01 .header_menu_guidebnr {
    margin: calc(5*(100vw / 375)) 0 calc(-30*(100vw / 375));
    padding: calc(24*(100vw / 375));
  }
  #header .header_navi_link #g-nav01 .header_menu_guidebnr img {
    height: auto;
  }
  #header .header_navi_link #g-nav01 ul.header_menu_guide {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: calc(12 * (100vw / 375));
    padding-bottom: calc(10*(100vw / 375));
  }
  #header .header_navi_link #g-nav01 ul.header_menu_guide li {
    width: calc((100% - 18px) / 3);
    margin-bottom: calc(10 * (100vw / 375));
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
  }
  #header .header_navi_link #g-nav01 ul.header_menu_guide li a {
    text-align: center;
    line-height: 1.1;
    padding: calc(20 * (100vw / 375)) 0 calc(10 * (100vw / 375));
  }
  #header .header_navi_link #g-nav01 ul.header_menu_guide li img {
    display: block;
    height: calc(45 * (100vw / 375));
    margin: 0 auto calc(10 * (100vw / 375));
  }
  /* その他リンク（ナビリスト） */
  #header .header_navi_link #g-nav01 ul.header_menu_other {
    font-size: calc(12 * (100vw / 375));
    text-align: left;
    padding: calc(40*(100vw / 375)) calc(24*(100vw / 375)) 0;
  }
  #header .header_navi_link #g-nav01 ul.header_menu_other li {
    margin-bottom: calc(14*(100vw / 375));
  }
  #header .header_navi_link #g-nav01 ul.header_menu_other li a {
    padding: 0;
  }
  /* ナビリスト2（#g-nav2） */
  .header_search_keyword h2 {
    padding: calc(13 * (100vw / 375)) calc(24 * (100vw / 375)) calc(10 * (100vw / 375)) calc(24 * (100vw / 375));
    font-size: calc(14 * (100vw / 375));
    font-weight: 500;
    color: #121212;
    text-align: left;
    background-color: unset;
  }
  .header_search_keyword .scroll_box {
    width: calc(100% - calc(24*(100vw / 375)));
    margin-left: calc(24*(100vw / 375));
  }
  .header_search_keyword + .header_menu_sub {
    margin-top: -10px;
  }
  .header_search_btn {
    display: flex;
    min-width: 400px;
    padding: 0 0 10px;
  }
  .header_search_btn li {
    margin-right: calc(5*(100vw / 375));
  }
  #header .header_navi_icon .header_search_btn li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 162px;
    height: calc(32*(100vw / 375));
    padding: 0 calc(15*(100vw / 375));
    font-size: calc(12*(100vw / 375));
    font-weight: 500;
    line-height: 1;
    color: #121212;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: calc(20*(100vw / 375));
  }
  .header_search_btn li a:hover {
    text-decoration: none;
  }
  .header_search_btn li a {
    max-width: 100%;
    height: calc(32 * (100vw / 375));
    padding: 0 calc(15 * (100vw / 375));
    font-size: calc(12 * (100vw / 375));
    border-radius: calc(20 * (100vw / 375));
    white-space: nowrap;
  }
  /* ブランドから探す,チームから探す */
  .header_navi_area #g-nav02 ul.header_menu_item {
    padding: 0 calc(24 * (100vw / 375)) calc(50 * (100vw / 375));
  }
  #g-nav02 ul.header_menu_item li {
    border-bottom: none;
  }
  #header #g-nav02 ul.header_menu_item li span {
    padding: calc(5*(100vw / 375)) calc(30*(100vw / 375)) calc(9*(100vw / 375)) 0;
  }
  .header_menu_item-img {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
  }
  .header_menu_item-img p {
    width: calc((100% - calc(32*(100vw / 375))) / 5);
    height: calc(59*(100vw / 375));
    margin: 0 calc(8*(100vw / 375)) calc(8*(100vw / 375)) 0;
    border: 1px solid #e1e5e4;
  }
  .header_menu_item-img p:nth-child(5n) {
    margin: 0 0 calc(8*(100vw / 375));
  }
  .header_menu_item-img p a {
    height: calc(59*(100vw / 375));
  }
  #header #g-nav02 ul.header_menu_item .header_menu_item-img p a span {
    display: block;
    margin-top: calc(5*(100vw / 375));
	padding: 0;
	font-size: calc(12*(100vw / 375));
	letter-spacing: -1.5px;
    text-align: center;
  }
  .header_navi_icon .header_menu_item img {
    height: 100%;
    margin: auto;
    padding: 3px;
  }
  /* ボタン */
  .header_navi_icon:has(> .openbtn) {
    width: calc(20 * (100vw / 375));
    max-width: 27px;
    height: 21px;
  }
  .openbtn, .closebtn {
    position: absolute;
    top: 5px;
    left: 0;
    cursor: pointer;
    width: calc(20 * (100vw / 375));
    max-width: 27px;
    height: calc(23 * (100vw / 375));
    max-height: 21px;
    color: #fff;
  }
  .openbtn2 {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: calc(20 * (100vw / 375));
    height: calc(43 * (100vw / 375));
  }
  .openbtn_sub {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    /*width: calc(20 * (100vw / 375));*/
    height: calc(43 * (100vw / 375));
    font-size: calc(13 * (100vw / 375));
    color: #fff;
    background: #fff;
  }
  .openbtn.js-active-menu, .openbtn2.js-active-menu, .closebtn.js-active-menu {
    z-index: 30001;
    position: fixed;
    top: calc(calc(9 * (100vw / 375)) + 5px);
    right: calc(7 * (100vw / 375));
    left: unset;
  }
  .openbtn_sub.js-active-menu {
    z-index: 10001;
    position: fixed;
    top: 0;
    left: 0;
    width: 90%;
    height: calc(40*(100vw / 375));
    padding: calc(14 * (100vw / 375)) 0 0 calc(32 * (100vw / 375));
    text-align: left;
    color: #121212;
  }
  .openbtn_sub.js-active-menu::after {
    content: "";
    position: absolute;
    left: calc(15 * (100vw / 375));
    top: 0;
    bottom: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #121212;
    border-right: 2px solid #121212;
    transform: rotate(135deg);
  }
  /* ボタン 閉じる */
  .openbtn span, .closebtn.js-active-menu span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 100%;
  }
  .closebtn.js-active-menu span:nth-of-type(1), .openbtn span:nth-of-type(1), .openbtn2 span:nth-of-type(1), .openbtn_sub span:nth-of-type(1) {
    top: 0;
  }
  .closebtn.js-active-menu span:nth-of-type(2), .openbtn span:nth-of-type(2), .openbtn2 span:nth-of-type(2), .openbtn_sub span:nth-of-type(2) {
    top: 6px;
  }
  .closebtn.js-active-menu span:nth-of-type(3), .openbtn span:nth-of-type(3), .openbtn2 span:nth-of-type(3), .openbtn_sub span:nth-of-type(3) {
    top: 12px;
  }
  .openbtn.js-active-menu span, .closebtn.js-active-menu span {
    background-color: #fff;
  }
  .color_black_close .closebtn.js-active-menu span {
    background-color: #121212;
  }
  .openbtn2.js-active-menu span, .openbtn_sub.js-active-menu span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background-color: #121212;
    width: 100%;
  }
  .closebtn.js-active-menu span:nth-of-type(1), .openbtn.js-active-menu span:nth-of-type(1), .openbtn2.js-active-menu span:nth-of-type(1), .openbtn_sub.js-active-menu span:nth-of-type(1) {
    top: 0;
    left: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 80%;
  }
  .closebtn.js-active-menu span:nth-of-type(2), .openbtn.js-active-menu span:nth-of-type(2), .openbtn2.js-active-menu span:nth-of-type(2), .openbtn_sub.js-active-menu span:nth-of-type(2) {
    opacity: 0;
  }
  .closebtn.js-active-menu span:nth-of-type(3), .openbtn.js-active-menu span:nth-of-type(3), .openbtn2.js-active-menu span:nth-of-type(3), .openbtn_sub.js-active-menu span:nth-of-type(3) {
    top: 12px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 80%;
  }
  .openbtn_txt {
    position: absolute;
    top: 22px;
    left: -3px;
    width: 28px;
    letter-spacing: -1px;
  }
  .js-active-menu .openbtn_txt {
    display: none;
  }
  .header_navi_icon:has(> .openbtn) {
    height: calc(20 * (100vw / 375));
  }
  .openbtn_txt {
    top: calc(calc(28 * (100vw / 375)) - 5px);
    left: -7px;
    width: calc(30 * (100vw / 375));
  }
  /* リンク（ナビリスト_サブ） */
  #header .header_navi_link nav[id*="g-nav-sub"] span, #header .header_navi_link nav[id*="g-nav-sub"] a {
    color: #121212;
    text-align: left;
  }
  /* */
  #header .header_navi_link p.top_all_btn a {
    display: flex;
    color: #121212;
  }
  #g-nav01 ul.header_menu_other a img, #g-nav02 ul.header_menu_other a img {
    display: none;
  }
  #g-nav01 ul.header_menu_other a[target="_blank"] img, #g-nav02 ul.header_menu_other a[target="_blank"] img {
    display: inline-block;
    width: calc(14*(100vw / 375));
    height: auto;
    margin: 0 0 0 5px;
    vertical-align: baseline;
  }
  #header .header_navi_link p.top_all_btn a:hover {
    color: #fff;
  }
}
/* ----------------SPメニューend---------------- */
/* ------------------------------------------------
トップページフッター/共通フッター
------------------------------------------------ */
.pane-footer {
  color: #121212;
  border-top: 1px solid #E5E5E5;
  /* margin: 30px 0 0 0; */
  padding: 0 !important;
}
.footer_inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.block-switcher {
  display: none;
}
/* SNS */
.footer_sns_area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px;
}
.footer_sns_area li {
  margin: 0 10px;
}
.footer_sns_area li img {
  width: 48px;
}
/* リンク */
.footer_link_area {
  display: flex;
  justify-content: space-between;
  margin: 60px auto 40px;
}
.footer_link_area ul {
  width: calc((100% - 120px) /4);
}
.footer_link_area ul li {
  margin: 0 0 8px;
  font-size: 14px;
}
.pane-footer .footer_link_area ul li a {
  color: #121212;
  text-decoration: none;
}
.pane-footer .footer_link_area ul li a:hover {
  text-decoration: underline;
}
h3.top_h3_ttl {
  margin: 0 0 15px;
  padding: 0 0 15px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #E5E5E5;
}
.footer_link_area ul li.footer_link_app {
  margin: 30px 0 0;
}
.footer_link_area ul li.footer_link_app + li.footer_link_app {
  display: flex;
  justify-content: space-between;
  margin: 0;
}
.footer_link_area ul li.footer_link_app p {
  font-size: 13px;
  line-height: 1.7;
}
.footer_link_area ul li.footer_link_app img {
  width: 65px;
  flex-shrink: 0;
  margin: 0 0 0 50px;
}
.footer_link_area ul li.footer_link_bnr {
  margin-top: 30px;
}
p.footer_link_app {
  text-align: center;
  line-height: 1.7;
  margin: 40px auto;
}
.pane-footer p.footer_link_app a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  color: #121212;
  text-decoration: none;
  width: 400px;
  height: 64px;
  margin: auto;
  border-radius: 100px;
  border: 1px solid #121212;
}
p.footer_link_app a span.footer_link_app_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
p.footer_link_app a .footer_link_app_ajust-txt {
  display: block;
  font-size: 11px;
}
p.footer_link_app a img {
  width: 40px;
  margin: 0 20px 0 0;
}
/* PC/SP切り替え */
.footer_switcher {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}
.footer_switcher li {
  margin: 0 6px;
}
.footer_switcher li span, .pane-footer .footer_switcher li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 135px;
  height: 28px;
  font-size: 12px;
  text-decoration: none;
  background: #E5E5E5;
  border-radius: 25px;
}
.footer_switcher li span.footer_switcher_current {
  /*color: #fff;
  background: #121212;*/
}
/* 規約 */
.footer_tc_area {
  display: flex;
  justify-content: center;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.15em;
  margin: 0 auto 40px;
}
.footer_tc_area li {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #121212;
}
.footer_tc_area li:last-of-type {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.pane-footer .footer_tc_area a {
  color: #121212;
  text-decoration: none;
}
.pane-footer .footer_tc_area a:hover {
  text-decoration: underline;
}
/* コピーライト */
p.footer_copy {
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.15em;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .pane-footer {
    padding: calc(25 * (100vw / 375)) 0 0;
  }
  .footer_inner {
    width: calc(100% - calc(48 * (100vw / 375)));
    margin: 0 calc(24 * (100vw / 375));
  }
  /* SNS */
  .footer_sns_area {
    margin: 0 auto calc(24 * (100vw / 375));
  }
  .footer_sns_area li {
    margin: 0 calc(4 * (100vw / 375));
  }
  .footer_sns_area li img {
    width: calc(48 * (100vw / 375));
  }
  /* リンク */
  .footer_link_area {
    display: block;
    margin: calc(40 * (100vw / 375)) auto calc(10 * (100vw / 375));
  }
  .footer_link_area ul {
    width: 100%;
  }
  .footer_link_area ul li {
    margin: 0;
    font-size: calc(13 * (100vw / 375));
  }
  h3.top_h3_ttl {
    position: relative;
    margin: -1px 0 0;
    padding: calc(17 * (100vw / 375)) 0;
    font-size: calc(13 * (100vw / 375));
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
  }
  h3.top_h3_ttl::before, h3.top_h3_ttl::after {
    content: '';
    display: inline-block;
    width: calc(8 * (100vw / 375));
    height: 2px;
    background-color: #121212;
    position: absolute;
    right: calc(10 * (100vw / 375));
    top: 47%;
    transform: translateY(-50%);
    transition: opacity 1s;
  }
  h3.top_h3_ttl::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.5s;
  }
  h3.top_h3_ttl.js-minus-icon::before {
    opacity: 0;
  }
  h3.top_h3_ttl.js-minus-icon::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .footer_link_area ul li:not(:has(> h3.top_h3_ttl)) {
    display: none;
    padding: calc(10 * (100vw / 375)) 0;
    text-indent: 1em;
  }
  .footer_link_area ul li:not(:has(> h3.top_h3_ttl)).js-display-link {
    display: block;
  }
  .footer_link_area ul li:has(> h3.top_h3_ttl) + li {
    margin: calc(10 * (100vw / 375)) 0 0;
  }
  .footer_link_area ul li:last-of-type {
    margin: 0 0 calc(10 * (100vw / 375));
  }
  p.footer_link_app {
    text-align: center;
    line-height: 1.3;
    margin: calc(40 * (100vw / 375)) 0 0;
  }
  .pane-footer p.footer_link_app a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(13 * (100vw / 375));
    color: #121212;
    width: 100%;
    height: calc(64 * (100vw / 375));
    margin: calc(15 * (100vw / 375)) 0 0;
    border-radius: calc(100 * (100vw / 375));
    border: 1px solid #121212;
  }
  /*p.footer_link_app a::after {
    content: "";
    position: absolute;
    right: calc(20*(100vw / 375));
    top: 0;
    bottom: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid #121212;
    border-right: 2px solid #121212;
    transform: rotate(-45deg);
}*/
  p.footer_link_app a span.footer_link_app_inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  p.footer_link_app a .footer_link_app_ajust-txt {
    display: block;
    font-size: calc(11 * (100vw / 375));
  }
  p.footer_link_app a img {
    width: calc(40 * (100vw / 375));
    margin: 0 calc(15 * (100vw / 375)) 0 0;
  }
  /* PC/SP切り替え */
  .footer_switcher {
    margin: 0 auto calc(24 * (100vw / 375));
  }
  .footer_switcher li {
    margin: 0 calc(6 * (100vw / 375));
  }
  .footer_switcher li span, .pane-footer .footer_switcher li a {
    width: calc(158 * (100vw / 375));
    height: calc(30 * (100vw / 375));
    font-size: calc(12 * (100vw / 375));
    border-radius: calc(25 * (100vw / 375));
  }
  /* 規約 */
  .footer_tc_area {
    font-size: 9px;
    margin: 40px auto 30px;
  }
  .footer_tc_area li {
    margin-right: calc(10 * (100vw / 375));
    padding-right: calc(10 * (100vw / 375));
    margin-bottom: 10px;
  }
  /* コピーライト */
  p.footer_copy {
    font-size: calc(10 * (100vw / 375));
    margin: calc(24 * (100vw / 375)) auto;
  }
}
/* ------------------------------------------------
コンテンツ共通
------------------------------------------------ */
.top_all_btn {
  display: table;
  margin: auto;
}
.top_all_btn a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 164px;
  height: 44px;
  padding: 0 24px;
  font-weight: 600;
  color: #121212;
  border: 1px solid #121212;
  background: #fff;
  border-radius: 100px;
}
.top_all_btn a::after {
  background: #121212;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.top_all_btn a:hover {
  opacity: 1;
  color: #fff !important;
  text-decoration: none;
}
.top_all_btn a:hover::after {
  transform: scale(1, 1);
}
.top_all_btn a::after {
  transform: skewY(-10deg) scale(1, 0);
  width: 110%;
  height: 100px;
}
.top_all_btn a:hover::after {
  transform: skewY(-10deg) scale(1, 1);
}
.scroll_box {
  overflow-x: auto;
  width: calc(100% - calc(10 * (100vw / 375)));
  margin-left: calc(10 * (100vw / 375));
}
@media screen and (max-width: 768px) {
  .top_all_btn a {
    min-width: calc(180 * (100vw / 375));
    height: calc(35 * (100vw / 375));
    padding: 0 calc(20 * (100vw / 375));
    font-size: calc(13 * (100vw / 375));
    border-radius: calc(100 * (100vw / 375));
  }
}
/* ------------------------------------------------
スマホモード対策
------------------------------------------------ */
@media screen and (min-width: 769px) {
  /* ヘッダー */
  [data-browse-mode="S"] .header_navi_icon [src^="/img/header/header_icon_search"] {
    opacity: 0;
  }
  /* ヘッダー下検索ボタン */
  [data-browse-mode="S"] .header_navi_search {
    display: none;
  }
  /* 新着特集 */
  [data-browse-mode="S"] .top_news-sf_tab {
    width: calc(100% - calc(120*(100vw / 375)));
    margin: calc(-3.5*(100vw / 375)) 0 0;
    height: calc(52*(100vw / 375));
  }
  [data-browse-mode="S"] .top_news-sf_tab li {
    width: auto;
    height: auto;
    font-size: calc(12*(100vw / 375));
    margin-right: 0;
    padding: 0;
    border-radius: 0;
    white-space: nowrap;
    border: none;
  }
  [data-browse-mode="S"] .top_news-sf_tab li.js-active-btn, [data-browse-mode="S"] .top_news-sf_tab li:hover {
    background: unset;
  }
  [data-browse-mode="S"] .top_news-sf_tab li.js-active-btn img.off_cate_btn {
    display: none;
  }
  [data-browse-mode="S"] .top_news-sf_tab li.js-active-btn img.on_cate_btn {
    display: block;
  }
  [data-browse-mode="S"] .top_news-sf_tab li img.on_cate_btn {
    display: none;
  }
  [data-browse-mode="S"] .top_slider_news-sf_ajax .slick-dots {
    display: block !important;
  }
  /* フッター */
  [data-browse-mode="S"] .footer_link_area {
    display: block;
  }
  [data-browse-mode="S"] .footer_link_area ul {
    width: 100%;
    margin-top: 40px;
  }
}
