@charset "UTF-8";

/* base
--------------------------------------------------------- */
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
a {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
}
.mb20 {
  margin-bottom: 20px;
}


/* Responsive
--------------------------------------------------------- */
@media screen and (min-width: 1024px) {
  .pc_tab_none, .pc_none {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) and (min-width: 640px) {
  .pc_tab_none, .tab_none, .mob_tab_none {
    display: none !important;
  }
}
@media screen and (max-width: 639px) {
  .mob_none, .mob_tab_none {
    display: none !important;
  }
}


/* head
--------------------------------------------------------- */
.header{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(12, 15, 20, .8);
  z-index: 5;
  width: 100%;
  height: 75px;
  display: block;
}
@media screen and (max-width: 1023px) {
  .header{
    position: absolute;
    height: 65px;
  }
}
@media screen and (max-width: 639px) {
  .header{
    height: 50px;
  }
}

/* logo */
.logo_head{
  position: absolute;
  left: 0;
  top: 0;
  width: 254px;
  height: 100%;
  opacity: .8;
}
.logo_head a{
  height: 100%;
  width: 100%;
  display: block;
}
.logo_head img{
  width: 100%;
  height: auto;
  display: block;
  padding-top: 26px;
}
@media screen and (max-width: 1023px) {
  .logo_head img{
    padding-top: 22px;
  }
}
@media screen and (max-width: 639px) {
  .logo_head{
    width: 200px;
    opacity: 1;
  }
  .logo_head img{
    padding-top: 18px;
  }
}


/* nav
--------------------------------------------------------- */
/* ボタン */
.gnav_btn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .gnav_btn {
    display: block;
    width: 80px;
    background: #ddd;
    color: #151925;
    font-weight: bold;
    letter-spacing: 1.5px;
    line-height: 36px;
    text-align: center;
    position: absolute;
    border-radius: 3px;
    right: 15px;
    top: 15px;
    font-size: 1.4rem;
    cursor: pointer;
    position: fixed;
    z-index: 10;
  }
  .open .gnav_btn {
    background: #fff;
  }
}
@media screen and (max-width: 639px) {
  .gnav_btn {
    width: 50px;
    line-height: 30px;
    letter-spacing: 0.5px;
    top: 10px;
    font-size: 1.1rem;
    right: 10px;
  }
}

/* ナビ */
@media screen and (max-width: 1023px) {
  .gnav {
    position: fixed;
    top: 0;
    right: -100vw;
    height: 100vh;
    width: 100vw;
    text-align: center;
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    z-index: 5;
    background: rgba(12, 15, 20, .8);
    padding-top: 20px;
  }
  /* .gnav スライドアニメーション */
  .open .gnav {
    right: 0;
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  .open .main,
  .open .footer,
  .open .logo_head {
    pointer-events: none;
    transition: all .2s ease-out;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
  }
  .open .header {
    background: none;
  }
}
@media screen and (max-width: 639px) {
  .gnav {
    padding-top: 0px;
  }
}

/* リスト */
.gnav_list{
  text-align: right;
}
.gnav_listitem{
  display: inline-block;
}
.gnav_listitem:first-child{
  display: none;
}
.gnav_listitem a{
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
  color: #fff;
  opacity: .8;
  padding: 0 12px;
  line-height: 75px;
  letter-spacing: 1px;
}
@media screen and (min-width: 1024px) {
  .gnav_listitem.sns_btn a{
    padding: 0 2px;
    font-size: 2rem;
  }
  .gnav_listitem.sns_btn .none{
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .gnav_list{
    text-align: center;
  }
  .gnav_listitem{
    display: block;
  }
  .gnav_listitem a{
    opacity: 1;
    padding: 0 0 10px;
    line-height: 50px;
  }
  .gnav_listitem:first-child{
    display: block;
  }
  .gnav_listitem.sns_btn .none{
    padding-left: 10px;
  }
}
@media screen and (max-width: 639px) {
  .gnav_listitem a{
    padding: 0;
    font-size: 1.4rem;
    letter-spacing: 2px;
    line-height: 52px;
    border-bottom: 1px solid rgba(225, 225, 225, .1);
  }
  .gnav_listitem.sns_btn a{
    padding: 0 3px;
  }
}



/* footer
--------------------------------------------------------- */
/* copylight */
.copylight{
  display: block;
  line-height: 50px;
  text-align: center;
  font-size: 1.3rem;
  background: #a59983;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .copylight{
    line-height: 35px;
  }
}



/* パーツ
--------------------------------------------------------- */
/* 枠 */
.frame_inner{
  margin: auto;
  max-width: 1000px;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .frame_inner{
    width: 90%;
  }
}




/* メイン
--------------------------------------------------------- */
/* タイトル */
.content_ttl{
  color: #131722;
  text-align: center;
  font-size: 4.8rem;
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 1;
  margin-bottom: 60px;
}
.content_ttl span{
  display: block;
  font-size: 1.2rem;
  padding-top: 12px;
  letter-spacing: 2px;
}
@media screen and (max-width: 1023px) {
  .content_ttl{
    font-size: 4rem;
    letter-spacing: 4px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 639px) {
  .content_ttl{
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
  }
  .content_ttl span{
    font-size: 1rem;
    padding-top: 10px;
  }
}

/* タイトル2 */
.content_ttl.layout_line{
  color: #fff;
  background: #131722;
  font-size: 3rem;
  line-height: 75px;
  letter-spacing: 7px;
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .content_ttl.layout_line{
    font-size: 2.5rem;
    line-height: 65px;
  }
}
@media screen and (max-width: 639px) {
  .content_ttl.layout_line{
    font-size: 2.3rem;
    line-height: 55px;
    letter-spacing: 4px;
  }
}

/* タイトル バリエーション */
.content_ttl.white{
  color: #fff;
}
.content_ttl.gold{
  background: #a59983;
}

/* 本文 */
.content_txt{
  font-size: 1.6rem;
  line-height: 1.8;
}
.content_txt+.content_txt{
  padding-top: 20px;
}


/* メインビジュアル
--------------------------------------------------------- */
.mainvisual{
  position: relative;
  height: 700px;
  background: url(../img/top/main.jpg) no-repeat center #202f30;
  background-size: cover;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .mainvisual{
    height: 500px;
  }
}
@media screen and (max-width: 639px) {
  .mainvisual{
    height: 300px;
  }
}

/* ABOUT
--------------------------------------------------------- */
.frame_about{
  position: relative;
  padding: 80px 0 130px;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .frame_about{
    padding: 65px 0 70px;
  }
  .frame_about .frame_inner{
    max-width: 700px;
    margin: auto;
  }
}
@media screen and (max-width: 639px) {
  .frame_about{
    padding: 45px 0 ;
  }
}


/* BLAND
--------------------------------------------------------- */
.bland_list{
  padding: 90px 0;
}
.bland_listitem+.bland_listitem{
  padding-top: 90px;
}
@media screen and (max-width: 1023px) {
  .bland_list{
    padding: 65px 0 80px;
  }
  .bland_listitem+.bland_listitem{
    padding-top: 80px;
  }
}
@media screen and (max-width: 639px) {
  .bland_list{
    padding: 40px 0 70px;
  }
}

.bland_img{
  background: url(../img/top/main.jpg) no-repeat center #202f30;
  background-size: cover;
  text-align: center;
  height: 400px;
  width: 100%;
}
@media screen and (max-width: 639px) {
  .bland_img{
    height: 200px;
  }
}
img.seishitanaka_pict {
  width: 120px;
  height: auto;
  float: right;
  margin-left: 10px;
}

/* logoとimg */
.bland_list_head{
  display: inline-block;
  width: 36.5%;
  vertical-align: middle;
  padding-right: 3%;
}
.bland_list_ttl{
  width: 250px;
  margin: auto;
}
.bland_list_img{
  margin-top: 20px;
}
@media screen and (max-width: 1023px) {
  .bland_list_head{
    display: block;
    margin: auto;
    padding-right: 0;
    width: 40%;
    text-align: center;
  }
  .bland_list_ttl{
    max-width: 250px;
    width: 100%;
  }
  .bland_list_img{
    margin-top: 25px;
  }
}
@media screen and (max-width: 639px) {
  .bland_list_head{
    width: 70%;
  }
  .bland_list_img{
    margin-top: 30px;
  }
}

/* テキスト */
.bland_list_body{
  display: inline-block;
  width: 60%;
  vertical-align: middle;
  position: relative;
}
.bland_list_txt{
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 1px;
}
@media screen and (max-width: 1023px) {
  .bland_list_body{
    display:block;
    width: 100%;
    max-width: 700px;
    margin: auto;
    padding-top: 30px;
  }
  .bland_list_txt{
    line-height: 1.9;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 639px) {
  .bland_list_body{
    padding-top: 24px;
  }
  .bland_list_txt{
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: 0.3px;
  }
}

/* INFORMATION
--------------------------------------------------------- */
.frame_info{
  position: relative;
  padding: 80px 0 130px;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .frame_info{
    padding: 65px 0 70px;
  }
  .frame_info .frame_inner{
    max-width: 700px;
    margin: auto;
  }
}
@media screen and (max-width: 639px) {
  .frame_info{
    padding: 45px 0 ;
  }
}

/* リスト */
.info_list{
  width: 90%;
  max-width: 730px;
  margin: auto;
}
.info_listitem{
  font-size: 1.4rem;
  line-height: 1.8;
}
.info_listitem+.info_listitem{
  padding-top: 30px;
}
.info_list_time{
  display: inline-block;
  width: 13%;
  vertical-align: top;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 1px;
}
.info_list_txt{
  display: inline-block;
  width: 85%;
  padding-left: 1%;
  vertical-align: top;
}
.info_list_txt a{
  text-decoration: underline;
}
.info_list_txt a:hover{
  color: #a59983;
}
@media screen and (max-width: 1023px) {
  .info_list_time{
    width: 17%;
  }
  .info_list_txt{
    width: 80%;
  }
}
@media screen and (max-width: 639px) {
  .info_list{
    width: 85%;
  }
  .info_listitem+.info_listitem{
    padding-top: 15px;
  }
  .info_list_time{
    width: 100%;
    font-style: normal;
  }
  .info_list_txt{
    width: 100%;
    padding-left: 0;
  }
}


/* SHOPLIST
--------------------------------------------------------- */
.frame_shoplist{
  position: relative;
  background: repeat center #131722;
/*  background-image: url(../img/top/info_bg.jpg);*/
  background-size: 100% auto;
  padding: 100px 0;
}
.frame_shoplist_inner{
  background: rgba(255, 255, 255, 0.95);
  padding: 70px 0;
}
@media screen and (max-width: 1023px) {
  .frame_shoplist{
    padding: 80px 0;
  }
}
@media screen and (max-width: 639px) {
  .frame_shoplist{
    padding: 30px 0;
  }
  .frame_shoplist_inner{
    padding: 30px 0;
  }
}

/* タイトル調整 */
@media screen and (min-width: 1024px) {
  .frame_shoplist .content_ttl{
    margin-bottom: 45px;
  }
}


/* リスト */
.shop_list{
  width: 90%;
  max-width: 600px;
  margin: auto;
}
.shop_listitem{
  font-size: 1.4rem;
  line-height: 1.8;
}
.shop_listitem+.shop_listitem{
  padding-top: 30px;
}
.shop_listitem_name{
  font-weight: bold;
  letter-spacing: 1px;
}
.shop_listitem_name a{
  text-decoration: underline;
}
.shop_list_txt{
}
@media screen and (max-width: 1023px) {
  .shop_list_time{
    width: 17%;
  }
  .shop_list_txt{
    width: 80%;
  }
}
@media screen and (max-width: 639px) {
  .shop_list{
    width: 85%;
  }
  .shop_listitem+.shop_listitem{
    padding-top: 15px;
  }
  .shop_list_time{
    width: 100%;
    font-style: normal;
  }
  .shop_list_txt{
    width: 100%;
    padding-left: 0;
  }
}


/* COLLECTION
--------------------------------------------------------- */
.frame_content{
  position: relative;
}
.collection_img{
  background: no-repeat center #ad8e75;
  background-size: cover;
  height: 100%;
  width: 50%;
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 1023px) {
  .collection_img{
    height: 400px;
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 639px) {
  .collection_img{
    height: 230px;
  }
}

.collection_body{
  display: inline-block;
  width: 49%;
  padding: 65px 55px;
  vertical-align: top;
}
@media screen and (max-width: 1023px) {
  .collection_body{
    width: 90%;
    max-width: 700px;
    margin: auto;
    display: block;
    padding: 50px 0 65px;
  }
}
@media screen and (max-width: 639px) {
  .collection_body{
    padding: 20px 0 40px;
  }
}

.content_subttl{
  font-size: 2.0rem;
  position: relative;
  padding-bottom: 15px;
  font-weight: bold;
  letter-spacing: 1px;
}
.content_subttl:after{
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 55px;
  height: 2px;
  background: #ebebeb;
}
.collection_time{
  font-size: 1.6rem;
  padding: 40px 0 8px;
  font-weight: bold;
}
.collection_place{
  font-size: 1.4rem;
}
.collection_txt{
  font-size: 1.4rem;
  padding: 26px 0 ;
  line-height: 1.8;
}
.collection_map{
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 639px) {
  .content_subttl{
    padding-bottom: 10px;
  }
  .collection_time{
    padding: 20px 0 5px;
  }
  .collection_txt{
    padding: 12px 0;
  }
  .collection_map{
    height: 160px;
  }
}

/* COMPANY
--------------------------------------------------------- */
.company_block{
  display: inline-block;
  width: 49.5%;
  vertical-align: top;
  padding: 70px 0 50px;
}
@media screen and (max-width: 1023px) {
  .company_block{
    display: block;
    margin: auto;
    width: 100%;
    max-width: 700px;
    padding: 50px 0 0;
  }
  .company_block:last-child{
    padding: 0;
  }
}
@media screen and (max-width: 639px) {
  .company_block{
    display: block;
    padding: 25px 0 0;
  }
  .company_block:last-child{
    padding: 0;
  }
}

.company_data{
  padding: 10px 0 50px;
  font-size: 1.5rem;
}
.company_data dt,
.company_data dd{
  display: inline-block;
  vertical-align: top;
  padding-top: 15px;
}
.company_data dt{
  width: 17%;
}
.company_data dd{
  width: 83%;
}
.s_caption{
  font-size: 1.2rem;
  display: block;
  letter-spacing: 1px;
}
@media screen and (max-width: 1023px) {
  .company_data{
    padding: 0 0 60px;
  }
}
@media screen and (max-width: 639px) {
  .company_data{
    padding: 0 0 30px;
  }
  .company_data dt,
  .company_data dd{
    padding-top: 10px;
  }
  .company_data dt{
    width: 20%;
  }
  .company_data dd{
    width: 78%;
  }
  .s_caption{
    letter-spacing: 0.5px;
  }
}

/* CONTACT
--------------------------------------------------------- */
.frame_contact{
  background: #151925;
  padding: 70px 0 100px;
}
.contact_foam{
  max-width: 700px;
  margin: auto;
}
@media screen and (max-width: 639px) {
  .frame_contact{
    background: #151925;
    padding: 30px 0 ;
  }
}

.contact_foam_ttl{
  width: 100%;
  padding: 0 0 5px 4px;
  letter-spacing: 1px;
  color: #b5a890;
  font-size: 1.3rem;
}
.contact_foam_body{
  width: 100%;
  padding-bottom: 25px;
}
.contact_foam_body input,
.contact_foam_body textarea,
.contact_foam_body select{
  width: 100%;
  border-radius: 3px;
  background: #fff;
  padding: 8px;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 1px;
}
.selectbox > span{
  position: relative;
  z-index: 0;
  display: block;
}
.selectbox > span:after{
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  content: '';
  border-top: 4px solid #b5a890;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  z-index: 1;
}
@media screen and (max-width: 639px) {
  .contact_block{
    padding: 0px;
    display: block;
    width: 100%;
    margin: auto;
  }
  .contact_foam_body{
    padding-bottom: 15px;
  }
  .contact_foam_body input,
  .contact_foam_body textarea,
  .contact_foam_body select{
    letter-spacing: 0.5px;
  }
  .contact_foam_ttl{
    font-weight: bold;
  }
}

/* 送信ボタン */
.contact_foam_btn{
  text-align: center;
  width: 200px;
  margin: auto;
}
.contact_foam_btn img{
  display: none;
}
.contact_foam_btn a{
  width: 200px;
  padding: 0;
  margin: 0;
}
.contact_foam_btn input{
  display: block;
  width: 200px;
  height: 50px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 5px;
  font-size: 1.6rem;
  letter-spacing: 1px;
  font-weight: bold;
  line-height: 50px;
}
@media screen and (max-width: 639px) {
  .contact_foam_btn{
    margin-bottom: 5px;
  }
  .contact_foam_btn input{
    height: 45px;
    line-height: 45px;
  }
}

/* 注意書き */
.frame_contact .wpcf7-not-valid-tip {
 font-size: 1.3rem;
 padding: 10px 5px 0;
}
.frame_contact .wpcf7-response-output{
 border: none;
 background: #a59983;
 margin: 30px 15px 0;
 padding: 20px;
 font-size: 1.5rem;
 line-height: 1.5;
 border-radius: 6px;
}
@media screen and (max-width: 639px) {
  .frame_contact .wpcf7-response-output{
   margin: 13px auto 0;
  }
}



/* お問い合わせ完了画面
--------------------------------------------------------- */
.frame_conpage{
  position: relative;
  background: repeat center #131722;
  background-size: 100% auto;
  padding: 180px 0 0;
  min-height: 100vh;
  margin-top: -50px;
}
.frame_conpage_inner{
  background: rgba(255, 255, 255, 0.95);
  padding: 70px 0;
}
@media screen and (max-width: 639px) {
  .frame_conpage{
    padding: 120px 0 0;
    margin-top: -30px;
  }
  .frame_conpage_inner{
    padding: 30px 30px;
  }
}

/* タイトル調整 */
@media screen and (min-width: 1024px) {
  .frame_conpage .content_ttl{
    margin-bottom: 45px;
  }
}

.contact_txt{
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}

/* 送信ボタン */
.btn{
  text-align: center;
  width: 200px;
  margin: 20px auto 0;
}
.btn a{
  display: block;
  width: 200px;
  height: 50px;
  color: #131722;
  border: 1px solid #131722;
  border-radius: 5px;
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-weight: bold;
  line-height: 50px;
}
.btn a:hover{
  color: #fff;
  background: #131722;
}
@media screen and (max-width: 639px) {
  .btn{
    margin: 15px auto 0;
  }
  .btn a{
    height: 45px;
    line-height: 45px;
  }
}


/* 404
--------------------------------------------------------- */
#error404 {
  min-height: 100vh;
  padding-top: 30vh;
}
.error_text {
  color: #fff;
  text-align: center;
}
.go_to_top {
  display: block;
  width: 240px;
  margin: 60px auto 0;
  padding: 1em 0;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.6rem;
  transition: .2s ease;
}
.go_to_top:hover {
  background: #fff;
  color: #131722;
}

/* end */
