@charset "UTF-8";
.pc_w {
  max-width: 1920px;
  margin: 0 auto;
}

img {
  width: 100%;
}

.en {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.center {
  text-align: center;
}

.large {
  font-size: 3rem;
}
@media screen and (max-width: 740px) {
  .large {
    font-size: 2.2rem;
  }
}

.middle {
  font-size: 2rem;
}
@media screen and (max-width: 740px) {
  .middle {
    font-size: 1.6rem;
  }
}

.po_img .cap_bk_l {
  line-height: 1;
  padding: 3px 5px;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #000;
}

.col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col2 > div, .col2 a, .col2 li {
  width: 48%;
}
@media screen and (max-width: 740px) {
  .col2 > div, .col2 a, .col2 li {
    width: 100%;
  }
}

.col3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col3 > div, .col3 a, .col3 li {
  width: 32%;
}
@media screen and (max-width: 740px) {
  .col3 > div, .col3 a, .col3 li {
    width: 48%;
  }
}

.col4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.col4 > div, .col4 a, .col4 li {
  width: 24%;
}

.mt30 {
  margin-top: 30px;
}

.mt60 {
  margin-top: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

sup {
  font-size: 10px;
}

#main_visual {
  max-width: 100%;
  background-image: url(../../../images/nishiazabu/special/img/main.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 10px;
  color: #fff;
  text-align: center;
}

h2 {
  font-size: 3rem;
  margin: 0 auto;
  padding: 0 auto 40px;
  text-align: center;
  line-height: 2em;
}
@media screen and (max-width: 740px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  color: #000;
  font-size: 3rem;
  margin: 0 auto;
  padding: 0 auto 40px;
  text-align: center;
  line-height: 2em;
}
@media screen and (max-width: 740px) {
  h3 {
    font-size: 1.8rem;
  }
}
h3::after {
  display: block;
  content: "";
  width: 100px;
  height: 2px;
  margin: 10px auto 0px;
  background-color: #000;
}

#equipment {
  max-width: 100%;
  background-image: url(../../../images/nishiazabu/special/img/back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 10px;
}
#equipment .col2 {
  align-items: center;
}
#equipment .col2.reverse {
  flex-direction: row-reverse;
}
#equipment .item {
  margin-bottom: 30px;
}
#equipment .item .ttl {
  font-size: 1.8rem;
  text-align: center;
  padding: 0.5rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 740px) {
  #equipment .item .ttl {
    font-size: 1.4rem;
  }
}
#equipment .item .txt {
  text-align: justify;
}

#lighting {
  padding: 60px 10px;
  background: linear-gradient(#7b8f98, #9a896b, #b2836b);
  color: #fff;
}
#lighting h3 {
  color: #fff;
}
#lighting h3:after {
  background-color: #fff;
}
#lighting a {
  transition: 0.3s;
}
#lighting a:hover {
  transform: translateY(10px);
}
#lighting .col2 {
  align-items: center;
}
#lighting .col2.reverse {
  flex-direction: row-reverse;
}
#lighting .col2 .item h4 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 740px) {
  #lighting .col2 .item h4 {
    font-size: 2rem;
  }
}
#lighting .col2 .item .txt {
  text-align: left;
  margin-bottom: 30px;
}

/*スクロールアニメーション*/
.scrollIn {
  transition: 1s all;
  opacity: 0;
}
.scrollIn.scrollOff {
  opacity: 1;
}

.slideFromBottom {
  transition: 1.5s;
  opacity: 0;
}
.slideFromBottom.show {
  opacity: 1;
  animation: slideFromBottom 1.5s forwards;
}

@keyframes slideFromBottom {
  0% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(0%);
  }
}
.slideFromLeft {
  transition: 1s;
}
.slideFromLeft.show {
  animation: slideFromLeft 1s forwards;
}

@keyframes slideFromLeft {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(0%);
  }
}
.slideFromRight {
  transition: 1s;
}
.slideFromRight.show {
  animation: slideFromRight 1s forwards;
}

@keyframes slideFromRight {
  0% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(0%);
  }
}/*# sourceMappingURL=style.css.map */