@charset "utf-8";
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;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-family: "Helvetica Neue", "Helvetica","HelveticaNeueLTStd-Md","Open Sans", "Arial", "sans-serif";
  font-weight: normal;
  font-weight: 300;
}

html,body {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

img{
  width: 100%;
  display: block;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

a{
  text-decoration: none;
}

ol, ul {
  list-style: none;
}

@font-face {
  font-family: 'FuturaStd-Bold';
  src: url('../font/FuturaStd-Bold.otf');
}

@font-face {
  font-family: 'FuturaStd-Heavy';
  src: url('../font/FuturaStd-Heavy.otf');
}

@font-face {
  font-family: 'FuturaStd-Medium';
  src: url('../font/FuturaStd-Medium.otf');
}

@font-face {
  font-family: 'HelveticaNeueLTStd-Bd';
  src: url('../font/HelveticaNeueLTStd-Bd.otf');
}

@font-face {
  font-family: 'HelveticaNeueLTStd-Md';
  src: url('../font/HelveticaNeueLTStd-Md.otf');
}

@font-face {
  font-family: 'HelveticaNeueLTStd-Roman';
  src: url('../font/HelveticaNeueLTStd-Roman.otf');
}

@import url('https://fonts.googleapis.com/css?family=Didact+Gothic|Noto+Sans|Open+Sans');


/*=======================================================
▼共通雨設定
=======================================================*/

#header,
#contents {
    position: relative;
    min-width: 320px;
}

.lead, .profile, .section, .items .itemsInner{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.pcNone{
    display: none
  }

.spNone{
  display: block;
}

@media screen and (max-width: 768px) {
  .pcNone{
    display: block;
  }

  .spNone{
    display: none;
  }
}

/*========================================================
▼ヘッダー
========================================================*/

#header {
    width:100%;
    background-color: #000;
    height: 80px;
    position: fixed;
    top:0;
    left: 0;
    z-index: 999;
}

#header .headerInner{
    width:100%;
    height: 80px; 
    position: relative;
    padding: 15px 50px;
    display: flex;
    align-items: center;
    justify-content:space-between;
}

@media screen and (max-width: 768px) {
  #header {
    height: 50px;
  }

  #header .headerInner{
    padding: 2% 5%;
    height: 50px;
  }
}

/*
ロゴ部分
--------------------------------------------------------*/

#header .headerInner h1 {
    height: 50px;
}

#header .headerInner h1 a:hover img {
    opacity: 0.8;
}

#header .headerInner h1 img {
  width: 100px;
  max-height: 50px;
}

@media screen and (max-width: 768px) {
  #header .headerInner h1 {
    height: 35px;
  }

  #header .headerInner h1 img {
    width: auto;
    max-height: 35px;
  }
}


/*
SNSボタン部分
--------------------------------------------------------*/

#header .headerInner .sns {
    /*color: #fff;*/
}

#header .headerInner .sns li{
    display: inline-block;
}

#header .headerInner .sns a{
    color: #fff;
    font-size: 3rem;
    padding:0.5em;
}

#header .headerInner .sns a:hover{
  opacity: 0.8;
}

@media screen and (max-width: 768px) {

}

/*========================================================
▼メインビジュアル
========================================================*/

#mv {
    background-color: #fff;
    margin-top:80px;
    position: relative;
    height: 100vh;
}

#mv .mvInner{
  width: 100%;
  max-width: 2000px;
  background-image: url(../images/mv.jpg);
  background-size: cover;
  background-position: 50% 0;
  margin: 0 auto;
  position: relative;
  height: 100vh;
}

#mv .mvInner .mvTxt{
  position: absolute;
  bottom:80px;
  left:0;
  text-align: center;
  width: 100%;
  max-width:500px;
}

#mv .mvInner p{
  background-color: #fff;
  margin-bottom: 16px;
  font-size: 2rem;
  letter-spacing: 0.4em;
  text-align: center;
  display: inline-block;
  padding: 0.3em 0.4em;
}

#mv .mvInner .mvTxt-serif{
  font-size: 2.6rem;
  letter-spacing: 0.2em;
  font-family: 'Noto Serif', serif;
  font-weight: bold;
}


@media screen and (max-width: 768px) {
  #mv {
    margin-top: 50px;
    height: auto;
    min-height: 400px;
  }

  #mv .mvInner {
    width: 100%;
    background-size: cover;
    height: auto;
    min-height: 400px;
    background-position: 50% 0;
  }

  #mv .mvInner .mvTxt{
    bottom:2%;
    left:0;
    width: 56%;
    max-width: 50em;
  }

  #mv .mvInner p{
    background-color: #fff;
    margin-bottom: 1em;
    font-size: calc(0.8rem + 1vw);
    letter-spacing: 0.1em;
    text-align: center;
    display: inline-block;
    padding: 0.3em 0.4em;
  }

  #mv .mvInner .mvTxt-serif{
    font-size: calc(1rem + 1vw);
    letter-spacing: 0.1em;
    font-family: 'Noto Serif', serif;
    font-weight: bold;
  }
}

/*========================================================
▼コンテンツエリア
========================================================*/

#contents{
  background-color: #fff;
  padding-bottom:64px;
}

/*lead
------------------------------------------------*/
.lead{
  padding:100px 0;
  text-align: center;
}

.lead .sub{
    color: #949280;
    font-family: "FuturaStd-Medium", "Didact Gothic", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.4em;
    margin-bottom:18px;
}

.lead .name{
  font-family: "HelveticaNeueLTStd-Md","Open Sans", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.3em;
  margin-bottom:36px;
}

.lead .txt{
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .lead{
    padding:50px 0;
  }

  .lead .sub{
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    margin-bottom:18px;
  }

  .lead .name{
    font-family: "HelveticaNeueLTStd-Md","Open Sans", sans-serif;
    font-size: 3rem;
    letter-spacing: 0.2em;
    margin-bottom:36px;
  }

  .lead .txt {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}

/*interview
------------------------------------------------*/
.interview{
  background-color: #eff6f2;
  font-size:1.6rem;
  line-height: 2.25;
  padding:50px 0;
}

.section{
  margin-bottom: 50px;
}

.section img{
  margin-bottom:50px;
}

.interviewer{
  color:#949280;
  margin-bottom:1em;
}

.profileInner{
  background-color: #fff;
  padding:2em;
}

.profile .ttl{
  font-family: "FuturaStd-Medium", "Didact Gothic", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  text-align: center;
}

.profile .name{
    font-size: 2rem;
    font-family: 'Noto Serif', serif;
}

.profile .name span{
  letter-spacing: 0.2em;
  font-family: 'Noto Serif', serif;
}

.profile .career{
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.profile ul{
  margin-top:10px;
}

.profile li{
  margin:0 0 0 auto;
  text-align: right;
  line-height: 1.3;
}

.profile li img{
  display: inline-block;
  width: auto;
  height: 1.3rem;
}

.profile li a:hover img{
  opacity: 0.5;
}

@media screen and (max-width: 769px) {
  .interview{
    font-size:1.4rem;
    line-height: 2;
    padding:30px 0;
  }

  .profileInner {
    background-color: #fff;
    padding: 2em 1.2em;
  }

  .profile .career{
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

/*items
------------------------------------------------*/
.items{
  padding:100px 0;
}

.items .itemsInner{
  padding: 0 4%;
  font-size: 1.4rem;
}

.itemsInner .itemTtl{
  text-align: center;
  margin-bottom: 90px;
}

.itemsInner .itemTtl h2{
  font-family: "HelveticaNeueLTStd-Md","Open Sans", sans-serif;
  font-size:2.4rem;
  letter-spacing: 0.4em;
  padding-bottom:1em;
  border-bottom: 15px solid #949280;
  width: 100%;
  max-width: 20em;
  margin: 0 auto 1em;
}

.itemsInner .itemTtl .subTtl{
  font-size: 2rem;
  letter-spacing: 0.2em;
}

.itemsInner .itemBox{
  margin-bottom:150px;
}

.itemsInner .itemBox:last-of-type{
  margin-bottom:0;
}

.itemsInner .itemPic{
  width: 400px;
  margin: 0 auto 30px;
}

.itemsInner .itemPic a:hover img{
  opacity: 0.7;
}

/*パンツ個別指定*/
.itemsInner .pantsPic{
  width: 250px;
}

.itemsInner .itemName{
  font-family: "HelveticaNeueLTStd-Md","Open Sans", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 24px;
}

.itemsInner .itemName span{
  font-size: 1.8rem;
  letter-spacing: 0;
}

.itemsInner .itemPrice{
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
}

.itemsInner .itemDetail{
  width: 650px;
  margin: 0 auto;
  line-height: 1.3;
}

.itemsInner .itemDetail .detailImg{
  display: flex;
  margin-bottom:30px;
}

.itemsInner .itemDetail .detailImg p{
  width:300px;
}

.itemsInner .itemDetail .detailImg p:nth-of-type(odd){
  margin:0 auto 0 0;
}

.itemsInner .itemDetail .detailImg p:nth-of-type(even){
  margin:0 0 0 auto;
}

/*ディテールが1つの場合*/
.itemsInner .itemDetail .imgSingle p:nth-of-type(odd) {
  margin: 0 auto;
}

.itemsInner .itemTxt{
  line-height: 1.5;
}

@media screen and (max-width: 769px) {
  .items {
    padding: 50px 0;
  }

  .itemsInner .itemTtl {
    margin-bottom: 45px;
  }

  .itemsInner .itemTtl h2{
    font-size:2rem;
    letter-spacing: 0.1em;
    border-bottom: 8px solid #949280;
  }

  .itemsInner .itemTtl .subTtl{
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  .itemsInner .itemBox{
    margin-bottom:50px;
  }

  .itemsInner .itemPic{
    width: 80%;
    margin: 0 auto 30px;
  }

  /*パンツ個別指定*/
  .itemsInner .pantsPic{
    width: 50%;
  }

  .itemsInner .itemDetail {
    width: 100%;
  }

  /*アイテム名*/
  .itemsInner .itemName{
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1em;
  }

  .itemsInner .itemName span{
    font-size: 1.4rem;
    letter-spacing: 0;
  }

  .itemsInner .itemTxt{
    font-size: 1.4rem;
  }
  
  /*アイテムサイズ・価格*/
  .itemsInner .itemPrice{
    font-size: 1.4rem;
    margin-bottom:1.6rem;
  }

  .itemsInner .itemDetail{
  width: 100%;
}

.itemsInner .itemDetail .detailImg{
  display: flex;
  margin-bottom:2rem;
}

.itemsInner .itemDetail .detailImg p{
  width:48%;
}
  
}

/*moreボタン*/
.moreBtn{
  width: 460px;
  margin:0 auto 60px;
  display: block;
  padding:1.2em 0;
  background-color: #e06b24;
  color: #fff;
  font-size: 1.8rem;
  font-family: "FuturaStd-Medium", "Didact Gothic", sans-serif;
  text-align: center;
  letter-spacing: 0.15em;
  border: 2px solid #e06b24;
}

.moreBtn:hover{
  background-color: #fff;
  color: #e06b24;
  border: 2px solid #e06b24;
}

@media screen and (max-width: 769px) {
  .moreBtn{
    width: 94%;
    max-width: 460px;
    margin:0 auto 60px;
    font-size: 1.4rem;
  }
}

/*フッター前ロゴ*/
.btmLogo{
  width: 228px;
  margin:0 auto;
  display: block;
}

.btmLogo:hover{
  opacity: 0.8;
}

@media screen and (max-width: 769px) {
  .btmLogo {
    width: 60%;
    max-width: 228px;
    margin: 0 auto;
    display: block;
  }
}

/*========================================================
▼1000px以下共通設定
========================================================*/

@media screen and (max-width: 1000px) {
   .lead, .profile, .section, .items .itemsInner{
    padding-left: 3%;
    padding-right: 3%;
   }
}

/*========================================================
▼フッター
========================================================*/
#footer {
    background-color: #000;
    clear: both;
    padding:18px 0;
    text-align: center;
}

#footer small{
    color: #fff;
    font-size:1.5rem;
}

@media screen and (max-width: 769px) {
  #footer small{
    color: #fff;
    font-size:1.3rem;
  }
}