@charset "UTF-8";
html {
    font-size: 62.5%;
}

body {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 300;
}

h1 {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

h2 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin: 24px 0;
}

#nav-content a {
  color: #000;
  font-size: 20px;
}

header .logo img.logo_img {
  display: block;
  margin: 48px auto;
  width: auto;
  height: 40px;
}

header nav {
  position: absolute;
  top: 80px;
  right: 10px;
  /*チェックボックス等は非表示に*/
  /*アイコンのスペース*/
  /*ハンバーガーアイコンをCSSだけで表現*/
  /*閉じる用の薄黒カバー*/
  /*中身*/
  /*チェックが入ったらもろもろ表示*/
}

header nav #nav-drawer {
  position: relative;
}

header nav .nav-unshown {
  display: none;
}

header nav #nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

header nav #nav-open span, header nav #nav-open span:before, header nav #nav-open span:after {
  position: absolute;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}

header nav #nav-open span:before {
  bottom: -8px;
}

header nav #nav-open span:after {
  bottom: -16px;
}

header nav #nav-close {
  display: none;
  /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;
  /*全体に広がるように*/
  right: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

header nav #nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 9999;
  /*最前面に*/
  width: 90%;
  /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 330px;
  /*最大幅（調整してください）*/
  height: 100%;
  background: #fff;
  /*背景色*/
  transition: .3s ease-in-out;
  /*滑らかに表示*/
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
  /*左に隠しておく*/
}

header nav #nav-content li {
  padding: 12px 0px 5px 16px;
  width: calc(100% - 10px);
}

header nav #nav-input:checked ~ #nav-close {
  display: block;
  /*カバーを表示*/
  opacity: .5;
}

header nav #nav-input:checked ~ #nav-content {
  right: 0;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  /*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

.c_video_area video {
  width: 90%;
  margin: 0 auto;
  display: block;
  max-width: 980px;
}

.c_concept {
  width: 90%;
  max-width: 980px;
  margin: 80px auto;
  text-align: center;
}

.c_product_area {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.c_product_area .c_product_wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.c_product_area .c_product_wrap .c_product_item { 
    margin: 10px;
}

.c_product_item {
    width: 470px;
    height: auto;
    object-fit: cover;
    overflow:hidden;
    position:relative;
}

.c_product_item .caption {
	font-size:		3.2rem;
	text-align: 	center;
	color:			#fff;
}
.c_product_item .mask {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	opacity:0;	/* マスクを表示しない */
	background-color:rgba(0,0,0,0.4);
	-webkit-transition:	all 0.6s ease;
	transition:	all 0.6s ease;
}

.c_product_item:hover .mask {
	opacity:		1;	/* マスクを表示する */
	padding-top:		55%;	/* ホバーで下にずらす */
}

.viewmore {
    display: block;
    color: #000;
    font-size: 1.6rem;
    margin: 60px auto;
}

.instagram_area {
  width: 90%;
  max-width: 980px;
  margin: 80px auto;
  text-align: center;
}

.spotify_area {
  width: 980p;
  max-width: 980px;
  margin: 80px auto;
  text-align: center;
}

.instagram_area .instagram_wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 3px;
}

.instagram_area .instagram_wrap .instagram_item {
  width: calc((100% / 3) - 4px);
  margin: 2px;
}

.instagram_area .instagram_wrap .instagram_item img {
  object-fit: cover;
}

.instagram_area .instagram_wrap .instagram_item video {
  max-width: 100%;
  height: auto;
}

footer {
    background: #cacbca;
    padding: 20px 0;
    text-align: center;
}

.footerMenu li {
  display: inline-block;
  overflow: hidden;
  padding: 20px 10px;
  box-sizing: border-box;
}

.footerMenu li a {
    color: #000;
}
.small {
  background: #cacbca;
  text-align: center;
  display: block;
  font-size: 12px;
}

.formContent {
  max-width: 700px;
  margin: 0 auto;
}

.formContent form input[type="text"] {
  width: 95%;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 12px;
}

.formContent form input[type="email"] {
  width: 95%;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 12px;
}

.formContent form input[type="tel"] {
  width: 95%;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 12px;
}

textarea#textarea {
  border: 1px solid #cccccc;
  width: 95%;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
}

.formContent form input {
  font-size: 16px;
  padding: 5px;
}

.confirmationButton {
  text-align: center;
}

.confirmationButton button.submit {
  color: #fff;
  max-width: 700px;
  width: 50%;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  background: #cacbca;
  border: 1px solid #fff;
  margin: 25px;
  padding: 15px;
  border-radius: 6px;
}
.instagram {
  margin: 12px auto 12px;
  width: 32px;   
  text-align: center;
}
table.formTable {
  width: 80%;
  color: #fff;
  margin: 0 auto 40px;
}

table.formTable tr {
  border: 1px solid #a1a3a1;
}

table.formTable tr th {
  background: #cacbca;
  width: 200px;
  border-right: 1px solid #cacbca;
  text-align: left;
  vertical-align: middle;
}

table.formTable tr th span {
  color:#353435;
  display: block;
  padding: 21px 15px;
  font-size: 10px;
}

table.formTable tr th span p {
  display: inline-block;
  font-size: 10px;
  margin-left: 3px;
  vertical-align: middle;
  color: #cc6666;
}

table.formTable tr td {
  background: #fff;
}

table.formTable tr td span {
  display: block;
  padding: 23px 23px;
}

/* iphone11 */
@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
  header .logo img {
    display: block;
    margin: 0 auto;
  }
}

/* iphoneX,iPhone 11 Pro */
@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {  
  header {
    width: 100vw;
  }
  header .logo img {
    display: block;
    margin: 0 auto;
  } 
  .instagram_area {
    width: 90vw;
    margin: 60px auto;
  }
  .instagram_area .instagram_wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .instagram_area .instagram_wrap .instagram_item {
    width: 30vw;
    margin: 0 auto;
  }
  .instagram_area .instagram_wrap .instagram_item img {
    object-fit: cover;
    /* この一行を追加するだけ！ */
  }
  .spotify_area {
    width: 90vw;
    margin: 40px auto;
  }
}

@media only screen and (max-width: 414px) {
  .sp_none {
    display: none;
  } 
  .c_product_area {
     width: 90vw;
    }
 .c_product_item .caption {
	font-size:		2.4rem;
    }
  .instagram_area {
    width: 90vw;
    margin: 40px auto;
  }
  .instagram_area .instagram_wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .instagram_area .instagram_wrap .instagram_item {
    width: 32%;
    margin: 2px;
  }
  .instagram_area .instagram_wrap .instagram_item img {
    object-fit: cover;
  }
    header .logo img.logo_img {
    margin: 28px auto;
    height: 30px;
  }
  .c_video_area img {
    width: 90vw;
    margin: 0 auto;
    display: block;
  }
  .c_video_area .sp_none {
    display: none;
  }
  .c_video_area .pc_none {
    display: block;
  }
  table.formTable {
    width: 95%;
    margin: 0 auto 40px;
  }
  table.formTable tr th {
    width: 110px;
  }
  table.formTable tr th span {
    display: block;
    padding: 15px 10px;
  }
  table.formTable tr td span {
    display: block;
    padding: 15px 10px;
  }
  header nav #nav-content {
    width: 60%;
  }
  #nav-content a {
    font-size: 16px;
  }
}

body.shop #shopHeader h1 {
  margin: 16px auto;
}

body.shop #shopHeader h1 img {
  max-width: 160px;
}

body {
  background-size: 10%;
}

#baseMenu .base {
  display: none;
}

body.shop #shopHeader h1 {
  margin: 16px auto;
}

body.shop #shopHeader h1 img {
  max-width: 160px;
}

.instagram {
  width: 30px;
  margin: 40px auto;
}

.c_concept_area {
  width: 90%;
  max-width: 980px;
  margin: 30px auto 20px;
  text-align: center;
}

.c_concept_area h2 {
  text-align: left;
  margin-bottom: 12px;
  margin: 30px auto 20px;
  max-width: 480px;
}

.c_concept_area img {
  margin: 0px 0 20px;
}

.c_concept_area .concept_text {
  line-height: 1.75;
  text-align: left;
  letter-spacing: 1.75px;
  margin: 0 auto;
  font-size: 12px;
  max-width: 480px;
}

.news {
  background: #cacbca;
  padding: 12px 0;
  text-align: center;    
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media screen and (max-width: 828px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .c_video_area video {
    display: none;
  }
}