@charset "UTF-8";
/*================================================================
 *FILE          :archive-default.css
 *DESCRIPTION   :resetはressを使用。環境変数とmixinは_mixin.scss内に記述。
                 それぞれfoundationよりインポート。
 *AUTHOR        :
 *--------------------------------------------------------------
 *(C)
=================================================================*/
/* フォント定設
-----------------------------------------------------------------*/
@font-face {
  font-family: "MyYuGothicM";
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
  /* 游ゴシックMediumが存在しないWindows8.1用 */ }

@font-face {
  font-family: "MyYuGothicM";
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic Bold");
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */ }

@font-face {
  font-family: "MyYuMinchoM";
  font-weight: normal;
  src: local("YuMincho-Medium"), local("Yu Mincho Medium"), local("YuMincho-Regular");
  /* 游明朝Mediumが存在しないWindows8.1用 */ }

@font-face {
  font-family: "MyYuMinchoM";
  font-weight: bold;
  src: local("YuMincho-Demibold"), local("Yu Mincho");
  /* PostScript Nameを認識できないChrome用にFull Nameを指定 */ }

/* イージング
-----------------------------------------------------------------*/
/* デュレーション
-----------------------------------------------------------------*/
/*================================================================
 *FILE					:_components.scss
 *DESCRIPTION   :全ページ共通コンポーネント カスタムCSS
 *AUTHOR				:
 *--------------------------------------------------------------
 *(C)
=================================================================*/
/* ボタンパーツ
-----------------------------------------------------------------*/
/* ---------------------------------------------------------------
セクション
-----------------------------------------------------------------*/
/* ---------------------------------------------------------------
記事一覧
-----------------------------------------------------------------*/
.c-archive_category {
  position: relative;
  height: 48px; }
  @media print, screen and (max-width: 767px) {
    .c-archive_category {
      width: 275px;
      margin: 0 auto; } }

.c-archive_categoryListWrap {
  position: relative;
  width: 275px;
  margin: 0 auto; }
  .c-archive_categoryListWrap * {
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em; }
  @media print, screen and (max-width: 767px) {
    .c-archive_categoryListWrap:before, .c-archive_categoryListWrap:after {
      pointer-events: none;
      content: '';
      display: inline-block;
      position: absolute;
      top: 0;
      right: 0;
      width: 48px;
      height: 48px;
      z-index: 20; }
    .c-archive_categoryListWrap:before {
      border: 1px solid #000; }
    .c-archive_categoryListWrap:after {
      background-image: url(../svg/icon_closs_small_blk.svg);
      background-size: 14px;
      background-position: center;
      background-repeat: no-repeat;
      -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
      transform: rotate(0);
      transition: -webkit-transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease; }
    .c-archive_categoryListWrap.is-active:before {
      background-color: #000; }
    .c-archive_categoryListWrap.is-active:after {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      background-image: url(../svg/icon_closs_small_wht.svg); } }

.c-archive_categorySelectbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  position: relative;
  border-radius: 0;
  border: none;
  background: transparent;
  z-index: 1;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 48px;
  padding: 0 72px 0 25px;
  border: solid 1px #000;
  background-color: #fff; }
  .c-archive_categorySelectbox::-ms-expand {
    display: none; }
  .c-archive_categorySelectbox:focus {
    outline: none; }
  @media print, screen and (min-width: 768px) {
    .c-archive_categorySelectbox {
      display: none;
      visibility: hidden; } }

.c-archive_categorySelect {
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 48px;
  padding: 0 72px 0 25px;
  border: solid 1px #000;
  background-color: #fff; }
  .c-archive_categorySelect:before, .c-archive_categorySelect:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: -1px;
    right: -1px;
    width: 48px;
    height: 48px; }
  .c-archive_categorySelect:before {
    border: 1px solid #000;
    transition: background .3s ease; }
  .c-archive_categorySelect:after {
    background-image: url(../svg/icon_closs_small_blk.svg);
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease; }
  .c-archive_categorySelect.is-active:before {
    background-color: #000; }
  .c-archive_categorySelect.is-active:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-image: url(../svg/icon_closs_small_wht.svg); }
  @media print, screen and (min-width: 1025px) {
    .c-archive_categorySelect.is-active:hover:after {
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); } }
  @media print, screen and (min-width: 1025px) {
    .c-archive_categorySelect:hover:after {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      transform: rotate(180deg); } }
  @media print, screen and (max-width: 767px) {
    .c-archive_categorySelect {
      display: none; } }

@media print, screen and (max-width: 767px) {
  .c-archive_categoryList_option.is-noLink {
    display: none; } }

.c-archive_categoryList {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: 0;
  padding: 17px 25px;
  background-color: #fff;
  border-bottom: 1px solid #000;
  z-index: 999; }

.c-archive_categoryList_node {
  cursor: pointer;
  margin: 0; }

.c-archive_categoryList_link {
  display: block;
  padding: 8px 0;
  transition: opacity .3s ease; }
  @media print, screen and (min-width: 1025px) {
    .c-archive_categoryList_link:hover {
      opacity: .5; } }
  .c-archive_categoryList_link.is-noLink {
    pointer-events: none;
    opacity: .5; }

.c-archive_tag {
  text-align: center; }

.c-archive_tag_title {
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .16em; }
  @media print, screen and (max-width: 767px) {
    .c-archive_tag_title {
      margin-bottom: 17px; } }
  @media print, screen and (min-width: 768px) {
    .c-archive_tag_title {
      margin-bottom: 24px; } }

.c-archive_tag_name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1; }

/* ページ送り矢印
-----------------------------------------------------------------*/
/* ページャー
-----------------------------------------------------------------*/
/* 共通記事一覧パーツ
-----------------------------------------------------------------*/
/* FASHION DIARY記事一覧
-----------------------------------------------------------------*/
/* CULTURE CLUB記事一覧
-----------------------------------------------------------------*/
/* ---------------------------------------------------------------
記事詳細
-----------------------------------------------------------------*/
.c-single_sns {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 185px; }
  @media print, screen and (max-width: 767px) {
    .c-single_sns {
      margin: 40px auto 15px; } }
  @media print, screen and (min-width: 768px) {
    .c-single_sns {
      margin: 80px auto 40px; } }

.c-single_sns_title {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 40px;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  letter-spacing: .2em; }

.c-single_sns_list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.c-single_sns_list_node + .c-single_sns_list_node {
  margin-left: 16px; }

.c-single_sns_list_link {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000;
  transition: opacity .3s ease; }
  @media print, screen and (min-width: 1025px) {
    .c-single_sns_list_link:hover {
      opacity: .5; } }

.c-single_sns_list_icon {
  display: inline-block;
  width: 20px;
  height: 16px; }
  .c-single_sns_list_node:last-child .c-single_sns_list_icon {
    width: 23px;
    height: 22px; }

.c-single_sns_list_svg {
  width: 100%;
  height: 100%;
  fill: #fff; }

@media print, screen and (max-width: 767px) {
  .c-single_tag {
    width: 100%;
    margin: 70px auto 0;
    padding: 0 33px; } }

@media print, screen and (min-width: 768px) {
  .c-single_tag {
    width: 520px;
    margin: 80px auto 25px; } }

.c-single_tag_title {
  font-size: 16px;
  font-weight: 700;
  text-align: center; }
  @media print, screen and (max-width: 767px) {
    .c-single_tag_title {
      margin-bottom: 25px; } }
  @media print, screen and (min-width: 768px) {
    .c-single_tag_title {
      margin-bottom: 32px; } }

.c-single_tag_list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.c-single_tag_list_node {
  margin: 0 8px 16px; }

.c-single_tag_list_link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 31px;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid #000;
  transition: .3s color ease, .3s background ease; }
  @media print, screen and (min-width: 1025px) {
    .c-single_tag_list_link:hover {
      color: #fff;
      background-color: #000; } }

/* HELLO NEW ME
-----------------------------------------------------------------*/
/* slick-dots
-----------------------------------------------------------------*/
/* ---------------------------------------------------------------
エディタースタイル
-----------------------------------------------------------------*/
/* ---------------------------------------------------------------
NEWタグ
-----------------------------------------------------------------*/
.c-button_true, .c-button_false {
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 48px;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 700;
  overflow: hidden;
  transition: color .3s ease, background .3s ease; }
  @media print, screen and (max-width: 767px) {
    .c-button_true, .c-button_false {
      width: 175px; } }
  @media print, screen and (min-width: 768px) {
    .c-button_true, .c-button_false {
      width: 240px; } }

.c-button_true {
  border: 2px solid #000; }
  @media print, screen and (min-width: 1025px) {
    .c-button_true:hover {
      color: #fff;
      background-color: #000; } }

.c-button_false {
  color: #fff;
  border: 2px solid #bbb;
  background-color: #bbb; }
  @media print, screen and (min-width: 1025px) {
    .c-button_false:hover {
      color: #bbb;
      background-color: #fff; } }

.c-buttonCenter {
  text-align: center; }

@media print, screen and (max-width: 767px) {
  .c-archive {
    padding: 46px 0 60px; } }

@media print, screen and (min-width: 768px) {
  .c-archive {
    padding: 80px 0 105px; } }

.c-archive.pickup {
  background-color: #F1F1F1; }

.c-archive_inner {
  max-width: 1120px;
  margin: 0 auto; }
  @media print, screen and (max-width: 767px) {
    .c-archive_inner {
      padding: 0 25px; } }
  @media print, screen and (min-width: 768px) {
    .c-archive_inner {
      padding: 0 40px; } }

.c-archivePager_button-prev, .c-archivePager_button-next {
  padding: 10px 0;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  transition: color .3s ease; }
  .c-archivePager_button-prev:before, .c-archivePager_button-next:before, .c-archivePager_button-prev:after, .c-archivePager_button-next:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: 8px 10px;
    transition: background .3s ease; }
  @media print, screen and (min-width: 1025px) {
    .c-archivePager_button-prev:hover, .c-archivePager_button-next:hover {
      color: #bbb; } }

.c-archivePager_button-prev:before {
  margin-right: 25px;
  background-image: url(../svg/arrow_left_blk.svg); }

@media print, screen and (min-width: 1025px) {
  .c-archivePager_button-prev:hover {
    color: #000;
    font-weight: 700; }
    .c-archivePager_button-prev:hover:before {
      background-image: url(../svg/arrow_left_gray.svg); } }

.c-archivePager_button-next:after {
  margin-left: 25px;
  background-image: url(../svg/arrow_right_blk.svg); }

@media print, screen and (min-width: 1025px) {
  .c-archivePager_button-next:hover:after {
    background-image: url(../svg/arrow_right_gray.svg); } }

.c-archivePager {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }
  @media print, screen and (max-width: 767px) {
    .c-archivePager {
      position: relative;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin-top: 40px;
      padding-bottom: 50px; } }
  @media print, screen and (min-width: 768px) {
    .c-archivePager {
      margin-top: 110px; } }

@media print, screen and (max-width: 767px) {
  .c-archivePager_button-prev {
    position: absolute;
    left: calc(50% - 93px);
    bottom: 0; } }

@media print, screen and (min-width: 768px) {
  .c-archivePager_button-prev {
    margin-right: 65px; } }

@media print, screen and (max-width: 767px) {
  .c-archivePager_button-next {
    position: absolute;
    right: calc(50% - 93px);
    bottom: 0; } }

@media print, screen and (min-width: 768px) {
  .c-archivePager_button-next {
    margin-left: 65px; } }

.c-archivePager_numbers {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.page-numbers {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: nomal;
  color: #666;
  transition: color .3s ease; }
  @media print, screen and (max-width: 767px) {
    .page-numbers {
      font-size: 16px;
      margin-right: 14px; } }
  @media print, screen and (min-width: 768px) {
    .page-numbers {
      font-size: 12px;
      margin-right: 6px; } }
  .page-numbers:last-child {
    margin-right: 0; }
  @media print, screen and (min-width: 1025px) {
    .page-numbers:hover {
      color: #000; } }

.current {
  font-weight: 700;
  text-decoration: underline;
  color: #000; }

@media print, screen and (max-width: 767px) {
  .c-section {
    padding: 50px 0px; } }

@media print, screen and (min-width: 768px) {
  .c-section {
    padding: 67px 0 80px; } }

.c-section_inner {
  max-width: 1120px;
  margin: 0 auto; }
  @media print, screen and (min-width: 768px) {
    .c-section_inner {
      padding: 0 40px; } }
  @media print, screen and (max-width: 767px) {
    .c-section_inner {
      padding: 0 25px; } }

.c-section_title {
  position: relative;
  width: 100%;
  text-align: center; }
  @media print, screen and (max-width: 1024px) {
    .c-section_title {
      margin: 0 auto 50px; } }
  @media print, screen and (min-width: 1025px) {
    .c-section_title {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      margin: 0 auto 60px;
      padding: 10px 0; } }

.c-section_title-en {
  display: inline-block;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  letter-spacing: .16em; }
  @media print, screen and (max-width: 1024px) {
    .c-section_title-en {
      margin-bottom: 14px; } }

.c-section_title-main {
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1; }
  @media print, screen and (max-width: 1024px) {
    .c-section_title-main {
      display: block;
      margin-bottom: 16px;
      font-size: 36px; } }
  @media print, screen and (min-width: 1025px) {
    .c-section_title-main {
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      font-size: 40px; } }
  @media print, screen and (max-width: 320px) {
    .c-section_title-main {
      font-size: 34px; } }
  .c-section_title-main .bold {
    display: block;
    font-weight: 700; }

.c-section_title-jp {
  font-size: 11px;
  font-weight: 700; }

.c-hello_list_date, .c-pickup_list_date {
  display: block;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #666;
  letter-spacing: .12em; }

.c-hello_list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  transition: opacity .3s ease; }
  @media print, screen and (max-width: 767px) {
    .c-hello_list {
      margin-bottom: 50px; } }
  @media print, screen and (min-width: 768px) {
    .c-hello_list {
      margin-bottom: 66px; } }

.c-hello_list_node {
  width: 100%; }
  @media print, screen and (min-width: 768px) {
    .c-hello_list_node {
      width: calc( (100% - 80px) / 3);
      margin-right: 3.8%;
      margin-bottom: 40px; } }
  @media print, screen and (max-width: 767px) {
    .c-hello_list_node + .c-hello_list_node {
      margin-top: 25px; } }
  @media print, screen and (min-width: 768px) {
    .c-hello_list_node:nth-of-type(3n) {
      margin-right: 0; } }
  @media print, screen and (min-width: 768px) {
    .c-hello_list_node:nth-last-child(-n+3) {
      margin-bottom: 0; } }
  @media print, screen and (min-width: 768px) {
    .c-hello_list_node:last-child {
      margin-right: 0; } }

.c-hello_list_image {
  position: relative;
  margin-bottom: 11px;
  overflow: hidden;
  padding-bottom: 62.5%;
  cursor: pointer;
  opacity: 1;
  transition: .3s opacity ease; }
  @media print, screen and (min-width: 1025px) {
    .c-hello_list_link:hover .c-hello_list_image {
      opacity: .5; } }
  .c-hello_list_image img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }

.c-hello_list_title-main {
  margin-bottom: 6px;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  cursor: pointer;
  opacity: 1;
  transition: .3s opacity ease; }
  @media print, screen and (min-width: 1025px) {
    .c-hello_list_link:hover .c-hello_list_title-main {
      opacity: .5; } }

.c-hello_list_title-sub {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  opacity: 1;
  transition: .3s opacity ease; }
  @media print, screen and (min-width: 1025px) {
    .c-hello_list_link:hover .c-hello_list_title-sub {
      opacity: .5; } }

.c-hello_list_date {
  cursor: pointer;
  opacity: 1;
  transition: .3s opacity ease; }
  @media print, screen and (min-width: 1025px) {
    .c-hello_list_link:hover .c-hello_list_date {
      opacity: .5; } }

.c-hello_list_date, .c-pickup_list_date {
  display: block;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #666;
  letter-spacing: .12em; }

.c-pickup_list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media print, screen and (max-width: 767px) {
    .c-pickup_list {
      margin-bottom: 50px; } }
  @media print, screen and (min-width: 768px) {
    .c-pickup_list {
      margin-bottom: 66px; } }

@media print, screen and (max-width: 767px) {
  .c-pickup_list_node {
    width: calc( (100% - 15px) / 2);
    margin-right: 15px;
    margin-bottom: 25px; } }

@media print, screen and (min-width: 768px) {
  .c-pickup_list_node {
    width: calc( (100% - 72px) / 4);
    margin-right: 2.3%;
    margin-bottom: 40px; } }

@media print, screen and (max-width: 767px) {
  .c-pickup_list_node:nth-of-type(2n) {
    margin-right: 0; } }

@media print, screen and (max-width: 767px) {
  .c-pickup_list_node:nth-last-child(-n+2) {
    margin-bottom: 0; } }

@media print, screen and (min-width: 768px) {
  .c-pickup_list_node:nth-of-type(4n) {
    margin-right: 0; } }

@media print, screen and (min-width: 768px) {
  .c-pickup_list_node:nth-last-child(-n+4) {
    margin-bottom: 0; } }

.c-pickup_list_category {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 8px;
  padding-left: 27px;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  letter-spacing: .16em; }
  .c-pickup_list_category:before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
    height: 1px;
    margin-right: 11px;
    background-color: #000;
    transition: width .3s ease; }
  @media print, screen and (min-width: 1025px) {
    .c-pickup_list_link:hover .c-pickup_list_category:before {
      width: 16px; } }

.c-pickup_list_image {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  overflow: hidden;
  border: 4px solid #fff;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 1;
  transition: .3s opacity ease;
  cursor: pointer;
  opacity: 1;
  transition: .3s opacity ease; }
  @media print, screen and (min-width: 1025px) {
    .c-hello_list_link:hover .c-pickup_list_image {
      opacity: .5; } }
  .c-pickup_list_image:before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%; }
  .c-pickup_list_image img {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  @media print, screen and (min-width: 1025px) {
    .c-pickup_list_link:hover .c-pickup_list_image {
      opacity: .5; } }
  @media print, screen and (max-width: 767px) {
    .c-pickup_list_image {
      margin-left: 10px; } }
  @media print, screen and (min-width: 768px) {
    .c-pickup_list_image {
      margin-left: 18px; } }
  .c-pickup_list_image img {
    width: 100%; }

.c-pickup_list_detail {
  position: relative;
  z-index: 2; }
  @media print, screen and (max-width: 767px) {
    .c-pickup_list_detail {
      margin-top: 10px;
      margin-right: 10px; } }
  @media print, screen and (min-width: 768px) {
    .c-pickup_list_detail {
      margin-top: -16px;
      margin-right: 18px;
      padding: 20px;
      background-color: #fff; } }

.c-pickup_list_title {
  min-height: 54px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.6;
  cursor: pointer;
  opacity: 1;
  transition: .3s opacity ease; }
  @media print, screen and (min-width: 1025px) {
    .c-pickup_list_link:hover .c-pickup_list_title {
      opacity: .5; } }

.c-pickup_list_date {
  cursor: pointer;
  opacity: 1;
  transition: .3s opacity ease; }
  @media print, screen and (min-width: 1025px) {
    .c-pickup_list_link:hover .c-pickup_list_date {
      opacity: .5; } }

.newTag:after {
  content: 'NEW';
  display: inline-block;
  margin-left: 10px;
  color: #ED4D1F;
  font-size: 10px;
  font-weight: bold; }

@media print, screen and (max-width: 767px) {
  .c-section_title {
    margin: 0 auto 50px; } }

@media print, screen and (min-width: 768px) {
  .c-section_title {
    margin: 0 auto 75px; } }

@media print, screen and (max-width: 767px) {
  .c-hello_list {
    margin-bottom: 40px;
    padding-top: 50px; } }

@media print, screen and (min-width: 768px) {
  .c-hello_list {
    padding-top: 64px; } }
