
/* --------------------------------------------------------------------------------
  
  Foundation
  
-------------------------------------------------------------------------------- */

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000; 
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  visibility: hidden;
}

html {
  font-size: 10px;
}

body {
  color: #000;
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
  font-weight: normal;
  /* letter-spacing: .04em; */
}

h1, h2, h3, h4 {
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  font-weight: normal;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: text-bottom;
}

a {
  opacity: 1;
  color: #000;
  text-decoration: none;
  transition: opacity .2s linear;
}

a:hover {
  opacity: .5;
}

/* --------------------------------------------------------------------------------
  
  Layout
  
-------------------------------------------------------------------------------- */

.l-page {
  padding-top: 50px;
}

.top .l-page {
  padding-top: 0;
}

@media (min-width: 768px) {
  .l-page {
    padding-top: 75px;
  }
}

/* ----------------------------------------------------------------------------- */

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
}

.l-header__container {
  display: flex;
  align-items: center;
  height: 50px;
  background-color: #fff;
}

.l-header__content {
  width: 100%;
  padding-left: 12px;
}

.l-header__title img {
  width: 205px;
}

@media (min-width: 768px) {
  
  .l-header__container {
    height: 75px;
  }
  
  .l-header__content {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 25px;
  }
  
  .l-header__title img {
    width: 375px;
  }
  
}

/* ----------------------------------------------------------------------------- */

.l-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 102;
}

.l-header-nav--open {
/*   height: 100%; */
  overflow-y: auto;
}

.l-header-nav__background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(178, 178, 178, .95);
  opacity: 0;
  transition: opacity .4s ease;
}

.l-header-nav--open .l-header-nav__background {
  opacity: 1;
}

.l-header-nav__outer-container {
  display: none;
  position: relative;
  opacity: 0;
  transition: opacity .4s ease;
}

.l-header-nav--open .l-header-nav__outer-container {
  opacity: 1;
}

.l-header-nav__inner-container {
  padding: 30px 20px;
}

.l-header-nav__content {}

.l-header-nav__button {
  position: fixed;
  top: 12.5px;
  right: 12.5px;
  width: 25px;
  height: 25px;
  border: 1px solid #949494;
  border-radius: 2.5px;
  background-color: rgba(255, 255, 255, .5);
  cursor: pointer;
}

.l-header-nav__bars {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.l-header-nav__bars div {
  width: 16px;
  height: 2px;
  background-color: #4d4d4d;
  opacity: 1;
  transform: translate(0, 0), rotate(0deg));
  transition: all .4s ease;
}

.l-header-nav__bars div:nth-of-type(2) {
  margin: 3px 0;
}

.l-header-nav--open .l-header-nav__bars div {
  width: 19px;
}

.l-header-nav--open .l-header-nav__bars div:nth-of-type(1) {
  transform: translate(0, 5px) rotate(33deg);
}

.l-header-nav--open .l-header-nav__bars div:nth-of-type(2) {
  opacity: 0;
}

.l-header-nav--open .l-header-nav__bars div:nth-of-type(3) {
  transform: translate(0, -5px) rotate(-33deg);
}

@media (min-width: 768px) {
  
/*
  .l-header-nav {
    height: 100%;
  }
*/
  
  .l-header-nav__outer-container {
    height: 100%;
  }
  
  .l-header-nav__inner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* align-items: flex-start; */
    height: inherit;
    padding: 0;
  }
  
  .l-header-nav__content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
  }
  
  .l-header-nav__button {
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    border-radius: 4px;
  }

  .l-header-nav__bars div {
    width: 23px;
  }
  
  .l-header-nav__bars div:nth-of-type(2) {
    margin: 5px 0;
  }
  
  .l-header-nav--open .l-header-nav__bars div {
    width: 27px;
  }
  
  .l-header-nav--open .l-header-nav__bars div:nth-of-type(1) {
    transform: translate(0, 7px) rotate(33deg);
  }
  
  .l-header-nav--open .l-header-nav__bars div:nth-of-type(2) {
    opacity: 0;
  }
  
  .l-header-nav--open .l-header-nav__bars div:nth-of-type(3) {
    transform: translate(0, -7px) rotate(-33deg);
  }
  
}

@media (min-width: 1000px) {
  
  .l-header-nav__button {
    right: calc(50% - 480px);
  }
  
}

/* ----------------------------------------------------------------------------- */

.l-header-lineup {
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
}

.l-header-lineup__container {}

.l-header-lineup__items {
  margin-bottom: 20px;
}

.l-header-lineup__items dd {
  display: flex;
}

.l-header-lineup__item {
  width: 25%;
  margin-right: 5px;
}

.l-header-lineup__item a {
  display: block;
}

.l-header-lineup__item:last-child {
  margin-right: 0;
}

.l-header-lineup__title {
  margin-bottom: 10px;
  color: #fff;
  font-size: .9rem;
}

.l-header-lineup__image {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding-top: 130%;
}

.l-header-lineup__items:last-child .l-header-lineup__image {
  padding-top: 80%;
}

.l-header-lineup__image img {
  position: absolute;
  top: 0;
  left: 0;
}

.l-header-lineup__text {
  font-size: .75rem;
  font-size: .6rem;
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 768px) {

  .l-header-lineup {
    width: 58%;
    margin-bottom: 0;
    border-bottom: 0;
  }
  
  .l-header-lineup__container {
    padding: 0 40px;
  }
  
  .l-header-lineup__items {
    margin-bottom: 25px;
  }
  
  .l-header-lineup__items:last-child {
    margin-bottom: 0;
  }
  
  .l-header-lineup__title {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  
  .l-header-lineup__text {
    font-size: 1.1rem;
  }

}

/* ----------------------------------------------------------------------------- */

.l-header-link {}

.l-header-link__container {
  padding-left: 10px;
}

.l-header-link__items {
  margin-bottom: 30px;
}

.l-header-link__items:last-child {
  margin-bottom: 0;
}

.l-header-link__items li {
  margin-bottom: 8px;
}

.l-header-link__items li:last-child {
  margin-bottom: 0;
}

.l-header-link__items a {
  font-size: 1.1rem;
  line-height: 1.4;
}

@media (min-width: 768px) {

  .l-header-link {
    width: 42%;
    padding-top: 25px;
  }
  
  .l-header-link__container {
    height: 100%;
    padding-left: 50px;
    border-left: 1px solid #000;
  }
  
  .l-header-link__items {
    margin-bottom: 70px;
  }
  
  .l-header-link__items li {
    margin-bottom: 25px;
  }
  
  .l-header-link__items a {
    font-size: 1.6rem;
  }
  
}

/* ----------------------------------------------------------------------------- */

.l-container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  
  .l-container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
  
  .l-container--full {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .l-container--w900 {
    max-width: 900px;
  }
  
  .l-container--w880 {
    max-width: 880px;
  }
  
}

/* ----------------------------------------------------------------------------- */

.l-footer {}

.l-footer__container {
    padding: 30px 20px;
}

.l-footer__container--top {
  background-color: #000;
}

.l-footer__container--bottom {}

.l-footer__content {}

.l-footer__share {
  margin-bottom: 30px;
}

.l-footer__share dl {
  display: flex;
  justify-content: space-between;
}

.l-footer__share dt {
  width: 41px;
}

.l-footer__share dd {
  width: 32px;
}

.l-footer__container--top .l-footer__link {}

.l-footer__container--top .l-footer__link ul {
  display: flex;
  justify-content: space-between;
}

.l-footer__container--top .l-footer__link a {
  color: #fff;
  font-size: 1.2rem;
}

.l-footer__container--bottom .l-footer__link {
  margin-bottom: 10px;
}

.l-footer__container--bottom .l-footer__link li {
  margin-bottom: 8px;
}

.l-footer__container--bottom .l-footer__link li:last-child {
  margin-bottom: 0;
}

.l-footer__container--bottom .l-footer__link a {
  color: #808080;
  font-size: 1.2rem;
  line-height: 1.4;
}

.l-footer__copyright {
  color: #808080;
  font-size: .9rem;
  line-height: 1.4;
}

@media (min-width: 768px) {

  .l-footer__container {
    padding: 50px 0;
  }
  
  .l-footer__container--bottom {
    padding: 35px 0;
  }
  
  .l-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
  }
  
  .l-footer__share {
    margin-bottom: 0;
  }
  
  .l-footer__share dl {
    justify-content: flex-start;
  }
  
  .l-footer__share dt {
    width: 58px;
    margin-right: 40px;
  }
  
  .l-footer__share dd {
    width: 45px;
    margin-right: 40px;
  }
  
  .l-footer__container--top .l-footer__link ul {
    justify-content: flex-start;
  }
  
  .l-footer__container--top .l-footer__link li {
    margin-right: 40px;
  }
  
  .l-footer__container--top .l-footer__link li:last-child {
    margin-right: 0;
  }
  
  .l-footer__container--top .l-footer__link a {
    font-size: 1.5rem;
  }
  
  .l-footer__container--bottom .l-footer__link {
    margin-bottom: 0;
  }
  
  .l-footer__container--bottom .l-footer__link ul {
    display: flex;
    justify-content: flex-start;
  }
  
  .l-footer__container--bottom .l-footer__link li {
    margin: 0 25px 0 0;
  }
  
  .l-footer__container--bottom .l-footer__link li:last-child {
    margin: 0;
  }
  
  .l-footer__container--bottom .l-footer__link a {
    font-size: 1.4rem;
    line-height: 1.1;
  }
  
  .l-footer__copyright {
    font-size: 1.2rem;
    line-height: 1.1;
  }
  
}
/* ----------------------------------------------------------------------------- */

.has-header {
  padding-top: 75px;
}
.models__contact{
  margin-bottom: 60px;
}
.columns--around{
  padding-bottom: 60px;
}
#contents footer{
  margin-bottom: 100px;
}
.interview #contents > div section > p small{
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .has-header {
    padding-top: 50px;
  }
  .models__contact{
    margin-bottom: 30px;
  }
  .columns--around{
    padding-bottom: 30px;
  }
  #contents footer{
    margin-bottom: 30px;
  }
  .interview #contents > div section > p small{
    margin-bottom: 30px;
  }
}