@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, .singleHello_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, .singleHello_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; }

.c-singleHelloColumn_image {
  position: relative; }
  .c-singleHelloColumn_image img {
    width: 100%; }

.c-singleHelloColumn_image_modalIcon {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  background-image: url(../svg/icon_closs.svg);
  background-color: #000;
  background-size: 9px;
  background-position: center; }

@media print, screen and (max-width: 767px) {
  .c-singleHelloColumn_detail {
    padding: 22px 25px 20px 25px; } }

@media print, screen and (min-width: 768px) {
  .c-singleHelloColumn_detail {
    max-width: 720px;
    margin: 20px auto 0; } }

.c-singleHelloColumn_detail.is-modal {
  display: none; }

.c-singleHelloColumn_detail_caption {
  line-height: 1.8; }
  @media print, screen and (max-width: 767px) {
    .c-singleHelloColumn_detail_caption {
      font-size: 13px; } }
  @media print, screen and (min-width: 768px) {
    .c-singleHelloColumn_detail_caption {
      font-size: 14px; } }

.c-singleHelloColumn_itemDetail + .c-singleHelloColumn_itemDetail {
  margin-top: 12px; }

.c-singleHelloColumn_detail_caption + .c-singleHelloColumn_itemDetail {
  margin-top: 20px; }

.c-singleHelloColumn_itemDetail_link {
  width: 100%;
  transition: .3s opacity ease; }
  @media print, screen and (min-width: 1025px) {
    .c-singleHelloColumn_itemDetail_link:hover {
      opacity: .5; } }
  .c-singleHelloColumn_itemDetail_link.is-noLink {
    pointer-events: none; }

.mainItem:last-child {
  margin-bottom: 5px; }

.mainItem [class^="c-singleHelloColumn_itemDetail-"] {
  font-weight: 700; }

.soldout-link .c-singleHelloColumn_itemDetail_buyButton {
  display: none; }

.soldout {
  pointer-events: none; }
  .soldout .c-singleHelloColumn_itemDetail_buyButton {
    display: none; }

.c-singleHelloColumn_itemDetail_text {
  display: inline; }
  @media print, screen and (max-width: 767px) {
    .c-singleHelloColumn_itemDetail_text {
      width: 100%;
      margin-right: 6px;
      font-size: 11px; } }
  @media print, screen and (min-width: 768px) {
    .c-singleHelloColumn_itemDetail_text {
      margin-right: 8px;
      font-size: 12px; } }

.c-singleHelloColumn_itemDetail_buyButton {
  background-color: #000;
  color: #fff;
  display: inline-block;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 4px;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
  transition: .3s color ease; }
  @media print, screen and (max-width: 767px) {
    .c-singleHelloColumn_itemDetail_buyButton {
      padding: 2px 3px; } }
  @media print, screen and (min-width: 768px) {
    .c-singleHelloColumn_itemDetail_buyButton {
      padding: 2px 4px; } }
  @media print, screen and (min-width: 1025px) {
    .c-singleHelloColumn_itemDetail_link:hover .c-singleHelloColumn_itemDetail_buyButton {
      color: #AFAFAF; } }

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

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

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

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

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

.threecolumn .slick-dots, .singleHello_qa .slick-dots {
  display: inline-block;
  margin: 0; }
  .threecolumn .slick-dots li, .singleHello_qa .slick-dots li {
    margin: 0; }
    .threecolumn .slick-dots li button, .singleHello_qa .slick-dots li button {
      cursor: pointer;
      width: 22px;
      height: 22px; }
      .threecolumn .slick-dots li button:before, .singleHello_qa .slick-dots li button:before {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        border-radius: 50%;
        width: 6px;
        height: 6px;
        margin: 0;
        transition: .3s background-color ease; }
    .threecolumn .slick-dots li.slick-active button:before, .singleHello_qa .slick-dots li.slick-active button:before {
      background-color: #EC4110; }

.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; } }

.singleHello_qa .slick-prev, .singleHello_qa .slick-next {
  cursor: pointer;
  display: inline-block;
  width: 30px;
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1001;
  background-size: 8px 10px;
  background-repeat: no-repeat;
  background-position: center; }

.singleHello {
  width: 100%; }

.singleHello_visual {
  width: 100%;
  height: 100%; }
  @media print, screen and (max-width: 767px) {
    .singleHello_visual {
      margin: 0 auto 40px; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_visual {
      max-width: 1280px;
      margin: 0 auto 50px; } }
  .singleHello_visual img {
    width: 100%; }

.singleHello_head {
  width: 100%; }
  @media print, screen and (max-width: 767px) {
    .singleHello_head {
      padding: 0 25px; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_head {
      max-width: 720px;
      margin: 0 auto; } }

.singleHello_title {
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .05em; }
  @media print, screen and (max-width: 767px) {
    .singleHello_title {
      font-size: 28px; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_title {
      font-size: 40px; } }

.singleHello_subtitle {
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: .06em; }
  @media print, screen and (max-width: 767px) {
    .singleHello_subtitle {
      font-size: 18px; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_subtitle {
      font-size: 24px; } }
  @media print, screen and (max-width: 320px) {
    .singleHello_subtitle {
      font-size: 15px; } }

@media print, screen and (max-width: 767px) {
  .singleHello_date {
    margin: 14px 0 0; } }

@media print, screen and (min-width: 768px) {
  .singleHello_date {
    margin: 20px 0 0; } }

/* ---------------------------------------------------------------
フリーレイアウト
-----------------------------------------------------------------*/
.singleHello_free {
  width: 100%; }
  @media print, screen and (max-width: 767px) {
    .singleHello_free {
      margin: 50px auto;
      padding: 0 25px; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_free {
      max-width: 800px;
      margin: 48px auto 64px;
      padding: 0 40px; } }

.singleHello_wysiwyg {
  /*================================================================
*FILE					:_single-content.scss
*DESCRIPTION   :詳細ページパーツ カスタムCSS
*AUTHOR				:
*--------------------------------------------------------------
*(C)
=================================================================*/
  /*詳細ページパーツ component
-----------------------------------------------------------------*/
  /*詳細ページパーツ style
-----------------------------------------------------------------*/
  /* 詳細ページ本文
-----------------------------------------------------------------*/
  /* 画像の配置
-----------------------------------------------------------------*/
  /* リード文
-----------------------------------------------------------------*/
  /* スタッププロフィール
-----------------------------------------------------------------*/
  /* 画像大サイズ
-----------------------------------------------------------------*/
  /* 画像2カラム
-----------------------------------------------------------------*/
  /* インフォメーションエリア
-----------------------------------------------------------------*/
  /* スタッフクレジット
-----------------------------------------------------------------*/
  /* キャプション
 -----------------------------------------------------------------*/
  /* youtube
-----------------------------------------------------------------*/ }
  .singleHello_wysiwyg .staffProfile {
    position: relative;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    overflow: hidden; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg .staffProfile {
        margin: 50px 0 75px;
        padding: 50px 0; } }
    @media print, screen and (min-width: 768px) and (max-width: 1024px) {
      .singleHello_wysiwyg .staffProfile {
        margin: 80px -40px 120px;
        padding: 60px 80px; } }
    @media print, screen and (min-width: 1025px) {
      .singleHello_wysiwyg .staffProfile {
        margin: 80px -80px 120px;
        padding: 60px 80px; } }
    .singleHello_wysiwyg .is-noBorder.staffProfile {
      border-top: 0;
      border-bottom: 0;
      margin: 0; }
      @media print, screen and (max-width: 767px) {
        .singleHello_wysiwyg .is-noBorder.staffProfile {
          margin: 0 0 25px;
          padding: 50px 0; } }
      @media print, screen and (min-width: 768px) and (max-width: 1024px) {
        .singleHello_wysiwyg .is-noBorder.staffProfile {
          margin: 20px -40px 40px;
          padding: 60px 80px; } }
      @media print, screen and (min-width: 1025px) {
        .singleHello_wysiwyg .is-noBorder.staffProfile {
          margin: 20px -80px 40px;
          padding: 60px 80px; } }
  .singleHello_wysiwyg .staffProfile_image {
    position: absolute;
    margin: 0; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg .staffProfile_image {
        top: 48px;
        left: 0;
        width: 120px; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg .staffProfile_image {
        top: 50%;
        left: 80px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 120px; } }
    .singleHello_wysiwyg .staffProfile_image img {
      width: 100%;
      height: auto;
      margin: 0; }
  .singleHello_wysiwyg .staffProfile_name {
    font-size: 13px;
    font-weight: 700; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg .staffProfile_name {
        margin: 33px 0 2px;
        margin-left: 145px; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg .staffProfile_name {
        margin: 0 0 5px;
        margin-left: 160px;
        font-weight: 700; } }
  .singleHello_wysiwyg .staffProfile_position {
    font-size: 11px; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg .staffProfile_position {
        margin: 0 0 53px;
        margin-left: 145px; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg .staffProfile_position {
        margin: 0 0 25px;
        margin-left: 160px; } }
  .singleHello_wysiwyg .staffProfile_text {
    margin: 0;
    font-size: 11px;
    line-height: 1.8; }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg .staffProfile_text {
        margin-left: 160px; } }
  .singleHello_wysiwyg .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .singleHello_wysiwyg img.alignright {
    max-width: 100%; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg img.alignright {
        margin: 0; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg img.alignright {
        padding: 4px;
        margin: 0 0 2px 7px;
        display: inline; } }
  .singleHello_wysiwyg img.alignleft {
    max-width: 100%; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg img.alignleft {
        margin: 0; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg img.alignleft {
        padding: 4px;
        margin: 0 7px 2px 0;
        display: inline; } }
  .singleHello_wysiwyg .alignright {
    float: right; }
  .singleHello_wysiwyg .alignleft {
    float: left; }
  .singleHello_wysiwyg 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) {
      .singleHello_wysiwyg h2 {
        margin: 70px 0 50px; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg h2 {
        margin: 60px 0 30px; } }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg h2 + * {
        margin-top: 25px 0; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg h2 + * {
        margin-top: 30px; } }
  .singleHello_wysiwyg h3 {
    font-size: 18px;
    text-align: center;
    line-height: 2;
    letter-spacing: 0.12em;
    text-decoration: underline; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg h3 {
        margin: 70px 0 50px; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg h3 {
        margin: 60px 0 30px; } }
  .singleHello_wysiwyg 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) {
      .singleHello_wysiwyg h4 {
        margin: 70px 0 50px; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg h4 {
        margin: 60px 0 30px; } }
  .singleHello_wysiwyg 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) {
      .singleHello_wysiwyg h5 {
        margin: 50px 0; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg h5 {
        margin: 60px 0 30px; } }
    .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg p {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .08em;
    margin: 24px auto; }
  .singleHello_wysiwyg a {
    color: #EC4110;
    text-decoration: underline; }
    .singleHello_wysiwyg a:hover {
      text-decoration: none; }
  .singleHello_wysiwyg img {
    max-width: 100%;
    height: auto; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg img {
        margin: 50px 0; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg img {
        margin: 64px 0; } }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg img + img {
        margin-top: -35px; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg img + img {
        margin-top: -40px; } }
  .singleHello_wysiwyg ul, .singleHello_wysiwyg ol {
    max-width: 720px;
    width: 100%; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg ul, .singleHello_wysiwyg ol {
        margin: 50px auto; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg ul, .singleHello_wysiwyg ol {
        margin: 64px auto; } }
    .singleHello_wysiwyg ul li, .singleHello_wysiwyg ol li {
      position: relative;
      margin-bottom: 7px;
      padding-left: 40px;
      font-size: 16px;
      letter-spacing: .08em;
      line-height: 1.57; }
      .singleHello_wysiwyg ul li:before, .singleHello_wysiwyg ol li:before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
  .singleHello_wysiwyg ul li:before {
    width: 16px;
    height: 1px;
    background-color: #000; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg ul li:before {
        top: 14px;
        left: 0; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg ul li:before {
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); } }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg 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; }
  .singleHello_wysiwyg hr {
    border-top: 8px solid #f1f1f1; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg hr {
        margin: 50px 0; } }
    @media print, screen and (min-width: 768px) and (max-width: 1024px) {
      .singleHello_wysiwyg hr {
        margin: 80px -40px; } }
    @media print, screen and (min-width: 1025px) {
      .singleHello_wysiwyg hr {
        margin: 80px -80px; } }
  .singleHello_wysiwyg blockquote {
    position: relative; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg blockquote {
        margin: 50px auto;
        padding: 46px 0; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg blockquote {
        max-width: 720px;
        margin: 50px auto 80px;
        padding: 35px 80px; } }
    .singleHello_wysiwyg blockquote::before, .singleHello_wysiwyg blockquote::after {
      content: '';
      display: inline-block;
      position: absolute;
      height: 1px;
      background-color: #bbb; }
      @media print, screen and (max-width: 767px) {
        .singleHello_wysiwyg blockquote::before, .singleHello_wysiwyg blockquote::after {
          width: calc( 100% - 50px); } }
      @media print, screen and (min-width: 768px) {
        .singleHello_wysiwyg blockquote::before, .singleHello_wysiwyg blockquote::after {
          width: calc( 100% - 73px); } }
    .singleHello_wysiwyg blockquote::before {
      top: 0;
      right: 0; }
    .singleHello_wysiwyg blockquote::after {
      left: 0;
      bottom: 0; }
    .singleHello_wysiwyg blockquote p {
      margin: 0;
      color: #bbb;
      font-weight: 700; }
      .singleHello_wysiwyg blockquote p::before, .singleHello_wysiwyg 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) {
          .singleHello_wysiwyg blockquote p::before, .singleHello_wysiwyg blockquote p::after {
            width: 22px;
            height: 20px;
            background-size: 22px 20px; } }
        @media print, screen and (min-width: 768px) {
          .singleHello_wysiwyg blockquote p::before, .singleHello_wysiwyg blockquote p::after {
            width: 35px;
            height: 32px; } }
      .singleHello_wysiwyg blockquote p::before {
        top: 0;
        left: 0;
        background-image: url(../svg/quotation_before.svg); }
      .singleHello_wysiwyg blockquote p::after {
        right: 0;
        bottom: 0;
        background-image: url(../svg/quotation_after.svg); }
  .singleHello_wysiwyg .single_lede {
    max-width: 720px;
    margin: 0 auto;
    line-height: 2; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg .single_lede {
        font-size: 13px; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg .single_lede {
        font-size: 14px; } }
  @media print, screen and (max-width: 767px) {
    .singleHello_wysiwyg .image_large {
      margin: 50px -25px; } }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .singleHello_wysiwyg .image_large {
      margin: 64px -40px; } }
  @media print, screen and (min-width: 1025px) {
    .singleHello_wysiwyg .image_large {
      margin: 64px -80px; } }
  @media print, screen and (max-width: 767px) {
    .singleHello_wysiwyg .image_large + .image_large {
      margin-top: -35px; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_wysiwyg .image_large + .image_large {
      margin-top: -40px; } }
  .singleHello_wysiwyg .image_large p {
    max-width: 100%;
    margin: 0; }
  .singleHello_wysiwyg .image_large img {
    width: 100%;
    margin: 0; }
  .singleHello_wysiwyg .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) {
      .singleHello_wysiwyg .twoImages {
        margin: 50px 0; } }
    @media print, screen and (min-width: 768px) and (max-width: 1024px) {
      .singleHello_wysiwyg .twoImages {
        margin: 64px 0; } }
    @media print, screen and (min-width: 1025px) {
      .singleHello_wysiwyg .twoImages {
        margin: 64px -80px; } }
    .singleHello_wysiwyg .twoImages .twoImages_node {
      width: 45.4%;
      margin: 0; }
      @media print, screen and (max-width: 767px) {
        .singleHello_wysiwyg .twoImages .twoImages_node + .twoImages_node {
          margin-left: 25px; } }
      @media print, screen and (min-width: 768px) and (max-width: 1024px) {
        .singleHello_wysiwyg .twoImages .twoImages_node + .twoImages_node {
          margin-left: 40px; } }
      @media print, screen and (min-width: 1025px) {
        .singleHello_wysiwyg .twoImages .twoImages_node + .twoImages_node {
          margin-left: 80px; } }
    .singleHello_wysiwyg .twoImages img {
      max-width: 100%;
      margin: 0; }
      @media print, screen and (max-width: 767px) {
        .singleHello_wysiwyg .twoImages img {
          width: 100%; } }
  .singleHello_wysiwyg .informationArea {
    background-color: #f1f1f1; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg .informationArea {
        margin: 0 -25px;
        padding: 40px 25px; } }
    @media print, screen and (min-width: 768px) and (max-width: 1024px) {
      .singleHello_wysiwyg .informationArea {
        margin: 80px -40px;
        padding: 60px 80px; } }
    @media print, screen and (min-width: 1025px) {
      .singleHello_wysiwyg .informationArea {
        margin: 80px -80px;
        padding: 60px 80px; } }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg .informationArea h2 {
        margin: 0 0 50px; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg .informationArea h2 {
        margin: 0 0 30px; } }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg .informationArea h5 {
        margin: 0 0 42px; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg .informationArea h5 {
        margin: 0 0 60px; } }
    .singleHello_wysiwyg .informationArea p {
      margin: 0;
      line-height: 1.8;
      letter-spacing: .06em; }
      @media print, screen and (max-width: 767px) {
        .singleHello_wysiwyg .informationArea p {
          font-size: 11px; } }
      @media print, screen and (min-width: 768px) {
        .singleHello_wysiwyg .informationArea p {
          font-size: 12px; } }
  @media print, screen and (max-width: 767px) {
    .singleHello_wysiwyg .staffCredit {
      margin: 50px 0; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_wysiwyg .staffCredit {
      margin: 75px 0; } }
  .singleHello_wysiwyg .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; }
  .singleHello_wysiwyg .caption {
    font-size: 11px; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg .caption {
        margin: -30px 0 0; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg .caption {
        max-width: 720px;
        margin: -44px auto 58px; } }
    .singleHello_wysiwyg .caption p {
      margin: 0; }
    .singleHello_wysiwyg .caption a:hover {
      text-decoration: none; }
  .singleHello_wysiwyg .youtube_box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; }
    @media print, screen and (max-width: 767px) {
      .singleHello_wysiwyg .youtube_box {
        margin: 24px 0; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_wysiwyg .youtube_box {
        margin: 24px 0; } }
    .singleHello_wysiwyg .youtube_box iframe {
      position: absolute;
      top: 0;
      right: 0;
      width: 100% !important;
      height: 100% !important; }

/* ---------------------------------------------------------------
ギャラリー
-----------------------------------------------------------------*/
@media print, screen and (max-width: 767px) {
  .singleHello_gallery {
    margin: 50px 0; } }

@media print, screen and (min-width: 768px) {
  .singleHello_gallery {
    margin: 64px auto 80px; } }

.singleHello_gallery_inner {
  width: 100%;
  margin: 0 auto; }
  @media print, screen and (min-width: 768px) {
    .singleHello_gallery_inner {
      max-width: 960px;
      padding: 0 40px; } }

.layout_gallery_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; }

.layout_gallery_list_node {
  width: 100%; }
  @media print, screen and (min-width: 768px) {
    .layout_gallery_list_node {
      margin-bottom: 80px; } }
  @media print, screen and (min-width: 768px) {
    .layout_gallery_list_node:last-child {
      margin-right: 0;
      margin-bottom: 0; } }

.layout_gallery_textList {
  display: block; }

.layout_gallery_textSlideList {
  display: none; }

[class^="c-singleHelloColumn_itemDetail-"] {
  display: inline-block; }

@media print, screen and (min-width: 768px) {
  .onecolumn1 .c-singleHelloColumn_itemDetail_link,
  .onecolumn3 .c-singleHelloColumn_itemDetail_link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto; } }

.onecolumn1 .c-singleHelloColumn_itemDetail_buyButton,
.onecolumn3 .c-singleHelloColumn_itemDetail_buyButton {
  margin-top: 1px; }

@media print, screen and (max-width: 767px) {
  .onecolumn1 .layout_gallery_list_node {
    margin-bottom: 25px; }
    .onecolumn1 .layout_gallery_list_node:last-child {
      margin-bottom: 0; } }

@media print, screen and (min-width: 768px) {
  .onecolumn2 .layout_gallery_list_node {
    width: 100%; } }

@media print, screen and (max-width: 767px) {
  .onecolumn2 .layout_gallery_list_node {
    margin-bottom: 25px; }
    .onecolumn2 .layout_gallery_list_node:last-child {
      margin-bottom: 0; } }

@media print, screen and (min-width: 768px) {
  .onecolumn2 .c-singleHelloColumn_image {
    width: 54.54%;
    margin: 0 auto; } }

.onecolumn3 .layout_gallery_list_node {
  overflow: hidden; }

@media print, screen and (max-width: 767px) {
  .onecolumn3 {
    margin-bottom: 25px; }
    .onecolumn3:last-child {
      margin-bottom: 0; } }

@media print, screen and (max-width: 767px) {
  .twocolumn .layout_gallery_list_node {
    width: 100%;
    margin-bottom: 50px; } }

@media print, screen and (min-width: 768px) {
  .twocolumn .layout_gallery_list_node {
    width: calc( (100% - 9%) / 2);
    margin-right: 9%; } }

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

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

@media print, screen and (max-width: 767px) {
  .twocolumn .layout_gallery_list_node:last-child {
    margin-bottom: 0; } }

@media print, screen and (max-width: 767px) {
  .twocolumn.is-modal {
    padding: 0 25px; } }

@media print, screen and (max-width: 767px) {
  .twocolumn.is-modal .layout_gallery_list_node {
    width: calc( (100% - 25px) / 2);
    margin-right: 25px;
    margin-bottom: 0; } }

.twocolumn.is-modal .layout_gallery_list_node:nth-of-type(2n) {
  margin-right: 0; }

@media print, screen and (max-width: 767px) {
  .threecolumn .layout_gallery_list {
    position: relative;
    padding-bottom: 98.4%;
    background-image: url(../images/common/loader.gif);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center; } }

@media print, screen and (max-width: 767px) {
  .threecolumn .layout_gallery_list .layout_gallery_list_node {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 64.3%; } }

@media print, screen and (max-width: 767px) {
  .threecolumn .layout_gallery_list .layout_gallery_list_node:nth-child(2) {
    opacity: 0; } }

@media print, screen and (max-width: 767px) {
  .threecolumn .layout_gallery_list .layout_gallery_list_node:nth-child(3) {
    opacity: 0; } }

@media print, screen and (max-width: 767px) {
  .threecolumn .layout_gallery_list .layout_gallery_list_node:nth-child(4) {
    opacity: 0; } }

@media print, screen and (max-width: 767px) {
  .threecolumn .layout_gallery_list .layout_gallery_list_node:nth-child(5) {
    opacity: 0; } }

@media print, screen and (max-width: 767px) {
  .threecolumn .layout_gallery_list .layout_gallery_list_node:nth-child(6) {
    opacity: 0; } }

.threecolumn .layout_gallery_list.slick-initialized {
  padding-bottom: 0;
  background: none; }
  @media print, screen and (max-width: 767px) {
    .threecolumn .layout_gallery_list.slick-initialized .layout_gallery_list_node {
      position: relative;
      top: auto;
      left: auto;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
      width: auto; } }
  @media print, screen and (max-width: 767px) {
    .threecolumn .layout_gallery_list.slick-initialized .layout_gallery_list_node:nth-child(2) {
      opacity: 1; } }
  @media print, screen and (max-width: 767px) {
    .threecolumn .layout_gallery_list.slick-initialized .layout_gallery_list_node:nth-child(3) {
      opacity: 1; } }
  @media print, screen and (max-width: 767px) {
    .threecolumn .layout_gallery_list.slick-initialized .layout_gallery_list_node:nth-child(4) {
      opacity: 1; } }
  @media print, screen and (max-width: 767px) {
    .threecolumn .layout_gallery_list.slick-initialized .layout_gallery_list_node:nth-child(5) {
      opacity: 1; } }
  @media print, screen and (max-width: 767px) {
    .threecolumn .layout_gallery_list.slick-initialized .layout_gallery_list_node:nth-child(6) {
      opacity: 1; } }

@media print, screen and (max-width: 767px) {
  .threecolumn.is-modal .layout_gallery_textList {
    display: block; } }

@media print, screen and (max-width: 767px) {
  .threecolumn.is-modal .layout_gallery_textSlideList {
    display: none; } }

@media print, screen and (max-width: 767px) {
  .threecolumn .layout_gallery_list_node {
    margin: 0 7px; } }

@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .threecolumn .layout_gallery_list_node {
    width: calc( (100% - 13%) / 3);
    margin-right: 6.5%; } }

@media print, screen and (min-width: 1025px) {
  .threecolumn .layout_gallery_list_node {
    width: calc( (100% - 160px) / 3);
    margin-right: 9%; } }

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

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

.threecolumn .c-singleHelloColumn_image_modalIcon {
  display: none; }

@media print, screen and (max-width: 767px) {
  .threecolumn .layout_gallery_textList {
    display: none; } }

@media print, screen and (max-width: 767px) {
  .threecolumn .layout_gallery_textSlideList {
    display: block; } }

.threecolumn .slick-dots {
  margin-top: 10px; }
  .threecolumn .slick-dots li button:before {
    background-color: #bbb; }

.mixcolumn .layout_gallery_list_imageWrap {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  @media print, screen and (max-width: 767px) {
    .mixcolumn .layout_gallery_list_imageWrap {
      padding: 0 25px; } }
  @media print, screen and (max-width: 767px) {
    .mixcolumn .layout_gallery_list_imageWrap .c-singleHelloColumn_image {
      width: calc( (100% - 25px) / 2);
      margin-right: 25px;
      margin-bottom: 0; } }
  @media print, screen and (min-width: 768px) {
    .mixcolumn .layout_gallery_list_imageWrap .c-singleHelloColumn_image {
      width: calc( (100% - 9%) / 2);
      margin-right: 9%; } }
  .mixcolumn .layout_gallery_list_imageWrap .c-singleHelloColumn_image:nth-of-type(2n) {
    margin-right: 0; }
  @media print, screen and (min-width: 768px) {
    .mixcolumn .layout_gallery_list_imageWrap .c-singleHelloColumn_image:nth-last-child(-n + 2) {
      margin-bottom: 0; } }
  @media print, screen and (max-width: 767px) {
    .mixcolumn .layout_gallery_list_imageWrap .c-singleHelloColumn_image:last-child {
      margin-bottom: 0; } }

[data-column-class] {
  cursor: pointer;
  position: relative; }
  [data-column-class]:before, [data-column-class]:after {
    content: '';
    display: inline-block;
    position: absolute;
    opacity: 0;
    transition: .3s opacity ease, .3s transform ease; }
  [data-column-class]:before {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0);
    -ms-transform: translate(-50%, -50%) rotate(0);
    transform: translate(-50%, -50%) rotate(0);
    width: 50px;
    height: 50px;
    background-image: url(../svg/icon_closs.svg);
    background-size: 50px;
    z-index: 20; }
  [data-column-class]:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 10; }
  @media print, screen and (min-width: 1025px) {
    [data-column-class]:hover:before {
      -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
      transform: translate(-50%, -50%) rotate(90deg);
      opacity: 1; }
    [data-column-class]:hover:after {
      opacity: .5; } }

/* ---------------------------------------------------------------
スタイル
-----------------------------------------------------------------*/
@media print, screen and (max-width: 767px) {
  .singleHello_style {
    margin: 50px 0; } }

@media print, screen and (min-width: 768px) {
  .singleHello_style {
    margin: 80px 0; } }

.singleHello_style_inner {
  width: 100%;
  margin: 0 auto; }
  @media print, screen and (max-width: 767px) {
    .singleHello_style_inner {
      margin: 50px 0; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_style_inner {
      max-width: 960px;
      padding: 0 40px; } }

.singleHello_style_title {
  position: absolute;
  top: 50%;
  left: 0;
  right: auto;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg); }
  .singleHello_style_list_node:nth-child(2n) .singleHello_style_title {
    left: auto;
    right: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }

.singleHello_style_title-name {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-4.5vw);
  -ms-transform: translateX(-4.5vw);
  transform: translateX(-4.5vw);
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: .5em; }
  @media print, screen and (max-width: 767px) {
    .singleHello_style_title-name {
      padding: 0 25px;
      font-size: 12px; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_style_title-name {
      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-bottom: 80px; } }

@media print, screen and (max-width: 767px) {
  .singleHello_style_list_node {
    margin-bottom: 50px;
    padding: 0 25px; } }

@media print, screen and (min-width: 768px) {
  .singleHello_style_list_node {
    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-bottom: 80px; } }

.singleHello_style_list_node:last-child {
  margin-bottom: 0; }
  @media print, screen and (min-width: 768px) {
    .singleHello_style_list_node:last-child {
      margin-right: 0; } }

.singleHello_style_list_node:nth-child(2n) {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.singleHello_style_image {
  position: relative; }
  @media print, screen and (max-width: 767px) {
    .singleHello_style_image {
      padding: 0 0 0 40px; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_style_image {
      max-width: 440px;
      padding: 0 40px; } }
  @media print, screen and (max-width: 767px) {
    .singleHello_style_image.noTitle {
      padding: 0; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_style_image.noTitle {
      padding: 0 40px 0 0; } }
  @media print, screen and (max-width: 767px) {
    .singleHello_style_list_node:nth-child(2n) .singleHello_style_image {
      padding: 0 40px 0 0; } }
  @media print, screen and (max-width: 767px) {
    .singleHello_style_list_node:nth-child(2n) .singleHello_style_image.noTitle {
      padding: 0; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_style_list_node:nth-child(2n) .singleHello_style_image.noTitle {
      padding: 0 0 0 40px; } }
  .singleHello_style_image img {
    width: 100%; }

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

@media print, screen and (min-width: 768px) {
  .singleHello_style_detail {
    max-width: 400px; } }

/* ---------------------------------------------------------------
トピックス（スタッフ購入 / Q&A / 着こなしサンプル）
-----------------------------------------------------------------*/
.singleHello_topics {
  background-color: #F1F1F1; }
  @media print, screen and (max-width: 767px) {
    .singleHello_topics {
      margin: 50px auto;
      padding: 25px 0; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_topics {
      margin: 80px auto;
      padding: 40px; } }

.singleHello_topics_inner {
  width: 100%;
  margin: 0 auto;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  background-color: #fff; }
  @media print, screen and (max-width: 767px) {
    .singleHello_topics_inner {
      padding: 40px 0 0; } }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .singleHello_topics_inner {
      max-width: 1200px;
      padding: 75px 40px 15px;
      border: 2px solid #000; } }
  @media print, screen and (min-width: 1025px) {
    .singleHello_topics_inner {
      max-width: 1200px;
      padding: 75px 155px 15px;
      border: 2px solid #000; } }

@media print, screen and (max-width: 767px) {
  .singleHello_topics_head {
    margin-bottom: 50px;
    padding: 0 25px; } }

@media print, screen and (min-width: 768px) {
  .singleHello_topics_head {
    margin-bottom: 60px; } }

@media print, screen and (min-width: 768px) {
  .singleHello_topics_head_inner {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; } }

.singleHello_topics_title {
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .singleHello_topics_title {
      margin-right: 136px; } }
  @media print, screen and (min-width: 1025px) {
    .singleHello_topics_title {
      margin-right: 160px; } }

.singleHello_topics_title-small {
  font-size: 12px;
  letter-spacing: .16em;
  line-height: 1.7; }

.singleHello_topics_title-big {
  display: block;
  margin-top: 3px;
  font-weight: bold;
  line-height: 1; }
  @media print, screen and (max-width: 767px) {
    .singleHello_topics_title-big {
      font-size: 32px;
      margin-bottom: 50px; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_topics_title-big {
      font-size: 40px; } }

.singleHello_topics_subtitle {
  margin-top: -14px;
  font-size: 20px;
  font-weight: bold; }
  @media print, screen and (max-width: 767px) {
    .singleHello_topics_subtitle {
      margin-bottom: 20px;
      text-align: center; } }
  .singleHello_topics_subtitle .underLine {
    display: inline;
    box-shadow: inset 0 -2px #000; }
    @media print, screen and (max-width: 767px) {
      .singleHello_topics_subtitle .underLine {
        padding-bottom: 8px;
        line-height: 2; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_topics_subtitle .underLine {
        padding-bottom: 20px;
        line-height: 2.8; } }

.singleHello_topics_lede {
  padding-top: 22px;
  line-height: 1.8; }
  @media print, screen and (max-width: 767px) {
    .singleHello_topics_lede {
      font-size: 12px; } }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .singleHello_topics_lede {
      font-size: 13px;
      margin-top: 25px; } }
  @media print, screen and (min-width: 1025px) {
    .singleHello_topics_lede {
      font-size: 13px; } }

.singleHello_topics_detail {
  max-width: 540px; }

.singleHello_topics .staffProfile {
  border-bottom: none; }
  @media print, screen and (max-width: 767px) {
    .singleHello_topics .staffProfile {
      margin: 50px 25px 0;
      padding: 50px 0; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_topics .staffProfile {
      margin: 64px 0 0;
      padding: 60px 80px; } }

/* スタッフ購入
-----------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .bought_list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; } }

@media print, screen and (max-width: 767px) {
  .bought_list {
    position: relative;
    padding-bottom: 90.4%; } }

@media print, screen and (max-width: 767px) {
  .bought_list .bought_list_node {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 64.3%; } }

@media print, screen and (max-width: 767px) {
  .bought_list .bought_list_node:nth-child(2) {
    opacity: 0; } }

@media print, screen and (max-width: 767px) {
  .bought_list .bought_list_node:nth-child(3) {
    opacity: 0; } }

.bought_list.slick-initialized {
  padding-bottom: 0; }
  @media print, screen and (max-width: 767px) {
    .bought_list.slick-initialized .bought_list_node {
      position: relative;
      top: auto;
      left: auto;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
      width: auto;
      background: none; } }
  @media print, screen and (max-width: 767px) {
    .bought_list.slick-initialized .bought_list_node:nth-child(2) {
      opacity: 1; } }
  @media print, screen and (max-width: 767px) {
    .bought_list.slick-initialized .bought_list_node:nth-child(3) {
      opacity: 1; } }

@media print, screen and (max-width: 767px) {
  .bought_list_node {
    width: 100%;
    margin: 0 7px;
    padding-top: 30px; } }

@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .bought_list_node {
    width: calc( (100% - 80px) / 3);
    padding-top: 30px; } }

@media print, screen and (min-width: 1025px) {
  .bought_list_node {
    width: calc( (100% - 80px) / 3);
    padding-top: 20px; } }

@media print, screen and (min-width: 768px) {
  .bought_list_node + .bought_list_node {
    margin-left: 9%; } }

.bought_list_number {
  position: absolute;
  font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1; }
  @media print, screen and (max-width: 1024px) {
    .bought_list_number {
      top: -30px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.3em; } }
  @media print, screen and (min-width: 1025px) {
    .bought_list_number {
      right: 0;
      bottom: -10px;
      font-size: 40px; } }

.bought_list_image {
  cursor: pointer;
  position: relative;
  margin-bottom: 30px;
  padding: 0 20px;
  opacity: 1;
  transition: opacity .3s ease; }
  @media print, screen and (max-width: 767px) {
    .bought_list_image {
      background-image: url(../images/common/loader.gif);
      background-size: 40px;
      background-repeat: no-repeat;
      background-position: center; } }
  @media print, screen and (min-width: 1025px) {
    .bought_list_image:hover {
      opacity: .5; } }
  @media print, screen and (min-width: 1025px) {
    .bought_list_image:before {
      content: 'ITEM';
      display: inline-block;
      position: absolute;
      top: 0;
      left: -20px;
      -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg);
      font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.3em; } }
  .bought_list_image img {
    width: 100%; }
  .bought_list_image .c-singleHelloColumn_image_modalIcon {
    left: 50%;
    bottom: -15px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1; }

.bought_list_imageInner {
  position: relative;
  display: block;
  border-radius: 50%;
  overflow: hidden; }
  .bought_list_imageInner:before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%; }
  .bought_list_imageInner img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; }

.bought_modal {
  display: none; }

.bought_list_node .c-singleHelloColumn_itemDetail_link {
  display: block;
  text-align: center; }

.bought_list_node .c-singleHelloColumn_itemDetail_text {
  margin-right: 0;
  margin-bottom: 6px; }

/* Q&A
-----------------------------------------------------------------*/
@media print, screen and (max-width: 767px) {
  .singleHello_qa {
    padding: 0 25px; } }

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

.qa_image {
  position: relative;
  overflow: hidden; }
  @media print, screen and (max-width: 767px) {
    .qa_image {
      padding: 0 20px; } }
  @media print, screen and (min-width: 768px) {
    .qa_image {
      width: 49%;
      padding: 0 40px; } }
  .qa_image img {
    width: 100%; }

@media print, screen and (min-width: 768px) {
  .qa_detail {
    max-width: 435px;
    width: 50%;
    padding: 0 40px; } }

.qa_detail_question {
  position: relative;
  margin: 10px 0 24px;
  font-size: 11px;
  line-height: 1.8; }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .qa_detail_question {
      margin-bottom: 12px; } }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .qa_detail_question {
      padding-left: 18%; } }
  @media print, screen and (min-width: 1025px) {
    .qa_detail_question {
      padding-left: 60px; } }
  .qa_detail_question:before {
    content: 'Q.';
    display: block;
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    color: #999; }
    @media print, screen and (max-width: 767px) {
      .qa_detail_question:before {
        font-size: 32px; } }
    @media print, screen and (min-width: 768px) and (max-width: 1024px) {
      .qa_detail_question:before {
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 28px; } }
    @media print, screen and (min-width: 1025px) {
      .qa_detail_question:before {
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 32px; } }

.qa_detail_answer {
  position: relative;
  font-weight: 700;
  line-height: 1.6; }
  @media print, screen and (max-width: 767px) {
    .qa_detail_answer {
      margin-bottom: 38px;
      font-size: 16px; } }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .qa_detail_answer {
      margin-bottom: 20px;
      padding-left: 18%;
      font-size: 13px; } }
  @media print, screen and (min-width: 1025px) {
    .qa_detail_answer {
      margin-bottom: 32px;
      padding-left: 60px;
      font-size: 16px; } }
  .qa_detail_answer:before {
    content: 'A.';
    display: block;
    font-family: "Red Hat Display", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; }
    @media print, screen and (max-width: 767px) {
      .qa_detail_answer:before {
        font-size: 36px; } }
    @media print, screen and (min-width: 768px) and (max-width: 1024px) {
      .qa_detail_answer:before {
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 34px; } }
    @media print, screen and (min-width: 1025px) {
      .qa_detail_answer:before {
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 40px; } }

.qa_detail_caption {
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.8; }

.singleHello_qa {
  position: relative; }
  .singleHello_qa .slick-dots {
    margin-top: 10px; }
    .singleHello_qa .slick-dots li button:before {
      background-color: #bbb; }
  .singleHello_qa .slick-prev {
    left: -10px;
    background-image: url(../svg/arrow_left_blk.svg); }
  .singleHello_qa .slick-next {
    right: -10px;
    background-image: url(../svg/arrow_right_blk.svg); }

/* 着こなしサンプル
-----------------------------------------------------------------*/
.coordinate_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; }
  @media print, screen and (max-width: 767px) {
    .coordinate_list {
      padding: 0 20px 50px; } }
  @media print, screen and (min-width: 768px) {
    .coordinate_list {
      padding-bottom: 65px; } }

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

@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .coordinate_list_node {
    width: calc( (100% - 90px) / 4);
    margin-right: 3.5%;
    margin-bottom: 3.5%; } }

@media print, screen and (min-width: 1025px) {
  .coordinate_list_node {
    width: calc( (100% - 120px) / 4);
    margin-right: 4.5%;
    margin-bottom: 4.5%; } }

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

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

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

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

.coordinate_list_image {
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  opacity: 1;
  transition: .3s opacity ease; }
  @media print, screen and (min-width: 1025px) {
    .coordinate_list_link:hover .coordinate_list_image {
      opacity: .5; } }
  .coordinate_list_image:before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 116%; }
  .coordinate_list_image img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; }

.coordinate_list_staffImage {
  display: inline-block;
  position: relative;
  width: 30px;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: middle; }
  @media print, screen and (max-width: 767px) {
    .coordinate_list_staffImage {
      margin: 0 12px 5px 0; } }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .coordinate_list_staffImage {
      margin: 0 5px 5px 0; } }
  @media print, screen and (min-width: 1025px) {
    .coordinate_list_staffImage {
      margin: 0 12px 5px 0; } }
  .coordinate_list_staffImage:before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%; }
  .coordinate_list_staffImage img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; }

.coordinate_list_staffName {
  display: inline-block; }
  @media print, screen and (max-width: 767px) {
    .coordinate_list_staffName {
      font-size: 14px; } }
  @media print, screen and (min-width: 768px) and (max-width: 1024px) {
    .coordinate_list_staffName {
      font-size: 11px; } }
  @media print, screen and (min-width: 1025px) {
    .coordinate_list_staffName {
      font-size: 14px; } }

@media print, screen and (max-width: 767px) {
  .coordinate_list_staffLabel {
    font-size: 11px; } }

@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .coordinate_list_staffLabel {
    font-size: 10px; } }

@media print, screen and (min-width: 1025px) {
  .coordinate_list_staffLabel {
    font-size: 11px; } }

/* モーダル
-----------------------------------------------------------------*/
.singleHello_modal {
  display: none;
  position: fixed;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  z-index: 10001; }
  @media print, screen and (max-width: 767px) {
    .singleHello_modal {
      padding-bottom: 100px; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_modal {
      padding: 40px 40px; } }
  @media print, screen and (max-width: 767px) {
    .singleHello_modal.threecolumn .layout_gallery_textList {
      display: block; } }

.singleHello_modal_background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10; }

.singleHello_modal_inner {
  position: relative; }
  @media print, screen and (max-width: 767px) {
    .singleHello_modal_inner {
      padding-bottom: 80px; } }
  @media print, screen and (min-width: 768px) {
    .singleHello_modal_inner {
      max-width: 880px;
      margin: 0 auto;
      padding: 60px 0 80px; } }

.singleHello_modal_content {
  position: relative;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  z-index: 20; }
  .singleHello_modal_content .c-singleHelloColumn_image {
    pointer-events: none;
    cursor: unset; }
    @media print, screen and (min-width: 768px) {
      .singleHello_modal_content .c-singleHelloColumn_image .c-singleHelloColumn_image_cover {
        display: block;
        width: 100%;
        height: 0;
        padding-bottom: 62.5%;
        background-image: url(../images/common/loader.gif);
        background-size: 40px;
        background-repeat: no-repeat;
        background-position: center; } }
    @media print, screen and (max-width: 767px) {
      .singleHello_modal_content .c-singleHelloColumn_image img {
        width: 100%; } }
    @media print, screen and (min-width: 768px) {
      .singleHello_modal_content .c-singleHelloColumn_image img {
        max-width: 100%;
        max-height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto; } }
  .singleHello_modal_content .c-singleHelloColumn_detail.is-modal {
    display: block; }
  .singleHello_modal_content .c-singleHelloColumn_image_modalIcon {
    display: none; }
  .singleHello_modal_content .bought_list_image {
    pointer-events: none;
    cursor: unset;
    position: relative; }
    .singleHello_modal_content .bought_list_image:before, .singleHello_modal_content .bought_list_image:after {
      content: none; }

.singleHello_modal_close {
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url(../svg/icon_close.svg);
  background-size: 20px;
  background-position: center;
  z-index: 20; }
  @media print, screen and (max-width: 767px) {
    .singleHello_modal_close {
      left: 50%;
      bottom: 0;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); } }
  @media print, screen and (min-width: 768px) {
    .singleHello_modal_close {
      top: 0;
      right: 0; } }

@media print, screen and (min-width: 768px) {
  .onecolumn2 .singleHello_modal_content,
  .twocolumn .singleHello_modal_content,
  .threecolumn .singleHello_modal_content,
  .mixcolumn .singleHello_modal_content,
  .vertical .singleHello_modal_content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; } }

@media print, screen and (min-width: 768px) {
  .onecolumn2 .singleHello_modal_content .c-singleHelloColumn_image,
  .twocolumn .singleHello_modal_content .c-singleHelloColumn_image,
  .threecolumn .singleHello_modal_content .c-singleHelloColumn_image,
  .mixcolumn .singleHello_modal_content .c-singleHelloColumn_image,
  .vertical .singleHello_modal_content .c-singleHelloColumn_image {
    width: 41%;
    margin-right: 75px; } }

@media print, screen and (min-width: 768px) {
  .onecolumn2 .singleHello_modal_content .c-singleHelloColumn_image_cover,
  .twocolumn .singleHello_modal_content .c-singleHelloColumn_image_cover,
  .threecolumn .singleHello_modal_content .c-singleHelloColumn_image_cover,
  .mixcolumn .singleHello_modal_content .c-singleHelloColumn_image_cover,
  .vertical .singleHello_modal_content .c-singleHelloColumn_image_cover {
    padding-bottom: 160%; } }

@media print, screen and (min-width: 768px) {
  .onecolumn2 .singleHello_modal_content .c-singleHelloColumn_detail,
  .twocolumn .singleHello_modal_content .c-singleHelloColumn_detail,
  .threecolumn .singleHello_modal_content .c-singleHelloColumn_detail,
  .mixcolumn .singleHello_modal_content .c-singleHelloColumn_detail,
  .vertical .singleHello_modal_content .c-singleHelloColumn_detail {
    max-width: 400px; } }

@media print, screen and (min-width: 768px) {
  .vertical .singleHello_modal_content .c-singleHelloColumn_image_cover {
    padding-bottom: 140%; } }
