@charset "UTF-8";
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
@font-face {
  font-family: 'Code-Light';
  src: url("./Code-Light.ttf.woff") format("woff");
}

html,
body,
a,
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,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background-color: transparent;
  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.row,
.row > * {
  padding-right: 0;
  padding-left: 0;
  margin-right: 0;
  margin-left: 0;
}

html {
  font-size: 62.5%;
}

body {
  padding: 0;
  margin: 0;
  padding-right: 0;
  padding-left: 0;
  font-size: 1.6em;
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Noto Sans Japanese', sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  background-color: #EEEEEE;
  scroll-behavior: smooth;
}

a {
  color: #000;
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 1.6rem;
  font-family: 'Code-Light';
  font-weight: Regular;
}

a:hover {
  color: #fff;
}

p,
span {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 2.8rem;
  margin-bottom: 2.8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Code-Light';
  font-weight: Regular;
}

a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a img {
  margin: 0;
}

a img:hover {
  opacity: 0.1;
  filter: alpha(opacity=10);
  -ms-filter: "alpha(opacity=10)";
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.slide,
.about,
.profile,
.contact,
.collection {
  width: 83vw;
  margin-left: 17%;
  padding-right: 30px;
  margin-bottom: 100px;
  -webkit-animation: fadein 3s forwards;
          animation: fadein 3s forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 10;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #EEEEEE;
  /*動き*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

#g-nav.panelactive {
  /*アクティブクラスがついたら位置を0に*/
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  /*ナビゲーションの縦スクロール*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav ul {
  /*ナビゲーション*/
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#g-nav li {
  /*リストのレイアウト設定*/
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #000;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#g-nav li a:hover {
  color: #fff;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 11;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 70px;
  height: 50px;
  top: 10px;
  right: 10px;
  border: none;
}

.openbtn span {
  /*×に変化*/
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  right: 10px;
  height: 1px;
  border-radius: 2px;
  background-color: #000;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  right: 10px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  right: 10px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

header {
  width: 17vw;
  padding: 30px 30px 0 30px;
}

header img {
  margin-bottom: 30px;
}

header ul {
  position: absolute;
}

header ul li {
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 1.6rem;
  font-family: 'Code-Light';
  font-weight: Regular;
}

header ul li img {
  margin: 0;
  width: 20px;
  height: 20px;
}

.slide {
  position: absolute;
  padding-left: 0;
  padding-right: 0;
  margin-right: 0;
  top: 0;
}

.slide .slider {
  z-index: 1;
  /*z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slide .slider .slick-list .slick-track {
  padding-left: 0;
  padding-right: 0;
}

.slide .slider .slider-item img {
  width: 100%;
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  -o-object-fit: cover;
     object-fit: cover;
}

.slide .ig {
  margin: 50px 30px 130px 0;
}

.slide .ig h3 {
  font-size: 2.1rem;
  margin-bottom: 30px;
}

.slide .ig .c_store_link {
  margin-top: 30px;
}

.slide .ig .insta_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

.slide .ig .insta_list li {
  width: calc(100% / 3);
}

.slide .ig .insta_list li img {
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  padding: 3px;
}

.slide .ig .insta_list li img:nth-child(1) {
  padding-left: 0;
}

.slide .ig .insta_list li img:nth-child(3) {
  padding-right: 0;
}

.about h3 {
  font-size: 2.1rem;
  margin-bottom: 30px;
}

.about .ab-txt_1 p,
.about .ab-txt_2 p {
  margin-bottom: 2.8rem;
}

.about .ab-txt_2 {
  margin-top: 60px;
}

.profile h3 {
  font-size: 2.1rem;
  margin-bottom: 30px;
}

.profile .pf img {
  display: block;
  margin: 0 auto;
  margin-bottom: 50px;
}

.profile .pf p {
  margin-bottom: 2.8rem;
}

.collection h3 {
  font-size: 2.1rem;
  margin-bottom: 30px;
}

.collection ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}

.collection ul li {
  padding-right: 50px;
  display: inline;
}

.collection ul li:last-child {
  padding-right: 0;
}

.collection .c_main {
  margin-top: 30px;
}

.collection .c_main img {
  width: 100%;
  margin-bottom: 30px;
}

.collection .c_main p {
  font-size: 1.6rem;
}

.collection .c_store_img a img {
  width: calc(100% / 3);
  vertical-align: bottom;
  padding: 1.5px;
}

.collection .c_store_link {
  margin-top: 20px;
  margin-bottom: 100px;
}

.collection .video {
  width: 100%;
}

/*modal*/
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

.modal .modal-box {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 65%;
}

.modal .modal-box .close-btn {
  position: absolute;
  z-index: 1;
  /*ボタンを最前面に*/
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.modal .modal-box .close-btn span {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
}

.modal .modal-box .close-btn span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal .modal-box .close-btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modal .modal-bg {
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  height: 100vh;
  width: 100%;
}

.contact h3 {
  font-size: 2.1rem;
  margin-bottom: 30px;
}

.contact #formWrap {
  margin-bottom: 150px;
}

.contact #formWrap p {
  text-align: left;
  margin: 30px 0;
}

.contact #formWrap form p {
  margin: 0;
  margin-bottom: 0.5rem;
  text-align: left;
}

.contact #formWrap input[type="text"],
.contact #formWrap input[type="email"] {
  width: 100%;
  margin-bottom: 30px;
  border: none;
  border-radius: 0;
  height: 40px;
}

.contact #formWrap input[type="submit"] {
  font-size: 2.2rem;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 2.8rem;
  border: none;
  padding: 0;
  background: none;
  color: #000;
}

.contact #formWrap .submit:hover {
  color: #fff;
}

.contact #formWrap textarea {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 0;
  margin-bottom: 50px;
}
/*# sourceMappingURL=style.css.map */