@charset "UTF-8";
/*================================================================
 *FILE          :single-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-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, .singlePickup_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, .singlePickup_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; } }

.c-single_otherTitle {
  position: relative;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .12em; }
  @media print, screen and (max-width: 767px) {
    .c-single_otherTitle {
      margin-bottom: 50px;
      padding-bottom: 20px; } }
  @media print, screen and (min-width: 768px) {
    .c-single_otherTitle {
      margin-bottom: 60px;
      padding-bottom: 24px; } }
  .c-single_otherTitle:after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #000; }

.singlePickup_content .staffProfile {
  position: relative;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  overflow: hidden; }
  @media print, screen and (max-width: 767px) {
    .singlePickup_content .staffProfile {
      margin: 50px 0 75px;
      padding: 50px 0; } }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .singlePickup_content .staffProfile {
      margin: 80px -40px 120px;
      padding: 60px 80px; } }
  @media print, screen and (min-width: 1025px) {
    .singlePickup_content .staffProfile {
      margin: 80px -80px 120px;
      padding: 60px 80px; } }
  .singlePickup_content .is-noBorder.staffProfile {
    border-top: 0;
    border-bottom: 0;
    margin: 0; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .is-noBorder.staffProfile {
        margin: 0 0 25px;
        padding: 50px 0; } }
    @media print, screen and (min-width: 768px) and (max-width: 1024px) {
      .singlePickup_content .is-noBorder.staffProfile {
        margin: 20px -40px 40px;
        padding: 60px 80px; } }
    @media print, screen and (min-width: 1025px) {
      .singlePickup_content .is-noBorder.staffProfile {
        margin: 20px -80px 40px;
        padding: 60px 80px; } }

.singlePickup_content .staffProfile_image {
  position: absolute;
  margin: 0; }
  @media print, screen and (max-width: 767px) {
    .singlePickup_content .staffProfile_image {
      top: 48px;
      left: 0;
      width: 120px; } }
  @media print, screen and (min-width: 768px) {
    .singlePickup_content .staffProfile_image {
      top: 50%;
      left: 80px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 120px; } }
  .singlePickup_content .staffProfile_image img {
    width: 100%;
    height: auto;
    margin: 0; }

.singlePickup_content .staffProfile_name {
  font-size: 13px;
  font-weight: 700; }
  @media print, screen and (max-width: 767px) {
    .singlePickup_content .staffProfile_name {
      margin: 33px 0 2px;
      margin-left: 145px; } }
  @media print, screen and (min-width: 768px) {
    .singlePickup_content .staffProfile_name {
      margin: 0 0 5px;
      margin-left: 160px;
      font-weight: 700; } }

.singlePickup_content .staffProfile_position {
  font-size: 11px; }
  @media print, screen and (max-width: 767px) {
    .singlePickup_content .staffProfile_position {
      margin: 0 0 53px;
      margin-left: 145px; } }
  @media print, screen and (min-width: 768px) {
    .singlePickup_content .staffProfile_position {
      margin: 0 0 25px;
      margin-left: 160px; } }

.singlePickup_content .staffProfile_text {
  margin: 0;
  font-size: 11px;
  line-height: 1.8; }
  @media print, screen and (min-width: 768px) {
    .singlePickup_content .staffProfile_text {
      margin-left: 160px; } }

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

.c-section {
  background-color: #F1F1F1; }
  @media print, screen and (max-width: 767px) {
    .c-section {
      padding-bottom: 100px; } }
  @media print, screen and (min-width: 768px) {
    .c-section {
      padding-bottom: 120px; } }

.singlePage {
  background-color: #fff; }
  @media print, screen and (max-width: 767px) {
    .singlePage {
      padding-bottom: 50px; } }
  @media print, screen and (min-width: 768px) {
    .singlePage {
      padding-bottom: 80px; } }

@media print, screen and (max-width: 767px) {
  .c-button_false {
    width: 240px; } }

.singlePickup {
  width: 100%; }

.singlePickup_head {
  width: 100%; }

.singlePickup_head_inner {
  width: 100%; }
  @media print, screen and (min-width: 768px) {
    .singlePickup_head_inner {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      background-color: #f1f1f1; } }

.singlePickup_visual {
  background-size: cover;
  background-position: center; }
  @media print, screen and (max-width: 767px) {
    .singlePickup_visual {
      width: 100%; } }
  @media print, screen and (min-width: 768px) {
    .singlePickup_visual {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      width: 50%;
      min-height: 49vw;
      background-color: #fff; } }
  .singlePickup_visual img {
    width: 100%; }

@media print, screen and (max-width: 767px) {
  .singlePickup_detail {
    width: 100%;
    padding: 30px 25px 45px;
    background-color: #f1f1f1; } }

@media print, screen and (min-width: 768px) {
  .singlePickup_detail {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%;
    height: 49vw;
    padding: 6.3% 9.4%; } }

.singlePickup_type {
  display: block;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: .16em; }
  @media print, screen and (max-width: 767px) {
    .singlePickup_type {
      margin-bottom: 8px; } }
  @media print, screen and (min-width: 768px) {
    .singlePickup_type {
      margin-bottom: 8px; } }

.singlePickup_category {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: .12em;
  font-size: 20px;
  font-weight: 700; }
  .singlePickup_category:before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    margin-right: 12px;
    background-color: #000; }
  @media print, screen and (max-width: 767px) {
    .singlePickup_category {
      margin-bottom: 14px; } }
  @media print, screen and (min-width: 768px) {
    .singlePickup_category {
      margin-bottom: 36px; } }

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

.singlePickup_lede {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: .08em; }
  @media print, screen and (max-width: 767px) {
    .singlePickup_lede {
      margin-top: 44px; } }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .singlePickup_lede {
      max-width: 800px;
      margin: 40px auto 0;
      padding: 0 40px; } }
  @media print, screen and (min-width: 1025px) {
    .singlePickup_lede {
      margin-top: 36px; } }

.singlePickup_content {
  /*================================================================
*FILE					:_single-content.scss
*DESCRIPTION   :詳細ページパーツ カスタムCSS
*AUTHOR				:
*--------------------------------------------------------------
*(C)
=================================================================*/
  /*詳細ページパーツ component
-----------------------------------------------------------------*/
  /*詳細ページパーツ style
-----------------------------------------------------------------*/
  /* 詳細ページ本文
-----------------------------------------------------------------*/
  /* 画像の配置
-----------------------------------------------------------------*/
  /* リード文
-----------------------------------------------------------------*/
  /* スタッププロフィール
-----------------------------------------------------------------*/
  /* 画像大サイズ
-----------------------------------------------------------------*/
  /* 画像2カラム
-----------------------------------------------------------------*/
  /* インフォメーションエリア
-----------------------------------------------------------------*/
  /* スタッフクレジット
-----------------------------------------------------------------*/
  /* キャプション
 -----------------------------------------------------------------*/
  /* youtube
-----------------------------------------------------------------*/
  position: relative;
  max-width: 800px; }
  .singlePickup_content .staffProfile {
    position: relative;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    overflow: hidden; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .staffProfile {
        margin: 50px 0 75px;
        padding: 50px 0; } }
    @media print, screen and (min-width: 768px) and (max-width: 1024px) {
      .singlePickup_content .staffProfile {
        margin: 80px -40px 120px;
        padding: 60px 80px; } }
    @media print, screen and (min-width: 1025px) {
      .singlePickup_content .staffProfile {
        margin: 80px -80px 120px;
        padding: 60px 80px; } }
    .singlePickup_content .is-noBorder.staffProfile {
      border-top: 0;
      border-bottom: 0;
      margin: 0; }
      @media print, screen and (max-width: 767px) {
        .singlePickup_content .is-noBorder.staffProfile {
          margin: 0 0 25px;
          padding: 50px 0; } }
      @media print, screen and (min-width: 768px) and (max-width: 1024px) {
        .singlePickup_content .is-noBorder.staffProfile {
          margin: 20px -40px 40px;
          padding: 60px 80px; } }
      @media print, screen and (min-width: 1025px) {
        .singlePickup_content .is-noBorder.staffProfile {
          margin: 20px -80px 40px;
          padding: 60px 80px; } }
  .singlePickup_content .staffProfile_image {
    position: absolute;
    margin: 0; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .staffProfile_image {
        top: 48px;
        left: 0;
        width: 120px; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content .staffProfile_image {
        top: 50%;
        left: 80px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 120px; } }
    .singlePickup_content .staffProfile_image img {
      width: 100%;
      height: auto;
      margin: 0; }
  .singlePickup_content .staffProfile_name {
    font-size: 13px;
    font-weight: 700; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .staffProfile_name {
        margin: 33px 0 2px;
        margin-left: 145px; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content .staffProfile_name {
        margin: 0 0 5px;
        margin-left: 160px;
        font-weight: 700; } }
  .singlePickup_content .staffProfile_position {
    font-size: 11px; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .staffProfile_position {
        margin: 0 0 53px;
        margin-left: 145px; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content .staffProfile_position {
        margin: 0 0 25px;
        margin-left: 160px; } }
  .singlePickup_content .staffProfile_text {
    margin: 0;
    font-size: 11px;
    line-height: 1.8; }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content .staffProfile_text {
        margin-left: 160px; } }
  .singlePickup_content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .singlePickup_content img.alignright {
    max-width: 100%; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content img.alignright {
        margin: 0; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content img.alignright {
        padding: 4px;
        margin: 0 0 2px 7px;
        display: inline; } }
  .singlePickup_content img.alignleft {
    max-width: 100%; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content img.alignleft {
        margin: 0; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content img.alignleft {
        padding: 4px;
        margin: 0 7px 2px 0;
        display: inline; } }
  .singlePickup_content .alignright {
    float: right; }
  .singlePickup_content .alignleft {
    float: left; }
  .singlePickup_content h2 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.62;
    letter-spacing: 0.12em; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content h2 {
        margin: 70px 0 50px; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content h2 {
        margin: 60px 0 30px; } }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content h2 + * {
        margin-top: 25px 0; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content h2 + * {
        margin-top: 30px; } }
  .singlePickup_content h3 {
    font-size: 18px;
    text-align: center;
    line-height: 2;
    letter-spacing: 0.12em;
    text-decoration: underline; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content h3 {
        margin: 70px 0 50px; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content h3 {
        margin: 60px 0 30px; } }
  .singlePickup_content h4 {
    font-size: 18px;
    font-weight: normal;
    text-align: center;
    line-height: 1.62;
    letter-spacing: 0.12em; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content h4 {
        margin: 70px 0 50px; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content h4 {
        margin: 60px 0 30px; } }
  .singlePickup_content h5 {
    position: relative;
    padding-bottom: 24px;
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.12em; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content h5 {
        margin: 50px 0; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content h5 {
        margin: 60px 0 30px; } }
    .singlePickup_content h5:after {
      content: "";
      display: inline-block;
      position: absolute;
      left: 50%;
      bottom: 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 40px;
      height: 3px;
      background-color: #000; }
  .singlePickup_content p {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .08em;
    margin: 24px auto; }
  .singlePickup_content a {
    color: #EC4110;
    text-decoration: underline; }
    .singlePickup_content a:hover {
      text-decoration: none; }
  .singlePickup_content img {
    max-width: 100%;
    height: auto; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content img {
        margin: 50px 0; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content img {
        margin: 64px 0; } }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content img + img {
        margin-top: -35px; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content img + img {
        margin-top: -40px; } }
  .singlePickup_content ul, .singlePickup_content ol {
    max-width: 720px;
    width: 100%; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content ul, .singlePickup_content ol {
        margin: 50px auto; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content ul, .singlePickup_content ol {
        margin: 64px auto; } }
    .singlePickup_content ul li, .singlePickup_content ol li {
      position: relative;
      margin-bottom: 7px;
      padding-left: 40px;
      font-size: 16px;
      letter-spacing: .08em;
      line-height: 1.57; }
      .singlePickup_content ul li:before, .singlePickup_content ol li:before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
  .singlePickup_content ul li:before {
    width: 16px;
    height: 1px;
    background-color: #000; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content ul li:before {
        top: 14px;
        left: 0; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content ul li:before {
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); } }
  .singlePickup_content ol li:nth-child(1):before {
    content: "01.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(2):before {
    content: "02.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(3):before {
    content: "03.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(4):before {
    content: "04.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(5):before {
    content: "05.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(6):before {
    content: "06.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(7):before {
    content: "07.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(8):before {
    content: "08.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(9):before {
    content: "09.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(10):before {
    content: "010.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(11):before {
    content: "011.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(12):before {
    content: "012.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(13):before {
    content: "013.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(14):before {
    content: "014.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(15):before {
    content: "015.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(16):before {
    content: "016.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(17):before {
    content: "017.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(18):before {
    content: "018.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(19):before {
    content: "019.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(20):before {
    content: "020.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(21):before {
    content: "021.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(22):before {
    content: "022.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(23):before {
    content: "023.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(24):before {
    content: "024.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(25):before {
    content: "025.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(26):before {
    content: "026.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(27):before {
    content: "027.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(28):before {
    content: "028.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(29):before {
    content: "029.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(30):before {
    content: "030.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(31):before {
    content: "031.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(32):before {
    content: "032.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(33):before {
    content: "033.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(34):before {
    content: "034.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(35):before {
    content: "035.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(36):before {
    content: "036.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(37):before {
    content: "037.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(38):before {
    content: "038.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(39):before {
    content: "039.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(40):before {
    content: "040.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(41):before {
    content: "041.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(42):before {
    content: "042.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(43):before {
    content: "043.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(44):before {
    content: "044.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(45):before {
    content: "045.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(46):before {
    content: "046.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(47):before {
    content: "047.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(48):before {
    content: "048.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(49):before {
    content: "049.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(50):before {
    content: "050.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(51):before {
    content: "051.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(52):before {
    content: "052.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(53):before {
    content: "053.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(54):before {
    content: "054.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(55):before {
    content: "055.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(56):before {
    content: "056.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(57):before {
    content: "057.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(58):before {
    content: "058.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(59):before {
    content: "059.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(60):before {
    content: "060.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(61):before {
    content: "061.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(62):before {
    content: "062.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(63):before {
    content: "063.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(64):before {
    content: "064.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(65):before {
    content: "065.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(66):before {
    content: "066.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(67):before {
    content: "067.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(68):before {
    content: "068.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(69):before {
    content: "069.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(70):before {
    content: "070.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(71):before {
    content: "071.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(72):before {
    content: "072.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(73):before {
    content: "073.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(74):before {
    content: "074.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(75):before {
    content: "075.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(76):before {
    content: "076.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(77):before {
    content: "077.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(78):before {
    content: "078.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(79):before {
    content: "079.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(80):before {
    content: "080.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(81):before {
    content: "081.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(82):before {
    content: "082.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(83):before {
    content: "083.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(84):before {
    content: "084.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(85):before {
    content: "085.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(86):before {
    content: "086.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(87):before {
    content: "087.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(88):before {
    content: "088.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(89):before {
    content: "089.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(90):before {
    content: "090.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(91):before {
    content: "091.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(92):before {
    content: "092.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(93):before {
    content: "093.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(94):before {
    content: "094.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(95):before {
    content: "095.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(96):before {
    content: "096.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(97):before {
    content: "097.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(98):before {
    content: "098.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content ol li:nth-child(99):before {
    content: "099.";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em; }
  .singlePickup_content hr {
    border-top: 8px solid #f1f1f1; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content hr {
        margin: 50px 0; } }
    @media print, screen and (min-width: 768px) and (max-width: 1024px) {
      .singlePickup_content hr {
        margin: 80px -40px; } }
    @media print, screen and (min-width: 1025px) {
      .singlePickup_content hr {
        margin: 80px -80px; } }
  .singlePickup_content blockquote {
    position: relative; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content blockquote {
        margin: 50px auto;
        padding: 46px 0; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content blockquote {
        max-width: 720px;
        margin: 50px auto 80px;
        padding: 35px 80px; } }
    .singlePickup_content blockquote::before, .singlePickup_content blockquote::after {
      content: '';
      display: inline-block;
      position: absolute;
      height: 1px;
      background-color: #bbb; }
      @media print, screen and (max-width: 767px) {
        .singlePickup_content blockquote::before, .singlePickup_content blockquote::after {
          width: calc( 100% - 50px); } }
      @media print, screen and (min-width: 768px) {
        .singlePickup_content blockquote::before, .singlePickup_content blockquote::after {
          width: calc( 100% - 73px); } }
    .singlePickup_content blockquote::before {
      top: 0;
      right: 0; }
    .singlePickup_content blockquote::after {
      left: 0;
      bottom: 0; }
    .singlePickup_content blockquote p {
      margin: 0;
      color: #bbb;
      font-weight: 700; }
      .singlePickup_content blockquote p::before, .singlePickup_content blockquote p::after {
        content: '';
        display: inline-block;
        position: absolute;
        font-size: 120px;
        line-height: 1;
        background-size: 35px 32px; }
        @media print, screen and (max-width: 767px) {
          .singlePickup_content blockquote p::before, .singlePickup_content blockquote p::after {
            width: 22px;
            height: 20px;
            background-size: 22px 20px; } }
        @media print, screen and (min-width: 768px) {
          .singlePickup_content blockquote p::before, .singlePickup_content blockquote p::after {
            width: 35px;
            height: 32px; } }
      .singlePickup_content blockquote p::before {
        top: 0;
        left: 0;
        background-image: url(../svg/quotation_before.svg); }
      .singlePickup_content blockquote p::after {
        right: 0;
        bottom: 0;
        background-image: url(../svg/quotation_after.svg); }
  .singlePickup_content .single_lede {
    max-width: 720px;
    margin: 0 auto;
    line-height: 2; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .single_lede {
        font-size: 13px; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content .single_lede {
        font-size: 14px; } }
  @media print, screen and (max-width: 767px) {
    .singlePickup_content .image_large {
      margin: 50px -25px; } }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .singlePickup_content .image_large {
      margin: 64px -40px; } }
  @media print, screen and (min-width: 1025px) {
    .singlePickup_content .image_large {
      margin: 64px -80px; } }
  @media print, screen and (max-width: 767px) {
    .singlePickup_content .image_large + .image_large {
      margin-top: -35px; } }
  @media print, screen and (min-width: 768px) {
    .singlePickup_content .image_large + .image_large {
      margin-top: -40px; } }
  .singlePickup_content .image_large p {
    max-width: 100%;
    margin: 0; }
  .singlePickup_content .image_large img {
    width: 100%;
    margin: 0; }
  .singlePickup_content .twoImages {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .twoImages {
        margin: 50px 0; } }
    @media print, screen and (min-width: 768px) and (max-width: 1024px) {
      .singlePickup_content .twoImages {
        margin: 64px 0; } }
    @media print, screen and (min-width: 1025px) {
      .singlePickup_content .twoImages {
        margin: 64px -80px; } }
    .singlePickup_content .twoImages .twoImages_node {
      width: 45.4%;
      margin: 0; }
      @media print, screen and (max-width: 767px) {
        .singlePickup_content .twoImages .twoImages_node + .twoImages_node {
          margin-left: 25px; } }
      @media print, screen and (min-width: 768px) and (max-width: 1024px) {
        .singlePickup_content .twoImages .twoImages_node + .twoImages_node {
          margin-left: 40px; } }
      @media print, screen and (min-width: 1025px) {
        .singlePickup_content .twoImages .twoImages_node + .twoImages_node {
          margin-left: 80px; } }
    .singlePickup_content .twoImages img {
      max-width: 100%;
      margin: 0; }
      @media print, screen and (max-width: 767px) {
        .singlePickup_content .twoImages img {
          width: 100%; } }
  .singlePickup_content .informationArea {
    background-color: #f1f1f1; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .informationArea {
        margin: 0 -25px;
        padding: 40px 25px; } }
    @media print, screen and (min-width: 768px) and (max-width: 1024px) {
      .singlePickup_content .informationArea {
        margin: 80px -40px;
        padding: 60px 80px; } }
    @media print, screen and (min-width: 1025px) {
      .singlePickup_content .informationArea {
        margin: 80px -80px;
        padding: 60px 80px; } }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .informationArea h2 {
        margin: 0 0 50px; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content .informationArea h2 {
        margin: 0 0 30px; } }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .informationArea h5 {
        margin: 0 0 42px; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content .informationArea h5 {
        margin: 0 0 60px; } }
    .singlePickup_content .informationArea p {
      margin: 0;
      line-height: 1.8;
      letter-spacing: .06em; }
      @media print, screen and (max-width: 767px) {
        .singlePickup_content .informationArea p {
          font-size: 11px; } }
      @media print, screen and (min-width: 768px) {
        .singlePickup_content .informationArea p {
          font-size: 12px; } }
  @media print, screen and (max-width: 767px) {
    .singlePickup_content .staffCredit {
      margin: 50px 0; } }
  @media print, screen and (min-width: 768px) {
    .singlePickup_content .staffCredit {
      margin: 75px 0; } }
  .singlePickup_content .staffCredit p {
    max-width: 720px;
    margin: 0 auto;
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 10px;
    line-height: 2;
    letter-spacing: 0.16em; }
  .singlePickup_content .caption {
    font-size: 11px; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .caption {
        margin: -30px 0 0; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content .caption {
        max-width: 720px;
        margin: -44px auto 58px; } }
    .singlePickup_content .caption p {
      margin: 0; }
    .singlePickup_content .caption a:hover {
      text-decoration: none; }
  .singlePickup_content .youtube_box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; }
    @media print, screen and (max-width: 767px) {
      .singlePickup_content .youtube_box {
        margin: 24px 0; } }
    @media print, screen and (min-width: 768px) {
      .singlePickup_content .youtube_box {
        margin: 24px 0; } }
    .singlePickup_content .youtube_box iframe {
      position: absolute;
      top: 0;
      right: 0;
      width: 100% !important;
      height: 100% !important; }
  @media print, screen and (max-width: 767px) {
    .singlePickup_content {
      margin: 50px auto 50px;
      padding: 0 25px 40px; } }
  @media print, screen and (min-width: 768px) {
    .singlePickup_content {
      margin: 60px auto 80px;
      padding: 0 40px 80px; } }
  .singlePickup_content:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #bbb; }
  .singlePickup_content > * {
    margin-top: 0; }
