@charset "UTF-8";
/*リスト
 1:全体
 2:ヘッダ
 3:メイン
 4:フッタ
 5:その他共通パーツ
*/
/*----------------------------------------
 1:全体
----------------------------------------*/

/*フォント*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;700&display=swap");

/*----------
カラー設定
----------*/
:root {
  --main-bg-color: #f1f1f1;
  --menu-bg-color: #f9f9f9;
  --feature-bg-color: #eeeeee; /*薄いグレー*/
  --information-bg-color: #f3f3f3; /*薄いグレー*/
  --ranking-bg-color: #f1f1f1; /*けっこう薄いグレー*/
  --footerjs-bg-color: #8b8888;
  --dark-bg-color: #333333; /*黒：ボタンやメニューフッター*/
  --main-text-color: #333333; /*黒*/

  --menu-sp-bg-color: #e6e6e6;
}
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  color: var(--main-text-color);
  font-size: 0.85rem;
  line-height: 1.2em;
  letter-spacing: 0.08em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "メイリオ", "ヒラギノ角ゴ Pro W3", sans-serif;
  -webkit-text-size-adjust: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 300;
  position: relative;
}
body.is--opened {
  height: 100vh;
  overflow-y: hidden;
  padding-right: 15px;
}
body.is--opened header {
  left: -15px;
  width: calc(100% + 15px);
}
@media (max-width: 768px) {
  body {
    font-size: 3vw;
    width: 100%;
    padding-right: 0;
  }
  body.is--opened header {
    left: 0;
    width: 100%;
  }
}
/*リンク*/

a {
  color: var(--main-text-color);
}
a:visited {
  color: var(--main-text-color);
}
a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
a:active {
  color: var(--main-text-color);
}

/*画像*/

img {
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  vertical-align: top;
}

@media (max-width: 768px) {
  img {
    max-width: 100%;
    width: 100%;
  }
}

/*common layout*/

.container {
  *zoom: 1;
  margin: 0 auto;
  width: 980px;
  min-width: 980px;
}
@media (max-width: 980px) {
  /*@media (max-width: 768px) {*/
  .container {
    width: 100%;
    min-width: 100%;
  }
}
.top__section {
  *zoom: 1;
  margin: 0 auto;
  width: 980px;
  min-width: 980px;
  padding-bottom: 140px;
}
.top__section:before,
.top__section:after {
  content: " ";
  display: table;
}
.top__section:after {
  clear: both;
}

@media (max-width: 980px) {
  .top__section {
    width: 100%;
    min-width: 100%;
    padding-bottom: 20vw;
  }
}
@-ms-viewport {
  width: device-width;
}
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
li,
dl,
dt,
dd {
  margin: 0;
}
ul,
ol {
  padding: 0;
}
a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

/**SP PC表示・非表示*/
.is--sp {
  display: none;
}
@media (max-width: 768px) {
  .is--sp {
    display: block;
  }
  .is--pc {
    display: none !important;
  }
}
/*----------------------------------------
 2:ヘッダ
----------------------------------------*/
/* overlay */
.overlay {
  position: fixed;
  opacity: 0;
  background: #ffffffcc;
  width: 100vw;
  height: 0;
  top: 0;
  left: 0;
  transition: 0.3;
}
.overlay.is--opened {
  opacity: 1;
  transition: 0.3;
  z-index: 2;
  height: 100vh;
}
header {
  position: fixed;
  min-width: 980px;
  display: block;
  top: 0;
  z-index: 100;
  background: #fff;
  width: 100%;
}
header .container {
  position: relative;
}
@media (max-width: 980px) {
  header {
    width: 100%;
    min-width: 100%;
  }
}
/*ハンバーガーメニューボタン*/

.header__toparea {
  padding: 60px 0 48px;
  background: #fff;
  z-index: 10;
  transition: 0.3s;
}
/*縮小時*/

header.is--fixed .header__toptitle {
  padding-top: 10px;
  transition: 0.3s;
}
header.is--fixed .header__toparea {
  padding: 20px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .header__toparea {
    padding: 30px 20px 16px;
    width: 100%;
    min-width: auto;
  }
  /*縮小時*/
  header.is--fixed .header__toparea {
    padding: 10px 18px 10px;
    width: 100%;
  }
}

.header__menubtn,
.header__menubtn span {
  display: inline-block;
  transition: all 0.4s;
}
.header__menubtn {
  position: absolute;
  top: 14px;
  left: 50px;
  width: 45px;
  height: 36px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  z-index: 1;
}
.header__menubtn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--main-text-color);
  border-radius: 4px;
}
.header__menubtn span:nth-of-type(1) {
  top: 0;
}
.header__menubtn span:nth-of-type(2) {
  top: 16px;
}
.header__menubtn span:nth-of-type(3) {
  bottom: 0;
}
@media (max-width: 768px) {
  .header__menubtn {
    width: 22px;
    height: 17px;
    left: 4px;
    top: 8px;
    text-align: center;
  }
  .header__menubtn span {
    height: 1px;
  }
  .header__menubtn span:nth-of-type(2) {
    top: 8px;
  }
}
.header__menubtn.is--opened {
  width: 28px;
  left: 55px;
}
.header__menubtn.is--opened span:nth-of-type(1) {
  transform: translateY(18px) rotate(-45deg);
}
.header__menubtn.is--opened span:nth-of-type(2) {
  opacity: 0;
}
.header__menubtn.is--opened span:nth-of-type(3) {
  transform: translateY(-15px) rotate(45deg);
}

@media (max-width: 768px) {
  .header__menubtn.is--opened {
    width: 24px;
    left: 9px;
    top: 11px;
  }
  .header__menubtn.is--opened span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
  }
  .header__menubtn.is--opened span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}
/*ロゴ*/
.header__logo {
  text-align: center;
  width: 298px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header__logo {
    width: 63px;
    padding-left: 3px;
  }
}
/*ツール*/
.header__tools {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: -4px;
  height: 100%;
}
.header__tools__item {
  /*height: 38px;
	width: auto;*/
  display: inline-block;
  padding-right: 51px;
  box-sizing: content-box;
}
.header__tools__item:last-child {
  padding-right: 40px;
}
.header__tools__item a {
  width: 100%;
  display: block;
}
.header__tools__item a img {
  height: 44px;
  width: auto;
}

@media (min-width: 769px) and (max-width: 980px) {
  .header__tools__item {
    padding-right: 4vw;
  }
  .header__tools__item img {
    max-height: 4vw;
  }
}
@media (max-width: 768px) {
  .header__tools {
    bottom: -6px;
  }
  .header__tools__item {
    padding-right: 6.8vw;
    vertical-align: bottom;
    height: auto;
  }
  .header__tools__item a {
    display: block;
  }
  .header__tools__item a img {
    width: auto;
    height: 22px;
  }
  .header__tools__item:last-child {
    padding-right: 0;
  }
}
/*gnav*/
/*表示前*/
.header__menuarea {
  background: var(--menu-bg-color);
  position: absolute;
  z-index: -1;
  width: 100%;
  transition: 0.3s;
  transform: translateY(-100%);
  padding: 0;
  overflow: hidden;
  padding-left: 15px; /*スライダーのずれ防止用*/
}
.header__menuarea.is--opened {
  transition: 0.3s;
  transform: translateY(0);
  overflow: auto;
  max-height: calc(100vh - 160px - 40px - 40px); /*headerの高さ*/
}

.header__menuarea > * {
  opacity: 0;
  transition: 0.3s;
}
.header__menuarea.is--opened > * {
  opacity: 1;
  transition: 1s;
}
.header__menuarea .container {
  width: 934px;
  min-width: 934px;
}

@media (min-width: 769px) and (max-width: 980px) {
  .header__menuarea,
  .header__menuarea .container {
    max-width: 100vw;
    padding: 0;
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .header__menuarea {
    max-width: 100vw;
    padding: 0;
    min-width: auto;
  }
  .header__menuarea .container {
    width: 100%;
    min-width: auto;
  }
  .header__menuarea.is--opened {
    max-height: calc(100vh - 73px - 5vw - 5vw); /*headerの高さ*/
  }
}

/*ヘッダーメニューツールリンク*/
.header__menuarea__tools {
  border-bottom: 1px solid #b0b0b0;
  padding-top: 54px;
  padding-bottom: 54px;
  position: relative;
  padding-left: 34px;
}
.header__menuarea__tools__item {
  display: inline-block;
  font-weight: bold;
  font-size: 1.17rem;
  line-height: 1em;
  padding-right: 32px;
}
.header__menuarea__tools__item--mypage a {
  background: url(../images/common/bg_mypage.png) no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  min-height: 18px;
  display: block;
}
.header__menuarea__tools__item--login a {
  background: url(../images/common/bg_login.png) no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  min-height: 20px;
  display: block;
}
.header__menuarea__tools__item--msg {
  border-bottom: 1px solid var(--main-text-color);
  width: auto;
}
.header__menuarea__tools__item--msg a:hover {
  text-decoration: none;
}
@media (min-width: 769px) {
  .header__menuarea__tools__item--msg {
    font-size: 0.95rem;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 768px) {
  .header__menuarea__tools {
    border-bottom: none;
  }
}
/*検索窓*/
.header__menuarea__tools__item--search_box {
  display: inline-block;
  right: 10px;
  border: 1px solid var(--main-text-color);
  width: 230px;
  background: #fff;
  min-height: 30px;
  height: auto;
}
@media (min-width: 769px) {
  .header__menuarea__tools__item--search_box {
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .header__menuarea__tools__item--search_box.is--sp {
    display: none !important;
  }
}
.header__menuarea__tools__item--search_box > form {
  height: 100%;
}
.header__menuarea__tools__item--search_box > form > div {
  display: flex;
  align-items: center;
  height: 100%;
}
.support__search__box {
  width: 180px;
  height: 100%;
  min-height: 28px;
  border: none;
  display: block;
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: #6d6d6d;
}
.support__search__box:focus {
  outline: none;
}
.support__search__submit__wrapper {
  height: 100%;
}
.support__search__submit__wrapper input[type="submit"] {
  background: url(../images/common/bg_search.png) no-repeat center;
  border: 0;
  background-size: 17px 17px;
  width: 36px;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .header__menuarea__tools {
    display: block;
    padding-left: 10vw;
    padding-right: 10vw;
    text-align: center;
    padding-top: 11vw;
    padding-bottom: 8vw;
  }

  .header__menuarea__tools__item {
    margin-bottom: 4vw;
    font-size: 4.5vw;
    padding-right: 6.5vw;
  }
  .header__menuarea__tools__item:nth-child(2) {
    padding-right: 0;
  }
  .header__menuarea__tools__item a {
    text-align: center;
    display: block;
  }
  .header__menuarea__tools__item a:hover {
    text-decoration: none;
  }
  .header__menuarea__tools__item--mypage a {
    background-size: 4.5vw;
    padding-left: 6.5vw;
    min-height: 4.4vw;
  }
  .header__menuarea__tools__item--login a {
    background-size: 4.5vw;
    padding-left: 6.5vw;
    min-height: 4.4vw;
  }
  .header__menuarea__tools__item--msg {
    padding-top: 4vw;
    display: inline-block;
    position: relative;
    width: auto;
    margin: 0 auto;
    font-size: 2.4vw;
    letter-spacing: 0.12em;
    padding-left: 0.12em;
  }
  /*検索ボックス*/
  .header__menuarea__tools__item--search_box {
    position: relative;
    width: 100%;
    min-height: 8vw;
    height: auto;
    right: 0;
    border-color: #aaaaaa;
  }
  .header__menuarea__tools__item--search_box > form > div {
    min-height: 8vw;
  }
}
/*ヘッダーメニュー中間*/
.header__menuarea__middle {
  border-bottom: 1px solid #b0b0b0;
  padding: 45px 24px;
}
.header__menuarea__middle__list {
  display: flex;
  list-style: none;
}
.header__menuarea__middle__list__item {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1em;
  padding-right: 48px;
  font-weight: 700;
}

.header__menuarea__middle__list__item
  .header__menuarea__middle__list__item--subtext {
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding-left: 15px;
  font-weight: 400;
}
.header__menuarea__middle__list__item a:after {
  content: ">";
  font-size: 1.4rem;
  padding-left: 15px;
  font-weight: 300;
}
.header__menuarea__middle__list__item a:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .header__menuarea__middle {
    padding: 5.5vw 0;
    border-bottom: none;
    background: var(--menu-sp-bg-color);
  }
  .header__menuarea__middle__list {
    display: block;
    padding: 0 17.4vw;
  }
  .header__menuarea__middle__list__item {
    font-size: 4vw;
    padding-bottom: 6vw;
    padding-right: 0;
  }
  .header__menuarea__middle__list__item:last-child {
    padding-bottom: 0;
  }
  .header__menuarea__middle__list__item a:after {
    padding-left: 4vw;
    font-size: 5vw;
  }
}
/*gnav*/
.gnav {
  border-bottom: 1px solid #b0b0b0;
  padding: 11px 0;
  display: flex;
}
.gnav h2 {
  font-size: 1.1rem;
  line-height: 1em;
  letter-spacing: 0.05em;
  padding-bottom: 1em;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
}
.gnav ul {
  list-style: none;
}
.gnav li {
  display: block;
  padding: 0.6em 0;
}
.gnav__item {
  width: 214px;
  padding: 22px 24px;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 1em;
  border-right: 1px solid #b0b0b0;
  margin-right: 18px;
}
.gnav__contents {
  padding-bottom: 40px;
}
.gnav__item__wide {
  padding: 0 30px;
  position: relative;
}

.gnav__item__wide__item {
  text-align: center;
}

/*追加：動画エリアに静止画配置時のサイズ調整用*/
@media (min-width: 981px) {
  .gnav__item__wide {
    width: 40%;
  }
}

@media (min-width: 769px) {
  .gnav__item__wide__item {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

.gnav__item__wide__item .ganv__item__wide__item-content {
  width: 382px;
  padding-bottom: 10px;
}
@media (min-width: 769px) and (max-width: 980px) {
  .gnav {
    max-width: 100%;
    margin: 0;
  }
  .gnav__item {
    width: 25%;
    padding: 3%;
  }
  .gnav__item__wide {
    width: 50%;
    padding: 0;
  }
  .gnav__item__wide__item .ganv__item__wide__item-content {
    width: 100%;
  }
  .header__menuarea__tools__item {
    font-size: 1rem;
    padding-right: 1%;
  }
  .header__menuarea__tools__item--search_box {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .gnav {
    display: flex;
    border: none;
    margin: 0 auto;
    padding: 0;
    padding-top: 7vw;
    flex-wrap: wrap;
  }
  .gnav h2 {
    text-transform: none;
    font-weight: normal;
    font-size: 7vw;
    letter-spacing: 0.11em;
    font-weight: 700;
    padding-bottom: 6vw;
  }
  .gnav__item {
    order: 2;
    width: 100%;
    padding: 0;
    border: none;
    margin-right: 0;
  }
  .gnav__category,
  .gnav__contents,
  .gnav__about {
    border-top: 1px solid #b0b0b0;
    padding-top: 14vw;
    padding-bottom: 9vw;
    padding-left: 13vw;
    padding-right: 13vw;
  }

  .gnav li {
    font-size: 3.9vw;
    padding: 1.2em 0;
  }
  .gnav__item:last-child {
    padding-bottom: 16vw;
  }

  .gnav__item__wide {
    order: 1;
    padding: 0 6vw;
    padding-bottom: 5.4vw;
  }
  .gnav__item__wide__item {
    position: relative;
  }
  .gnav__item__wide__item .ganv__item__wide__item-content {
    width: 100%;
    padding-bottom: 4vw;
  }
  .gnav__item__wide__item__text {
    padding-bottom: 5.4vw;
  }
  .support__search__box {
    width: 75vw;
  }
  .support__search__submit__wrapper input[type="submit"] {
    background-size: 4.4vw 4.4vw;
    min-height: 4.4vw;
  }
}

/*ヘッダーメニュー　js リンク　*/
.header__menuarea__bottom {
  padding-top: 60px;
  padding-bottom: 35px;
  padding-right: 36px;
  text-align: right;
}
.header__menuarea__bottom__js a {
  display: inline-block;
  background: var(--dark-bg-color);
  color: #bababa;
  padding: 10px 24px;
  line-height: 1em;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .header__menuarea__bottom {
    text-align: center;
    padding: 0;
    padding: 7vw 0 10.5vw;
  }
  .header__menuarea__bottom__js a {
    padding: 3.5vw 7vw;
    border-radius: 5vw;
  }
}
.header__menuarea__info {
  background: var(--dark-bg-color);
}

.header__menuarea__bottom__js a:hover {
  text-decoration: none;
}
/*インフォ*/
.header__menuarea__info__list {
  color: #fff;
  padding: 20px;
  list-style: none;
  display: inline-block;
  position: relative;
}

.header__menuarea__info__item {
  display: inline-block;
  border-right: 1px solid #fff;
}

.header__menuarea__info__item:last-child {
  border: none;
}
.header__menuarea__info__item a {
  color: var(--current-dot-color);
  width: 100%;
  display: block;
  padding: 0 1em;
}

.header__menuarea__info__item:first-child a {
  padding-left: 0;
}

.header__menuarea__info__brand {
  display: inline-block;
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .header__menuarea__info {
  }
  .header__menuarea__info__list {
    display: inline-block;
    padding: 5vw;
    text-align: left;
  }
  .header__menuarea__info__item {
    font-size: 2.6vw;
    letter-spacing: 0;
  }

  .header__menuarea__info__item a {
    padding: 0 3vw;
  }
  .header__menuarea__info__item:first-child a {
    padding-left: 0;
  }
  .header__menuarea__info__item:last-child a {
    padding-right: 0;
  }
  .header__menuarea__info__brand {
    width: 12.7vw;
    right: 4vw;
  }
}
/*----------------------------------------
 3:メイン
----------------------------------------*/
main {
}
@media (max-width: 768px) {
  main {
    padding-top: 100px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}
/*slick slider*/
.top__mainvisual__list,
.top__minislider__list {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s linear;
}
@media (min-width: 769px) and (max-width: 980px) {
  .top__minislider__list .slick-arrow {
    display: none !important;
  }
}
.top__mainvisual__list.slick-initialized,
.top__minislider__list.slick-initialized {
  opacity: 1;
  max-height: 100%;
}
.top__mainvisual__item img,
.top__minislider__list__item img {
  width: 100%;
}

.top__mainvisual .slick-prev {
  left: 32px;
}
.top__mainvisual .slick-next {
  right: 32px;
}
.top__mainvisual .slick-prev,
.top__mainvisual .slick-next {
  width: 13px;
  height: 36px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.top__mainvisual .slick-prev:before,
.top__mainvisual .slick-next:before {
  content: "";
}
.top__mainvisual .slick-prev {
  background-image: url(../images/common/arrow_left.png);
  content: "";
}
.top__mainvisual .slick-next {
  background-image: url(../images/common/arrow_right.png);
}
/*minislider*/
.top__minislider__list .slick-prev,
.top__minislider__list .slick-next {
  width: 12px;
  height: 28px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
.top__minislider__list .slick-prev:before,
.top__minislider__list .slick-next:before {
  content: "";
}
.top__minislider__list .slick-prev {
  background-image: url(../images/common/arrow_left_mini.png);
  content: "";
}
.top__minislider__list .slick-next {
  background-image: url(../images/common/arrow_right_mini.png);
}
@media (max-width: 768px) {
  .top__minislider__list .slick-prev,
  .top__minislider__list .slick-next {
    width: 2.5vw;
    height: 4vw;
  }
  .slick-prev {
    left: -4.5vw;
  }
  .slick-next {
    right: -4.5vw;
  }
}
/*メインビジュアル用*/
@media (min-width: 980px) {
  .top__mainvisual__list {
    *zoom: 1;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .top__mainvisual .slick-arrow {
    /*		top:108.8%;*/
    width: 2vw;
    height: 5vw;
  }
  .top__mainvisual .slick-next {
    right: 1vw;
  }
  .top__mainvisual .slick-prev {
    left: 1vw;
  }
}
/*メインビジュアル*/

.top__mainvisual__list.is--sp {
  display: none;
}
.top__mainvisual {
  margin-bottom: 60px;
  min-width: 980px;
}

@media (max-width: 980px) {
  .top__mainvisual {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 100px;
  }
  .top__mainvisual {
    margin-bottom: 9.5vw;
    min-width: auto;
  }
  .top__mainvisual__list.is--pc {
    display: none;
  }
  .top__mainvisual__list.is--sp {
    display: block;
  }
}
/*ブランドサイトタイトル*/

.top__brandtitle {
  font-size: 1.1em;
  font-weight: normal;
  text-align: center;
  line-height: 1.8em;
  padding-top: 20px;
  /*    padding-bottom: 130px;*/
}
@media (max-width: 768px) {
  .top__brandtitle {
    padding-top: 3vw;
    font-size: 1em;
    /*		padding-bottom: 18.2vw;*/
    letter-spacing: 0;
  }
}

/*カテゴリ*/
.top__category__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 780px;
  margin: 0 auto;
}
.top__category__list__item {
  width: 33%;
  text-align: center;
  padding: 30px 0;
}

.top__category__list__item a {
  display: inline-block;
}
.top__category__list__item a:hover {
  text-decoration: none;
}
.top__category__list__item__image img {
  box-sizing: content-box;
  height: 104px;
  width: auto;
  padding-bottom: 16px;
}

@media (min-width: 769px) and (max-width: 980px) {
  .top__category__list {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .top__category__list {
    width: 84vw;
  }
  .top__category__list__item {
    padding: 3vw 0;
  }
  .top__category__list__item__image img {
    height: 14vw;
    padding-bottom: 3vw;
  }
}
.top__category__list__item__name {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.1rem;
  padding-bottom: 10px;
  font-weight: 700;
}
.top__category__list__item__description {
  font-size: 0.8rem;
  letter-spacing: 0;
}

.top__category__list__item--allitem a {
  background: url(../images/common/bg_btn_allitem.png);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}
.top__category__list__item--allitem__wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: block;
}
.top__category__list__item--allitem .top__category__list__item__name {
  line-height: 1.4rem;
  padding-bottom: 0px;
}

@media (max-width: 768px) {
  .top__category__list__item__name {
    font-size: 2.45vw;
    line-height: 1em;
    letter-spacing: 0.06em;
    padding-bottom: 0.2vw;
  }
  .top__category__list__item__description {
    font-size: 2vw;
    letter-spacing: 0;
  }
  .top__category__list__item--allitem {
    position: relative;
  }
  .top__category__list__item--allitem a {
    width: 15vw;
    height: 15vw;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .top__category__list__item--allitem .top__category__list__item__name {
    line-height: 1.4em;
  }
}
/*注目*/
.top__feature__list {
  list-style: none;
}
.top__feature__list__item a {
  text-align: center;
  display: block;
  width: 590px;
  margin: 0 auto 24px;
  background: var(--feature-bg-color);
  font-size: 1.2rem;
  letter-spacing: 0.13rem;
  font-weight: bold;
  padding: 30px 0;
}
.top__feature__list__item a:hover {
  text-decoration: none;
}
.top__feature__list__item__decoration {
  padding-bottom: 1px;
  border-bottom: 1px solid var(--main-text-color);
  padding-left: 0.13rem;
}

@media (max-width: 768px) {
  .top__feature {
    padding-bottom: 15vw;
  }
  .top__feature__list__item a {
    width: 85vw;
    font-size: 2.6vw;
    letter-spacing: 0.07em;
    padding: 3vw 0;
    margin: 0 auto 7vw;
  }
}
/*各セクション見出し*/
.top__title {
  text-align: center;
  font-weight: normal;
  font-size: 1.75rem;
}
.top__title .top__title__main {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
}
/*１文字目に色をつける*/
#allitem .top__title .top__title__main:first-letter{
	color:#ec4f4f;
}
#top__pickup .top__title .top__title__main:first-letter{
	color:#6ebfe5;
}
#ranking .top__title .top__title__main:first-letter{
	color:#e5816e;
}
#top__information .top__title .top__title__main:first-letter{
	color:#4cb793;
}

.top__title .top__title__main:after {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  display: inline-block;
  content: "";
  height: 4px;
  background: var(--main-text-color);
  width: 86px;
  margin: 0 0 0 25px;
}
.top__title .top__title__subtitle {
  margin-left: 125px;
  font-size: 1rem;
  top: -0.23rem;
  position: relative;
}

@media (max-width: 768px) {
  .top__title {
    font-size: 4vw;
    line-height: 1em;
  }
  .top__title .top__title__main {
    letter-spacing: 0.03em;
  }
  .top__title .top__title__main:after {
    width: 11.4vw;
    height: 0.4vw;
    margin-left: 3vw;
  }
  .top__title .top__title__subtitle {
    margin-left: 16vw;
    font-size: 2.5vw;
    letter-spacing: 0;
    top: -0.7vw;
  }
}

/*ALL ITEM*/
.top__itemlist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .top__allitem {
    padding-bottom: 17vw;
  }
}
.top__itemlist__item {
  width: 28.6%;
  padding: 45px 7% 45px 0;
  box-sizing: content-box;
}

@media (min-width: 769px) {
  .top__itemlist__item:nth-child(3n) {
    padding-right: 0;
  }
}
.top__itemlist__item a {
  display: block;
}
.top__itemlist__item__img {
  position: relative;
  margin-bottom: 26px;
}
.top__itemlist__item__img img {
  width: 100%;
}
.top__itemlist__new,
.top__itemlist__re {
  position: absolute;
  bottom: -15px;
  left: 8px;
  width: 77px;
}
.top__itemlist__item__description {
  padding-left: 8px;
}
.top__itemlist__item__title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  line-height: 1em;
  letter-spacing: 0.2em;
  padding-bottom: 13px;
  font-weight: 400;
}

.top__itemlist__item__date {
  padding-top: 10px;
  padding-bottom: 18px;
}
.top__itemlist__item__date:before {
  content: "[ ";
}
.top__itemlist__item__date:after {
  content: " ]";
}
.top__itemlist__item__subtitle {
  padding-bottom: 0.6em;
}
.sale-price_before {
  font-size: 0.8em;
}
.sale-price_after {
  color: #9b536e;
}
.sale-price_allow {
  font-size: 0.8em;
}

@media (max-width: 768px) {
  .top__itemlist {
    width: 85vw;
    margin: 0 auto;
    padding-bottom: 15vw;
  }
  .top__itemlist__item {
    width: 47%;
    padding: 11vw 5% 2vw 0;
  }

  .top__itemlist__item:nth-child(2n) {
    padding-right: 0;
  }
  .top__itemlist__item__img {
    margin-bottom: 6vw;
  }
  .top__itemlist__new,
  .top__itemlist__re {
    width: 10vw;
    bottom: -1.8vw;
    left: 1vw;
  }
  .top__itemlist__item__title {
    letter-spacing: 0.1em;
    font-size: 1rem;
    padding-bottom: 3vw;
  }
  .top__itemlist__item__date {
    padding-top: 0;
    padding-bottom: 3vw;
    font-size: 3vw;
  }
  .top__itemlist__item__subtitle,
  .top__itemlist__item__price {
    font-size: 2.4vw;
    letter-spacing: 0.05em;
  }
  .top__itemlist__item__subtitle {
    padding-bottom: 1vw;
  }
  .sale-price_allow {
    font-size: 0.8em;
  }
}
/*moreボタン*/
.top__morebtn {
  text-align: center;
  padding-bottom: 20px;
}
.top__morebtn a {
  font-family: "Josefin Sans", sans-serif;
  background: var(--dark-bg-color);
  color: #fff;
  display: inline-block;
  text-align: center;
  width: 250px;
  padding: 18px 0 10px 0;
  font-size: 1.2rem;
  line-height: 1em;
  text-decoration: none;
}
.top__morebtn > a > span {
  position: relative;
}
.top__morebtn > a > span:after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  border-bottom: 1px solid #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 768px) {
  .top__morebtn a {
    font-size: 3vw;
    padding: 3vw 16vw 2vw;
    width: auto;
  }
}

/*アクセント付きのスペーサー*/
.top__spacer {
  background: url(../images/top/img_line_spacer.png) repeat-y center;
  height: 150px;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .top__spacer {
    height: 19.5vw;
    background-size: contain;
    margin-bottom: 14vw;
  }
}

/*information*/
.top__information {
  background: var(--information-bg-color);
  position: relative;
  padding: 70px 0 50px;
  margin-bottom: 120px;
}
.top__information__title {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
}
@media (max-width: 768px) {
  .top__information {
    padding: 7.8vw 0 6vw;
    margin-bottom: 13vw;
  }
  .top__information__title {
    /*		top:-2.2vw;*/
    top: -2.2vw;
  }
}
.top__information__list {
  display: table;
  margin: 0 auto;
  padding: 0 1em;
  font-size: 1rem;
}
.top__information__list dl {
  position: relative;
  display: table-row;
}
.top__information__list dl:before {
  display: inline-block;
  content: "";
  height: 1px;
  width: 20px;
  background: var(--main-text-color);
  position: absolute;
  top: 1.5em;
  left: -40px;
}
.top__information__list dt,
.top__information__list dd {
  display: table-cell;
  padding: 1em 1em;
}
@media (max-width: 768px) {
  .top__information__list {
    font-size: 2.5vw;
    letter-spacing: 0;
    padding: 0 13vw;
  }
  .top__information__list dl:before {
    width: 3vw;
    left: -5.5vw;
    top: 1em;
  }
  .top__information__list dt {
    padding: 0.5em 0;
    min-width: 6em;
  }
  .top__information__list dd {
    padding: 0.5em 0 0.5em 1.6vw;
  }
}

/*pickup*/
.top__pickup {
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .top__spacer + .top__pickup {
    padding-top: 5vw;
    padding-bottom: 20vw;
  }
}
.top__pickup__title {
  padding-bottom: 62px;
}
.top__pickup__list__item {
  padding: 0 10px;
}
.top__pickup + .top__spacer {
  margin-bottom: 124px;
}
@media (max-width: 768px) {
  .top__minislider__list {
    width: 86vw;
    margin: 0 auto;
  }
  .top__pickup__list__item {
    padding: 0 1vw;
  }
  .top__pickup + .top__spacer {
    margin-bottom: 19.5vw;
  }
}
/*ranking*/
.top__ranking {
  counter-reset: ranking;
  padding-bottom: 270px;
}
.top__ranking__title {
  padding-bottom: 80px;
}
.top__ranking__list {
  list-style: none;
}
.top__ranking__list__item {
  background: var(--ranking-bg-color);
}
.top__ranking__list__item {
  display: inline-block;
}
.top__ranking__list__item a {
  display: block;
  width: 100%;
}
.top__ranking__list__item a:hover {
  text-decoration: none;
}
.top__ranking__list__item__thumb {
  position: relative;
}
.top__ranking__list__item__thumb img {
  width: 100%;
}
.top__ranking__list__item .top__ranking__list__item__thumb:before {
  content: counter(ranking);
  counter-increment: ranking;
  font-family: "Josefin Sans", sans-serif;
  border-bottom: 3px solid var(--main-text-color);
  display: block;
  text-align: center;
  position: absolute;
  font-weight: 300;
}
.top__ranking__list__item__detail__title {
  line-height: 1em;
  font-family: "Josefin Sans", sans-serif;
}
@media (max-width: 768px) {
  .top__ranking {
    padding-bottom: 34.5vw;
  }
  .top__ranking__title {
    padding-bottom: 13.5vw;
  }
  .top__ranking__list {
    display: flex;
    flex-wrap: wrap;
    width: 84.5vw;
    margin: 0 auto;
  }
  .top__ranking__list__item:first-child {
    width: 67.5vw;
    margin: 0 auto;
  }
  .top__ranking__list__item:first-child a {
    min-height: 106vw;
    padding-top: 13vw;
  }
  .top__ranking__list__item:nth-child(n + 2) {
    margin-top: 7.6vw;
    width: 47%;
    margin-right: 6%;
  }
  .top__ranking__list__item:nth-child(n + 2) a {
    min-height: 72vw;
    padding-top: 9vw;
  }
  .top__ranking__list__item .top__ranking__list__item__thumb:before {
    border-bottom: 0.5vw solid var(--main-text-color);
  }
  .top__ranking__list__item:first-child
    .top__ranking__list__item__thumb:before {
    font-size: 9.5vw;
    width: 11vw;
    line-height: 7vw;
    top: calc(-7vw - 0.4vw);
  }
  .top__ranking__list__item:nth-child(n + 2)
    .top__ranking__list__item__thumb:before {
    width: 8vw;
    font-size: 6vw;
    line-height: 6vw;
    top: calc(-6vw - 0.4vw);
  }
  .top__ranking__list__item:first-child .top__ranking__list__item__detail {
    padding: 4vw 4vw;
  }
  .top__ranking__list__item:first-child
    .top__ranking__list__item__detail__title {
    font-size: 3.7vw;
    padding-bottom: 4.4vw;
  }
  .top__ranking__list__item:nth-child(n + 2)
    .top__ranking__list__item__detail__title {
    padding-bottom: 2.5vw;
    font-size: 3.5vw;
  }
  .top__ranking__list__item__detail__subtitle,
  .top__ranking__list__item__detail__price {
    font-size: 2.5vw;
    line-height: 1.4em;
    letter-spacing: 0;
  }
  .top__ranking__list__item__detail__subtitle {
    padding-bottom: 1.6vw;
  }
  .top__ranking__list__item:nth-child(n + 2) .top__ranking__list__item__detail {
    padding: 3vw 2vw;
  }
}
@media (min-width: 769px) {
  .top__ranking__list__item {
    margin-right: 70px;
    float: left;
    margin-top: 10px;
  }

  .top__ranking__list__item:first-child {
    width: 420px;
  }
  .top__ranking__list__item:first-child a {
    height: 870px;
    padding-top: 143px;
  }
  .top__ranking__list__item:nth-child(n + 2) {
    width: 210px;
  }
  .top__ranking__list__item:nth-child(n + 2) a {
    height: 430px;
    padding-top: 53px;
  }
  .top__ranking__list__item .top__ranking__list__item__thumb:before {
    border-bottom: 3px solid var(--main-text-color);
  }

  .top__ranking__list__item:first-child
    .top__ranking__list__item__thumb:before {
    font-size: 3.5rem;
    width: 67px;
    line-height: 2.7rem;
    top: calc(-2.7rem - 3px);
  }
  .top__ranking__list__item:nth-child(n + 2)
    .top__ranking__list__item__thumb:before {
    width: 50px;
    font-size: 2.3rem;
    line-height: 2.3rem;
    top: calc(-2.3rem - 3px);
  }
  .top__ranking__list__item:first-child .top__ranking__list__item__detail {
    padding: 27px 30px;
  }
  .top__ranking__list__item:first-child
    .top__ranking__list__item__detail__title {
    font-size: 2rem;
    padding-bottom: 20px;
  }
  .top__ranking__list__item:nth-child(n + 2)
    .top__ranking__list__item__detail__title {
    padding-bottom: 16px;
    font-size: 1rem;
  }
  .top__ranking__list__item__detail__subtitle,
  .top__ranking__list__item__detail__price {
    font-size: 0.8rem;
    line-height: 1.4em;
    letter-spacing: 0;
  }
  .top__ranking__list__item__detail__subtitle {
    padding-bottom: 6px;
  }
  .top__ranking__list__item:nth-child(n + 2) .top__ranking__list__item__detail {
    padding: 18px 23px;
  }
}

@media (min-width: 769px) and (max-width: 980px) {
  .top__ranking__list__item:first-child {
    width: 50%;
    margin-right: 5%;
  }
  .top__ranking__list__item:nth-child(n + 2) {
    width: 20%;
    margin-right: 5%;
  }
}
.top__ranking__list__item:nth-child(3),
.top__ranking__list__item:nth-child(5) {
  margin-right: 0;
}
/*ブランド運営 jointspace*/
.top__brand {
  color: #fff;
  background: var(--footerjs-bg-color);
  width: 752px;
  min-width: auto;
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 55px;
}
.top__brand a {
  padding: 36px;
  color: #ebebeb;
  display: block;
  width: 100%;
  line-height: 1em;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: normal;
}
.top__brand a:hover {
  text-decoration: none;
}
.top__brand img {
  padding-top: 26px;
}
@media (max-width: 768px) {
  .top__brand {
    margin-top: 35vw;
    width: 89vw;
    margin-bottom: 4.6vw;
  }
  .top__brand a {
    padding: 5vw;
    font-size: 3.3vw;
    letter-spacing: 0.06em;
  }
  .top__brand img {
    width: 38vw;
    padding-top: 4vw;
  }
}

/*----------------------------------------
 4:フッター
----------------------------------------*/
/*----------------------------------------
 ex:パンくずリスト　
----------------------------------------*/
.breadcrumb_box {
  width: 100%;
  margin-bottom: 30px;
  font-size: 1rem;
  border-top: black 1px dotted;
  overflow: hidden;
}
.breadcrumb_box .container {
  padding-top: 29px;
}
.breadcrumb_box .container ol {
  padding-left: 15px;
}

.breadcrumb {
  padding-left: 0;
  margin-left: 0;
}

.breadcrumb li {
  display: inline; /*横に並ぶように*/
  list-style: none;
}

.breadcrumb li:after {
  /* >を表示*/
  content: ">";
  padding: 0 3px;
}

.breadcrumb li:last-child:after {
  content: "";
  padding: 0;
}

.breadcrumb li a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .breadcrumb_box {
    font-size: 2.3vw;
    line-height: 1.4em;
    margin-bottom: 0;
    min-width: auto;
  }
  .breadcrumb_box .container {
    padding: 3.5vw 0;
  }
  .breadcrumb {
    padding-left: 0;
    padding-left: 4.5vw;
  }
  .breadcrumb li a {
    display: inline-block;
  }
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/*ページトップに戻るボタン*/
#footer .footer__pagetop {
  width: 100%;
}

#footer .footer__pagetop__btn {
  width: 70px;
  position: fixed;
  right: 10px;
  margin: 10px;
  z-index: 99;
  bottom: 90px;
  padding: 5px;
  box-sizing: content-box;
}

#footer .footer__pagetop__btn img {
  width: 100%;
  opacity: 0.85;
}

@media (max-width: 768px) {
  #footer .footer__pagetop__btn {
    width: 10vw;
    right: 10px;
    bottom: 15vw;
    padding: 1vw;
  }
}

@media (max-width: 768px) {
  .second-page .footer__chat {
    display: none;
  }
}

/*PCフッター*/
.footer-pc {
  display: block;
  background: var(--main-bg-color);
  width: 100%;
  z-index: 1;
  position: relative;
  font-size: 1rem;
}

.footer__main {
  padding-top: 50px;
  font-size: 0.8em;
}
.footer__links__wrapper {
  display: flex;
}
.footer__main__js {
  padding-bottom: 50px;
}

.footer__main__info {
  width: 180px;
  padding-right: 20px;
  padding-left: 25px;
}

.footer__main__guide {
  width: 160px;
  padding-right: 20px;
}

.footer__main__about {
  width: 310px;
  padding-right: 20px;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__main__info {
    width: 18%;
    padding-right: 2%;
    padding-left: 2%;
  }

  .footer__main__guide {
    width: 16%;
    padding-right: 2%;
  }

  .footer__main__about {
    width: 31%;
    padding-right: 2%;
  }
}

.footer__main__info,
.footer__main__guide,
.footer__main__about,
.footer__main__calender {
  display: inline-block;
  vertical-align: top;
  box-sizing: content-box;
  letter-spacing: 0.13em;
  font-size: 0.9em;
}

.footer__main__info h2,
.footer__main__guide h2,
.footer__main__about h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.93rem;
  line-height: 1em;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.footer__main__calender h2 {
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0;
}

.footer__main__info h2,
.footer__main__guide h2,
.footer__main__about h2,
.footer__main__calender h2 {
  padding-bottom: 15px;
}

.footer__main__info ul,
.footer__main__guide ul {
  list-style: none;
}

.footer__main__info li,
.footer__main__guide li,
.footer__main__about,
.footer__main__about__description {
  line-height: 2em;
}

.footer__main__about .footer__main__about__description {
  padding-bottom: 35px;
}
.footer__calendar__area {
  background: #fff;
  padding-top: 1em;
}
.footer__copyright {
  padding-top: 143px;
  padding-bottom: 52px;
  text-align: center;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
}

/*スマホフッター*/
#footer .footer-sp {
  display: none;
}

@media (max-width: 768px) {
  .footer-pc {
    display: none;
  }

  #footer .footer-sp {
    display: block;
    background: var(--ranking-bg-color);
    padding: 6vw 0;
    color: var(--footerjs-bg-color);
    text-align: center;
  }

  .footer-sp__links {
    margin: 0 auto;
    padding-bottom: 6vw;
  }

  .footer-sp__links__item {
    display: inline-block;
    width: 12vw;
    max-width: 60px;
    padding-right: 2vw;
    box-sizing: content-box;
  }

  .footer-sp__links__item:last-child {
    padding-right: 0;
  }

  .footer-sp__logo {
    padding-bottom: 6vw;
  }

  .footer-sp__logo img {
    width: 36vw;
  }
  .footer-sp .footer-sp__description p {
    width: 100%;
    line-height: 2em;
    font-size: 2vw;
    letter-spacing: 0.07em;
  }
  .footer-sp__copyright {
    padding-top: 1em;
    display: block;
  }
}

.footer__menu--fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  border-top: #adaba6 1px solid;
}
.footer__menu--fixed__list {
  font-size: 0;
  text-align: center;
}
.footer__menu--fixed__item {
  font-size: 2vw;
  display: inline-block;
  vertical-align: bottom;
  width: 20%;
}
.footer__menu--fixed__item a {
  padding: 10px 0;
  display: block;
  width: 100%;
}
.footer__menu--fixed__item a:hover {
  text-decoration: none;
}
.footer__menu--fixed__item a img {
  display: block;
  margin: 0 auto;
  width: 4vw;
  padding-bottom: 5px;
}
.footer__menu--fixed {
  transition-duration: 0.5s;
}
.footer__menu--fixed.is-hide {
  margin-bottom: -100%;
  transition-duration: 0.5s;
}

/*google adwords崩れ防止*/

iframe[name="google_conversion_frame"] {
  position: absolute;
  top: 0;
}
iframe[title="sprocket control"] {
  position: absolute;
  top: 0;
}


/*omom 動画修正211203-yo*/
.movie_area.row {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: space-between;
	margin-left: -15px;
	margin-right: -15px;
}
.movie_area.row .column {
    padding-right: 15px;
    padding-left: 15px;
	box-sizing: border-box;
	width: 70%;
    margin: auto;
}
.movie_area.row .column img {
	margin-bottom: 8px;
}
.movie_area.row .column:nth-child(1) {
	margin-bottom: 15px;
}

@media (min-width: 769px) and (max-width: 980px) {
	.movie_area.row .column {
		width: 56%;
	}
}

@media (max-width: 768px) {
	.movie_area.row .column {
		width: 50%;
	}
	.movie_area.row .column:nth-child(1) {
		margin-bottom: 0;
		padding-right: 5px;
	}
	.movie_area.row .column:nth-child(2) {
		padding-left: 5px;
	}
	
}