@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: clamp(14px, 1.1vw, 16px);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

body {
  font-family: "Shippori Mincho", serif;
  background-color: #39392B;
  color: #EAEBD9;
  vertical-align: bottom;
}

h1,
h2,
.ENfont,
label,
#submit {
  font-family: "Playfair Display", serif;
}

h1 span,
h2 span,
h4,
.mainNavInner span,
.footerCompany,
.InnerOnly span,
.mainNavInner li:hover {
  color: #92993F;
}

h3,
.mainNavInner span:hover,
.SHOPandCOMPANYbtn a span,
.contactbtn a span,
.shopInfoBtn a span,
.contactbtn02 a span,
.contactbtn03 a span,
.brandbtn a span,
.oembtn a span,
.shopbtn a span {
  color: #FFF8D4;
}

h3,
h4,
.InnerOnly,
.footerCompany {
  font-weight: bold;
}

.flexbox,
.flexbox-rowreverse {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flexbox-rowreverse {
  flex-direction: row-reverse;
}

h1,
h2 {
  letter-spacing: .1em;
  line-height: 1;
}

h1 {
  font-size: clamp(60px, 6vw, 100px);
}

h1 span {
  font-size: clamp(70px, 10vw, 150px);
}

h2 {
  font-size: clamp(30px, 3.5vw, 70px);
  text-align: center;
}

h3 {
  font-size: clamp(17px, 1.3vw, 28px);
  letter-spacing: .1em;
  line-height: 2;
  text-align: center;
}

h4 {
  font-size: clamp(16px, 1.2vw, 18px);
  margin-top: 10px;
}

.mainonly {
  display: none;
}

/* ----------------------------
        ボタンデザイン
----------------------------- */
.brandbtn,
.oem .oembtn,
.shopInfoBtn,
.SHOPandCOMPANYbtn,
.shopbtn,
.contactbtn,
.contactbtn02,
.contactbtn03 {
  font-size: clamp(16px, 1.53vw, 22px);
}

.brandbtn {
  position: relative;
}

.oem .oembtn {
  position: absolute;
  bottom: 25%;
  left: 15%;
}

.shopInfoBtn {
  margin-top: 3em;
  margin-right: 2em;
}

.SHOPandCOMPANYbtn,
.shopbtn,
.contactbtn,
.contactbtn03 {
  display: flex;
  justify-content: center;
}

.SHOPandCOMPANYbtn,
.shopbtn {
  margin-top: 50px;
}

.contactbtn {
  margin-top: 80px;
}

.contactbtn03 {
  padding-bottom: 50px;
}

.SHOPandCOMPANYbtn a span,
.contactbtn a span,
.shopInfoBtn a span,
.contactbtn02 a span,
.contactbtn03 a span,
.brandbtn a span,
.oembtn a span,
.shopbtn a span {
  font-weight: normal;
}

.text-wrap::before {
  display: inline-block;
  content: "";
  border: 2px solid #FFF8D4;
  border-color: #FFF8D4 #FFF8D4 transparent transparent;
  width: 5px;
  height: 5px;
  margin: auto 20px 10px 0;
  transform: rotate(45deg);
}

.text-wrap {
  display: flex;
  gap: 4px;
}

.shopInfoBtn .text-wrap {
  justify-content: flex-end;
}

.text-wrap:hover .letter {
  text-shadow: 0 0 0 #FFF8D4, 0 1.5em 0 #FFF8D4;
}

.letter {
  color: transparent;
  text-shadow: 0 -1.5em 0 #FFF8D4, 0 0 0 #FFF8D4;
  transition: text-shadow 0.2s;
  transition-delay: calc(var(--index) * 0.05s);
  overflow: hidden;
}

.sr-only {
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

/* ----------------------------
           header
----------------------------- */
header {
  width: 100%;
  height: 0vh;
}

.InnerOnly {
  display: block;
  font-size: clamp(20px, 2.3vw, 40px);
  letter-spacing: .1em;
  line-height: 1.5;
  mix-blend-mode: difference;
  position: fixed;
  top: 1%;
  right: 1%;
  z-index: 500;
}

/* ------ ハンバーガーメニュー ----- */
.btn {
  display: block;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  width: 70px;
  height: 50px;
  position: fixed;
  top: 3%;
  left: 0;
  z-index: 500;
}

.btn span,
.btn span::before,
.btn span::after {
  display: block;
  background-color: #EAEBD9;
  transition: all .5s ease;
}

.btn span {
  width: 50px;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  animation: slide01 1s linear infinite alternate;
  animation-delay: .5s;
}

.btn span::before,
.btn span::after {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
}

.btn span::before {
  width: 70px;
  top: -20px;
  animation: slide01 1s linear infinite alternate;
  animation-delay: .9s;
}

.btn span::after {
  width: 40px;
  top: 20px;
  animation: slide01 1.2s linear infinite alternate;
  animation-delay: .1s;
}

@keyframes slide01 {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

/* ----- ハンバーガーメニュークリック後のスタイル ----- */
.btn.active span,
.btn.active span::before,
.btn.active span::after {
  display: block;
  width: 50px;
  height: 2px;
  z-index: 500;
  transition: all .2s ease;
  animation: none;
}

.btn.active span {
  background-color: transparent;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.btn.active span::before,
.btn.active span::after {
  content: "";
  background-color: #EAEBD9;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.btn.active span::before {
  transform: rotate(45deg);
}

.btn.active span::after {
  transform: rotate(-45deg);
}

/* ----- メニュー ------ */
.mainNav {
  background-color: #39392be4;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -100%;
  right: 0;
  z-index: 400;
  transition: all .5s;
}

.mainNav.is-show {
  left: 0;
  right: 0;
  z-index: 400;
}

.mainNavInner {
  background-image: url(../img/menu.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #2A2B1B;
  width: 368px;
  height: 100vh;
  margin-left: 60px;
  position: relative;
}

.mainNavInner ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  font-size: clamp(18px, 1.55vw, 20px);
  letter-spacing: .1em;
  line-height: 1.5;
  position: absolute;
  top: 25%;
  left: 40%;
  transform: translate(-50%, -50%);
}

.mainNavInner li {
  margin-left: 70px;
  transition: all .3s;
}

.mainNavInner span {
  margin-right: 30px;
}

/* ----------------------------
           footer
----------------------------- */
.mainfooter {
  background-image: url(../img/noise.png);
  background-color: #2A2B1B;
  width: 100%;
  padding: 3em 3em 1em;
}

.footerAdress p {
  letter-spacing: .1em;
  line-height: 1.7;
  margin-left: .5em;
}

.footerCompany {
  display: inline-block;
  border-bottom: 1px solid #92993F;
  font-size: clamp(16px, 1.53vw, 20px);
  margin-bottom: 10px;
}

.copy {
  font-size: clamp(10px, 0.92vw, 13px);
  text-align: right;
  margin-top: 5em;
}

/* ----------------------------
        フェード設定
----------------------------- */
.fadeIn {
  opacity: 0;
  transition: all 2.5s ease;
}

.fadeIn.fade {
  opacity: 1;
}

.fadeIn-LEFT {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 2.5s ease;
}

.fadeIn-RIGHT {
  opacity: 0;
  transform: translateX(100%);
  transition: all 2.5s ease;
}

.fadeIn-LEFT.fade,
.fadeIn-RIGHT.fade {
  transform: translateX(0);
  opacity: 1;
}

.fadeIn-UP {
  opacity: 0;
  transform: translateY(30%);
  transition: all 2.5s ease;
}

.fadeIn-UP.fade {
  transform: translateY(0);
  opacity: 1;
}

/* ----------------------------
           レスポンシブ
----------------------------- */
@media(max-width:800px) {
  html {
    font-size: clamp(14px, 3vw, 16px);
  }

  h1 {
    font-size: clamp(30px, 12.5vw, 70px);
  }

  h1 span {
    font-size: clamp(50px, 17.5vw, 100px);
  }

  h2 {
    font-size: clamp(20px, 7vw, 35px);
  }

  h3 {
    font-size: clamp(16px, 3.5vw, 25px);
  }

  h4 {
    font-size: clamp(15px, 3vw, 18px);
  }

  /* ----------------------------
        ボタンデザイン
   ----------------------------- */
  .brandbtn,
  .oem .oembtn,
  .shopInfoBtn,
  .SHOPandCOMPANYbtn,
  .shopbtn,
  .contactbtn,
  .contactbtn02,
  .contactbtn03 {
    font-size: clamp(17px, 4vw, 25px);
  }

  .shopInfoBtn,
  .contactbtn {
    margin-top: 3em;
  }

  .shopbtn {
    margin-top: 2em;
  }

  .contactbtn02 {
    padding-bottom: 4em;
  }

  .contactbtn03 {
    margin-top: 4em;
  }

  .text-wrap:hover .letter {
    text-shadow: none;
  }

  .letter {
    text-shadow: none;
    transition: none;
    transition-delay: none;
  }

  /* ----------------------------
           header
  ----------------------------- */
  header {
    height: 0vh;
  }

  .InnerOnly {
    font-size: clamp(20px, 7.3vw, 40px);
  }

  /* ------ ハンバーガーメニュー ----- */
  .btn {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 3%;
    left: 0;
  }

  .btn span {
    width: 40px;
  }

  .btn span::before,
  .btn span::after {
    position: absolute;
    left: 0;
    right: 0;
  }

  .btn span::before {
    width: 60px;
    top: -18px;
  }

  .btn span::after {
    width: 20px;
    top: 18px;
  }

  /* ----- ハンバーガーメニュークリック後のスタイル ----- */
  .btn.active span,
  .btn.active span::before,
  .btn.active span::after {
    width: 40px;
  }

  /* ----- メニュー ------ */
  .mainNavInner {
    background-image: url(../img/menu.png);
    background-position: bottom;
    background-size: 100%;
    width: 80%;
    margin-left: 0px;
  }

  .mainNavInner ul {
    font-size: clamp(18px, 4.5vw, 25px);
    position: absolute;
    top: 25%;
    left: 40%;
    transform: translate(-50%, -50%);
  }

  .mainNavInner li {
    text-shadow: 2px 2px 0 #39392B;
    margin-left: 20%;
  }

  .mainNavInner li:hover {
    color: #EAEBD9;
  }

  /* ----------------------------
           footer
  ----------------------------- */
  .mainfooter {
    min-width: 100%;
    padding: 3em 1em 1em;
  }

  .footerAdress {
    line-height: 1;
  }

}