/*
 * Below are the styles developed by WEEWUNGWUNG.
 *
 * version 1.0
 /
/* ==========================================================================
   Mixin    
============================================================================= */
/* ==========================================================================
   Variables	
============================================================================= */
/* ==========================================================================
   Base styles	
============================================================================= */
@import url(fonts.css);
body, html {
  -webkit-font-smoothing: antialiased;
  font-family: Noto Serif,PT Serif,"source-han-serif-tc", 'HiraMinProN-W3', 'PMingLiU', Songti TC, serif;
  color: #2E2014;
  max-width: 100%;
  overflow-x: hidden;
  font-size: 16px; }

.vertical-text {
  -webkit-writing-mode: vertical-rl;
  /* for browsers of webkit engine */
  -ms-writing-mode: vertical-rl;
  writing-mode: tb-rl;
  /* for ie old*/
  line-height: 1.68; }
  .vertical-text.align-center {
    margin-left: auto;
    margin-right: auto; }

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 34px;
  font-weight: 500; }

h3 {
  font-size: 24px; }

h4 {
  font-size: 18px; }

h5 {
  font-size: 16px; }

h6 {
  font-size: 16px; }
  h6.small {
    font-size: 16px; }

p {
  line-height: 1.68;
  text-align: justify; }

body.fb_reposition {
  overflow: auto !important; }

.btn-action {
  font-size: 18px;
  border-bottom: 1px solid #2E2014;
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 32px; }
  .btn-action:hover {
    text-decoration: none; }
  .btn-action.download {
    margin-top: 18px; }
  .btn-action.download::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 13px;
    background: url("../images/icon-download.svg") no-repeat center center;
    background-size: contain;
    margin-right: 5px; }

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #2E2014; }

::-moz-placeholder {
  /* Firefox 19+ */
  color: #2E2014; }

:-ms-input-placeholder {
  /* IE 10+ */
  color: #2E2014; }

:-moz-placeholder {
  /* Firefox 18- */
  color: #2E2014; }

#search-panel {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  background-color: rgba(247, 247, 247, 0.95);
  top: -100vh;
  -webkit-transition: top 0.4s ease-in-out 0s;
  -moz-transition: top 0.4s ease-in-out 0s;
  -ms-transition: top 0.4s ease-in-out 0s;
  -o-transition: top 0.4s ease-in-out 0s;
  transition: top 0.4s ease-in-out 0s; }
  #search-panel .btn-close {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 28px;
    height: 28px;
    background: url("../images/icon-close.svg") no-repeat left top;
    background-size: contain;
    position: absolute;
    cursor: pointer;
    z-index: 10; }
  #search-panel .input-wrapper {
    position: relative;
    text-align: center;
    top: calc(50vh - 50.4px); }
    #search-panel .input-wrapper:before {
      content: "";
      display: inline-block;
      width: 18px;
      height: 57.12px;
      background: url("../images/icon-search.svg") no-repeat center center;
      background-size: contain;
      vertical-align: middle;
      margin-right: 15px; }
    #search-panel .input-wrapper input[name="s"] {
      font-size: 18px;
      height: 30.24px;
      width: 70vw;
      -webkit-appearance: none;
      -moz-appearance: none;
      border: none;
      background: none;
      border-bottom: 1px solid #2E2014;
      padding: 0 5px;
      display: inline-block;
      vertical-align: middle; }
      #search-panel .input-wrapper input[name="s"]:focus {
        outline: none; }

/* ==========================================================================
	Mobile styles
============================================================================= */
/* ==========================================================================
	Navigation styles
============================================================================= */
#main-nav {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 1000;
  padding: 0 16px;
  background-color: #FFFFFF;
  left: -100%;
  top: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s; }
  #main-nav .nav-border {
    position: fixed;
    width: 2px;
    height: 0vh;
    top: 0;
    left: 0;
    -webkit-transition: height 0.4s ease-in-out 0.4s;
    -moz-transition: height 0.4s ease-in-out 0.4s;
    -ms-transition: height 0.4s ease-in-out 0.4s;
    -o-transition: height 0.4s ease-in-out 0.4s;
    transition: height 0.4s ease-in-out 0.4s; }
  #main-nav.open-nav {
    left: 0; }
  #main-nav .btn-close {
    width: 28px;
    height: 28px;
    background: url("../images/icon-close.svg") no-repeat left top;
    background-size: contain;
    position: absolute;
    left: 15px;
    top: 15px;
    cursor: pointer;
    z-index: 10; }
  #main-nav .heading-wrapper {
    position: absolute;
    width: 100%;
    right: 15px;
    top: 15px; }
    #main-nav .heading-wrapper h1 {
      line-height: 1;
      width: 34px;
      margin-left: 17px;
      padding-left: 42.5px;
      border-left: 2px solid #FFFFFF;
      display: block;
      float: right;
      color: #E9E9E9;
      -webkit-transition: border-color 0.4s ease-in-out 0s;
      -moz-transition: border-color 0.4s ease-in-out 0s;
      -ms-transition: border-color 0.4s ease-in-out 0s;
      -o-transition: border-color 0.4s ease-in-out 0s;
      transition: border-color 0.4s ease-in-out 0s; }
      #main-nav .heading-wrapper h1.on {
        color: #2E2014;
        border-color: #2E2014; }
      #main-nav .heading-wrapper h1.on[data-level="spicy-fish"] {
        border-color: #3E96FF; }
      #main-nav .heading-wrapper h1.on[data-level="fdl"] {
        border-color: #FF8E66; }
  #main-nav ul.first-level {
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 0px;
    margin: 0px;
    list-style: none; }
    #main-nav ul.first-level li {
      font-size: 18px;
      line-height: 1.8;
      margin-bottom: 0;
      cursor: pointer; }
      #main-nav ul.first-level li.icon-search {
        height: 16px;
        background: url("../images/icon-search.svg") no-repeat left top;
        background-size: contain; }
  #main-nav ul.second-level {
    display: none;
    position: absolute;
    right: 24px;
    top: 204px;
    padding: 0px;
    margin: 0px;
    list-style: none; }
    #main-nav ul.second-level li {
      float: right;
      width: 18px;
      font-size: 18px;
      line-height: 1;
      margin-bottom: 36px;
      margin-left: 18px;
      cursor: pointer;
      opacity: 0.3;
      filter: alpha(opacity=30); }
      #main-nav ul.second-level li.on {
        opacity: 1;
        filter: alpha(opacity=100); }

.copyright {
  position: absolute;
  width: 280px;
  font-size: 9px;
  font-family: "pt-serif";
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -ms-transform-origin: top left;
  -o-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: 16px;
  bottom: 285px; }
  .copyright.short {
    display: none;
    width: 195px;
    bottom: 205px; }

.mobile-header {
  position: fixed;
  z-index: 99;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #FFFEF1;
  -webkit-transition: top 0.4s ease-in-out 0s;
  -moz-transition: top 0.4s ease-in-out 0s;
  -ms-transition: top 0.4s ease-in-out 0s;
  -o-transition: top 0.4s ease-in-out 0s;
  transition: top 0.4s ease-in-out 0s; }

#btn-mobile-menu {
  width: 34px;
  height: 22px;
  position: absolute;
  left: 15px;
  top: 15px; }

#btn-mobile-search {
  width: 22px;
  height: 24px;
  background: url("../images/icon-mobile-search.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 15px;
  left: 70px; }

.adc-logo {
  width: 260px;
  height: 65px;
  background: url("../images/adc-support.svg") no-repeat center center;
  background-size: contain;
  margin-top: 60px; }

/* ==========================================================================
	Section styles
============================================================================= */
.home-img {
  position: relative;
  background-position: center center;
  background-size: cover;
  height: 33.333vh;
  width: 100vw;
  background-color: #EEE;
  opacity: 0.15;
  filter: alpha(opacity=15); }

.home-logo-wrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  z-index: 10; }
  .home-logo-wrapper .logo-spicy-fish {
    width: 74px;
    height: 100%;
    background: url("../images/logo-spicy-fish.svg") no-repeat center center;
    background-size: contain;
    margin: auto; }
  .home-logo-wrapper .logo-fdl {
    width: 67px;
    height: 100%;
    background: url("../images/logo-fdl.svg") no-repeat center center;
    background-size: contain;
    margin: auto; }

.img__cover {
  width: 100%;
  margin: 0 auto 30px; }
  .img__cover img {
    max-width: 100%; }

.indexWrapper {
  margin-left: 80px; }

#section-spicy-fish {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 33.3333vh;
  background-color: #F3FCFF;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s; }
  #section-spicy-fish .part-content {
    display: none; }
  #section-spicy-fish .part-content .hero-image {
    height: 300px;
    background-color: color-blue;
    margin-bottom: 60px; }
  #section-spicy-fish .part-content .hero-vertical-text {
    margin-bottom: 20px; }
    #section-spicy-fish .part-content .hero-vertical-text > div {
      margin-left: -15px;
      margin-right: -15px; }
  #section-spicy-fish .part-content h1 {
    font-size: 36px;
    line-height: 36px;
    width: 36px; }
  #section-spicy-fish .part-content h4 {
    margin-bottom: 32px; }
  #section-spicy-fish .part-content p {
    margin-bottom: 32px; }
  #section-spicy-fish .part-content ol {
    padding-left: 20px; }
    #section-spicy-fish .part-content ol li {
      text-align: justify;
      margin-bottom: 16px; }
  #section-spicy-fish .part-content .issueItem, #section-spicy-fish .part-content .eventItem {
    margin-bottom: 60px;
    display: block; }
    #section-spicy-fish .part-content .issueItem .itemCover, #section-spicy-fish .part-content .issueItem img, #section-spicy-fish .part-content .eventItem .itemCover, #section-spicy-fish .part-content .eventItem img {
      max-width: 100%;
      height: 300px;
      display: block;
      background-repeat: no-repeat;
      margin-bottom: 15px;
      background-position: center;
      background-size: cover; }
    #section-spicy-fish .part-content .issueItem h5, #section-spicy-fish .part-content .eventItem h5 {
      line-height: 1.5;
      text-align: center;
      color: #2E2014; }
  #section-spicy-fish .part-content .memberTitle {
    margin-bottom: 34px; }
    #section-spicy-fish .part-content .memberTitle span {
      font-size: 16px;
      font-weight: 800;
      line-height: 16px;
      display: inline-block;
      position: relative;
      padding-right: 10px;
      top: -8px;
      background-color: #F3FCFF; }
  #section-spicy-fish .part-content .memberProfile {
    width: 87px;
    height: 94px;
    margin-bottom: 16px;
    background: url("../images/profile-ph.svg") no-repeat center center;
    background-size: cover; }
  #section-spicy-fish .part-content .memberName {
    font-size: 30px;
    font-weight: 800; }
  #section-spicy-fish .part-content .memberContact a {
    color: inherit; }
  #section-spicy-fish .part-content .memberContact .sep {
    width: 1px;
    height: 20px;
    margin: 0 25px;
    background-color: #000;
    position: relative;
    display: inline-block;
    top: 4px; }
  #section-spicy-fish .part-content .memberItem {
    margin-bottom: 90px; }
  #section-spicy-fish .part-single {
    padding-bottom: 100px; }
    #section-spicy-fish .part-single .hero-image {
      height: 300px;
      background-color: #DDD;
      margin-left: -15px;
      margin-bottom: 60px; }
    #section-spicy-fish .part-single .single-title {
      height: 300px;
      line-height: 46.8px; }
    #section-spicy-fish .part-single .sns-wrapper {
      margin: 0 0 24px;
      float: left; }
      #section-spicy-fish .part-single .sns-wrapper .icon-fb {
        width: 15px;
        height: 15px;
        display: inline-block;
        margin: 0 5px 0 15px;
        background: url("../images/icon-sns-fb.svg") no-repeat center center;
        background-size: contain;
        position: relative;
        top: 2px;
        cursor: pointer; }
      #section-spicy-fish .part-single .sns-wrapper .icon-google {
        width: 15px;
        height: 15px;
        display: inline-block;
        margin: 0 5px;
        background: url("../images/icon-sns-google.svg") no-repeat center center;
        background-size: contain;
        position: relative;
        top: 2px;
        cursor: pointer; }
    #section-spicy-fish .part-single .publish-date {
      float: right; }
    #section-spicy-fish .part-single .info-block {
      margin-top: 80px; }
      #section-spicy-fish .part-single .info-block.gapBtm {
        margin-bottom: 40px; }
      #section-spicy-fish .part-single .info-block .infoItem {
        margin-bottom: 5px; }
    #section-spicy-fish .part-single .btn-buy {
      display: block;
      padding: 8px 5px;
      border: 1px solid #2E2014;
      text-align: center;
      color: #2E2014;
      cursor: pointer;
      text-decoration: none;
      -webkit-transition: background-color 400ms ease-in-out 0s;
      -moz-transition: background-color 400ms ease-in-out 0s;
      -ms-transition: background-color 400ms ease-in-out 0s;
      -o-transition: background-color 400ms ease-in-out 0s;
      transition: background-color 400ms ease-in-out 0s; }
      #section-spicy-fish .part-single .btn-buy::before {
        content: '';
        display: inline-block;
        width: 23px;
        height: 19px;
        margin-right: 10px;
        background: url("../images/icon-shop.svg") no-repeat center center;
        position: relative;
        top: 2px; }
      #section-spicy-fish .part-single .btn-buy:hover {
        background-color: #FFFFFF; }
    #section-spicy-fish .part-single .other-section {
      margin-top: 100px;
      margin-bottom: -100px;
      background-color: #FFFFFF;
      padding: 40px 0; }
      #section-spicy-fish .part-single .other-section h5 {
        margin-bottom: 40px; }
      #section-spicy-fish .part-single .other-section img {
        border: 1px solid #EEE; }
    #section-spicy-fish .part-single .otherItem {
      margin: 30px 0 10px; }
      #section-spicy-fish .part-single .otherItem .feat-img {
        height: 120px;
        background-color: #DDD;
        margin-bottom: 10px; }
      #section-spicy-fish .part-single .otherItem p {
        color: #2E2014; }

#section-fdl {
  position: absolute;
  top: 33.3333vh;
  left: 0px;
  width: 100vw;
  height: 33.3333vh;
  background-color: #FFF4EB;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s; }
  #section-fdl .part-content {
    display: none; }
  #section-fdl .part-content .hero-image {
    height: 300px;
    background-color: #FFF4EB;
    margin-bottom: 60px; }
  #section-fdl .part-content .hero-vertical-text {
    margin-bottom: 20px; }
    #section-fdl .part-content .hero-vertical-text > div {
      margin-left: -15px;
      margin-right: -15px; }
  #section-fdl .part-content h1 {
    font-size: 36px;
    line-height: 36px;
    width: 36px; }
  #section-fdl .part-content h4 {
    margin-bottom: 32px; }
  #section-fdl .part-content p {
    margin-bottom: 32px; }
  #section-fdl .part-content ol {
    padding-left: 20px; }
    #section-fdl .part-content ol li {
      text-align: justify;
      margin-bottom: 16px; }
  #section-fdl .part-content .issueItem {
    margin-bottom: 60px;
    display: block; }
    #section-fdl .part-content .issueItem .itemCover, #section-fdl .part-content .issueItem img {
      max-width: 100%;
      height: 300px;
      display: block;
      background-repeat: no-repeat;
      margin-bottom: 15px;
      background-position: center;
      background-size: cover; }
    #section-fdl .part-content .issueItem h5, #section-fdl .part-content .issueItem p {
      color: #2E2014;
      line-height: 1.5;
      text-align: center; }
  #section-fdl .part-content .eventItem {
    margin-bottom: 60px;
    display: block; }
    #section-fdl .part-content .eventItem .itemCover, #section-fdl .part-content .eventItem img {
      max-width: 100%;
      height: 300px;
      display: block;
      background-repeat: no-repeat;
      margin-bottom: 15px;
      background-position: center;
      background-size: cover; }
    #section-fdl .part-content .eventItem h5 {
      line-height: 1.5;
      text-align: center;
      color: #2E2014; }
  #section-fdl .part-content .memberTitle {
    margin-bottom: 34px; }
    #section-fdl .part-content .memberTitle span {
      font-size: 16px;
      font-weight: 800;
      line-height: 16px;
      display: inline-block;
      position: relative;
      padding-right: 10px;
      top: -8px;
      background-color: #F3FCFF; }
  #section-fdl .part-content .memberProfile {
    width: 87px;
    height: 94px;
    margin-bottom: 16px;
    background: url("../images/profile-ph.svg") no-repeat center center;
    background-size: cover; }
  #section-fdl .part-content .memberName {
    font-size: 30px;
    font-weight: 800; }
  #section-fdl .part-content .memberContact a {
    color: inherit; }
  #section-fdl .part-content .memberContact .sep {
    width: 1px;
    height: 20px;
    margin: 0 25px;
    background-color: #000;
    position: relative;
    display: inline-block;
    top: 4px; }
  #section-fdl .part-content .memberItem {
    margin-bottom: 90px; }

.part-content.part-page .aboutContainer {
  display: block; }

.part-content.part-page .single-post-wrapper {
  display: none; }

.part-content.part-single .aboutContainer {
  display: none; }

.part-content.part-single .single-post-wrapper {
  display: block; }

.part-content .aboutContainer div {
  /*		visibility: visible;
		opacity: 1;
		transition: visibility 0s, opacity 0.5s linear;*/ }

.part-content .aboutContainer div.hideWrapper {
  /*		visibility: hidden;
		opacity: 0;*/
  display: none; }

.part-content .hero-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }
  .part-content .hero-image .dateWrapper {
    padding: 10px; }
    .part-content .hero-image .dateWrapper h2 {
      width: 100%;
      padding: 0px 0px 12px;
      font-size: 48px; }
    .part-content .hero-image .dateWrapper h5 {
      font-variant-numeric: oldstyle-nums; }

#section-magazine {
  position: absolute;
  top: 66.6666vh;
  left: 0px;
  width: 100vw;
  height: 33.3333vh;
  background-color: #FFFEF1;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out 0s, width 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s, width 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s, width 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s, width 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s, width 0.4s ease-in-out 0s; }
  #section-magazine .part-landing {
    text-align: center;
    display: block;
    font-size: 0; }
    #section-magazine .part-landing h2 {
      display: inline-block;
      font-size: 36px;
      margin: 0 auto;
      padding: calc(15vh/2 - 37px) 0;
      height: 33.3333vh;
      text-align: center; }
    #section-magazine .part-landing .introduction {
      display: inline-block;
      margin: calc(35vh - 225px) auto;
      font-size: 25px;
      height: 450px; }
    #section-magazine .part-landing h6.small {
      display: inline-block;
      margin: 0 auto;
      padding: calc(15vh/2 - 15px*1.5) 0; }
  #section-magazine .part-magazine {
    display: none; }

#section-search-results {
  position: absolute;
  top: 100vh;
  left: -100vw;
  width: 100vw;
  min-height: 100vh;
  background-color: #F7F7F7;
  -webkit-transition: top 0.4s ease-in-out 0.1s, left 0.1s ease-in-out 0s;
  -moz-transition: top 0.4s ease-in-out 0.1s, left 0.1s ease-in-out 0s;
  -ms-transition: top 0.4s ease-in-out 0.1s, left 0.1s ease-in-out 0s;
  -o-transition: top 0.4s ease-in-out 0.1s, left 0.1s ease-in-out 0s;
  transition: top 0.4s ease-in-out 0.1s, left 0.1s ease-in-out 0s;
  z-index: 50;
  padding: 36px 0; }
  #section-search-results .input-wrapper {
    position: relative;
    text-align: center;
    font-size: 0;
    margin-left: calc(-25px - 15px); }
    #section-search-results .input-wrapper:before {
      content: "";
      display: inline-block;
      width: 25px;
      height: 60.48px;
      background: url("../images/icon-search.svg") no-repeat center center;
      background-size: contain;
      vertical-align: middle;
      margin-right: 15px;
      margin-bottom: 25px; }
    #section-search-results .input-wrapper input[name="s"] {
      font-size: 36px;
      height: 60.48px;
      width: calc(100% - 25px - 15px);
      margin-bottom: 25px;
      -webkit-appearance: none;
      -moz-appearance: none;
      border: none;
      background: none;
      border-bottom: 2px solid #2E2014;
      padding: 0px;
      display: inline-block;
      vertical-align: middle; }
      #section-search-results .input-wrapper input[name="s"]:focus {
        outline: none; }
  #section-search-results .results-wrapper {
    margin-top: 40px; }
    #section-search-results .results-wrapper .resultItem {
      margin-bottom: 60px; }
      #section-search-results .results-wrapper .resultItem a, #section-search-results .results-wrapper .resultItem a:hover {
        color: inherit; }
        #section-search-results .results-wrapper .resultItem a.readmore, #section-search-results .results-wrapper .resultItem a:hover.readmore {
          text-decoration: underline; }
      #section-search-results .results-wrapper .resultItem h1.title {
        font-size: 30px;
        display: inline-block; }
      #section-search-results .results-wrapper .resultItem h3.author {
        font-size: 25px;
        display: inline-block; }
        #section-search-results .results-wrapper .resultItem h3.author::before {
          content: "";
          display: inline-block;
          vertical-align: top;
          position: relative;
          height: 1px;
          width: 54px;
          background-color: #2E2014;
          margin-right: 5px;
          top: 12.5px; }
      #section-search-results .results-wrapper .resultItem .meta {
        margin-top: 10px; }
        #section-search-results .results-wrapper .resultItem .meta h4 {
          display: inline-block;
          font-size: 16px; }
        #section-search-results .results-wrapper .resultItem .meta .taglist {
          display: inline-block;
          list-style: none;
          padding: 0;
          font-size: 14px; }
          #section-search-results .results-wrapper .resultItem .meta .taglist li::before {
            content: "#"; }
          #section-search-results .results-wrapper .resultItem .meta .taglist li {
            cursor: pointer;
            display: inline-block;
            margin-right: 16px; }
            #section-search-results .results-wrapper .resultItem .meta .taglist li a {
              color: inherit; }
      #section-search-results .results-wrapper .resultItem .excerpt {
        margin-top: 20px;
        line-height: 1.68;
        font-size: 16px;
        margin-bottom: 20px; }
        #section-search-results .results-wrapper .resultItem .excerpt p {
          display: block;
          width: 100%;
          height: calc(80.64px);
          overflow: hidden;
          text-overflow: ellipsis;
          margin: 0; }

#section-general {
  position: absolute;
  top: 100vh;
  left: -100vw;
  width: 100%;
  min-height: 100vh;
  background-color: #F7F7F7;
  z-index: 50;
  padding: 36px 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s; }
  #section-general ol {
    padding-left: 1em;
    margin: 32px 0; }
    #section-general ol li {
      padding-left: 32px;
      margin: 16px 0; }

.placeholder-wrapper {
  padding-top: 40px;
  position: relative;
  text-align: left;
  top: 0vh; }

.placeholder-text {
  display: block;
  text-align: left;
  font-size: 16px; }
  .placeholder-text.vertical-text {
    -webkit-writing-mode: horizontal-tb;
    /* for browsers of webkit engine */
    -ms-writing-mode: horizontal-tb;
    writing-mode: lr-tb;
    /* for ie old*/ }
  .placeholder-text p {
    margin: 0;
    line-height: 1.68; }
  .placeholder-text .small {
    font-size: 16px; }
  .placeholder-text a {
    color: inherit;
    text-decoration: underline; }

/* ==========================================================================
	Spicy Fish styles
============================================================================= */
body.spicy-fish #section-spicy-fish {
  top: 0 !important;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  height: auto;
  position: relative; }
  body.spicy-fish #section-spicy-fish .part-landing {
    display: none; }
  body.spicy-fish #section-spicy-fish .part-content {
    display: block;
    padding-top: 50px; }

body.spicy-fish #section-fdl {
  left: -100vw; }

body.spicy-fish #section-magazine {
  left: 100vw; }

body.spicy-fish .mobile-header {
  top: 0px;
  background-color: #F3FCFF; }

/* ==========================================================================
	FDL styles
============================================================================= */
body.fdl #section-spicy-fish {
  left: -100vw; }

body.fdl #section-fdl {
  top: 0 !important;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  height: auto;
  position: relative; }
  body.fdl #section-fdl .part-landing {
    display: none; }
  body.fdl #section-fdl .part-content {
    display: block;
    padding-top: 50px; }

body.fdl #section-magazine {
  left: 100vw; }

body.fdl .mobile-header {
  top: 0px;
  background-color: #FFF4EB; }

body.fdl hr {
  border-top: 1px solid #D0D0CF;
  margin-bottom: 40px; }

body.fdl, body.spicy-fish {
  /*.indexContent .content-col{
		width: 90vw;
		left: 10vw;
	}*/ }
  body.fdl .control-col, body.spicy-fish .control-col {
    width: 10vw;
    z-index: 1;
    max-width: 100px;
    display: block;
    padding-left: 15px;
    padding-top: 15px;
    position: fixed; }
    body.fdl .control-col .control-label, body.spicy-fish .control-col .control-label {
      font-size: 16px;
      height: calc(17px * 2); }
    body.fdl .control-col .issue-select, body.spicy-fish .control-col .issue-select {
      top: 50px; }
    body.fdl .control-col select[name=issueChoice], body.spicy-fish .control-col select[name=issueChoice] {
      margin-top: 20px;
      margin-left: 6px; }
    body.fdl .control-col .control-label, body.spicy-fish .control-col .control-label {
      margin: 0 auto;
      float: none; }
  body.fdl .content-col, body.spicy-fish .content-col {
    width: 100vw;
    left: 0vw; }

/* ==========================================================================
	Magazine styles
============================================================================= */
body.magazine #main-nav .nav-border:not(.left) {
  height: 100vh; }

body.magazine .mobile-header {
  top: 0px; }

body.magazine #section-spicy-fish {
  left: -100vw; }

body.magazine #section-fdl {
  left: -100vw; }

body.magazine #section-magazine {
  left: 0vw;
  width: 100vw;
  top: 0vw !important;
  height: auto;
  min-height: 100vh;
  cursor: default; }
  body.magazine #section-magazine .part-landing {
    display: none; }
  body.magazine #section-magazine .part-magazine {
    display: block; }
    body.magazine #section-magazine .part-magazine .btn-mobile-index {
      width: 30px;
      height: 30px;
      background: url("../images/icon-mobile-index.svg") no-repeat center center;
      background-size: contain;
      position: fixed;
      top: 10px;
      right: 15px;
      z-index: 100; }
    body.magazine #section-magazine .part-magazine .content-col {
      padding-left: 15px;
      padding-right: 15px; }
      body.magazine #section-magazine .part-magazine .content-col .mobile-cover {
        position: relative;
        padding-top: 24px;
        height: 100vh;
        text-align: center; }
        body.magazine #section-magazine .part-magazine .content-col .mobile-cover .scroll-hint-mobile {
          width: 34px;
          height: 14px;
          background: url("../images/icon-scroll-mobile.svg") no-repeat left top;
          background-size: contain;
          position: absolute;
          right: 0; }
      body.magazine #section-magazine .part-magazine .content-col .intro-gradient {
        width: 100%;
        height: 30vh;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#37a3dd+55,e2bda1+100 */
        background: #37a3dd;
        /* Old browsers */
        background: -moz-linear-gradient(top, #37a3dd 30%, #e2bda1 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #37a3dd 30%, #e2bda1 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom, #37a3dd 30%, #e2bda1 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#37a3dd', endColorstr='#e2bda1',GradientType=0 );
        /* IE6-9 */ }
      body.magazine #section-magazine .part-magazine .content-col h2 {
        padding: 24px 0;
        display: inline-block; }
      body.magazine #section-magazine .part-magazine .content-col h6.small {
        padding: 0 0 24px;
        display: inline-block; }
      body.magazine #section-magazine .part-magazine .content-col #mobile-issue-select-btn {
        padding-top: 24px;
        color: #969696; }
      body.magazine #section-magazine .part-magazine .content-col select#mobile-issue-select {
        -webkit-appearance: none;
        appearance: none;
        color: #969696;
        text-align: center;
        text-align-last: center; }
      body.magazine #section-magazine .part-magazine .content-col select#mobile-issue-select::-ms-expand {
        display: none; }
      body.magazine #section-magazine .part-magazine .content-col #mobile-issue-wrapper {
        margin: 100px auto;
        width: 120px;
        height: 25px;
        text-align: center; }
        body.magazine #section-magazine .part-magazine .content-col #mobile-issue-wrapper * {
          color: #969696; }
        body.magazine #section-magazine .part-magazine .content-col #mobile-issue-wrapper .arrow {
          width: 28px; }
      body.magazine #section-magazine .part-magazine .content-col #mobile-issue-select {
        margin-top: 36px;
        position: fixed;
        top: 0;
        left: 0;
        margin-left: -100vw; }
        body.magazine #section-magazine .part-magazine .content-col #mobile-issue-select.useDefault {
          position: relative;
          margin: 0;
          background: transparent;
          border: none;
          font-size: 16px;
          width: 64px;
          padding: 0px;
          float: left; }

.control-col {
  display: none; }

.content-col {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  top: 0px; }
  .content-col .scroll-hint {
    position: fixed;
    bottom: 25px;
    left: 20vw; }
    .content-col .scroll-hint .icon-scroll {
      width: 20px;
      height: 15px;
      margin-top: 25px;
      background: url("../images/icon-scroll.svg") no-repeat left top;
      background-size: contain; }

.issue-directory {
  position: relative;
  padding: 25px 0;
  height: 100vh; }
  .issue-directory .directory-heading {
    width: 34px;
    float: right; }
    .issue-directory .directory-heading h2 {
      padding-top: 0 !important;
      line-height: 1; }
    .issue-directory .directory-heading h6 {
      padding-top: 0 !important;
      line-height: 34px; }
  .issue-directory .directory-intro {
    float: right;
    top: 34px;
    font-size: 16px;
    margin-right: 34px; }
  .issue-directory .directory-listing {
    position: fixed;
    top: 0;
    left: 100vw;
    width: 100vw;
    height: 100vh;
    padding: 15px;
    background-color: #FFFEF1;
    z-index: 100;
    -webkit-transition: left 0.4s ease-in-out 0s;
    -moz-transition: left 0.4s ease-in-out 0s;
    -ms-transition: left 0.4s ease-in-out 0s;
    -o-transition: left 0.4s ease-in-out 0s;
    transition: left 0.4s ease-in-out 0s; }
    .issue-directory .directory-listing.open-nav {
      left: 0; }
    .issue-directory .directory-listing .btn-close {
      width: 28px;
      height: 28px;
      background: url("../images/icon-close.svg") no-repeat left top;
      background-size: contain;
      position: absolute;
      left: 15px;
      top: 15px;
      cursor: pointer;
      z-index: 10; }
    .issue-directory .directory-listing .directory-group {
      margin-bottom: 25px;
      width: calc(34px + 5vw);
      float: right; }
      .issue-directory .directory-listing .directory-group .directory-title {
        float: right;
        font-size: 34px;
        line-height: 34px;
        padding-left: 5vw;
        color: #D0D0CF; }
        .issue-directory .directory-listing .directory-group .directory-title.on {
          color: #2E2014; }
      .issue-directory .directory-listing .directory-group ul {
        display: none; }
        .issue-directory .directory-listing .directory-group ul.mobile-directory {
          position: absolute;
          right: 15px;
          top: 40vh;
          list-style: none;
          padding: 0;
          margin: 0; }
        .issue-directory .directory-listing .directory-group ul.mobile-directory:nth-of-type(3) {
          top: 70vh; }
        .issue-directory .directory-listing .directory-group ul li {
          color: #D0D0CF;
          cursor: pointer; }
        .issue-directory .directory-listing .directory-group ul li:hover, .issue-directory .directory-listing .directory-group ul li.on {
          color: #2E2014; }

.issue-section-intro {
  position: relative;
  padding: 25px 0;
  min-height: 100vh; }
  .issue-section-intro .section-wrapper {
    position: relative;
    margin: auto;
    text-align: center;
    font-size: 0; }
    .issue-section-intro .section-wrapper h2 {
      font-size: 36px;
      margin: 0 auto 72px;
      padding: 0 !important;
      display: inline-block; }
    .issue-section-intro .section-wrapper .introduction {
      margin: 0 auto;
      font-size: 18px;
      display: inline-block;
      text-align: left; }

.article-wrapper {
  position: relative; }
  .article-wrapper .article {
    margin-bottom: 50px;
    height: auto;
    -webkit-transition: height 0.4s ease-in-out 0s;
    -moz-transition: height 0.4s ease-in-out 0s;
    -ms-transition: height 0.4s ease-in-out 0s;
    -o-transition: height 0.4s ease-in-out 0s;
    transition: height 0.4s ease-in-out 0s; }
    .article-wrapper .article.loading {
      height: 100vh;
      -webkit-animation: loadingContent 0.8s ease-in-out 0s infinite alternate;
      -moz-animation: loadingContent 0.8s ease-in-out 0s infinite alternate;
      -o-animation: loadingContent 0.8s ease-in-out 0s infinite alternate;
      animation: loadingContent 0.8s ease-in-out 0s infinite alternate; }

@-webkit-keyframes loadingContent {
  0% {
    opacity: 0.1; }
  100% {
    opacity: 0.5; } }

@-moz-keyframes loadingContent {
  0% {
    opacity: 0.1; }
  100% {
    opacity: 0.5; } }

@-o-keyframes loadingContent {
  0% {
    opacity: 0.1; }
  100% {
    opacity: 0.5; } }

@keyframes loadingContent {
  0% {
    opacity: 0.1; }
  100% {
    opacity: 0.5; } }
    .article-wrapper .article h1.title {
      font-size: 24px;
      margin-bottom: 24px;
      line-height: 1.4; }
    .article-wrapper .article h3.author {
      display: inline-block;
      vertical-align: middle;
      font-size: 16px;
      margin-bottom: 18px; }
    .article-wrapper .article h3.author::before {
      content: "";
      display: inline-block;
      vertical-align: top;
      position: relative;
      height: 1px;
      width: 48px;
      background-color: #2E2014;
      margin-right: 5px;
      top: 8px; }
    .article-wrapper .article p {
      font-size: 16px;
      line-height: 1.68;
      margin-bottom: 0;
      text-align: justify; }
      .article-wrapper .article p.indent_1 {
        padding-left: 90px;
        text-indent: 0; }
    .article-wrapper .article .popup {
      background-color: #2E2014;
      color: #FFFFFF;
      padding-bottom: 1px;
      cursor: pointer; }
    .article-wrapper .article .taglist {
      list-style: none;
      padding: 0;
      margin-bottom: 40px; }
      .article-wrapper .article .taglist li::before {
        content: "#"; }
      .article-wrapper .article .taglist li {
        cursor: pointer;
        display: inline-block;
        margin-right: 16px; }
        .article-wrapper .article .taglist li a {
          color: inherit; }
    .article-wrapper .article .sns-wrapper {
      margin: 10px 0; }
      .article-wrapper .article .sns-wrapper .icon-fb {
        width: 15px;
        height: 15px;
        display: inline-block;
        margin: 0 5px 0 15px;
        background: url("../images/icon-sns-fb.svg") no-repeat center center;
        background-size: contain;
        position: relative;
        top: 2px;
        cursor: pointer; }
      .article-wrapper .article .sns-wrapper .icon-google {
        width: 15px;
        height: 15px;
        display: inline-block;
        margin: 0 5px;
        background: url("../images/icon-sns-google.svg") no-repeat center center;
        background-size: contain;
        position: relative;
        top: 2px;
        cursor: pointer; }
    .article-wrapper .article img {
      max-width: 100%;
      display: block; }
    .article-wrapper .article .popup-content {
      width: 250px;
      background-color: #FFFFFF;
      padding: 35px 15px 15px 15px;
      position: absolute;
      display: none; }
      .article-wrapper .article .popup-content .btn-close {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 10px;
        height: 10px;
        background: url("../images/icon-close.svg") no-repeat left top;
        background-size: contain;
        cursor: pointer; }
      .article-wrapper .article .popup-content img {
        max-width: 100%;
        margin-bottom: 10px; }
      .article-wrapper .article .popup-content p {
        font-size: 14px;
        padding-left: 0;
        text-indent: 0; }
  .article-wrapper .author-wrapper-mobile {
    overflow: hidden;
    margin-bottom: 34px; }
    .article-wrapper .author-wrapper-mobile .profile-pic {
      width: 60px;
      height: 60px;
      margin-right: 20px;
      background-color: #CCC; }
    .article-wrapper .author-wrapper-mobile .desc {
      padding-left: 15px; }
      .article-wrapper .author-wrapper-mobile .desc h6 {
        line-height: 1.68;
        font-size: 16px; }
        .article-wrapper .author-wrapper-mobile .desc h6 p {
          padding-left: 0;
          text-indent: 0; }

/* ==========================================================================
	Search styles
============================================================================= */
body.search #search-panel {
  top: 0; }

body.search-results .mobile-header {
  top: 0px; }

body.search-results #section-search-results {
  margin-top: 50px;
  top: 0;
  left: 0; }

body.search-results .mobile-header {
  background-color: #F7F7F7; }

/* ==========================================================================
	General styles
============================================================================= */
body.general a {
  color: inherit; }

body.general .mobile-header {
  top: 0px; }

body.general #section-general {
  top: 0;
  left: 0;
  display: block;
  margin-top: 50px;
  min-height: calc(100vh - 50px); }

#part-order hr {
  margin: -20px 0 80px;
  border-color: #D0D0CF; }

#part-order .buyItem {
  margin-bottom: 68px; }
  #part-order .buyItem h4 {
    margin-bottom: 18px; }
  #part-order .buyItem p {
    font-size: 19.2px;
    font-weight: 500; }
  #part-order .buyItem ul {
    list-style: none;
    padding: 0; }
    #part-order .buyItem ul li {
      margin: 10px 0; }

#part-order .subscribeItem {
  margin-bottom: 68px; }
  #part-order .subscribeItem h4 {
    margin-bottom: 15px; }
  #part-order .subscribeItem .btn-action {
    border: none;
    font-size: 16px;
    margin: 0;
    margin-bottom: 5px; }
    #part-order .subscribeItem .btn-action:hover {
      text-decoration: underline; }

#part-join-us hr {
  margin: 60px 0 80px;
  border-color: #D0D0CF; }

#part-join-us ul {
  padding-left: 1.2em; }

#part-join-us a {
  text-decoration: underline; }

#part-terms h3 {
  margin-bottom: 34px; }

#part-terms h6 {
  font-weight: 800; }

#part-terms hr {
  margin: 34px 0;
  border-color: #D0D0CF; }

#part-contact .contactItem {
  margin-bottom: 16px; }

/* ==========================================================================
	Small devices
============================================================================= */
@media (min-width: 768px) {
  h1 {
    font-size: 36px; }
  h2 {
    font-size: 34px; }
  h3 {
    font-size: 24px; }
  h4 {
    font-size: 18px; }
  h5 {
    font-size: 16px; }
  h6 {
    font-size: 16px; }
    h6.small {
      font-size: 16px; } }

/* ==========================================================================
	Medium devices
============================================================================= */
@media (min-width: 992px) {
  h1 {
    font-size: 90px; }
  h2 {
    font-size: 36px; }
  h3 {
    font-size: 30px; }
  h4 {
    font-size: 25px; }
  h5 {
    font-size: 18px; }
  h6 {
    font-size: 16px; }
    h6.small {
      font-size: 14px; }
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 5px 20px 5px 0px;
    margin: 0;
    border-radius: 0;
    border: none;
    background: none;
    height: calc(16px + 5);
    line-height: 1;
    float: right;
    border-bottom: 1px solid #2E2014;
    background: url("../images/icon-dropdown.svg") no-repeat center right;
    background-size: 7px 20px; }
  select:focus {
    outline: none; }
  select::-ms-expand {
    display: none; }
  html.fixed {
    height: 100vh;
    overflow-y: hidden; }
  /* ==========================================================================
		Navigation styles
	============================================================================= */
  .mobile-header {
    display: none; }
  #search-panel .input-wrapper:before {
    width: 25px;
    height: 60.48px; }
  #search-panel .input-wrapper input[name="s"] {
    font-size: 36px;
    height: 60.48px;
    width: 40vw;
    border-bottom: 2px solid #2E2014; }
  .indexWrapper {
    margin-left: 100px; }
  #main-nav {
    position: fixed;
    height: 100%;
    width: auto;
    z-index: 100;
    padding: 0 16px;
    background: none;
    left: calc(50vw - 16px*3/2); }
    #main-nav .nav-border {
      position: absolute;
      width: 1px;
      height: 0px;
      background-color: #000;
      left: auto;
      right: 0px;
      top: 25px;
      -webkit-transition: height 0.4s ease-in-out 0.4s;
      -moz-transition: height 0.4s ease-in-out 0.4s;
      -ms-transition: height 0.4s ease-in-out 0.4s;
      -o-transition: height 0.4s ease-in-out 0.4s;
      transition: height 0.4s ease-in-out 0.4s; }
      #main-nav .nav-border.left {
        left: 0px;
        right: auto;
        background: #E9E9E9 !important; }
    #main-nav .btn-home {
      width: 16px;
      font-size: 16px;
      line-height: 1;
      margin-top: 25px;
      cursor: pointer;
      opacity: 0;
      pointer-event: none;
      -webkit-transition: opacity 0.4s ease-in-out 0.4s;
      -moz-transition: opacity 0.4s ease-in-out 0.4s;
      -ms-transition: opacity 0.4s ease-in-out 0.4s;
      -o-transition: opacity 0.4s ease-in-out 0.4s;
      transition: opacity 0.4s ease-in-out 0.4s; }
      #main-nav .btn-home .icon-home {
        display: block;
        background: url("../images/icon-home.svg") no-repeat center top;
        background-size: contain;
        width: 18px;
        height: 18px;
        margin-left: -2px;
        margin-bottom: 8px; }
    #main-nav ul.first-level {
      position: absolute;
      top: 20vh;
      left: auto;
      bottom: auto;
      width: 16px;
      padding: 0px;
      margin: 0px;
      list-style: none; }
      #main-nav ul.first-level li {
        width: 16px;
        font-size: 16px;
        line-height: 1;
        margin-bottom: 32px;
        cursor: pointer; }
        #main-nav ul.first-level li.icon-search {
          height: 16px;
          background: url("../images/icon-search.svg") no-repeat left top;
          background-size: contain; }
    #main-nav ul.second-level {
      display: none !important; }
  /* ==========================================================================
		Section styles
	============================================================================= */
  .home-img {
    position: relative;
    background-position: center center;
    background-size: cover;
    height: 35vh;
    width: 30vw;
    margin: auto;
    background-color: #EEE;
    opacity: 1;
    filter: alpha(opacity=100); }
  .home-logo-wrapper {
    position: relative;
    height: 15vh; }
    .home-logo-wrapper .logo-spicy-fish {
      width: 8vh;
      height: 15vh;
      background: url("../images/logo-spicy-fish.svg") no-repeat center center;
      background-size: contain;
      margin: auto; }
    .home-logo-wrapper .logo-fdl {
      width: 8vh;
      height: 15vh;
      background: url("../images/logo-fdl.svg") no-repeat center center;
      background-size: contain;
      margin: auto; }
  .img__cover {
    width: 50%;
    margin: 0 auto 60px; }
    .img__cover img {
      max-width: 100%; }
  #section-spicy-fish {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 50vw;
    height: 50vh; }
    #section-spicy-fish .part-content .subpage-nav .logo {
      width: 46px;
      height: 44px;
      background: url("../images/logo-spicy-fish.svg") no-repeat center center;
      background-size: contain;
      margin-left: calc(-23px + 16px/2);
      margin-bottom: 48px; }
    #section-spicy-fish .part-content .subpage-nav .navItem {
      width: 16px;
      font-size: 16px;
      line-height: 16px;
      margin-bottom: 32px;
      cursor: pointer; }
      #section-spicy-fish .part-content .subpage-nav .navItem.on {
        color: #3e96FF;
        border-left: 1px solid #3e96FF;
        margin-left: -5px;
        padding-left: 5px; }
    #section-spicy-fish .part-content .hero-image {
      height: 560px;
      background-color: #F3FCFF;
      margin-top: -50px;
      margin-bottom: 60px; }
    #section-spicy-fish .part-content .hero-vertical-text {
      height: 400px;
      margin-bottom: 120px;
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: vertical-rl;
      writing-mode: tb-rl;
      line-height: 1.68; }
      #section-spicy-fish .part-content .hero-vertical-text > div {
        margin-left: 0px;
        margin-right: 0px; }
      #section-spicy-fish .part-content .hero-vertical-text h4 {
        margin-left: 32px; }
      #section-spicy-fish .part-content .hero-vertical-text p {
        margin-left: 64px; }
    #section-spicy-fish .part-content h1 {
      font-size: 90px;
      line-height: 90px;
      width: 90px; }
    #section-spicy-fish .part-content h4 {
      margin-bottom: 32px; }
    #section-spicy-fish .part-content p {
      margin-bottom: 32px; }
    #section-spicy-fish .part-content ol li {
      text-align: justify;
      margin-bottom: 16px; }
    #section-spicy-fish .part-content .issueItem {
      margin-bottom: 60px; }
      #section-spicy-fish .part-content .issueItem img {
        display: block;
        max-width: 100%;
        margin: 0 auto 15px; }
      #section-spicy-fish .part-content .issueItem h5, #section-spicy-fish .part-content .issueItem p {
        color: #2E2014;
        line-height: 1.5;
        text-align: center; }
    #section-spicy-fish .part-content .eventItem {
      margin-bottom: 60px;
      display: block; }
      #section-spicy-fish .part-content .eventItem .itemCover, #section-spicy-fish .part-content .eventItem img {
        max-width: 100%;
        height: 300px;
        display: block;
        background-repeat: no-repeat;
        margin-bottom: 15px;
        background-position: center;
        background-size: cover; }
      #section-spicy-fish .part-content .eventItem h5 {
        line-height: 1.5;
        text-align: center;
        color: #2E2014; }
    #section-spicy-fish .part-content .memberTitle {
      border-top: 1px solid #000;
      margin-bottom: 36px; }
      #section-spicy-fish .part-content .memberTitle span {
        font-size: 18px;
        font-weight: 800;
        line-height: 18px;
        display: inline-block;
        position: relative;
        padding-right: 10px;
        top: -9px;
        background-color: #F3FCFF; }
    #section-spicy-fish .part-content .memberProfile {
      width: 87px;
      height: 94px;
      margin-bottom: 0;
      background: url("../images/profile-ph.svg") no-repeat center center;
      background-size: cover; }
    #section-spicy-fish .part-content .memberName {
      font-size: 30px;
      font-weight: 800; }
    #section-spicy-fish .part-content .memberContact a {
      color: inherit; }
    #section-spicy-fish .part-content .memberContact .sep {
      width: 1px;
      height: 20px;
      margin: 0 25px;
      background-color: #000;
      position: relative;
      display: inline-block;
      top: 4px; }
    #section-spicy-fish .part-content .memberItem {
      margin-bottom: 90px; }
    #section-spicy-fish .part-single {
      padding-bottom: 100px; }
      #section-spicy-fish .part-single .hero-image {
        height: 560px;
        background-color: #DDD;
        margin-top: -50px;
        margin-left: -15px;
        margin-bottom: 60px; }
      #section-spicy-fish .part-single .single-title {
        font-size: 60px;
        line-height: 72px;
        height: 510px;
        /*line-height: $fs-md-xxl * 1.3;*/ }
      #section-spicy-fish .part-single .sns-wrapper {
        margin: 0 0 30px;
        float: left; }
        #section-spicy-fish .part-single .sns-wrapper .icon-fb {
          width: 15px;
          height: 15px;
          display: inline-block;
          margin: 0 5px 0 15px;
          background: url("../images/icon-sns-fb.svg") no-repeat center center;
          background-size: contain;
          position: relative;
          top: 2px;
          cursor: pointer; }
        #section-spicy-fish .part-single .sns-wrapper .icon-google {
          width: 15px;
          height: 15px;
          display: inline-block;
          margin: 0 5px;
          background: url("../images/icon-sns-google.svg") no-repeat center center;
          background-size: contain;
          position: relative;
          top: 2px;
          cursor: pointer; }
      #section-spicy-fish .part-single .publish-date {
        float: right; }
      #section-spicy-fish .part-single .info-block {
        margin-top: 80px; }
        #section-spicy-fish .part-single .info-block.gapBtm {
          margin-bottom: 80px; }
        #section-spicy-fish .part-single .info-block .infoItem {
          margin-bottom: 5px; }
      #section-spicy-fish .part-single .btn-buy {
        display: block;
        padding: 8px 5px;
        border: 1px solid #2E2014;
        text-align: center;
        color: #2E2014;
        cursor: pointer;
        text-decoration: none;
        -webkit-transition: background-color 400ms ease-in-out 0s;
        -moz-transition: background-color 400ms ease-in-out 0s;
        -ms-transition: background-color 400ms ease-in-out 0s;
        -o-transition: background-color 400ms ease-in-out 0s;
        transition: background-color 400ms ease-in-out 0s; }
        #section-spicy-fish .part-single .btn-buy::before {
          content: '';
          display: inline-block;
          width: 23px;
          height: 19px;
          margin-right: 10px;
          background: url("../images/icon-shop.svg") no-repeat center center;
          position: relative;
          top: 2px; }
        #section-spicy-fish .part-single .btn-buy:hover {
          background-color: #FFFFFF; }
      #section-spicy-fish .part-single .other-section {
        margin-top: 100px;
        margin-bottom: -100px;
        background-color: #FFFFFF;
        padding: 40px 0; }
        #section-spicy-fish .part-single .other-section h5 {
          margin-bottom: 40px; }
        #section-spicy-fish .part-single .other-section img {
          border: 1px solid #EEE; }
      #section-spicy-fish .part-single .otherItem {
        margin: 30px 0 10px; }
        #section-spicy-fish .part-single .otherItem .feat-img {
          height: 120px;
          background-color: #DDD;
          margin-bottom: 10px; }
        #section-spicy-fish .part-single .otherItem p {
          color: #2E2014; }
  #section-fdl {
    position: absolute;
    top: auto;
    bottom: 0px;
    left: 0px;
    width: 50vw;
    height: 50vh; }
    #section-fdl .part-content .subpage-nav .logo {
      width: 46px;
      height: 44px;
      background: url("../images/logo-fdl.svg") no-repeat center center;
      background-size: contain;
      margin-left: calc(-23px + 16px/2);
      margin-bottom: 48px; }
    #section-fdl .part-content .subpage-nav .navItem {
      width: 16px;
      font-size: 16px;
      line-height: 16px;
      margin-bottom: 32px;
      cursor: pointer; }
      #section-fdl .part-content .subpage-nav .navItem.on {
        color: #FF8E66;
        border-left: 1px solid #FF8E66;
        margin-left: -5px;
        padding-left: 5px; }
    #section-fdl .part-content .hero-image {
      height: 560px;
      background-color: #F3FCFF;
      /*#DDD;*/
      margin-top: -50px;
      margin-bottom: 60px; }
    #section-fdl .part-content .hero-vertical-text {
      height: 400px;
      margin-bottom: 120px;
      -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: vertical-rl;
      writing-mode: tb-rl;
      line-height: 1.68; }
      #section-fdl .part-content .hero-vertical-text > div {
        margin-left: 0px;
        margin-right: 0px; }
      #section-fdl .part-content .hero-vertical-text h4 {
        margin-left: 16px; }
      #section-fdl .part-content .hero-vertical-text p {
        margin-left: 32px; }
    #section-fdl .part-content h1 {
      font-size: 90px;
      line-height: 90px;
      width: 90px; }
    #section-fdl .part-content h4 {
      margin-bottom: 32px; }
    #section-fdl .part-content p {
      margin-bottom: 32px; }
    #section-fdl .part-content ol li {
      text-align: justify;
      margin-bottom: 16px; }
    #section-fdl .part-content .issueItem {
      margin-bottom: 60px; }
      #section-fdl .part-content .issueItem img {
        display: block;
        max-width: 100%;
        margin-bottom: 15px; }
      #section-fdl .part-content .issueItem h5 {
        color: #2E2014;
        line-height: 1.5;
        text-align: center; }
    #section-fdl .part-content .memberTitle {
      border-top: 1px solid #000;
      margin-bottom: 36px; }
      #section-fdl .part-content .memberTitle span {
        font-size: 18px;
        font-weight: 800;
        line-height: 18px;
        display: inline-block;
        position: relative;
        padding-right: 10px;
        top: -9px;
        background-color: #FFF4EB; }
    #section-fdl .part-content .memberProfile {
      width: 87px;
      height: 94px;
      margin-bottom: 0;
      background: url("../images/profile-ph.svg") no-repeat center center;
      background-size: cover; }
    #section-fdl .part-content .memberName {
      font-size: 30px;
      font-weight: 800; }
    #section-fdl .part-content .memberContact a {
      color: inherit; }
    #section-fdl .part-content .memberContact .sep {
      width: 1px;
      height: 20px;
      margin: 0 25px;
      background-color: #000;
      position: relative;
      display: inline-block;
      top: 4px; }
    #section-fdl .part-content .memberItem {
      margin-bottom: 90px; }
  .part-content .hero-image .dateWrapper {
    padding: 50px; }
  #section-magazine {
    position: absolute;
    top: 0px;
    left: 50vw;
    width: 50vw;
    height: auto;
    min-height: 100vh; }
    #section-magazine .part-landing {
      display: block; }
      #section-magazine .part-landing h2 {
        margin: 0 auto;
        padding: calc(15vh/2 - 37px) 0;
        height: auto;
        text-align: left; }
      #section-magazine .part-landing .introduction {
        margin: calc(35vh - 225px) auto;
        font-size: 25px;
        height: 450px; }
      #section-magazine .part-landing h6.small {
        margin: 0 auto;
        padding: calc(15vh/2 - 15px*1.5) 0; }
    #section-magazine .part-magazine {
      display: none; }
  .placeholder-wrapper {
    padding-top: 0px;
    position: relative;
    text-align: center;
    top: 25vh; }
  .placeholder-text {
    display: inline-block;
    text-align: left;
    font-size: 24px; }
    .placeholder-text.vertical-text {
      -webkit-writing-mode: vertical-rl;
      /* for browsers of webkit engine */
      -ms-writing-mode: vertical-rl;
      writing-mode: tb-rl;
      /* for ie old*/ }
    .placeholder-text .small {
      font-size: 18px; }
    .placeholder-text a {
      color: inherit;
      text-decoration: underline; }
  /* ==========================================================================
		Magazine styles
	============================================================================= */
  body.magazine #main-nav {
    right: auto;
    left: 0px; }
    body.magazine #main-nav .nav-border:not(.left) {
      height: calc(100vh - 50px); }
    body.magazine #main-nav .btn-home {
      opacity: 1;
      pointer-event: default; }
  body.magazine #section-spicy-fish {
    left: -50vw; }
  body.magazine #section-fdl {
    left: -50vw; }
  body.magazine #section-magazine {
    left: 0vw;
    width: 100vw;
    cursor: default; }
    body.magazine #section-magazine .part-landing {
      display: none; }
    body.magazine #section-magazine .part-magazine {
      display: block; }
      body.magazine #section-magazine .part-magazine .content-col {
        margin-left: 20vw;
        padding-left: 0;
        padding-right: 10vw; }
        body.magazine #section-magazine .part-magazine .content-col .mobile-cover {
          padding-top: 0;
          height: auto; }
        body.magazine #section-magazine .part-magazine .content-col .intro-gradient {
          width: 100%;
          height: 70vh;
          /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#37a3dd+55,e2bda1+100 */
          background: #37a3dd;
          /* Old browsers */
          background: -moz-linear-gradient(top, #37a3dd 30%, #e2bda1 100%);
          /* FF3.6-15 */
          background: -webkit-linear-gradient(top, #37a3dd 30%, #e2bda1 100%);
          /* Chrome10-25,Safari5.1-6 */
          background: linear-gradient(to bottom, #37a3dd 30%, #e2bda1 100%);
          /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
          filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#37a3dd', endColorstr='#e2bda1',GradientType=0 );
          /* IE6-9 */ }
        body.magazine #section-magazine .part-magazine .content-col h2 {
          padding: calc(15vh/2 - 36px) 0; }
        body.magazine #section-magazine .part-magazine .content-col h6.small {
          padding: calc(15vh/2 - 14px*1.5) 0; }
  .control-col {
    display: block;
    width: 20vw;
    height: 100vh;
    padding-right: 20px;
    position: fixed;
    top: 0px; }
    .control-col .issue-select {
      position: absolute;
      overflow: hidden;
      right: 20px;
      top: 25px; }
      .control-col .issue-select .control-label {
        font-size: 16px;
        height: calc(17px * 2);
        line-height: 1.4;
        margin-bottom: 16px;
        text-align: right;
        float: right; }
    .control-col .chapter-select {
      position: absolute;
      top: 40vh;
      right: 20px;
      width: 16px;
      pointer-event: none;
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transition: opacity 0.4s ease-in-out 0s;
      -moz-transition: opacity 0.4s ease-in-out 0s;
      -ms-transition: opacity 0.4s ease-in-out 0s;
      -o-transition: opacity 0.4s ease-in-out 0s;
      transition: opacity 0.4s ease-in-out 0s; }
      .control-col .chapter-select.showup {
        opacity: 1;
        filter: alpha(opacity=100);
        pointer-event: default;
        cursor: pointer; }
      .control-col .chapter-select .btn-submenu {
        width: 16px;
        height: 16px;
        background: url("../images/icon-submenu.svg") no-repeat center center;
        background-size: contain;
        margin-bottom: 16px; }
      .control-col .chapter-select .vertical-text {
        display: inline-block;
        font-size: 16px;
        line-height: calc(15px); }
        .control-col .chapter-select .vertical-text .icon-dot {
          margin-top: 8px;
          margin-bottom: 8px; }
  .content-col {
    width: 80vw;
    min-height: 100vh;
    position: relative;
    top: 0px; }
    .content-col .scroll-hint {
      position: fixed;
      bottom: 25px;
      left: 20vw;
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transition: opacity 0.4s ease-in-out 0s;
      -moz-transition: opacity 0.4s ease-in-out 0s;
      -ms-transition: opacity 0.4s ease-in-out 0s;
      -o-transition: opacity 0.4s ease-in-out 0s;
      transition: opacity 0.4s ease-in-out 0s; }
      .content-col .scroll-hint.hidedown {
        opacity: 0;
        filter: alpha(opacity=0); }
      .content-col .scroll-hint .icon-scroll {
        width: 20px;
        height: 15px;
        margin-top: 25px;
        background: url("../images/icon-scroll.svg") no-repeat left top;
        background-size: contain; }
  .issue-directory {
    position: relative;
    padding: 25px 0;
    height: 100vh; }
    .issue-directory.slider {
      position: fixed;
      left: -100vw;
      top: 0;
      width: 100vw;
      height: 100vh;
      padding: 25px 18px;
      background-color: #FFFEF1;
      z-index: 100;
      -webkit-transition: left 0.4s ease-in-out 0s;
      -moz-transition: left 0.4s ease-in-out 0s;
      -ms-transition: left 0.4s ease-in-out 0s;
      -o-transition: left 0.4s ease-in-out 0s;
      transition: left 0.4s ease-in-out 0s; }
      .issue-directory.slider.open-nav {
        left: 0vw; }
      .issue-directory.slider .btn-close {
        position: absolute;
        left: 18px;
        top: 25px;
        width: 28px;
        height: 28px;
        background: url("../images/icon-close.svg") no-repeat left top;
        background-size: contain;
        position: absolute;
        cursor: pointer;
        z-index: 10; }
      .issue-directory.slider .directory-listing {
        margin-right: 10vw; }
    .issue-directory .directory-heading {
      width: calc(60.48px);
      float: right; }
      .issue-directory .directory-heading h2 {
        padding-top: 0 !important;
        line-height: 1.68; }
      .issue-directory .directory-heading h6 {
        padding-top: 0 !important;
        line-height: calc(60.48px); }
    .issue-directory .directory-intro {
      float: right;
      top: 25px;
      font-size: 18px;
      margin-right: 2vw; }
    .issue-directory .directory-listing {
      position: relative;
      top: auto;
      left: auto;
      width: 60%;
      height: auto;
      padding: 0;
      background: none;
      z-index: auto;
      float: right;
      margin-right: 5vw; }
      .issue-directory .directory-listing .directory-group {
        width: 100%;
        height: 240px;
        margin-bottom: 25px;
        clear: both; }
        .issue-directory .directory-listing .directory-group .directory-title {
          position: relative;
          right: auto;
          top: auto;
          float: right;
          font-size: 16px;
          line-height: 1.68;
          padding-left: 3vw;
          color: #2E2014; }
        .issue-directory .directory-listing .directory-group ul {
          display: block;
          float: right;
          list-style: none;
          padding: 0;
          margin: 0; }
          .issue-directory .directory-listing .directory-group ul li {
            height: 240px;
            color: #D0D0CF;
            cursor: pointer; }
          .issue-directory .directory-listing .directory-group ul li:hover, .issue-directory .directory-listing .directory-group ul li.on {
            color: #2E2014; }
        .issue-directory .directory-listing .directory-group .mobile-directory {
          display: none !important; }
  .issue-section-intro {
    position: relative;
    padding: 25px 0;
    min-height: 100vh; }
    .issue-section-intro .section-wrapper {
      position: relative;
      margin: auto; }
      .issue-section-intro .section-wrapper h2 {
        margin: 0 auto 72px;
        padding: 0 !important; }
      .issue-section-intro .section-wrapper .introduction {
        margin: 0 auto;
        font-size: 18px; }
  .article-wrapper {
    position: relative; }
    .article-wrapper > .article {
      margin-bottom: 100px;
      height: auto;
      min-height: 100vh;
      -webkit-transition: height 0.4s ease-in-out 0s;
      -moz-transition: height 0.4s ease-in-out 0s;
      -ms-transition: height 0.4s ease-in-out 0s;
      -o-transition: height 0.4s ease-in-out 0s;
      transition: height 0.4s ease-in-out 0s; }
      .article-wrapper > .article.loading {
        height: 100vh;
        -webkit-animation: loadingContent 0.8s ease-in-out 0s infinite alternate;
        -moz-animation: loadingContent 0.8s ease-in-out 0s infinite alternate;
        -o-animation: loadingContent 0.8s ease-in-out 0s infinite alternate;
        animation: loadingContent 0.8s ease-in-out 0s infinite alternate; }
  @-webkit-keyframes loadingContent {
    0% {
      opacity: 0.1; }
    100% {
      opacity: 0.5; } }
  @-moz-keyframes loadingContent {
    0% {
      opacity: 0.1; }
    100% {
      opacity: 0.5; } }
  @-o-keyframes loadingContent {
    0% {
      opacity: 0.1; }
    100% {
      opacity: 0.5; } }
  @keyframes loadingContent {
    0% {
      opacity: 0.1; }
    100% {
      opacity: 0.5; } }
      .article-wrapper > .article.loaded {
        min-height: 0; }
      .article-wrapper > .article .article-content {
        padding-left: 80px; }
        .article-wrapper > .article .article-content.article p {
          padding-left: 0;
          text-indent: 0; }
        .article-wrapper > .article .article-content.poem-center p {
          padding-left: 0;
          text-indent: 0;
          text-align: center; }
        .article-wrapper > .article .article-content img {
          display: block;
          max-width: 100%; }
      .article-wrapper > .article h1.title {
        font-size: 36px;
        margin-bottom: 16px; }
      .article-wrapper > .article h3.author {
        display: inline-block;
        vertical-align: middle;
        font-size: 18px;
        margin-bottom: 25px; }
      .article-wrapper > .article h3.author::before {
        content: "";
        display: inline-block;
        vertical-align: top;
        position: relative;
        height: 1px;
        width: 54px;
        background-color: #2E2014;
        margin-right: 5px;
        top: 9px; }
      .article-wrapper > .article p {
        padding-left: 16px;
        text-indent: -16px;
        font-size: 16px;
        text-align: justify; }
        .article-wrapper > .article p.indent_1 {
          padding-left: 80px;
          text-indent: 0; }
      .article-wrapper > .article .sns-wrapper {
        margin: 10px 0; }
        .article-wrapper > .article .sns-wrapper .icon-fb {
          width: 15px;
          height: 15px;
          display: inline-block;
          margin: 0 5px 0 15px;
          background: url("../images/icon-sns-fb.svg") no-repeat center center;
          background-size: contain;
          position: relative;
          top: 2px;
          cursor: pointer; }
        .article-wrapper > .article .sns-wrapper .icon-google {
          width: 15px;
          height: 15px;
          display: inline-block;
          margin: 0 5px;
          background: url("../images/icon-sns-google.svg") no-repeat center center;
          background-size: contain;
          position: relative;
          top: 2px;
          cursor: pointer; }
    .article-wrapper .related-wrapper {
      padding-left: 5vw;
      padding-right: 2vw; }
      .article-wrapper .related-wrapper .author-wrapper {
        margin-bottom: 100px; }
        .article-wrapper .related-wrapper .author-wrapper .profile-pic {
          width: 100px;
          height: 100px;
          margin-bottom: 20px;
          background-color: #CCC; }
        .article-wrapper .related-wrapper .author-wrapper h3.author {
          margin-bottom: 8px; }
        .article-wrapper .related-wrapper .author-wrapper h3.author::before {
          display: none; }
        .article-wrapper .related-wrapper .author-wrapper h6.desc {
          font-weight: 400;
          line-height: 1.68; }
          .article-wrapper .related-wrapper .author-wrapper h6.desc p {
            padding-left: 0;
            text-indent: 0;
            text-align: left; }
      .article-wrapper .related-wrapper h6.heading {
        font-weight: 800;
        padding-bottom: 10px;
        border-bottom: 1px solid #D0D0CF; }
      .article-wrapper .related-wrapper .relatedItem {
        padding: 20px 0;
        border-bottom: 1px solid #D0D0CF; }
        .article-wrapper .related-wrapper .relatedItem a {
          color: inherit !important; }
          .article-wrapper .related-wrapper .relatedItem a:hover {
            text-decoration: none; }
        .article-wrapper .related-wrapper .relatedItem h6.title {
          font-weight: 400;
          border: none;
          margin-bottom: 30px;
          line-height: 1.68; }
        .article-wrapper .related-wrapper .relatedItem h6.issue {
          font-weight: 400;
          border: none; }
    .article-wrapper .author-wrapper-mobile {
      display: none; }
  /* ==========================================================================
		Search styles
	============================================================================= */
  body.search #search-panel {
    top: 0; }
  body.search-results #section-search-results {
    margin-top: 0;
    top: 0;
    left: 0; }
  body.search-results #main-nav {
    left: calc(100vw - 16px*3); }
    body.search-results #main-nav .nav-border.left {
      height: calc(100vh - 50px); }
    body.search-results #main-nav .btn-home {
      opacity: 1;
      pointer-event: default; }
  /* ==========================================================================
		Spicy Fish styles
	============================================================================= */
  body.spicy-fish #main-nav {
    left: calc(100vw - 16px*3); }
    body.spicy-fish #main-nav .nav-border.left {
      height: calc(100vh - 50px);
      background: #3e96FF !important; }
    body.spicy-fish #main-nav .btn-home {
      opacity: 1;
      pointer-event: default; }
  /* ==========================================================================
		FDL styles
	============================================================================= */
  body.fdl #main-nav {
    left: calc(100vw - 16px*3); }
    body.fdl #main-nav .nav-border.left {
      height: calc(100vh - 50px);
      background: #FF8E66 !important; }
    body.fdl #main-nav .btn-home {
      opacity: 1;
      pointer-event: default; }
  /* ==========================================================================
		General styles
	============================================================================= */
  body.general #main-nav {
    left: calc(100vw - 16px*3); }
    body.general #main-nav .nav-border.left {
      height: calc(100vh - 50px); }
    body.general #main-nav .btn-home {
      opacity: 1;
      pointer-event: default; }
  body.general #section-general {
    display: block;
    margin-top: 0px;
    top: 0;
    left: 0;
    min-height: 100vh; } }

/* ==========================================================================
	Large devices
============================================================================= */
@media (min-width: 1200px) {
  h1 {
    font-size: 90px; }
  h2 {
    font-size: 36px; }
  h3 {
    font-size: 30px; }
  h4 {
    font-size: 25px; }
  h5 {
    font-size: 18px; }
  h6 {
    font-size: 16px; }
    h6.small {
      font-size: 14px; }
  .issue-directory .directory-intro {
    font-size: 18px; }
  #section-spicy-fish .part-content .hero-vertical-text h4, #section-fdl .part-content .hero-vertical-text h4 {
    margin-left: 32px; }
  #section-spicy-fish .part-content .hero-vertical-text p, #section-fdl .part-content .hero-vertical-text p {
    margin-left: 64px; } }

@media (max-height: 880px) {
  .copyright {
    display: none;
    width: 280px;
    font-size: 9px;
    margin-left: 16px;
    bottom: 285px; }
    .copyright.short {
      display: block; } }
