@charset "UTF-8";
* {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  font-family: "Helvetica Neue Thin", "Helvetica Neue Light", "Helvetica Light", "Avenir Light","ヒラギノ明朝 ProN W3";
  font-size: 15px;
  color: #060606;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.logo {
  width: 80px;
  transition: all 0.3s ease-in-out 0s;
}
.logo:hover {
  opacity: 0.4;
}
.sticky-header {
  position: fixed;
  z-index: 9999;
  transition: 0.25s;
  top: 12px;
  left: 30px;
}
.glovalnav{
  position: fixed;
  top: 155px;
  left: -5px;
}
li{
  list-style-type: none;
}
ul ul{
  display:none;
  padding: 0;
}
li a{
    font-family: "Montserrat Thin Medium", "Montserrat Thin Regular", "Montserrat Thin SemiBold", "Futura Bold", "Futura Book", "Noto Sans JP Medium";
    color: #BCB8B8;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 22px;
}
ul ul li a{
    font-size: 12px;
    color: #C9C9C9;
    font-family: "Montserrat Thin Medium", "Montserrat Thin Regular", "Montserrat Thin SemiBold", "Futura Bold", "Futura Book", "Noto Sans JP Medium";
    font-weight: normal;
    line-height: 18px;
    padding-left: 10px;
    letter-spacing: 1px;
}
li a:hover {
   color: #868686;
}
ul ul li a:hover{
   color: #868686;
}

.insta{
  position: fixed;
  z-index: 9999;
  transition: 0.25s;
  top: 105px;
  left: 35px;
}
.instalogo{
  width: 20px;
  transition: all 0.3s ease-in-out 0s;
}	
.instalogo:hover {
  opacity: 0.4;
}

.producttop img{
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product_title{
    text-align: center;
    margin-top:-30px;
}
.product_title h3{
    display: inline-block;
    font-family: "Helvetica Neue Bold";
    font-weight: normal;
    font-size: 30px;
    letter-spacing: 8px;
    margin-top: 70px;
    margin-bottom: 50px;
    position: relative;
}

.product_title h3:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px; /*下線の上下位置調整*/
  display: inline-block;
  width: 50px; /*下線の幅*/
  height: 2px; /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  background-color: #666666; /*下線の色*/
}

.jocluch_logo img{
    width: 70px;
}

h2 {
    font-family: "ヒラギノ角ゴシック W3";
    font-weight: lighter;
    font-size: 13px;
    text-align: center;
    letter-spacing: 2px; 
    margin-top: 20px;
}

.container {
    display: grid;
    width:50%;
    gap:100px;
    grid-template-columns: repeat(auto-fit,minmax(100px,1fr));
    text-align: center;
    place-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

.h5 {
    font-size: 15px;
    letter-spacing: 1px;
    font-family: "Helvetica Neue Thin", "Helvetica Neue Light", "Helvetica Light", "Avenir Light";
    font-weight: lighter;	
    margin-bottom: -10px;
	color: #656565;
}
.name{
    font-size: 9px;
    letter-spacing: 1px;
    font-family: "ヒラギノ角ゴシック W3";
    font-style: normal;
    font-weight: lighter;
    margin-bottom: -5px;
    color: #656565;   
}
.h3 {
    font-size: 10px;
    letter-spacing: 1px;
    font-family: "Helvetica Neue Thin", "Helvetica Neue Light", "Helvetica Light", "Avenir Light";
    font-weight: lighter;
    font-style: normal;
	color: #656565;
}
.brooch img {
    max-width: 200px;
    margin-bottom: 0px;
	margin-top: 0px;;
    text-align: center;
}

.brooch :hover {
  opacity: 0.6;
}

.logo2{
    width: 100%;
    text-align: center
}
.logo2 img{
    width: 50px;
}

/*フッター*/
.footer {
    padding: 20px 0;
    float: left;
    width: 100%;
    text-align: center;
}
.footer p {
    font-family: "ヒラギノ角ゴシック W3";
    font-weight: normal;
    font-size: 11px;
    color: #000000;
    letter-spacing: 1px;
}

/*ページ先頭に戻るボタン*/
.pagetop {
    position: fixed;
    bottom: 0px;
    right: 0px;
    display: flex;
}
.pagetop img {
  width: 60px;
  height: 100px;
  display: block;
  right: 0px;
  margin-bottom: 20px;
  margin-right: 0px;
}


/*メディアクエリ 768px*//*メディアクエリ 768px*//*メディアクエリ 768px*/

@media(max-width:768px) {

.sticky-header {
    position: fixed;
    z-index: 9996;
    transition: 0.25s;
    top: 4px;
    left: 22px;
}
.logo {
    width: 55px;
}

/*ボタンのCSS 【クリック前】*/	
.nav_toggle {
    position: fixed;
    display: block;
    margin: 0 0 0 auto;
    top:25px;
    right: 25px;
    width: 25px;
    height: 20px;
    z-index: 9999;
}	
.nav_toggle i {
  display: block;
  width: 100%;
  height: 2px;
  background-color:#E7E7E7;
  position: absolute;
  transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
    top: 0;
}
.nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}
.nav_toggle i:nth-child(3) {
    bottom: 0;
}

/*ボタンのCSS 【クリック後　.showが追加されている】*/
.nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
    opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
}	
	
.producttop img{
    width: 100%;
    height: 270px;
    object-fit: cover;
}	
	
.glovalnav{
    position: fixed;
    z-index : 997;
    top  : 0;
    left : 0;
    color: #fff;
    background: rgba(0,0,0,0.7);
    text-align: center;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity .6s ease, visibility .6s ease;
      display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}	
li{
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}
ul li:last-child {
    padding-bottom: 0;
}		
ul ul{
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
li a{
    display: block;
    font-family:  "Helvetica Neue Thin", "Helvetica Neue Light", "Helvetica Light", "Avenir Light";
    color: #FFFFFF;
    text-decoration: none;
    font-size: 21px;
    letter-spacing:5px;
    line-height: 60px;
    font-weight: normal;
	padding-right: 40px;
}
ul ul li a{
    display: block;
    font-size: 12px;
    color: #FFFFFF;
    font-family: "Helvetica Neue Thin", "Helvetica Neue Light", "Helvetica Light", "Avenir Light";
    font-weight: normal;
    letter-spacing: 2px;
    line-height: 30px;
    padding-right: 45px;
}	
li a:hover{
    color: #000000;
}
ul ul li a:hover{
    color: #000000;
}
		
/*メニューリストのCSS【クリック前】*/
.glovalnav {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
}	
	
/*メニューリストのCSS【クリック後　.showが追加されている】*/
.glovalnav.show {
    opacity: 1;
    visibility: visible;
}

.insta{
  position: fixed;
  z-index: 9999;
  transition: 0.25s;
  top: 70px;
  left: 24px;
}
.instalogo{
  width: 22px;
}	
	
.product_title{
    text-align: center;
    margin-top:20px;
}
.product_title h3{
  display: inline-block;
  font-family: "Helvetica Neue Thin", "Helvetica Neue Light", "Helvetica Light", "Avenir Light";
  ffont-weight: lighter;
  font-size: 22px;
  letter-spacing: 8px;
  margin-top: 0px;
  margin-bottom: 50px;
  position: relative;
}

.product_title h3:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px; /*下線の上下位置調整*/
  display: inline-block;
  width: 50px; /*下線の幅*/
  height: 2px; /*下線の太さ*/
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%); /*位置調整*/
  background-color: #666666; /*下線の色*/
}	
h2 {
    font-family: "ヒラギノ角ゴシック W3";
    font-weight: lighter;
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 20px;
}
	
.container {
    display: grid;
	width:80%;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-left: auto;
    margin-right: auto;
}
		
.brooch img {
    max-width: 150px;
	margin-top: 30px;
    text-align: center;
}
.h5 {
    font-size: 17px;
    letter-spacing: 1px;
    font-family: "Helvetica Neue Thin", "Helvetica Neue Light", "Helvetica Light", "Avenir Light";
}
.h3 {
    font-size: 15px;
}	
.logo2 img{
    max-width: 30px;
}	
}

