@charset "utf-8";

#vdbanner{
	width:0;
	height:0;
}

body{
	margin-top:-20px;
}

* {
  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: #313647;
  color: #EAEBD9;
  vertical-align: bottom;
}

h1,
h2,
.indexbtn,
.ENfont,
label,
#submit {
  font-family: "Playfair Display", serif;
}

.noise {
  background-image: url(../img/noise.png);
}

h1 span,
.mainNavInner span,
.mainNavInner li:hover,
.footerCompany {
  color: #435663;
}

/* ----------------------------
           header
----------------------------- */
header {
  position: relative;
}

.headerInner {
  display: block;
  width: 45vw;
  height: 100vh;
  margin: 0 0 0 auto;
  overflow: hidden;
  position: relative;
}

.headerInner img {
  object-position: center;
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

h1 {
  font-size: clamp(180px, 19vw, 200px);
  letter-spacing: .1em;
  line-height: 1;
  position: absolute;
  bottom: 6%;
  left: 2%;
  z-index: 50;
}

/* ------ ハンバーガーメニュー ----- */
.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 {
  display: block;
  background-color: #EAEBD9;
  width: 50px;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  transition: all .5s ease;
  animation: slide01 1s linear infinite alternate;
  animation-delay: .5s;
}

@keyframes slide01 {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

.btn span::before,
.btn span::after {
  content: "";
  display: block;
  background-color: #EAEBD9;
  height: 2px;
  position: absolute;
  transition: all .5s ease;
  animation: slide01 1s linear infinite alternate;
}

.btn span::before {
  width: 70px;
  top: -20px;
  left: 0;
  right: 0;
  animation-delay: .9s;
}

.btn span::after {
  width: 40px;
  top: 20px;
  left: 0;
  right: 0;
  animation-delay: .1s;
}

/* ----- ハンバーガーメニュークリック後 ----- */
.btn.active span {
  display: block;
  background-color: transparent;
  width: 50px;
  height: 2px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: all .2s ease;
  animation: none;
}

.btn.active span::before,
.btn.active span::after {
  content: "";
  display: block;
  background-color: #EAEBD9;
  width: 50px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  transition: all .2s ease;
  animation: none;
}

.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-color: #2A2B1B;
  background-image: url(../img/menu.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100%;
  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;
}

.mainNavInner span:hover {
  color: #FFF8D4;
}

/* ----------------------------
           footer
----------------------------- */
.mainfooter {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #313647;
  flex: 0 0 20%;
  min-width: 20%;
  height: 100vh;
  padding: 3em 1em 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);
  font-weight: bold;
  margin-bottom: 10px;
}

.footerAdress .footerCompany{
  color: #92993F;
}
.copy {
  font-size: clamp(10px, .92vw, 13px);
  text-align: right;
}

/* ----------------------------
        フェード設定
----------------------------- */
.fadeIn {
  opacity: 0;
  transition: all 2.5s ease;
}

.fadeIn.fade {
  opacity: 1;
}

/* ----------------------------
           レスポンシブ
----------------------------- */
@media(max-width:800px) {
  html {
    font-size: clamp(13px, 3.5vw, 16px);
  }

  /* ----------------------------
           header
  ----------------------------- */
  header {
    width: 100%;
    height: 100vh;
  }

  .headerInner {
    width: 100vw;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
  }

  .headerInner img {
    width: 100vw;
    height: 100vh;
  }

  h1 {
    font-size: clamp(60px, 22.5vw, 100px);
    position: absolute;
    bottom: 6%;
  }

  /* ------ ハンバーガーメニュー ----- */
  .btn {
    width: 50px;
    height: 50px;
  }

  .btn span {
    width: 40px;
    height: 2px;
  }

  .btn span::before,
  .btn span::after {
    height: 2px;
    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;
    height: 2px;
  }

  /* ----- メニュー ------ */
  .mainNavInner {
    width: 80%;
    height: 100vh;
    margin-left: 0px;
  }

  .mainNavInner ul {
    font-size: clamp(18px, 4.5vw, 25px);
  }

  .mainNavInner li {
    text-shadow: 2px 2px 0 #39392B;
    margin-left: 20%;
  }

  .mainNavInner li:hover {
    color: #EAEBD9;
  }

  /* ----------------------------
           footer
  ----------------------------- */
  .mainfooter {
    min-width: 100%;
    width: 100%;
    height: auto;
    padding: 3em 1em 1em;
  }

  .footerAdress {
    line-height: 1;
  }

  .copy {
    margin-top: 5em;
  }

}