@charset "UTF-8";
.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url(../img/visual01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*スクロールダウン全体の場所*/
  /*Scrollテキストの描写*/
  /* 丸の描写 */
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
  /* 線の描写 */
}
@media (max-width: 480px) {
  .main-visual {
    min-height: 93.3333333333vw;
  }
}
.main-visual::after {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  z-index: 1000;
}
@media (max-width: 480px) {
  .main-visual::after {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.main-visual .main-visual__logo {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
          transform: translate(-50%, -50%) scale(0.7);
  z-index: 1100;
  text-align: center;
}
@media (max-width: 480px) {
  .main-visual .main-visual__logo {
    width: 120vw;
  }
}
.main-visual .txt {
  font-size: 5rem;
  color: #fff;
}
@media (max-width: 480px) {
  .main-visual .txt {
    font-size: 8vw;
    margin-bottom: 2.6666666667vw;
  }
}
.main-visual .txt_en {
  font-size: 2rem;
  color: #fff;
}
@media (max-width: 480px) {
  .main-visual .txt_en {
    font-size: 4.5333333333vw;
  }
}
.main-visual #logo-svg {
  fill: none;
}
.main-visual .st2 {
  fill: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 10px 10px 10px #000;
          box-shadow: 10px 10px 10px #000;
}
@media (max-width: 480px) {
  .main-visual .st2 {
    fill: rgba(255, 255, 255, 0.3);
  }
}
.main-visual .scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 100;
}
@media (max-width: 480px) {
  .main-visual .scrolldown2 {
    bottom: 4vw;
  }
}
.main-visual .scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media (max-width: 480px) {
  .main-visual .scrolldown2 span {
    left: 4vw;
    bottom: 4vw;
  }
}
.main-visual .scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media (max-width: 480px) {
  .main-visual .scrolldown2:before {
    width: 3.2vw;
    height: 3.2vw;
    left: -1.3333333333vw;
  }
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.main-visual .scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: #eee;
}

.main_text {
  width: 600px;
  border: 1px solid #333;
  padding: 40px 0;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .main_text {
    width: 80%;
  }
}

.main-block {
  text-align: center;
}
@media (max-width: 480px) {
  .main-block {
    padding: 0 5.3333333333vw;
  }
}
.main-block .animate {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
.main-block .effect {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.main-block .main-block__ttl {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 35px;
}
@media (max-width: 480px) {
  .main-block .main-block__ttl {
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
  }
}
.main-block .main-block__txt {
  line-height: 2.5;
}
@media (max-width: 480px) {
  .main-block .main-block__txt {
    line-height: 2.2;
    letter-spacing: 1px;
  }
}
.main-block .link-mark {
  text-decoration: underline;
}
.main-block .link-mark:hover {
  text-decoration: none;
}

.top-feature {
  padding: 80px 0;
  background: url(../img/img01.jpg) no-repeat center center/cover;
}
@media (max-width: 480px) {
  .top-feature {
    padding: 16vw 8vw;
  }
}
.top-feature .animate {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
.top-feature .effect {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.top-feature .section__in {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 110px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}
@media (max-width: 480px) {
  .top-feature .section__in {
    padding: 10.6666666667vw 8vw;
    border-radius: 0.5333333333vw;
  }
}
.top-feature .section-ttl {
  text-align: center;
}
.top-feature .top-feature-mian__txt {
  text-align: center;
  line-height: 2;
}
.top-feature .top-feature-img {
  display: none;
  position: absolute;
  width: 800px;
  top: 0;
  right: 0;
  z-index: 10;
}

.top-service .section-ttl .animate {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
@media (max-width: 480px) {
  .top-service .section-ttl .animate {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}
.top-service .section-ttl .effect {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 480px) {
  .top-service .section-ttl .effect {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.top-service .top-service-main {
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .top-service .top-service-main {
    margin-bottom: 10.6666666667vw;
  }
}
.top-service .top-service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 480px) {
  .top-service .top-service-list {
    width: 90%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 auto;
  }
}
.top-service .top-service-list.animate .top-service-list__set {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  opacity: 0;
  -webkit-transition: opacity 2s, -webkit-transform 1.5s;
  transition: opacity 2s, -webkit-transform 1.5s;
  transition: transform 1.5s, opacity 2s;
  transition: transform 1.5s, opacity 2s, -webkit-transform 1.5s;
}
.top-service .top-service-list.animate .top-service-list__set:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.top-service .top-service-list.animate .top-service-list__set:nth-child(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.top-service .top-service-list.animate .top-service-list__set:nth-child(3) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.top-service .top-service-list.animate .top-service-list__set:nth-child(4) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.top-service .top-service-list.animate .top-service-list__set:nth-child(5) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.top-service .top-service-list.effect .top-service-list__set {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.top-service .top-service-list__set {
  position: relative;
  width: 25%;
  height: 255px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  -webkit-transition: background-color .5s;
  transition: background-color .5s;
}
@media (max-width: 480px) {
  .top-service .top-service-list__set {
    width: 100%;
    height: 34.6666666667vw;
  }
}
.top-service .top-service-list__set::before {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.3;
  -webkit-transition: background-size .6s, opacity .5s;
  transition: background-size .6s, opacity .5s;
}
.top-service .top-service-list__set::after {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  z-index: 10;
}
.top-service .top-service-list__set.s01::before {
  background-image: url(../img/top/top-img01-01.jpg);
}
@media (max-width: 480px) {
  .top-service .top-service-list__set.s01::before {
    background-image: url(../img/top/top-img01-01-sp.jpg);
  }
}
.top-service .top-service-list__set.s02::before {
  background-image: url(../img/top/top-img01-02.jpg);
}
@media (max-width: 480px) {
  .top-service .top-service-list__set.s02::before {
    background-image: url(../img/top/top-img01-02-sp.jpg);
  }
}
.top-service .top-service-list__set.s03::before {
  background-image: url(../img/top/top-img01-03.jpg);
}
@media (max-width: 480px) {
  .top-service .top-service-list__set.s03::before {
    background-image: url(../img/top/top-img01-03-sp.jpg);
  }
}
.top-service .top-service-list__set.s04::before {
  background-image: url(../img/top/top-img01-04.jpg);
}
@media (max-width: 480px) {
  .top-service .top-service-list__set.s04::before {
    background-image: url(../img/top/top-img01-04-sp.jpg);
  }
}
.top-service .top-service-list__set.s05::before {
  background-image: url(../img/top/top-img01-05.jpg);
}
@media (max-width: 480px) {
  .top-service .top-service-list__set.s05::before {
    background-image: url(../img/top/top-img01-05-sp.jpg);
  }
}
@media (min-width: 896px) {
  .top-service .top-service-list__set:hover::before {
    background-size: 110% 110%;
    opacity: 1;
  }
  .top-service .top-service-list__set:hover::after {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
            transform: translate(-50%, -50%) scale(0.9);
  }
}
.top-service .top-service-list__main {
  position: relative;
  color: #fff;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 3px #000000;
  z-index: 10;
}
.top-service .top-service-list__ttlen {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .top-service .top-service-list__ttlen {
    font-size: 3.2vw;
    margin-bottom: 2.6666666667vw;
  }
}
.top-service .top-service-list__ttl {
  font-size: 1.7rem;
}
@media (max-width: 480px) {
  .top-service .top-service-list__ttl {
    font-size: 4.2666666667vw;
  }
}
.top-service .top-service__btn {
  width: 200px;
  margin: 0 auto;
  font-size: 1.3rem;
  padding: 12px 0;
  display: block;
  border: 1px solid #333;
  background-color: #fff;
  border-radius: 3px;
  text-align: center;
}
@media (max-width: 480px) {
  .top-service .top-service__btn {
    width: 53.3333333333vw;
    font-size: 3.2vw;
    font-weight: normal;
    padding: 2.1333333333vw 0;
    border-radius: 0.8vw;
  }
}
@media (min-width: 896px) {
  .top-service .top-service__btn:hover {
    color: #fff;
    background-color: #333;
  }
}
.top-service .top-service__btn.animate {
  opacity: 0;
  -webkit-transition: color .3s, background-color .3s, opacity .5s;
  transition: color .3s, background-color .3s, opacity .5s;
}
.top-service .top-service__btn.effect {
  opacity: 1;
}

.top-job .section-ttl .animate {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
@media (max-width: 480px) {
  .top-job .section-ttl .animate {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}
.top-job .section-ttl .effect {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 480px) {
  .top-job .section-ttl .effect {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.top-job .top-job-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .top-job .top-job-main {
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
    margin-bottom: 8vw;
    padding-bottom: 5.3333333333vw;
    overflow-x: scroll;
  }
}
.top-job .top-job-main::-webkit-scrollbar {
  height: 2.1333333333vw;
  /* スクロールバーの高さ */
}
.top-job .top-job-main::-webkit-scrollbar-thumb {
  background: #d2b48c;
  /* ツマミの色 */
  border-radius: 1.3333333333vw;
  /* ツマミ両端の丸み */
}
.top-job .top-job-main::-webkit-scrollbar-track {
  background: #f5deb3;
  /* トラックの色 */
  border-radius: 1.3333333333vw;
  /* トラック両端の丸み */
}
.top-job .top-job-main .top-job-main__set {
  width: 31%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #222;
  -webkit-box-shadow: 5px 5px 0 #d0d0d0;
          box-shadow: 5px 5px 0 #d0d0d0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 480px) {
  .top-job .top-job-main .top-job-main__set {
    width: 72vw;
  }
}
@media (max-width: 480px) {
  .top-job .top-job-main .top-job-main__set:not(:last-child) {
    margin-right: 8vw;
  }
}
.top-job .top-job-main .top-job-main__set.animate {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  opacity: 0;
  -webkit-transition: opacity 2s, -webkit-transform 1.5s;
  transition: opacity 2s, -webkit-transform 1.5s;
  transition: transform 1.5s, opacity 2s;
  transition: transform 1.5s, opacity 2s, -webkit-transform 1.5s;
}
.top-job .top-job-main .top-job-main__set.animate:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.top-job .top-job-main .top-job-main__set.animate:nth-child(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.top-job .top-job-main .top-job-main__set.animate:nth-child(3) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.top-job .top-job-main .top-job-main__set.effect {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.top-job .top-job__btn.animate {
  opacity: 0;
  -webkit-transition: color .3s, background-color .3s, opacity .5s;
  transition: color .3s, background-color .3s, opacity .5s;
}
.top-job .top-job__btn.effect {
  opacity: 1;
}

.top-works .section-ttl .animate {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
@media (max-width: 480px) {
  .top-works .section-ttl .animate {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}
.top-works .section-ttl .effect {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 480px) {
  .top-works .section-ttl .effect {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.top-works .top-works-main {
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .top-works .top-works-main {
    margin-bottom: 10.6666666667vw;
  }
}
.top-works .top-works-main__set.animate {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  opacity: 0;
  -webkit-transition: opacity 2s, -webkit-transform 1.5s;
  transition: opacity 2s, -webkit-transform 1.5s;
  transition: transform 1.5s, opacity 2s;
  transition: transform 1.5s, opacity 2s, -webkit-transform 1.5s;
}
.top-works .top-works-main__set.animate:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.top-works .top-works-main__set.animate:nth-child(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.top-works .top-works-main__set.animate:nth-child(3) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.top-works .top-works-main__set.effect {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.top-works .top-works__btn.animate {
  opacity: 0;
  -webkit-transition: color .3s, background-color .3s, opacity .5s;
  transition: color .3s, background-color .3s, opacity .5s;
}
.top-works .top-works__btn.effect {
  opacity: 1;
}

@media (min-width: 896px) {
  .top-news .section__in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.top-news .section-ttl .animate {
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
@media (max-width: 480px) {
  .top-news .section-ttl .animate {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}
.top-news .section-ttl .animate.top-news__btn {
  -webkit-transition: opacity 1s, color .5s, background-color .5s, -webkit-transform 1s;
  transition: opacity 1s, color .5s, background-color .5s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s, color .5s, background-color .5s;
  transition: transform 1s, opacity 1s, color .5s, background-color .5s, -webkit-transform 1s;
}
.top-news .section-ttl .effect {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 480px) {
  .top-news .section-ttl .effect {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.top-news .top-news-mian {
  width: 100%;
  padding-left: 140px;
}
@media (max-width: 480px) {
  .top-news .top-news-mian {
    padding-left: 0;
  }
}
.top-news .top-news__btn {
  width: 90%;
  font-size: 1.3rem;
  padding: 3px 0;
  margin: 30px auto 0;
  display: block;
  border: 1px solid #333;
  background-color: #fff;
  border-radius: 3px;
  text-align: center;
}
@media (max-width: 480px) {
  .top-news .top-news__btn {
    font-size: 2.6666666667vw;
    width: 50%;
    margin-top: 5.3333333333vw;
    padding: 1.3333333333vw 0;
    border-radius: 0.8vw;
  }
}
@media (min-width: 896px) {
  .top-news .top-news__btn:hover {
    color: #fff;
    background-color: #333;
  }
}

.news-list {
  width: 100%;
}
.news-list.animate .news-list__item {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  opacity: 0;
  -webkit-transition: opacity 2s, -webkit-transform 1.5s;
  transition: opacity 2s, -webkit-transform 1.5s;
  transition: transform 1.5s, opacity 2s;
  transition: transform 1.5s, opacity 2s, -webkit-transform 1.5s;
}
.news-list.animate .news-list__item:nth-child(1) {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.news-list.animate .news-list__item:nth-child(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.news-list.animate .news-list__item:nth-child(3) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.news-list.effect .news-list__item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.news-list .news-list__item:not(:last-child) {
  border-bottom: 1px dashed #646464;
}
.news-list .news-list__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 14px 20px;
  -webkit-transition: color .3s;
  transition: color .3s;
}
@media (max-width: 480px) {
  .news-list .news-list__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 2.9333333333vw;
    padding: 3.7333333333vw 2.6666666667vw;
  }
}
.news-list .news-list__link .news-list__date {
  width: 15%;
  font-size: 1.4rem;
}
@media (max-width: 480px) {
  .news-list .news-list__link .news-list__date {
    width: 100%;
    font-size: 3.7333333333vw;
  }
}
.news-list .news-list__link .news-list__ttl {
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width: 480px) {
  .news-list .news-list__link .news-list__ttl {
    font-size: 4vw;
  }
}
.news-list .news-list__link::after {
  position: absolute;
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right .3s;
  transition: right .3s;
  line-height: 1;
}
@media (max-width: 480px) {
  .news-list .news-list__link::after {
    right: 5.3333333333vw;
  }
}
@media (min-width: 896px) {
  .news-list .news-list__link:hover {
    color: #b2b2b2;
  }
  .news-list .news-list__link:hover::after {
    right: 25px;
  }
}

.news-block .news-block__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px dashed #646464;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .news-block .news-block__heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.news-block .news__data {
  width: 15%;
  font-size: 1.4rem;
}
@media (max-width: 480px) {
  .news-block .news__data {
    width: 100%;
    font-size: 3.2vw;
  }
}
.news-block .news__title {
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 480px) {
  .news-block .news__title {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 480px) {
  .news-block .news-block__main {
    font-size: 3.7333333333vw;
  }
}

.service-list {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .service-list {
    width: 100%;
    margin-top: 24vw;
  }
}

.service-list__set {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
.service-list__set.effect .service-list__main {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  opacity: 1;
  -webkit-transition: opacity 0.1 0.5s, -webkit-transform 1.5s;
  transition: opacity 0.1 0.5s, -webkit-transform 1.5s;
  transition: transform 1.5s, opacity 0.1 0.5s;
  transition: transform 1.5s, opacity 0.1 0.5s, -webkit-transform 1.5s;
}
@media (max-width: 480px) {
  .service-list__set.effect .service-list__main {
    -webkit-transform: none;
            transform: none;
  }
}
.service-list__set:not(:last-child) {
  margin-bottom: 70px;
}
@media (max-width: 480px) {
  .service-list__set:not(:last-child) {
    margin-bottom: 26.6666666667vw;
  }
}
.service-list__set:nth-child(even) .service-list__main {
  left: auto;
  right: 0;
  -webkit-transform: translate(60px, -50%);
          transform: translate(60px, -50%);
}
@media (max-width: 480px) {
  .service-list__set:nth-child(even) .service-list__main {
    -webkit-transform: none;
            transform: none;
  }
}
.service-list__set:nth-child(even) .service-list__ttlen {
  text-align: right;
}
.service-list__set:nth-child(even) .service-list__ttl {
  text-align: right;
}
.service-list__set:nth-child(even) .service-list__img {
  margin-right: auto;
  margin-left: 0;
  -webkit-transform: translateX(-60);
          transform: translateX(-60);
}
@media (max-width: 480px) {
  .service-list__set:nth-child(even) .service-list__img {
    right: auto;
    left: -8vw;
  }
}

.service-list__main {
  position: absolute;
  width: 650px;
  padding: 70px 40px;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  top: 50%;
  left: 0;
  -webkit-transform: translate(-60px, -50%);
          transform: translate(-60px, -50%);
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: transform 1.5s, opacity 1.5s;
  transition: transform 1.5s, opacity 1.5s, -webkit-transform 1.5s;
}
@media (max-width: 480px) {
  .service-list__main {
    position: inherit;
    width: 100%;
    padding: 8vw 8vw;
    -webkit-box-shadow: 0 0 2.6666666667vw rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 2.6666666667vw rgba(0, 0, 0, 0.4);
    -webkit-transform: none;
            transform: none;
  }
}

.service-list__ttlen {
  color: #82878a;
  padding-left: 3px;
}
@media (max-width: 480px) {
  .service-list__ttlen {
    padding-left: 0.8vw;
  }
}

.service-list__ttl {
  font-size: 2.3rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .service-list__ttl {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
}

.service-list__img {
  width: 600px;
  margin-left: auto;
}
@media (max-width: 480px) {
  .service-list__img {
    position: absolute;
    width: 100%;
    height: 34.6666666667vw;
    right: -8vw;
    top: -13.3333333333vw;
    overflow: hidden;
    z-index: -1;
  }
}
@media (max-width: 480px) {
  .service-list__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.job-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 480px) {
  .job-block {
    gap: 10.6666666667vw;
  }
}
.job-block .job-block__set {
  width: calc(50% - 20px);
}
@media (max-width: 480px) {
  .job-block .job-block__set {
    width: 100%;
  }
}
.single-job .job-block .job-block__set {
  width: 100%;
}
.job-block .table01 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.table01 {
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(111, 114, 138, 0.4);
          box-shadow: 0 0 10px rgba(111, 114, 138, 0.4);
  padding: 30px 40px;
}
@media (max-width: 480px) {
  .table01 {
    padding: 9.3333333333vw 9.3333333333vw 13.3333333333vw;
  }
}
.table01 table {
  width: 100%;
  border-collapse: collapse;
}
.table01 table tr {
  border-bottom: 1px solid #ccc;
}
@media (max-width: 480px) {
  .table01 table tr {
    border-bottom: none;
  }
}
.table01 table .table01-item {
  color: #111;
  width: 25%;
}
@media (max-width: 480px) {
  .table01 table .table01-item {
    font-size: 3.4666666667vw;
    border-bottom: 1px solid #1c1c1c;
    width: 100%;
    display: block;
    padding: 1.6vw 0;
  }
}
.table01 table .table01-detail {
  font-size: 90%;
  padding: 15px 20px;
  width: 75%;
  word-break: break-all;
}
@media (max-width: 480px) {
  .table01 table .table01-detail {
    width: 100%;
    display: block;
    padding: 2.6666666667vw 2.6666666667vw;
  }
}
@media (max-width: 480px) {
  .table01 table .table01-detail p {
    margin-bottom: 2.6666666667vw;
  }
}
.table01 table .postage-table {
  overflow-x: auto;
}
@media (max-width: 480px) {
  .table01 table .postage-table {
    margin: 0 auto;
    width: 133.3333333333vw;
  }
}
.table01 table .postage-table table {
  border-collapse: collapse;
  font-size: 86%;
}
@media (max-width: 480px) {
  .table01 table .postage-table table {
    width: 330%;
  }
}
@media (max-width: 480px) {
  .table01 table .postage-table table tr {
    border-bottom: 1px solid #ccc;
  }
}
.table01 table .postage-table table td {
  padding: 15px 5px;
  text-align: center;
}
.table01 table .postage-table table td:nth-of-type(even) {
  background-color: #eee;
}
.table01 table .postage-table table td:first-of-type {
  letter-spacing: 0;
}
.table01 table .postage-table table .postage-area {
  vertical-align: top;
}
.table01 table .txt_r {
  text-align: right;
}
.table01 table .deliver {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.table01 table .deliver-cate {
  font-weight: bold;
  width: 20%;
}
@media (max-width: 480px) {
  .table01 table .deliver-cate {
    width: 100%;
  }
}
.table01 table .deliver-in {
  width: 70%;
}
@media (max-width: 480px) {
  .table01 table .deliver-in {
    width: 100%;
  }
}
.table01 table .deliver-in:not(:last-child) {
  margin-bottom: 15px;
}
.table01 table .indent-txt {
  text-indent: -16px;
  padding-left: 16px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .table01 table .indent-txt {
    text-indent: -6.6666666667vw;
    padding-left: 6.6666666667vw;
  }
}
.table01 table .service-cancel:not(:last-of-type) {
  margin-bottom: 15px;
}
.table01 table .service-cancel__inner dt {
  font-weight: bold;
}
.table01 table .contact-to:not(:last-child) {
  margin-bottom: 30px;
}
.table01 table .contact-to__inner {
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 15px;
}
.table01 table .contact-to__name {
  font-weight: bold;
  font-size: 110%;
}
.table01 table .contact-to__info .tel {
  color: inherit;
  font-size: 150%;
  font-weight: bold;
  letter-spacing: 0;
  text-decoration: none;
  pointer-events: none;
}
@media (max-width: 480px) {
  .table01 table .contact-to__info .tel {
    pointer-events: unset;
  }
}
@media (max-width: 480px) {
  .table01 table .contact-to__info .time {
    display: block;
  }
}

.btn-link {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 0;
}
@media (max-width: 480px) {
  .btn-link {
    display: block;
    margin-top: 2.6666666667vw;
  }
}
.btn-link .btn-link__set {
  width: 100%;
}
.btn-link .btn-link__set:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 480px) {
  .btn-link .btn-link__set:not(:last-child) {
    margin-right: 0;
    margin-bottom: 4vw;
  }
}
.btn-link .btn-link__set a {
  font-size: 1.3rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 10px 0;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  -webkit-transition: background-color .5s, color .5s;
  transition: background-color .5s, color .5s;
}
@media (max-width: 480px) {
  .btn-link .btn-link__set a {
    font-size: 2.9333333333vw;
    padding: 2.6666666667vw 0;
  }
}
@media (min-width: 896px) {
  .btn-link .btn-link__set a:hover {
    color: #000;
    background-color: #fff;
  }
}
.btn-link .btn-link__set a::after {
  position: absolute;
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.privacy-box {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-box .privacy-box__pick {
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .privacy-box .privacy-box__pick {
    margin-bottom: 10.6666666667vw;
  }
}
.privacy-box .privacy-box-list__set:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .privacy-box .privacy-box-list__set:not(:last-child) {
    margin-bottom: 8vw;
  }
}
.privacy-box .privacy-box-list__ttl {
  font-weight: bold;
}

.works_category {
  width: 100%;
  margin-bottom: 40px;
  top: 0;
  padding: 20px 0;
}
@media (max-width: 480px) {
  .works_category {
    margin-bottom: 20px;
  }
}
.works_category .category_navi {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.works_category .category_navi a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}
.works_category .category_navi .active > a {
  background-color: #000;
  color: #fff;
}
@media (min-width: 896px) {
  .works_category .category_navi .active > a:hover {
    background-color: #000;
    color: #fff;
  }
}
.works_category .category_navi .active::after {
  color: #fff;
}
.works_category .category_navi_item {
  width: 22%;
  margin-right: 4%;
  border: 2px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  position: relative;
}
@media (max-width: 480px) {
  .works_category .category_navi_item {
    font-size: 2.9333333333vw;
  }
}
.works_category .category_navi_item a {
  background: #fff;
  padding: 13px 10px;
  display: block;
  width: 100%;
}
@media (max-width: 480px) {
  .works_category .category_navi_item a {
    padding: 2.6666666667vw 2.6666666667vw;
    text-align: left;
  }
}
@media (min-width: 896px) {
  .works_category .category_navi_item a:hover {
    background-color: #00000033;
    color: inherit;
  }
  .works_category .category_navi_item a:hover::after {
    right: 10px;
  }
}
.works_category .category_navi_item::after {
  content: "\f054";
  font-size: 1em;
  top: 50%;
  -webkit-transition: right 0.5s;
  transition: right 0.5s;
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  right: 20px;
}
@media (max-width: 480px) {
  .works_category .category_navi_item::after {
    right: 1.3333333333vw;
  }
}
@media (max-width: 480px) {
  #contents .works_category .category_navi_item {
    width: 48%;
    margin: 0 4% 0 0;
    min-height: 30px;
  }
  #contents .works_category .category_navi_item:nth-child(2n), #contents .works_category .category_navi_item:last-child {
    margin-right: 0;
  }
  #contents .works_category .category_navi_item:nth-child(n+3) {
    margin-top: 3%;
  }
  #contents .works_category .category_navi_item:nth-child(5n):last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.works_category .category_navi_item:nth-child(4n), .works_category .category_navi_item:last-child {
  margin-right: 0;
}
.works_category .category_navi_item:nth-child(1):nth-last-child(5), .works_category .category_navi_item:nth-child(2):nth-last-child(4), .works_category .category_navi_item:nth-child(3):nth-last-child(3), .works_category .category_navi_item:nth-child(4):nth-last-child(2), .works_category .category_navi_item:nth-child(5):nth-last-child(1) {
  width: 18%;
  margin-right: 2.5%;
}
.works_category .category_navi_item:nth-child(1):nth-last-child(5):nth-child(5n), .works_category .category_navi_item:nth-child(1):nth-last-child(5):last-child, .works_category .category_navi_item:nth-child(2):nth-last-child(4):nth-child(5n), .works_category .category_navi_item:nth-child(2):nth-last-child(4):last-child, .works_category .category_navi_item:nth-child(3):nth-last-child(3):nth-child(5n), .works_category .category_navi_item:nth-child(3):nth-last-child(3):last-child, .works_category .category_navi_item:nth-child(4):nth-last-child(2):nth-child(5n), .works_category .category_navi_item:nth-child(4):nth-last-child(2):last-child, .works_category .category_navi_item:nth-child(5):nth-last-child(1):nth-child(5n), .works_category .category_navi_item:nth-child(5):nth-last-child(1):last-child {
  margin-right: 0;
}
.works_category .category_navi_item:nth-child(n + 5) {
  margin-top: 20px;
}

.works-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
}
@media (max-width: 480px) {
  .works-list {
    gap: 8vw;
  }
}
.works-list .works-list__set {
  width: calc(33.333% - 12px);
  -webkit-box-shadow: 0px 0px 10px #00000033;
          box-shadow: 0px 0px 10px #00000033;
  background-color: #fff;
}
@media (max-width: 480px) {
  .works-list .works-list__set {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .works-list .works-list__set > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 2.6666666667vw;
  }
}
@media (min-width: 896px) {
  .works-list .works-list__set:hover > a {
    color: #00819f;
  }
  .works-list .works-list__set:hover .works-list__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0.7;
  }
  .works-list .works-list__set:hover .works-list__txt::after {
    -webkit-transform: translateX(0.5em);
            transform: translateX(0.5em);
  }
}
.works-list .works-list__img {
  overflow: hidden;
  height: 232px;
}
@media (max-width: 480px) {
  .works-list .works-list__img {
    width: 30%;
    height: 25vw;
  }
}
.works-list .works-list__img img {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.works-list .works-list__main {
  background-color: #fff;
  padding: 20px 25px;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .works-list .works-list__main {
    width: 70%;
    padding: 0 0 0 2.6666666667vw;
    letter-spacing: 0.2666666667vw;
  }
}
.works-list .works-list__area {
  font-size: 1.5rem;
}
@media (max-width: 480px) {
  .works-list .works-list__area {
    font-size: 3.2vw;
  }
}
.works-list .works-list__ttl {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.4;
  padding-bottom: 10px;
}
@media (max-width: 480px) {
  .works-list .works-list__ttl {
    font-size: 3.7333333333vw;
    padding-bottom: 2.6666666667vw;
  }
}
.works-list .works_list__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .works-list .works_list__category {
    margin-bottom: 0px;
    letter-spacing: 0.2666666667vw;
  }
}
.works-list .works_list__category li {
  background-color: #9aacb4;
  color: #fff;
  padding: 0px 7px;
  font-size: 1.2rem;
}
@media (max-width: 480px) {
  .works-list .works_list__category li {
    font-size: 3.2vw;
    margin-bottom: 1.3333333333vw;
  }
}
.works-list .works_list__category li:not(:last-child) {
  margin-right: 5px;
}
.works-list .works-list__date {
  color: #999;
}
@media (max-width: 480px) {
  .works-list .works-list__date {
    font-size: 3.2vw;
  }
}
.works-list .works-list__txt {
  font-size: 1.3rem;
  text-align: right;
}
@media (max-width: 480px) {
  .works-list .works-list__txt {
    font-size: 2.9333333333vw;
  }
}
.works-list .works-list__txt::after {
  content: "\f101";
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  display: inline-block;
  padding-left: 0.2em;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.works-block__heading {
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .works-block__heading {
    margin-bottom: 6.6666666667vw;
  }
}

.works__area {
  margin-bottom: 5px;
}

.works__title {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 480px) {
  .works__title {
    font-size: 5.3333333333vw;
  }
}

.works-block__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
}
@media (max-width: 480px) {
  .works-block__category {
    margin-bottom: 0;
  }
}
.works-block__category li {
  background-color: #000;
  color: #fff;
  padding: 0px 7px;
}
@media (max-width: 480px) {
  .works-block__category li {
    margin-bottom: 5.3333333333vw;
  }
}
.works-block__category li:not(:last-child) {
  margin-right: 5.3333333333vw;
}

.works__data {
  text-align: right;
}

.works-block__pickup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 480px) {
  .works-block__pickup {
    width: 100%;
    margin-bottom: 13.3333333333vw;
  }
}

.works-before__img,
.works-after__img {
  width: calc(50% - 30px);
  -webkit-box-shadow: 0px 0px 5px #c9c5c5;
          box-shadow: 0px 0px 5px #c9c5c5;
  position: relative;
}
@media (max-width: 480px) {
  .works-before__img,
  .works-after__img {
    width: 100%;
  }
}
.works-before__img img,
.works-after__img img {
  display: block;
  width: 100%;
}
.works-before__img::before,
.works-after__img::before {
  width: 180px;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 7px 0;
}
@media (max-width: 480px) {
  .works-before__img::before,
  .works-after__img::before {
    font-size: 4vw;
    width: 30%;
    padding: 2.6666666667vw 0;
  }
}

.works-before__img {
  margin-right: 60px;
  position: relative;
}
@media (max-width: 480px) {
  .works-before__img {
    margin-right: 0;
    margin-bottom: 10.6666666667vw;
  }
}
.works-before__img::before {
  content: "Before";
  background-color: #7f7f7fad;
}
.works-before__img::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 30px;
  border-color: transparent transparent transparent #3e3e3e;
  position: absolute;
  top: 50%;
  right: -17px;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}
@media (max-width: 480px) {
  .works-before__img::after {
    border-width: 5vw 5vw 0 5vw;
    border-color: #3e3e3e transparent transparent transparent;
    top: auto;
    bottom: -10px;
    right: 50%;
    -webkit-transform: translate(50%, 100%);
            transform: translate(50%, 100%);
  }
}

.works-after__img::before {
  content: "After";
  background-color: #000000ad;
}

.works-block__gallery {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .works-block__gallery {
    margin-bottom: 6.6666666667vw;
  }
}
.works-block__gallery .main_img {
  width: 710px;
  height: 378px;
  margin-right: 60px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px #c9c5c5;
          box-shadow: 0px 0px 5px #c9c5c5;
  position: relative;
}
@media (max-width: 480px) {
  .works-block__gallery .main_img {
    width: 100%;
    height: 64.5vw;
    margin-right: 0;
    margin-bottom: 6.6666666667vw;
  }
}
.works-block__gallery .main_img img {
  width: 100%;
  height: 378px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 480px) {
  .works-block__gallery .main_img img {
    height: 64.5vw;
  }
}
.works-block__gallery .sub_img {
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 480px) {
  .works-block__gallery .sub_img {
    width: 100%;
  }
}
.works-block__gallery .sub_img .slick-track {
  width: 100% !important;
}
.works-block__gallery .sub_img li {
  width: 122px;
  height: 90px;
  -webkit-box-shadow: 0px 0px 5px #c9c5c5;
          box-shadow: 0px 0px 5px #c9c5c5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (max-width: 480px) {
  .works-block__gallery .sub_img li {
    width: calc(25% - 1.5%);
    height: 15.8vw;
  }
}
.works-block__gallery .sub_img li:nth-child(odd) {
  margin-right: 6px;
}
@media (max-width: 480px) {
  .works-block__gallery .sub_img li:nth-child(odd) {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .works-block__gallery .sub_img li:not(:nth-child(4n)) {
    margin-right: 2%;
  }
}
.works-block__gallery .sub_img li:not(:nth-child(n + 6)) {
  margin-bottom: 6px;
}
@media (max-width: 480px) {
  .works-block__gallery .sub_img li:not(:nth-child(n + 6)) {
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .works-block__gallery .sub_img li:not(:nth-child(n + 4)) {
    margin-bottom: 2%;
  }
}
.works-block__gallery .sub_img li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-block__gallery .sub_img .slick-current {
  border: 3px solid #5b5a5a;
}
@media (max-width: 480px) {
  .works-block__gallery .sub_img .slick-current {
    border-width: 0.8vw;
  }
}
@media (max-width: 480px) {
  .works-block__gallery .slick-list {
    width: 100%;
  }
}
.works-block__gallery .slick-prev,
.works-block__gallery .slick-next {
  z-index: 1;
  background-color: #000000be !important;
  width: 30px;
  height: 100px;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
@media (max-width: 480px) {
  .works-block__gallery .slick-prev,
  .works-block__gallery .slick-next {
    width: 6%;
  }
}
.works-block__gallery .slick-prev::before,
.works-block__gallery .slick-next::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
}
.works-block__gallery .slick-prev:hover,
.works-block__gallery .slick-next:hover {
  background-color: #474747be !important;
}
.works-block__gallery .slick-prev {
  left: 0;
}
.works-block__gallery .slick-prev::before {
  content: "\f104";
}
.works-block__gallery .slick-next {
  right: 0;
}
.works-block__gallery .slick-next::before {
  content: "\f105";
}
.works-block__gallery #gallery_thumnail .slick-slide {
  cursor: pointer;
}

.works__table {
  padding: 0;
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .works__table {
    margin-bottom: 8vw;
  }
}
.works__table table {
  border-collapse: collapse;
  width: 100%;
}
.works__table table tbody th,
.works__table table tbody td {
  padding: 20px 16px;
}
@media (max-width: 480px) {
  .works__table table tbody th,
  .works__table table tbody td {
    padding: 2.6666666667vw 2.6666666667vw;
  }
}
.works__table table tbody th {
  width: 26%;
}
.works__table table tbody td {
  width: 74%;
}
.works__table table tbody tr {
  border-bottom: 1px solid #000;
}

.works-block__msg {
  margin-bottom: 50px;
}
@media (max-width: 480px) {
  .works-block__msg {
    margin-bottom: 6.6666666667vw;
  }
}

#detail_PageList {
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  #detail_PageList {
    width: 100%;
    padding: 0 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
#detail_PageList a {
  display: block;
  text-decoration: none;
  line-height: 1;
}
#detail_PageList li {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#detail_PageList .next,
#detail_PageList .prev {
  width: 148px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
#detail_PageList .next a,
#detail_PageList .prev a {
  font-size: 1.3rem;
  padding: 10px 30px;
}
@media (max-width: 480px) {
  #detail_PageList .next a,
  #detail_PageList .prev a {
    font-size: 3.2vw;
    padding: 4vw 0;
  }
}
@media (max-width: 480px) {
  #detail_PageList .next,
  #detail_PageList .prev {
    width: 30%;
  }
}
#detail_PageList .next:hover,
#detail_PageList .prev:hover {
  opacity: 0.5;
}
#detail_PageList .pagelist {
  background-color: #373737;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media (max-width: 480px) {
  #detail_PageList .pagelist {
    width: 36%;
    margin: 0 2%;
  }
}
#detail_PageList .pagelist a {
  color: #fff;
  font-size: 1.5rem;
  padding: 10px 30px;
}
@media (max-width: 480px) {
  #detail_PageList .pagelist a {
    font-size: 3.4666666667vw;
    padding: 2.1333333333vw 0;
  }
}
#detail_PageList .pagelist:hover {
  opacity: 0.5;
}
