.screen {
  position: relative;
  text-transform: uppercase;
  transition: all 1s ease-out;
}

.screen.left {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.screen.left.show {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.screen.right {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}

.screen.right.show {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

body {
  background-color: #fff;
}

.contents {
  width: 100%;
  margin: 80px auto 0;
}
.contents .kv {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contents .kv h2 {
  font-size: 30px;
  writing-mode: horizontal-tb;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #0A0A0A;
  position: relative;
  text-align: center;
}
.contents .kv h2 span {
  position: absolute;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: #0A0A0A;
}
.contents .kv h2:after {
  content: "";
  width: 1px;
  height: 60px;
  background-color: #999;
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
}
.contents .inner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 0 120px;
}
.contents .inner ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto 40px;
  padding: 0;
}
.contents .inner ul li {
  flex-basis: 100%;
}
.contents .inner ul li h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #0A0A0A;
  text-align: left;
  margin: 0 0 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.contents .inner ul li a {
  text-decoration: none;
}
.contents .inner ul li a p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #0A0A0A;
  margin: 0 0 20px;
  padding-left: 26px;
  color: #0A0A0A;
  position: relative;
}
.contents .inner ul li a p:before {
  content: "";
  background-image: url(../img/arrow_bk.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 780px) {
  .contents {
    width: 100%;
    margin: 12vw auto 0;
  }
  .contents .kv {
    width: 100%;
    height: 60vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contents .kv h2 {
    font-size: 4.8717948718vw;
    writing-mode: horizontal-tb;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #0A0A0A;
    position: relative;
    text-align: center;
  }
  .contents .kv h2 span {
    position: absolute;
    font-size: 2.5641025641vw;
    font-weight: 400;
    letter-spacing: 0.1em;
    bottom: -5vw;
    left: 50%;
    transform: translateX(-50%);
    color: #0A0A0A;
    white-space: nowrap;
  }
  .contents .kv h2:after {
    content: "";
    width: 1px;
    height: 15vw;
    background-color: #999;
    position: absolute;
    bottom: -24vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .contents .inner {
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
    padding: 15vw 0;
  }
  .contents .inner ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto 10vw;
    padding: 0;
  }
  .contents .inner ul li {
    flex-basis: 100%;
  }
  .contents .inner ul li h6 {
    font-size: 3.8461538462vw;
    font-weight: 500;
    line-height: 1;
    color: #0A0A0A;
    text-align: left;
    margin: 0 0 5vw;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5vw;
  }
  .contents .inner ul li a {
    text-decoration: none;
  }
  .contents .inner ul li a p {
    font-size: 3.3333333333vw;
    font-weight: 400;
    line-height: 1;
    color: #0A0A0A;
    margin: 0 0 4vw;
    padding-left: 5vw;
    color: #0A0A0A;
    position: relative;
  }
  .contents .inner ul li a p:before {
    content: "";
    background-image: url(../img/arrow_bk.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 3vw;
    height: 1.5vw;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.remodal-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.remodal-wrapper {
  overflow: hidden;
}

.remodal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.remodal-is-opened,
.remodal.is-opened,
.remodal.remodal-is-opened {
  opacity: 1 !important;
  visibility: visible !important;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.remodal {
  padding: 0;
  position: absolute;
  inset: 0;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  transform: unset !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-container {
  max-width: 980px;
  background-color: #fff;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 45px;
  position: relative;
}
.modal-container .remodal-cancel {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: none;
  background-image: url(/img/showcase/modal_close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  min-width: inherit;
  border: none;
}

.modal-content {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.modal-content ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
}
.modal-content ul .photo {
  flex-basis: 440px;
}
.modal-content ul .photo img {
  max-width: 100%;
}
.modal-content ul .text {
  flex-basis: 420px;
  text-align: left;
}
.modal-content ul .text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #000;
  margin: 0 0 20px;
}
.modal-content ul .text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #000;
  margin: 0 0 20px;
}
.modal-content ul .text span {
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  display: block;
  margin: 0 0 20px;
}
.modal-content ul .text .enbtn {
  width: 100%;
  height: 42px;
  margin: 0 auto;
  border: 1px solid #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  .modal-content ul .text .enbtn:hover {
    background-color: #AC2437;
    border: 1px solid #AC2437;
  }
  .modal-content ul .text .enbtn:hover p {
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    width: 100%;
    position: relative;
  }
  .modal-content ul .text .enbtn:hover p:after {
    content: "";
    background-image: url(/img/arrow_wh.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 27px;
    height: 8px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.modal-content ul .text .enbtn p {
  font-size: 14px;
  margin: 0;
  font-weight: 400;
  line-height: 1;
  color: #0A0A0A;
  width: 100%;
  position: relative;
}
.modal-content ul .text .enbtn p:after {
  content: "";
  background-image: url(/img/arrow_bk.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 27px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: 0.5s;
}

@media (max-width: 780px) {
  .remodal-overlay {
    background: rgba(0, 0, 0, 0.8);
  }
  .remodal {
    padding: 5vw 0;
    position: absolute;
    max-width: 100vw;
    inset: 0;
    margin: auto;
  }
  .modal-container {
    max-width: 100%;
    background-color: #fff;
    width: 90vw;
    height: auto;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    overflow-y: scroll;
  }
  .modal-container .remodal-cancel {
    position: absolute;
    right: 0;
    top: 0;
    width: 8vw;
    height: 8vw;
    background: none;
    background-image: url(/img/showcase/modal_close.svg);
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
  }
  .modal-content {
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
    text-align: center;
    padding: 10vw 0;
    box-sizing: border-box;
  }
  .modal-content ul {
    display: flex;
    justify-content: space-center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 80vw;
    margin: 0 auto;
  }
  .modal-content ul .photo {
    flex-basis: 80vw;
  }
  .modal-content ul .photo img {
    max-width: 100%;
    margin-bottom: 5vw;
  }
  .modal-content ul .text {
    flex-basis: 80vw;
    text-align: left;
  }
  .modal-content ul .text h3 {
    font-size: 3.8461538462vw;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #000;
    margin: 0 0 2vw;
  }
  .modal-content ul .text p {
    font-size: 3.0769230769vw;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
    color: #000;
    margin: 0 0 2vw;
  }
  .modal-content ul .text span {
    font-size: 3.0769230769vw;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.05em;
    display: block;
    margin: 0 0 2vw;
  }
  .modal-content ul .text .enbtn {
    width: 80vw;
    height: 9vw;
    margin: 4vw auto;
    border: 1px solid #D9D9D9;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.5s;
  }
  .modal-content ul .text .enbtn p {
    font-size: 2.5641025641vw;
    margin: 0;
    font-weight: 400;
    line-height: 1;
    color: #0A0A0A;
    width: 100%;
    position: relative;
  }
  .modal-content ul .text .enbtn p:after {
    content: "";
    background-image: url(/img/arrow_bk.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 3vw;
    height: 1vw;
    position: absolute;
    right: 2vw;
    top: 50%;
    transform: translateY(-50%);
    transition-duration: 0.5s;
  }
}/*# sourceMappingURL=sitemap.css.map */