body {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 1239px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease 0s;
  display: inline-block;
}
a:hover {
  opacity: 0.7;
}

section {
  margin-bottom: 0;
}

li {
  list-style: none;
}

img {
  vertical-align: middle;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.eiSec-en {
  font-size: 24px;
  position: relative;
  padding-bottom: 30px;
  text-align: center;
}
@media (max-width: 1239px) {
  .eiSec-en {
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .eiSec-en {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.eiSec-en::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 65px;
  background: #000;
}
@media (max-width: 767px) {
  .eiSec-en::after {
    height: 1px;
    width: 40px;
  }
}

.eiSec-en__left {
  text-align: left;
}
.eiSec-en__left::after {
  left: 0;
  transform: none;
}

.eiTtl-vertical {
  font-size: 16px;
  writing-mode: vertical-lr;
  color: #fff;
  padding-top: 50px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1239px) {
  .eiTtl-vertical {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .eiTtl-vertical {
    font-size: 10px;
  }
}
.eiTtl-vertical::after {
  position: absolute;
  content: "";
  bottom: -150px;
  width: 1px;
  height: 130px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1239px) {
  .eiTtl-vertical::after {
    height: 50px;
    bottom: -70px;
  }
}
@media (max-width: 767px) {
  .eiTtl-vertical::after {
    bottom: -60px;
    height: 50px;
  }
}

.changeColor {
  overflow: hidden;
}
.changeColor img {
  filter: grayscale(100%);
  transition: all 0.4s ease 0s;
}

/*==========================
loading
===============================================================*/
.loading {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background: #000;
  left: 0px;
  top: 0px;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

.loading-anime {
  animation-name: loadinganime;
  animation-timing-function: ease-in;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}

@keyframes loadinganime {
  0% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(15%);
  }
  100% {
    transform: translateX(100%);
  }
}
/*==========================
MV
===============================================================*/
.eiMv {
  padding-top: 151px;
}
@media (max-width: 767px) {
  .eiMv {
    padding-top: 105px;
  }
}

.eiMv-wrap {
  position: relative;
  letter-spacing: 0.1em;
}

.eiMv-img {
  width: 87%;
}
@media (max-width: 767px) {
  .eiMv-img {
    width: 100%;
  }
  .eiMv-img img {
    height: 500px;
    object-fit: cover;
  }
}

.eiMv-ttl__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.eiMv-ttl__bg {
  position: relative;
  display: block;
  overflow: hidden;
}

.bgAnime::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  background: #fff;
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
  animation-name: bgAnime;
}

@keyframes bgAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  30% {
    transform: scaleX(0.15);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  76% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.eiMv-ttl {
  font-size: 50px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1239px) {
  .eiMv-ttl {
    font-size: 36px;
    letter-spacing: 0;
    font-weight: 500;
  }
}

.eiMv-line__wrap {
  position: absolute;
  height: 50px;
  width: 1px;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.eiMv-line {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.eiMv-line::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: #fff;
  animation-name: lineMotion;
  animation-fill-mode: forwards;
  animation-duration: 1.7s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

@keyframes lineMotion {
  0% {
    transform-origin: top;
    transform: scale(1, 0);
  }
  50% {
    transform-origin: top;
    transform: scale(1, 1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
/*==========================
bland
===============================================================*/
.eiBland {
  margin-top: 150px;
  letter-spacing: 0.1em;
}
@media (max-width: 1239px) {
  .eiBland {
    margin-top: 80px;
  }
}

.eiFlex-bland {
  margin-top: 150px;
}
@media (max-width: 1239px) {
  .eiFlex-bland {
    margin-top: 80px;
  }
}
.eiFlex-bland:hover .changeColor img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.eiFlex {
  display: flex;
  background: #000;
}

.eiFlex-left {
  width: 87%;
}
@media (max-width: 767px) {
  .eiFlex-left {
    width: 84%;
  }
}

.eiFlex-right {
  width: 13%;
}
@media (max-width: 767px) {
  .eiFlex-right {
    width: 16%;
  }
}

.eiBland-content {
  margin: 100px auto;
  font-size: 26px;
  width: 75%;
  letter-spacing: 0.05em;
}
@media (max-width: 1239px) {
  .eiBland-content {
    font-size: 18px;
    width: 85%;
  }
}
@media (max-width: 767px) {
  .eiBland-content {
    font-size: 14px;
    margin: 50px auto;
    width: 100%;
    padding: 0 20px;
  }
}

/*==========================
banner
===============================================================*/
.eiBanner {
  background: #000;
}
@media (max-width: 767px) {
  .eiBanner img {
    height: 250px;
    object-fit: cover;
  }
}
.eiBanner:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}

/*==========================
leather
===============================================================*/
.eiLeather {
  letter-spacing: 0.1em;
}
.eiLeather:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.eiLeather-flex {
  display: flex;
}
@media (max-width: 767px) {
  .eiLeather-flex {
    flex-direction: column-reverse;
  }
}

.eiLeather-left {
  width: 31%;
}
@media (max-width: 767px) {
  .eiLeather-left {
    width: 84%;
  }
}

.eiLeather-wrap {
  width: 69%;
  display: flex;
}
@media (max-width: 767px) {
  .eiLeather-wrap {
    width: 100%;
    flex-direction: row-reverse;
  }
}

.eiSec-ttl {
  margin: 80px 0;
  font-size: 26px;
  letter-spacing: 0.05em;
}
@media (max-width: 1239px) {
  .eiSec-ttl {
    font-size: 18px;
    margin: 40px 0 20px;
  }
}
@media (max-width: 767px) {
  .eiSec-ttl {
    font-size: 16px;
    margin: 40px 0;
  }
}

.eiLeather-content {
  width: 82%;
  padding: 100px 70px 85px;
}
@media (max-width: 1239px) {
  .eiLeather-content {
    padding: 40px 25px;
  }
}
@media (max-width: 767px) {
  .eiLeather-content {
    width: 84%;
    padding: 50px 20px;
  }
}

.eiLeather-right {
  width: 18%;
  background: #000;
}
@media (max-width: 767px) {
  .eiLeather-right {
    width: 16%;
  }
}

/*==========================
craft
===============================================================*/
.eiCraft {
  letter-spacing: 0.1em;
}
.eiCraft:hover img {
  filter: grayscale(0);
  transform: scale(1.03);
}
.eiCraft .eiLeather-flex,
.eiCraft .eiLeather-wrap {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .eiCraft .eiLeather-flex {
    flex-direction: column-reverse;
  }
  .eiCraft .eiLeather-wrap {
    flex-direction: row;
  }
  .eiCraft .eiLeather-left {
    margin-left: auto;
  }
}

/*==========================
product
===============================================================*/
.eiProduct01 {
  margin-top: 150px;
  letter-spacing: 0.1em;
}
@media (max-width: 1239px) {
  .eiProduct01 {
    margin-top: 80px;
  }
}

.eiProduct01-flex {
  margin-top: 150px;
  flex-direction: row-reverse;
}
@media (max-width: 1239px) {
  .eiProduct01-flex {
    margin-top: 80px;
  }
}
.eiProduct01-flex:hover .changeColor img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.eiProduct01-content {
  padding: 100px 0;
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 1239px) {
  .eiProduct01-content {
    width: 85%;
  }
}
@media (max-width: 767px) {
  .eiProduct01-content {
    padding: 50px 60px;
    width: 100%;
  }
}

.eiProduct01-list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .eiProduct01-list {
    display: block;
  }
}

.eiProduct01-item {
  width: calc(50% - 50px);
}
.eiProduct01-item a:hover,
.eiProduct01-item a img:hover {
  opacity: 1;
}
.eiProduct01-item:not(:nth-child(2n+1)) {
  margin-left: 100px;
}
.eiProduct01-item:nth-child(n+3) {
  margin-top: 80px;
}
@media (max-width: 1239px) {
  .eiProduct01-item {
    width: calc(50% - 25px);
  }
  .eiProduct01-item:not(:nth-child(2n+1)) {
    margin-left: 50px;
  }
}
@media (max-width: 767px) {
  .eiProduct01-item {
    width: 100%;
  }
  .eiProduct01-item:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
  .eiProduct01-item:not(:first-child) {
    margin-top: 40px;
  }
}
.eiProduct01-item:hover .changeColor img {
  filter: grayscale(0);
  transform: scale(1.03);
}

.eiProduct01-item__ttl {
  margin-top: 40px;
  font-size: 26px;
  letter-spacing: 0.05em;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #000;
}
@media (max-width: 1239px) {
  .eiProduct01-item__ttl {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .eiProduct01-item__ttl {
    font-size: 16px;
    margin-top: 25px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

.eiProduct01-item__price {
  margin-top: 10px;
}

.eiProduct01-item__info,
.eiProduct01-item__price {
  font-size: 13px;
  margin-top: 0;
}

.eiProduct02 {
  letter-spacing: 0.1em;
}
.eiProduct02:hover .changeColor img {
  filter: grayscale(0);
  transform: scale(1.03);
}

/*==========================
about
===============================================================*/
.eiAbout {
  margin-top: 100px;
  letter-spacing: 0.1em;
}
.eiAbout:hover .changeColor img {
  filter: grayscale(0);
  transform: scale(1.03);
}
@media (max-width: 767px) {
  .eiAbout {
    margin-top: 50px;
  }
}

.eiAbout-content {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .eiAbout-content {
    display: block;
  }
}

.eiAbout-left {
  width: 50%;
}
@media (max-width: 767px) {
  .eiAbout-left {
    width: 100%;
    padding: 0 20px;
  }
}

.eiAbout-left__content {
  max-width: 210px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .eiAbout-left__content {
    max-width: 100%;
  }
}

.eiAbout-list {
  margin-top: 100px;
}
@media (max-width: 1239px) {
  .eiAbout-list {
    margin-top: 40px;
  }
}

.eiAbout-item:not(:first-child) {
  margin-top: 45px;
}
@media (max-width: 1239px) {
  .eiAbout-item:not(:first-child) {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .eiAbout-item__ttl {
    font-size: 16px;
  }
}

.eiAbout-item__txt {
  margin-top: 10px;
  font-size: 13px;
}
@media (max-width: 1239px) {
  .eiAbout-item__txt {
    margin-top: 5px;
  }
}

.eiAbout-right {
  width: 50%;
  background: #000;
}
@media (max-width: 767px) {
  .eiAbout-right {
    width: 100%;
    margin-top: 40px;
  }
  .eiAbout-right img {
    height: 400px;
    object-fit: cover;
  }
}

/*==========================
contact
===============================================================*/
.eiContact {
  overflow: hidden;
  margin: 100px 0 80px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .eiContact {
    margin: 50px 0;
    padding: 0 20px;
  }
}

.eiContact-content {
  display: flex;
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 1239px) {
  .eiContact-content {
    width: 85%;
  }
}
@media (max-width: 767px) {
  .eiContact-content {
    display: block;
    width: 100%;
  }
}

.eiCnt-left {
  width: 26%;
}
@media (max-width: 767px) {
  .eiCnt-left {
    width: 100%;
  }
}

.eiCnt-ttl {
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .eiCnt-ttl {
    width: 100%;
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.eiCnt-ttl::after {
  position: absolute;
  content: "";
  width: 12.4450951684vw;
  height: 1px;
  background: #000;
  top: 50%;
  left: -13.17715959vw;
  transform: translateY(-50%);
}
@media (max-width: 1239px) {
  .eiCnt-ttl::after {
    width: 7.3206442167vw;
    left: -8.78477306vw;
  }
}
@media (max-width: 767px) {
  .eiCnt-ttl::after {
    content: none;
  }
}

.eiCnt-txt {
  width: 74%;
}
@media (max-width: 767px) {
  .eiCnt-txt {
    width: 100%;
  }
}
.eiCnt-txt p {
  font-size: 13px;
}
.eiCnt-txt p:not(:first-child) {
  margin-top: 20px;
}/*# sourceMappingURL=style.css.map */