@charset "utf-8";

/*  =============================================================

　　基本設定

============================================================= */


/*  全体　基本設定
---------------------------------------------*/

html,
body {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family:"FOT-筑紫明朝 Pr6N R", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;;
  font-size: 16px;
  font-size: 1.6rem;
  line-height:1;
  letter-spacing: normal;
  text-align: left;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  color: #fff;
}

sup {
  vertical-align:super;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width:768px){

  * {
    -webkit-appearance: none;
  }
  
}


/*  ボックス 基本設定
-------------------------- */
.displayPC {
  display: block;
}

.displayTB {
  display: none;
}

.displaySP {
  display: none;
}

.display_pc_tb {
  display: block;
}

.disnon {
  display: none;
}

.visnon {
  visibility:hidden;
}

.disnonPC {
  display: none;
}

.disnonTB {
  display: block;
}

.disnonSP {
  display: block;
}

@media screen and (max-width:768px){
  .displayPC {
    display: none;
  }
  
  .displayTB {
    display: block;
  }  

  .displaySP {
    display: none;
  }
  
  .display_pc_tb {
    display: block;
  } 
  
  .disnonPC {
    display: block;
  } 
  
  .disnonTB {
    display: none;
  } 
  
  .disnonSP {
    display: block;
  }  
}

@media screen and (max-width:640px){
  .displayPC {
    display: none;
  }
  
  .displayTB {
    display: none;
  }  

  .displaySP {
    display: block;
  }
  
  .display_pc_tb {
    display: none;
  } 
  
  .disnonPC {
    display: block;
  }
  
  .disnonTB {
    display: block;
  }  
    
  .disnonSP {
    display: none;
  }
  
}

/*  画像 基本設定
-------------------------- */

img {
  width: 100%;
  vertical-align: top;
  border: none;
}

a:hover img {
  filter: alpha(opacity=70);
  -moz-opacity:0.70;
  opacity:0.70;
  cursor: pointer;
}

@media screen and (max-width:768px){
  a:hover img {
  filter: alpha(opacity=100);
  -moz-opacity:1;
  opacity:1;
  cursor: default;
  }  
}

/*  テキスト 共通設定
-------------------------- */

em {
  font-weight: bold;
}


/*  リンク 基本設定
-------------------------- */

a {
  display: inline-block;
  outline: none;
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a:hover {
  
}

@media screen and (max-width:768px){
  a:hover {
  }  
}


/*  header
---------------------------------------------*/
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  right: 0;
  padding-left: 50px;
}


.header .header__logo {
  width: 167px;
  padding: 30px 0 0 0;
}

@media screen and (max-width:768px){
  .header {
    padding-left: 5%;
  }
  
  .header .header__logo {
    padding: 30px 0 0 0;
  }    
}


@media screen and (max-width:480px){
  .header {
    position: relative;
    z-index: 2;
    padding-left: 0;
  }
  
  .header .header__logo {
    width: 133px;
    margin: 0 auto;
    padding: 24px 0 0;
  }  
}

/*  ドロワーメニュー
---------------------------------------------*/
#drawer-checkbox {
  display: none;
}
#drawer-icon {
  cursor: pointer;
  display: inline-block;
  position: fixed;
  z-index: 999;
  top: 50px;
  right: 50px;
  width: 37px;
  height: 35px;
}
#drawer-icon span {
  background:  #515252;
  display: block;
  height: 2px;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #515252;
  border-radius: 4px;
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -50%;
  position: absolute;
  top: 50%;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
#drawer-icon span::before {
  margin-top: -20%;
}
#drawer-icon span::after {
  margin-top: 18.5%;
}
#drawer-checkbox:checked ~ #drawer-icon span {
  background: rgba(51, 51, 51, 0);
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  width: 100%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
#drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;
  width: 600px;
  max-width: 100%;
  height: 100%;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(100%);
  overflow-y: scroll;
  -webkit-overflow-scrolling : touch;    
}
#drawer-checkbox:checked ~ #drawer-content {
  transform: translateX(0);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}

#drawer-close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
  display: block;
  opacity: 0.3;
}

@media screen and (max-width:768px){
  #drawer-icon {
    top: 30px;
    right: 5%;
  }
}

@media screen and (max-width:480px){
  #drawer-icon {
    top: 24px;
    right: 5%;
  }
}


/* 　メニュー
---------------------------------------------*/
.box-nav {
  width: 100%;
  padding: 100px 0;
}

.box-nav__inner {
  width: 445px;
  margin: 0 auto;
}

.box-nav__logo {
  display: none;
}

.box-nav .section-menu {
  margin: 40px 0 0;
}

.box-nav .menu-title {
  color: #c7c6c5;
  font-size: 3.6rem;
}

.box-nav .menu-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
}

.box-nav .menu-list li {
  width: 45%;
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: normal;
}

.box-nav .menu-list li a {
  color: #515252;
}

.box-nav .menu-list li .icon {
  display: inline-block;
  width: 14px;
  margin-right: 5px;
}

.box-nav .menu_form {
    width: 100%;
}

.box-nav .menu_form form{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 1px solid #828383;
  padding: 0 0 0 6px;
  border-radius: 4px;
}

.box-nav .menu_form input[type="text"]{
  width: 380px;
  border: none;
  padding: 15px 0;
  background-color: transparent;
  color: #000;
}

.box-nav .menu_form input[type="text"]::placeholder {
  color: #b6b8b8;
}

.box-nav .menu_form input[type="submit"]{
  width: 55px;
  border-radius:0;
  border: none;
  background-image: url('/images/precious3/common/btn-search.png');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;  
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
}


@media screen and (max-width: 480px) {
  .box-nav {
    width: 100%;
    padding: 24px 0 50px;
  }

  .box-nav__inner {
    width: 80%;
    margin: 0 auto;
  }

  .box-nav__logo {
    display: block;
    width: 133px;
    margin: 0 auto 60px;
  }

  .box-nav .section-menu {
    margin: 40px 0 0;
  }


  .box-nav .menu-title {
    color: #c7c6c5;
    font-size: 3.6rem;
    line-height: 1.2;
  }
  
  .box-nav .menu-title .word-break {
    display: block;
  }

  .box-nav .menu-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap:wrap;
    flex-direction: column;
    justify-content:flex-start;
    margin-top: 35px;
  }
  
  .box-nav .menu-list li {
    width: 100%;
    margin-bottom: 20px;
    font-size: 1.6rem;
    letter-spacing: normal;
  }

  .box-nav .menu-list li a {
    color: #515252;
  }

  .box-nav .menu-list li .icon {
    display: inline-block;
    width: 14px;
    margin-right: 5px;
  }

  .box-nav .menu_form {
    width: 100%;
    padding-bottom: 20px;
  }

  .box-nav .menu_form form{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #828383;
    padding: 0 0 0 6px;
    border-radius: 4px;
  }

  .box-nav .menu_form input[type="text"]{
    width: 80%;
    border: none;
    padding: 10px 0;
    background-color: transparent;
    color: #000;
  }

  .box-nav .menu_form input[type="text"]::placeholder {
    color: #b6b8b8;
  }

  .box-nav .menu_form input[type="submit"]{
    width: 20%;
    border: none;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;  
    background-color: transparent;
    cursor: pointer;
  }

}

/*  footer
---------------------------------------------*/
.footer {
  padding: 120px 0 60px;
  background: #515252;
  text-align: center;
}

@media screen and (max-width:768px){
  .footer {
    padding: 60px 0 30px;
  }  
}

@media screen and (max-width:480px){
  .footer {
    padding: 60px 0 40px;
  }  
}


/*  btn
-------------------------- */
.footer__btn {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  width: 758px;
  margin: 0 auto 60px;
}

.footer__btn .btn-online,
.footer__btn .btn-shop {
  width: 370px;
}

.footer__btn .btn-online a,
.footer__btn .btn-shop a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  border-radius: 4px;
  border: 1px solid #c6c6c6;
  color: #c6c6c6;
  font-size: 1.6rem;
}

.footer__btn br {
  display: none;
}

.footer__btn .btn-online .icon {
  width: 17px;
  margin-right: 10px;
}

.footer__btn .btn-shop .icon {
  width: 18px;
  margin-right: 10px;
}


@media screen and (max-width:768px){
  .footer__btn {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content:space-between;
    width: 90%;
    margin: 0 auto 60px;
  }

  .footer__btn .btn-online,
  .footer__btn .btn-shop {
    width: 48%;
  }

  .footer__btn .btn-online a,
  .footer__btn .btn-shop a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    border-radius: 4px;
    border: 1px solid #c6c6c6;
    color: #c6c6c6;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .footer__btn br {
    display: block;
  }

  .footer__btn .btn-online .icon {
    width: 17px;
    margin-right: 10px;
  }

  .footer__btn .btn-shop .icon {
    width: 18px;
    margin-right: 10px;
  }  
}

@media screen and (max-width:480px){
  .footer__btn {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    width: 90%;
    margin: 0 auto 60px;
  }

  .footer__btn .btn-online,
  .footer__btn .btn-shop {
    width: 100%;
  }
  
  .footer__btn .btn-online {
    margin-bottom: 10px;
  }

  .footer__btn .btn-online a,
  .footer__btn .btn-shop a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    border-radius: 4px;
    border: 1px solid #c6c6c6;
    color: #c6c6c6;
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .footer__btn br {
    display: block;
  }

  .footer__btn .btn-online .icon {
    width: 17px;
    margin-right: 10px;
  }

  .footer__btn .btn-shop .icon {
    width: 18px;
    margin-right: 10px;
  }  
}

/*  SNS
-------------------------- */
.footer__sns {
  margin: 60px auto 0;
}


.footer__sns-title .text-en {
  position: relative;
  z-index: 1;
  opacity: 0.2;
  color: #fff;
  font-size: 4.8rem;
  letter-spacing: 0.8rem;
  text-align: center;  
}

.footer__sns-title .text-jp {
  position: relative;
  z-index: 2;
  margin: -25px 0 0;
  font-size: 3.2rem;
  letter-spacing: 0.1rem;
  color: #e2d2a0;
  line-height: 1.5;
  text-align: center;  
}


.footer__sns ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto;
}

.footer__sns ul li {
  margin: 0 20px;
}

.footer__sns a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  color: #e2d2a0;
  font-size: 1.6rem;
}

.footer-sns-icon {
  margin-right: 10px;
}

.footer-sns-icon.-fb {
  width: 13px;
}

.footer-sns-icon.-line {
  width: 27px;
}

.footer-sns-icon.-tw {
  width: 29px;
}

.footer-sns-icon.-ig {
  width: 29px;
}

.footer-sns-icon.-yt {
  width: 29px;
}

@media screen and (max-width:480px){
  .footer__sns {
    margin: 25px auto 0;
  }


  .footer__sns-title .text-en {
    position: relative;
    z-index: 1;
    opacity: 0.2;
    color: #fff;
    font-size: 2.4rem;
    letter-spacing: 0.8rem;
    text-align: center;  
  }

  .footer__sns-title .text-jp {
    position: relative;
    z-index: 2;
    margin: -12px 0 0;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    line-height: 1.5;
    text-align: center;  
  }


  .footer__sns ul {
    display: block;
    margin: 20px auto 30px;
    font-size: 0;
    text-align: center;
  }

  .footer__sns ul li {
    display: inline-block;
    vertical-align: bottom;
    width: 20%;
    margin: 0 8px 20px;
    text-align: center;
  }
  
  .footer__sns ul li:nth-child(3) {
    margin: 0 20px 20px 8px;
  }

  .footer__sns a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    color: #e2d2a0;
    font-size: 1.2rem;
    text-align: center;
  }

  .footer-sns-icon {
    margin: 0 auto 10px;
  }

  .footer-sns-icon.-fb {
    width: 13px;
  }

  .footer-sns-icon.-line {
    width: 27px;
  }

  .footer-sns-icon.-tw {
    width: 29px;
  }

  .footer-sns-icon.-ig {
    width: 29px;
  }

  .footer-sns-icon.-yt {
    width: 29px;
  }
}

/*  フッターメニュー
-------------------------- */
.footer__nav {
  padding: 60px 0 25px;
  color: #f7f7f7;
}

.footer__nav li {
  position: relative;
  display: inline-block;
  padding: 0 12px 0 5px;
  font-size: 1.2rem;
}

.footer__nav li::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "|";
}

.footer__nav li:last-child::after {
  display: none;
}

.footer__nav li a {
  color: #f7f7f7;
}

@media screen and (max-width:480px){
  .footer__nav {
    padding: 0px 0 25px;
    color: #f7f7f7;
  }
  
  .footer__nav ul {
    text-align: center;
  }

  .footer__nav li {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    padding: 0 12px 0 5px;
    font-size: 1.2rem;
  }
  
  .footer__nav li:nth-child(2) {
    margin-right: 30px;
  }

  .footer__nav li::after {
    position: absolute;
    top: 0;
    right: 0;
    content: "|";
  }

  .footer__nav li:last-child::after {
    display: none;
  }

  .footer__nav li a {
    color: #f7f7f7;
  }  
  
}

.footer__copyright {
  color: #ababab;
  font-size: 1.0rem;
}