@charset "UTF-8";
/* CSS Document */

/***
* common.css
*/

/* reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
main, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  vertical-align: top;
  font-size:0;
  line-height: 0;
}
a:focus,
button:focus{
  outline: none;
}
input{
  -webkit-appearance: none;
  border-radius: 0;
  outline:none;
}

sup,
sub{
  line-height: 1;
  vertical-align: baseline;
  position: relative;   
}
sup{ bottom: 5px; }
sub{ top: 0.5em; }

small{
  font-size:72.5%;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  font-family: Arial, Helvetica, "sans-serif";
  color: inherit;
  box-sizing: content-box;
  outline: none;
}

i{
  font-family: 'NHaasGroteskTXW01-56It', "sans-serif";
}

/* utility */

.floatL{
  float:left;	
}

.floatR{
  float:right;	
}

.clearBoth{
  clear:both;	
}

.clearfix:after{
  content:"."; 
  display:block; 
  height:0; 
  clear:both; 
  visibility:hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix{ height:1%; }
.clearfix{ display:block; }
/* End hide from IE-mac */

.anti{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.transition{
	transition-duration: 0.5s;
}

::-moz-selection { opacity:0.1; background: #eee; }
::selection { opacity:0.1; background: #eee; }

sup{
  font-size:68.75%;
}

a{
  color:#0071bc;
  text-decoration:none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img{
  touch-callout:none;
  user-select:none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
}

.fade_off{
  opacity: 0;
  transform: translate3d(0,100px,0);
  transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
	-webkit-transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

.fade_on{
  opacity: 1;
  transform: translate3d(0,0,0);
  transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
  -webkit-transition: all 800ms cubic-bezier(0.230, 1.000, 0.320, 1.000);
}

.mbNone{
  margin-bottom: 0 !important;
}

.noLink{
  opacity: 0.5;
}

.itemCredit dd a.noLink::after{
  background: none;
}

/***
* common
*/

html,body{
  height:100%;
  margin:0;
	font-family: "garamond-premier-pro", "Times New Roman", Times, "serif";
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#wrapper{
	position: relative;
  height:auto !important;
  height: 100%;
  min-height: 100%;
  color: #0071bc;
	-webkit-texst-size-adjust:100%;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.pink #wrapper,
body.pink a,
body.pink .pagination{
  color: #ff71bc;
  transition-duration: 0.5s;
}

body.pink .itemCredit dd a::after,
body.pink .swiper-pagination-bullet-active::after{
  background: #ff71bc !important;
}

.container{
  min-height:100vh;
  background-color:#fff8f2;
}

h2 span {
  display: inline-block;
  transition: transform 1.6s cubic-bezier(0.65, 0.02, 0.23, 1);
  transform: translate(20%, 100%);
  position: relative;
  z-index: 1;
}

h2 span:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(-40%);
  transition: transform 1.6s cubic-bezier(0.65, 0.02, 0.23, 1);
}

h2 span.row {
  overflow: hidden;
  line-height: 1.18;
  display: block;
  transform: none;
}

h2 span.row:before {
  display: none;
}

h2 .animate {
  transform: translate(0, 0);
}

h2 .animate:before {
  transform: translateY(100%);
}