@charset "UTF-8";
@-webkit-keyframes PageTopArrow {
  0% {
    top: 60%;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 60%;
  }
}
@keyframes PageTopArrow {
  0% {
    top: 60%;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 60%;
  }
}

@-webkit-keyframes PageTopbgColor {
  0% {
    background-color: #f07d0a;
  }
  50% {
    background-color: #f2a456;
  }
  100% {
    background-color: #f07d0a;
  }
}

@keyframes PageTopbgColor {
  0% {
    background-color: #f07d0a;
  }
  50% {
    background-color: #f2a456;
  }
  100% {
    background-color: #f07d0a;
  }
}

@-webkit-keyframes TopBgSlide {
  0% {
    background: -webkit-gradient(linear, left top, right top, from(#f07d0a), color-stop(0%, transparent));
    background: linear-gradient(to right, #f07d0a 0%, transparent 0%);
  }
  100% {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f07d0a), color-stop(0%, transparent));
    background: linear-gradient(to right, #f07d0a 50%, transparent 0%);
  }
}

@keyframes TopBgSlide {
  0% {
    background: -webkit-gradient(linear, left top, right top, from(#f07d0a), color-stop(0%, transparent));
    background: linear-gradient(to right, #f07d0a 0%, transparent 0%);
  }
  100% {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f07d0a), color-stop(0%, transparent));
    background: linear-gradient(to right, #f07d0a 50%, transparent 0%);
  }
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 90%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 90%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

@-webkit-keyframes fadeUp {
  0% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes fadeDown {
  0% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeDown {
  0% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes showTextFromBottom {
  0% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes showTextFromBottom {
  0% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

.btn__wrap {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .btn__wrap {
    margin-top: 60px;
  }
}

@media (max-width: 500px) {
  .btn__wrap {
    margin-top: 40px;
  }
}

.more-btn {
  width: 300px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #333;
  border: solid 2px #333;
  margin: 0 auto;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.more-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: white;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

@media (max-width: 768px) {
  .more-btn {
    width: 280px;
    height: 60px;
  }
}

@media (max-width: 500px) {
  .more-btn {
    height: 50px;
  }
}

.more-btn .txt {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: white;
  font-weight: 700;
  position: relative;
  padding: 0 90px;
}

@media (max-width: 768px) {
  .more-btn .txt {
    padding: 0 80px;
  }
}

@media (max-width: 500px) {
  .more-btn .txt {
    font-size: 1.4rem;
  }
}

.more-btn .txt .arrow {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 768px) {
  .more-btn .txt .arrow {
    width: 40px;
  }
}

.more-btn .txt .arrow::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
}

.more-btn .txt .arrow::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  display: inline-block;
  border-style: solid;
  border-width: 5px 0px 0px 9px;
  border-color: transparent transparent transparent white;
}

@media (hover: hover) {
  .more-btn:hover::before {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .more-btn:hover .txt {
    color: #333;
  }
  .more-btn:hover .txt .arrow {
    right: -5px;
  }
  .more-btn:hover .txt .arrow::before {
    background-color: #333;
  }
  .more-btn:hover .txt .arrow::after {
    border-color: transparent transparent transparent #333;
  }
}

.submit-btn {
  width: 300px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #333;
  margin: 0 auto;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
}

@media (max-width: 768px) {
  .submit-btn {
    width: 280px;
    height: 60px;
  }
}

@media (max-width: 500px) {
  .submit-btn {
    height: 50px;
  }
}

.submit-btn .txt {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: white;
  font-weight: 700;
  position: relative;
  padding: 0 90px;
}

@media (max-width: 768px) {
  .submit-btn .txt {
    padding: 0 80px;
  }
}

@media (max-width: 500px) {
  .submit-btn .txt {
    font-size: 1.4rem;
  }
}

@media (hover: hover) {
  .submit-btn:hover {
    opacity: .7;
  }
}

.return .txt {
  padding: 0 60px;
}

#nav-contact a {
  line-height: 80px;
  padding: 0px 25px;
  background-color: black;
  color: white;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (hover: hover) {
  #nav-contact a:hover {
    background-color: #626262;
  }
}

#contact-btn {
  width: 300px;
  height: 80px;
  border: solid 2px #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 768px) {
  #contact-btn {
    width: 280px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  #contact-btn {
    height: 50px;
  }
}

#contact-btn .txt {
  color: white;
  font-size: 2.4rem;
}

@media (max-width: 768px) {
  #contact-btn .txt {
    font-size: 1.8rem;
  }
}

@media (max-width: 500px) {
  #contact-btn .txt {
    font-size: 1.6rem;
  }
}

@media (hover: hover) {
  #contact-btn:hover {
    background-color: white;
  }
  #contact-btn:hover .txt {
    color: #333;
  }
}

.return-btn {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
}

.submit-btn {
  color: #fff;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

.scrolldown {
  position: absolute;
  left: 10%;
  bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

.scrolldown .txt {
  color: white;
  font-size: 18px;
}

.scrolldown .line {
  display: inline-block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
}

.scrolldown .line::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: white;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

.burger {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  padding: 18px 15px;
  background-color: #333;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }
}

.burger__outline {
  width: 100%;
  height: 100%;
  position: relative;
}

.burger__outline .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  -webkit-transition: -webkit-transform .7s;
  transition: -webkit-transform .7s;
  transition: transform .7s;
  transition: transform .7s, -webkit-transform .7s;
  position: absolute;
  -webkit-transition: all .5s;
  transition: all .5s;
  border-radius: 2px;
}

.burger__outline .one {
  top: 0px;
}

.burger__outline .two {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger__outline .three {
  bottom: 0px;
}

.close {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  padding: 18px 15px;
  cursor: pointer;
  z-index: 5;
}

.close__outline {
  width: 100%;
  height: 100%;
  position: relative;
}

.close__outline .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  -webkit-transition: -webkit-transform .7s;
  transition: -webkit-transform .7s;
  transition: transform .7s;
  transition: transform .7s, -webkit-transform .7s;
  position: absolute;
  -webkit-transition: all .5s;
  transition: all .5s;
  border-radius: 2px;
}

.close__outline .one {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}

.close__outline .three {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-225deg);
          transform: translateY(-50%) rotate(-225deg);
}

.fv {
  position: relative;
  height: 560px;
}

.fv::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 50.4%;
  height: 100%;
  background-color: #f07d0a;
  z-index: -1;
}

.fv::after {
  position: absolute;
  content: "";
  top: 80px;
  right: 0;
  width: 78.75%;
  height: 71.43%;
  background-image: url(../../images/WORKS_image/works-fv.jpg);
  background-repeat: no-repeat;
  background-position: 70%;
  background-size: cover;
  z-index: -1;
}

.works__links__wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 0 80px;
}

.works__links__wrap .link a {
  width: 100%;
}

.works__links__wrap .link a .link__image {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 73%;
  overflow: hidden;
}

.works__links__wrap .link a .link__image img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.works__links__wrap .link a .ttl__wrap {
  margin-top: 10px;
  border-left: solid 5px #f07d0a;
  padding-left: 15px;
}

.works__links__wrap .link a .ttl__wrap .ttl {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
}

.works__links__wrap .link a:hover .link__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.article-works .article__inner .view__wrap {
  margin: 0 auto;
}

.article-works .article__inner .view__wrap .view {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 60%;
}

.article-works .article__inner .view__wrap .view img {
  position: absolute;
  top: 0;
  left: 0;
}

.article-works .article__inner .view__wrap .all-box {
  display: -ms-grid;
  display: grid;
  margin-top: 20px;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 0px 20px;
}

.article-works .article__inner .view__wrap .all-box .box a {
  position: relative;
}

.article-works .article__inner .view__wrap .all-box .box a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (hover: hover) {
  .article-works .article__inner .view__wrap .all-box .box a:hover::before {
    background-color: rgba(255, 255, 255, 0);
  }
}

.article-works .article__inner .view__wrap .all-box .box .current {
  pointer-events: none;
  position: relative;
}

.article-works .article__inner .view__wrap .all-box .box .current::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.article-works .article__inner .txts {
  margin-top: 40px;
}

.loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.loading .enji {
  position: absolute;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f07d0a;
}

.loading .enji.one {
  top: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

.loading .enji.two {
  top: calc(100%/3);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.loading .enji.three {
  top: calc(200%/3);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}

.loading .sk-cube-grid {
  width: 60px;
  height: 60px;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  margin: 100px auto;
}

@media (max-width: 414px) {
  .loading .sk-cube-grid {
    width: 40px;
    height: 40px;
  }
}

.loading.active {
  visibility: visible;
  opacity: 1;
}

.loading.active .enji.one, .loading.active .enji.two, .loading.active .enji.three {
  -webkit-transform: none;
          transform: none;
}

.loading.active .sk-cube-grid {
  opacity: 1;
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #333;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

.btn__wrap {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .btn__wrap {
    margin-top: 60px;
  }
}

@media (max-width: 500px) {
  .btn__wrap {
    margin-top: 40px;
  }
}

.more-btn {
  width: 300px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #333;
  border: solid 2px #333;
  margin: 0 auto;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.more-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: white;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

@media (max-width: 768px) {
  .more-btn {
    width: 280px;
    height: 60px;
  }
}

@media (max-width: 500px) {
  .more-btn {
    height: 50px;
  }
}

.more-btn .txt {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: white;
  font-weight: 700;
  position: relative;
  padding: 0 90px;
}

@media (max-width: 768px) {
  .more-btn .txt {
    padding: 0 80px;
  }
}

@media (max-width: 500px) {
  .more-btn .txt {
    font-size: 1.4rem;
  }
}

.more-btn .txt .arrow {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 768px) {
  .more-btn .txt .arrow {
    width: 40px;
  }
}

.more-btn .txt .arrow::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
}

.more-btn .txt .arrow::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  display: inline-block;
  border-style: solid;
  border-width: 5px 0px 0px 9px;
  border-color: transparent transparent transparent white;
}

@media (hover: hover) {
  .more-btn:hover::before {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .more-btn:hover .txt {
    color: #333;
  }
  .more-btn:hover .txt .arrow {
    right: -5px;
  }
  .more-btn:hover .txt .arrow::before {
    background-color: #333;
  }
  .more-btn:hover .txt .arrow::after {
    border-color: transparent transparent transparent #333;
  }
}

.submit-btn {
  width: 300px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #333;
  margin: 0 auto;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
}

@media (max-width: 768px) {
  .submit-btn {
    width: 280px;
    height: 60px;
  }
}

@media (max-width: 500px) {
  .submit-btn {
    height: 50px;
  }
}

.submit-btn .txt {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: white;
  font-weight: 700;
  position: relative;
  padding: 0 90px;
}

@media (max-width: 768px) {
  .submit-btn .txt {
    padding: 0 80px;
  }
}

@media (max-width: 500px) {
  .submit-btn .txt {
    font-size: 1.4rem;
  }
}

@media (hover: hover) {
  .submit-btn:hover {
    opacity: .7;
  }
}

.return .txt {
  padding: 0 60px;
}

#nav-contact a {
  line-height: 80px;
  padding: 0px 25px;
  background-color: black;
  color: white;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (hover: hover) {
  #nav-contact a:hover {
    background-color: #626262;
  }
}

#contact-btn {
  width: 300px;
  height: 80px;
  border: solid 2px #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (max-width: 768px) {
  #contact-btn {
    width: 280px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  #contact-btn {
    height: 50px;
  }
}

#contact-btn .txt {
  color: white;
  font-size: 2.4rem;
}

@media (max-width: 768px) {
  #contact-btn .txt {
    font-size: 1.8rem;
  }
}

@media (max-width: 500px) {
  #contact-btn .txt {
    font-size: 1.6rem;
  }
}

@media (hover: hover) {
  #contact-btn:hover {
    background-color: white;
  }
  #contact-btn:hover .txt {
    color: #333;
  }
}

.return-btn {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
}

.submit-btn {
  color: #fff;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

.scrolldown {
  position: absolute;
  left: 10%;
  bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  cursor: pointer;
}

.scrolldown .txt {
  color: white;
  font-size: 18px;
}

.scrolldown .line {
  display: inline-block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
}

.scrolldown .line::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: white;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

.burger {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  padding: 18px 15px;
  background-color: #333;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }
}

.burger__outline {
  width: 100%;
  height: 100%;
  position: relative;
}

.burger__outline .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  -webkit-transition: -webkit-transform .7s;
  transition: -webkit-transform .7s;
  transition: transform .7s;
  transition: transform .7s, -webkit-transform .7s;
  position: absolute;
  -webkit-transition: all .5s;
  transition: all .5s;
  border-radius: 2px;
}

.burger__outline .one {
  top: 0px;
}

.burger__outline .two {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger__outline .three {
  bottom: 0px;
}

.close {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  padding: 18px 15px;
  cursor: pointer;
  z-index: 5;
}

.close__outline {
  width: 100%;
  height: 100%;
  position: relative;
}

.close__outline .bar {
  width: 100%;
  height: 3px;
  background-color: white;
  -webkit-transition: -webkit-transform .7s;
  transition: -webkit-transform .7s;
  transition: transform .7s;
  transition: transform .7s, -webkit-transform .7s;
  position: absolute;
  -webkit-transition: all .5s;
  transition: all .5s;
  border-radius: 2px;
}

.close__outline .one {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}

.close__outline .three {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-225deg);
          transform: translateY(-50%) rotate(-225deg);
}

@keyframes PageTopArrow {
  0% {
    top: 60%;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 60%;
  }
}

@keyframes PageTopbgColor {
  0% {
    background-color: #f07d0a;
  }
  50% {
    background-color: #f2a456;
  }
  100% {
    background-color: #f07d0a;
  }
}

@keyframes TopBgSlide {
  0% {
    background: -webkit-gradient(linear, left top, right top, from(#f07d0a), color-stop(0%, transparent));
    background: linear-gradient(to right, #f07d0a 0%, transparent 0%);
  }
  100% {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f07d0a), color-stop(0%, transparent));
    background: linear-gradient(to right, #f07d0a 50%, transparent 0%);
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 90%;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

@keyframes fadeUp {
  0% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeDown {
  0% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes showTextFromBottom {
  0% {
    -webkit-filter: blur(20px);
            filter: blur(20px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  overflow-y: scroll;
}

body a {
  text-decoration: none;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

body img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

body .wrapper {
  overflow-x: hidden;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pageFv__padding {
  padding: 190px 0  180px 9vw;
}

.main-container {
  padding: 120px 0 160px;
}

.futura-f, .fv__catch, .block-ttl, .header__inner .header-logo a {
  font-family: 'Futura';
  font-weight: bold;
}

.fv__catch {
  text-transform: uppercase;
  font-size: 9.0rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: white;
}

.fv__catch__sub {
  font-size: 2.4rem;
  font-weight: 500;
  color: white;
}

.block__ttl__wrap {
  text-align: center;
  margin-bottom: 60px;
}

.block-ttl {
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  font-size: 10rem;
  font-weight: bold;
  color: #fdeade;
}

.block-ttl .jp {
  font-size: 4.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  letter-spacing: 0.1em;
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.txt-f, .article-works .article__inner .txts p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.75;
  color: #333;
}

.data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.data .time {
  font-size: 1.6rem;
  letter-spacing: normal;
  color: #333;
  margin-right: 30px;
}

.data .cate {
  background-color: #333;
  padding: 0 7px;
  margin-right: 30px;
  min-width: 135px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.data .cate .txt {
  font-size: 1.2rem;
  color: #fff;
}

.l-container {
  max-width: 1280px;
  width: 93%;
  margin: 0 auto;
}

.bc-container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}

.over-lay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}

.over-lay.open {
  opacity: 1;
  visibility: visible;
}

.sideBar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background-color: #f07d0a;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  z-index: 4;
}

.sideBar__wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.sideBar__links__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

.sideBar__links__wrap .links {
  text-align: center;
}

.sideBar__links__wrap .links .link a {
  position: relative;
  font-size: 2.4rem;
  color: white;
}

.sideBar__links__wrap .links .link a::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

@media (hover: hover) {
  .sideBar__links__wrap .links .link a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}

.sideBar__links__wrap .links .link:not(:last-of-type) {
  margin-bottom: 50px;
}

.sideBar.open {
  -webkit-transform: none;
          transform: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
}

.header__inner .header-logo {
  padding: 0 50px;
}

.header__inner .header-logo a {
  font-size: 3.0rem;
  color: #333;
}

.header__inner .gNav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__inner .gNav__links .link a {
  font-size: 1.6rem;
  color: #333;
  position: relative;
}

.header__inner .gNav__links .link:not(:last-child) {
  margin-right: 50px;
}

.header__inner .gNav__links .link:not(:last-child) a::before {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

@media (hover: hover) {
  .header__inner .gNav__links .link:not(:last-child) a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: top left;
            transform-origin: top left;
  }
}

.header__inner .gNav__links .link:not(:last-child) .current::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.header.animate {
  opacity: 1;
}

.bc .breadcrumb__container span {
  font-size: 1.4rem;
}

.bc .breadcrumb__container .arrow {
  margin: 0 5px;
}

.bc .breadcrumb__container span[property="name"] {
  display: inline-block;
  padding: 0;
  margin-top: -3px;
  vertical-align: middle;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bc .breadcrumb__container span[property="itemListElement"] {
  color: #fff;
}

.bc .breadcrumb__container span[property="itemListElement"] a[property="item"] span {
  color: #333;
}

.bc .breadcrumb__container span[property="itemListElement"] a[property="item"] span:hover {
  text-decoration: underline;
}

.searchBar__wrap .search_container input {
  height: 40px;
  width: 240px;
  padding: 0 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #e6e6e6;
}

.searchBar__wrap .search_container input::-webkit-input-placeholder {
  color: #e6e6e6;
}

.searchBar__wrap .search_container input:-ms-input-placeholder {
  color: #e6e6e6;
}

.searchBar__wrap .search_container input::-ms-input-placeholder {
  color: #e6e6e6;
}

.searchBar__wrap .search_container input::placeholder {
  color: #e6e6e6;
}

.search__result {
  font-size: 22px;
  text-align: center;
  margin-bottom: 40px;
}

.recruit__inner .recruit__link__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.recruit__inner .recruit__link__wrap .link__image {
  width: calc((100% - 80px)/2);
  position: relative;
  overflow: hidden;
}

.recruit__inner .recruit__link__wrap .link__image::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  z-index: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.recruit__inner .recruit__link__wrap .link__image img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.recruit__inner .recruit__link__wrap .link__image .txt__wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #333;
  width: 100%;
  height: 70px;
  padding: 20px;
}

.recruit__inner .recruit__link__wrap .link__image .txt__wrap .txt {
  color: white;
  font-size: 3.0rem;
  letter-spacing: 0.1em;
}

@media (hover: hover) {
  .recruit__inner .recruit__link__wrap .link__image:hover::before {
    opacity: 1;
  }
  .recruit__inner .recruit__link__wrap .link__image:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.news__arti__conts .arti {
  border-top: solid 1px #e6e6e6;
}

.news__arti__conts .arti__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 28px 20px 28px 50px;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.news__arti__conts .arti__wrap .arti-ttl {
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
}

.news__arti__conts .arti__wrap.opacity {
  opacity: .3;
}

.news__arti__conts .arti:last-of-type {
  border-bottom: solid 1px #e6e6e6;
}

.section-lists {
  margin-bottom: 60px;
}

.section-lists .txts {
  border-top: solid 1px #e6e6e6;
  padding: 28px 20px 28px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-lists .txts .txt-b {
  font-size: 1.6rem;
  letter-spacing: normal;
  font-weight: 700;
  width: 275px;
}

.section-lists .txts .txt-m {
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: normal;
  font-weight: 500;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.section-lists .txts:last-of-type {
  border-bottom: solid 1px #e6e6e6;
}

.page-top {
  height: 80px;
  background-color: #f07d0a;
  cursor: pointer;
  position: relative;
}

.page-top::before {
  position: absolute;
  content: "";
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 20px;
  height: 20px;
  border-top: solid 4px #333;
  border-left: solid 4px #333;
  -webkit-transition: top .3s;
  transition: top .3s;
}

@media (hover: hover) {
  .page-top:hover {
    -webkit-animation: PageTopbgColor ease-in .5s infinite;
            animation: PageTopbgColor ease-in .5s infinite;
  }
  .page-top:hover::before {
    -webkit-animation: PageTopArrow ease-in .5s infinite;
            animation: PageTopArrow ease-in .5s infinite;
  }
}

.footer {
  background-color: #000;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 80px 0;
}

.footer__inner {
  text-align: center;
}

.footer-logo {
  font-size: 3.0rem;
}

.footer__company {
  font-size: 1.6rem;
  line-height: 2;
  margin: 30px 0 50px;
}

.footer__company span {
  display: inline-block;
}

.footer__company .tel {
  margin-right: 10px;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}

.footer__links .link a {
  font-size: 1.6rem;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
}

.footer__links .link:not(:last-of-type) {
  margin-right: 50px;
}

.footer__copy-right {
  font-family: "Yu Gothic", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  font-size: 1.2rem;
}

.navi__wrap {
  margin-top: 50px;
}

.navi__wrap .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navi__wrap .navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navi__wrap .navigation .nav-links .page-numbers {
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #333;
  color: white;
  font-size: bold;
  font-weight: bold;
}

.navi__wrap .navigation .nav-links .page-numbers + .page-numbers {
  margin-left: 20px;
}

.navi__wrap .navigation .nav-links .current {
  background-color: transparent;
  color: #333;
  border: 2px solid #333;
}

.map__wrap {
  position: relative;
  height: 0;
  padding-top: 40%;
  width: 100%;
}

.map__wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

@media (max-width: 1110px) {
  .bc-container {
    max-width: unset;
    width: unset;
    margin: 0 50px;
  }
  .recruit__inner .recruit__link__wrap .link__image {
    width: calc((100% - 40px)/2);
  }
  .recruit__inner .recruit__link__wrap .link__image .txt__wrap {
    height: 50px;
    padding: 15px 20px 10px 20px;
  }
  .recruit__inner .recruit__link__wrap .link__image .txt__wrap .txt {
    font-size: 2.4rem;
  }
}

@media (max-width: 1024px) {
  .bc-container {
    max-width: unset;
    width: unset;
    margin: 0 50px;
  }
}

@media (max-width: 870px) {
  .pageFv__padding {
    padding: 190px 0  210px 9vw;
  }
  .fv__catch {
    font-size: 7.0rem;
  }
  .fv__catch__sub {
    font-size: 1.8rem;
  }
  .header__inner .header-logo {
    padding: 0 30px;
  }
  .header__inner .gNav__links .link:not(:last-child) {
    margin-right: 30px;
  }
  .footer__links .link:not(:last-of-type) {
    margin-right: 30px;
  }
}

@media (max-width: 768px) {
  .pageFv__padding {
    padding: 190px 0  230px 9vw;
  }
  .fv__catch {
    line-height: 1.2;
  }
  .block__ttl__wrap {
    margin-bottom: 40px;
  }
  .block-ttl {
    font-size: 7rem;
  }
  .block-ttl .jp {
    font-size: 2.8rem;
  }
  .data {
    margin-bottom: 10px;
  }
  .data .time {
    font-size: 1.4rem;
    margin-right: 20px;
  }
  .data .cate {
    min-width: 120px;
    margin-right: 0px;
  }
  .data .cate .txt {
    font-size: 1.2rem;
  }
  .l-container {
    max-width: unset;
    width: unset;
    margin: 0 30px;
  }
  .header__inner {
    height: 60px;
  }
  .header__inner .gNav__links {
    display: none;
  }
  .recruit__inner .recruit__link__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit__inner .recruit__link__wrap .link__image {
    width: 100%;
  }
  .recruit__inner .recruit__link__wrap .link__image + .link__image {
    margin-top: 50px;
  }
  .news__arti__conts .arti__wrap {
    padding: 10px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .news__arti__conts .arti__wrap .arti-ttl {
    padding: 0 20px;
  }
  .section-lists .txts {
    padding: 25px 20px 25px 20px;
  }
  .section-lists .txts .txt-b {
    width: 160px;
  }
  .page-top {
    height: 60px;
  }
  .page-top::before {
    width: 15px;
    height: 15px;
  }
  .footer {
    padding: 60px 0;
  }
  .footer__links {
    display: none;
  }
}

@media (max-width: 500px) {
  .pageFv__padding {
    padding: 140px 0 95px 0vw;
  }
  .main-container {
    padding: 80px 0px;
  }
  .fv__catch {
    font-size: 5.0rem;
  }
  .fv__catch__sub {
    font-size: 1.4rem;
  }
  .block__ttl__wrap {
    margin-bottom: 30px;
  }
  .block-ttl {
    font-size: 5rem;
  }
  .block-ttl .jp {
    font-size: 2.2rem;
    bottom: 8px;
  }
  .txt-f, .article-works .article__inner .txts p {
    font-size: 1.4rem !important;
  }
  .data .time {
    font-size: 1.2rem;
  }
  .data .cate {
    min-width: 100px;
    height: 24px;
  }
  .bc-container {
    max-width: unset;
    width: unset;
    margin: 0 30px;
  }
  .bc-container span[property="name"] {
    max-width: 150px !important;
  }
  .header__inner .header-logo {
    padding: 0 20px;
  }
  .header__inner .gNav .sideBar__links__wrap .links .link a {
    font-size: 1.8rem;
  }
  .header__inner .gNav .sideBar__links__wrap .links .link:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .bc .breadcrumb__container span {
    font-size: 1.1rem;
  }
  .search__result {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .news__arti__conts .arti__wrap {
    padding: 10px;
  }
  .news__arti__conts .arti__wrap .arti-ttl {
    font-size: 1.4rem;
    padding: 0 10px;
  }
  .section-lists .txts {
    padding: 20px 15px 20px 15px;
  }
  .section-lists .txts .txt-b {
    font-size: 1.4rem;
    width: 100px;
  }
  .section-lists .txts .txt-m {
    font-size: 1.4rem;
  }
  .page-top {
    height: 40px;
  }
  .page-top::before {
    border-top: solid 3px #333;
    border-left: solid 3px #333;
  }
  .footer {
    padding: 40px 0 20px;
  }
  .footer__company {
    font-size: 1.4rem;
    margin: 10px 0 10px;
  }
  .navi__wrap {
    margin-top: 30px;
  }
  .navi__wrap .navigation .nav-links .page-numbers {
    font-size: 1.4rem;
    width: 30px;
    height: 30px;
  }
  .navi__wrap .navigation .nav-links .page-numbers + .page-numbers {
    margin-left: 10px;
  }
  .map__wrap {
    position: relative;
    min-height: 300px;
    padding-top: 0;
    width: 100%;
  }
  .map__wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
  }
}

@media (max-width: 375px) {
  .fv__catch {
    font-size: 4.6rem;
  }
  .fv__catch__sub {
    font-size: 1.2rem;
  }
}

@media (max-width: 1110px) {
  .works__links__wrap {
    gap: 0 20px;
  }
}

@media (max-width: 768px) {
  .fv__wrap {
    padding-right: 30px;
  }
  .fv::after {
    top: 60px;
  }
  .works__links__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .works__links__wrap .link {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
  .works__links__wrap .link a {
    width: 100%;
  }
  .works__links__wrap .link a .ttl__wrap {
    padding-left: 10px;
  }
  .works__links__wrap .link a .ttl__wrap .ttl {
    font-size: 2.4rem;
  }
  .works__links__wrap .link:not(:first-of-type) {
    margin-top: 60px;
  }
  .article-works .article__inner .view__wrap .view {
    padding-top: 60%;
  }
  .article-works .article__inner .view__wrap .all-box {
    display: -ms-grid;
    display: grid;
    margin-top: 10px;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    gap: 10px 10px;
  }
}

@media (max-width: 500px) {
  .fv {
    height: 330px;
  }
  .fv__wrap {
    top: 30%;
    left: 0;
    padding-left: 20px;
    padding-right: 0px;
  }
  .works__links__wrap .link a .ttl__wrap .ttl {
    font-size: 1.8rem;
  }
  .works__links__wrap .link:not(:first-of-type) {
    margin-top: 40px;
  }
  .article-works .article__inner .view__wrap .all-box {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 767px) {
  .lightbox-link {
    pointer-events: none;
  }
}
/*# sourceMappingURL=works.css.map */