.hero {
  position: relative;
  z-index: 1;
  padding: 0 80px;
}

@media screen and (max-width: 1280px) {
  .hero {
    padding: 0 48px;
  }
}

@media screen and (max-width: 960px) {
  .hero {
    padding: 0;
  }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 160px;
  background: #f8f8f8;
}

.hero__wrap {
  position: relative;
}

.hero .hero-vsl {
  width: 100%;
  aspect-ratio: 2.5 / 1;
}

@media screen and (max-width: 1280px) {
  .hero .hero-vsl {
    aspect-ratio: 2 / 1;
  }
}

@media screen and (max-width: 640px) {
  .hero .hero-vsl {
    aspect-ratio: 1 / 1.2;
  }
}

.hero .hero-vsl img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .hero-catch {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.2em;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

@media screen and (max-width: 1280px) {
  .hero .hero-catch {
    font-size: 3.2rem;
    letter-spacing: 0.1em;
  }
}

.hero .hero-catch::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fff;
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-animation: lineeffect 1.5s ease-out 1 2s forwards;
  animation: lineeffect 1.5s ease-out 1 2s forwards;
}

@media screen and (max-width: 960px) {
  .hero .hero-catch::after {
    display: none;
  }
}

.hero .scroll-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 52px;
  bottom: 0;
  font-family: "Oswald", sans-serif;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

@media screen and (max-width: 1280px) {
  .hero .scroll-txt {
    right: 36px;
  }
}

@media screen and (max-width: 960px) {
  .hero .scroll-txt {
    display: none;
  }
}

.hero .scroll-txt::after {
  content: '';
  width: 32px;
  height: 1px;
  margin-left: 8px;
  background: #080808;
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-animation: scroll-line 6s ease-out infinite;
  animation: scroll-line 6s ease-out infinite;
}

@-webkit-keyframes lineeffect {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes lineeffect {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes scroll-line {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  75% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  76% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes scroll-line {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  75% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  76% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.info {
  padding-top: calc(8px * 6);
  padding-bottom: calc(8px * 10);
  background: #f8f8f8;
}

@media screen and (max-width: 960px) {
  .info {
    padding-top: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  .info {
    padding-top: calc((8px * 6) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .info {
    padding-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  .info {
    padding-bottom: calc((8px * 10) * 0.5);
  }
}

.info .info-list {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  border-top: solid 1px #080808;
}

.info .info-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 16px 0;
  border-bottom: solid 1px #080808;
}

.info .info-list .info-date {
  width: 120px;
  padding-left: 8px;
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 640px) {
  .info .info-list .info-date {
    width: 100%;
    margin-bottom: 4px;
    font-size: 1.3rem;
    font-weight: 600;
  }
}

.info .info-list .info-link {
  position: relative;
  width: calc(100% - 120px);
  padding-right: 32px;
  font-size: 1.3rem;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 640px) {
  .info .info-list .info-link {
    position: initial;
    width: 100%;
    padding-left: 8px;
  }
}

.info .info-list .info-link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #080808;
  -webkit-transform: translateY(-50%) rotateZ(45deg);
  transform: translateY(-50%) rotateZ(45deg);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.info .info-list .info-link:hover {
  text-decoration: underline;
}

.info .info-list .info-link:hover::after {
  -webkit-transform: translate(4px, -50%) rotateZ(45deg);
  transform: translate(4px, -50%) rotateZ(45deg);
}

.service {
  overflow: hidden;
}

.service .service-unit {
  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;
  gap: 40px;
}

@media screen and (max-width: 1280px) {
  .service .service-unit {
    gap: 32px;
  }
}

@media screen and (max-width: 960px) {
  .service .service-unit {
    position: relative;
    gap: 24px;
    padding-top: 104px;
  }
}

@media screen and (max-width: 640px) {
  .service .service-unit {
    gap: 16px;
  }
}

.service .service-vsl {
  position: relative;
  width: 440px;
}

@media screen and (max-width: 1280px) {
  .service .service-vsl {
    width: 320px;
  }
}

@media screen and (max-width: 960px) {
  .service .service-vsl {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }
}

.service .service-vsl::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  width: 424px;
  height: 424px;
  border: solid 1px #f8f8f8;
}

@media screen and (max-width: 1280px) {
  .service .service-vsl::after {
    width: 304px;
    height: 304px;
  }
}

@media screen and (max-width: 960px) {
  .service .service-vsl::after {
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
}

.service .service-dtl {
  width: calc(100% - 480px);
}

@media screen and (max-width: 1280px) {
  .service .service-dtl {
    width: calc(100% - 352px);
  }
}

@media screen and (max-width: 960px) {
  .service .service-dtl {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
}

.service .service-dtl .service-ttl {
  position: relative;
  margin-bottom: 24px;
  padding: 40px 0 14px;
  font-size: 2.4rem;
}

@media screen and (max-width: 960px) {
  .service .service-dtl .service-ttl {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    font-size: 2rem;
  }
}

.service .service-dtl .service-ttl::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: #080808;
  border-radius: 1px;
}

.service .service-dtl .service-ttl__typo {
  position: absolute;
  top: -8px;
  left: 0;
  z-index: -1;
  color: #f8f8f8;
  font-size: 7.2rem;
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
  white-space: nowrap;
}

@media screen and (max-width: 960px) {
  .service .service-dtl .service-ttl__typo {
    font-size: 6.4rem;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 640px) {
  .service .service-dtl .service-ttl__typo {
    font-size: 5.6rem;
  }
}

.service .service-dtl .btn {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media screen and (max-width: 960px) {
  .service .service-dtl .btn {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.company .company-unit {
  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;
  gap: 40px;
}

@media screen and (max-width: 1280px) {
  .company .company-unit {
    gap: 32px;
  }
}

@media screen and (max-width: 960px) {
  .company .company-unit {
    gap: 24px;
  }
}

.company .company-unit .company-dtl {
  width: calc(100% - 520px);
}

@media screen and (max-width: 1280px) {
  .company .company-unit .company-dtl {
    width: calc(100% - 432px);
  }
}

@media screen and (max-width: 960px) {
  .company .company-unit .company-dtl {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .company .company-unit .company-dtl .company-data {
    border-top: solid 1px #080808;
  }
}

.company .company-unit .company-dtl .company-data__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 8px;
}

@media screen and (max-width: 640px) {
  .company .company-unit .company-dtl .company-data__item {
    padding: 12px 8px;
  }
}

.company .company-unit .company-dtl .company-data__item:not(:nth-last-of-type(1)) {
  border-bottom: solid 1px #080808;
}

.company .company-unit .company-dtl .company-data__item dt {
  width: 140px;
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  .company .company-unit .company-dtl .company-data__item dt {
    width: 100%;
    margin-bottom: 4px;
  }
}

.company .company-unit .company-dtl .company-data__item dd {
  width: calc(100% - 140px);
  font-size: 1.3rem;
}

@media screen and (max-width: 640px) {
  .company .company-unit .company-dtl .company-data__item dd {
    width: 100%;
  }
}

.company .company-unit .company-map {
  width: 480px;
}

@media screen and (max-width: 1280px) {
  .company .company-unit .company-map {
    width: 400px;
  }
}

@media screen and (max-width: 960px) {
  .company .company-unit .company-map {
    width: 100%;
    height: 320px;
  }
}

@media screen and (max-width: 640px) {
  .company .company-unit .company-map {
    height: 240px;
  }
}

.company .company-unit .company-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

.contact {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 80px;
  padding-left: 80px;
  padding-top: calc(8px * 10);
  background: url("/wp-content/themes/bones/dist/img/top/contact-bg.jpg") center/cover no-repeat;
}

@media screen and (max-width: 1280px) {
  .contact {
    padding-right: 48px;
    padding-left: 48px;
  }
}

@media screen and (max-width: 960px) {
  .contact {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 640px) {
  .contact {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 960px) {
  .contact {
    padding-top: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  .contact {
    padding-top: calc((8px * 10) * 0.5);
  }
}

@media screen and (max-width: 640px) {
  .contact {
    background: #080808;
  }
}

.contact__wrap {
  max-width: 1100px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 80px;
  padding-left: 80px;
  padding-top: calc(8px * 6);
  padding-bottom: calc(8px * 9);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px 3px 0 0;
}

@media screen and (max-width: 1280px) {
  .contact__wrap {
    padding-right: 48px;
    padding-left: 48px;
  }
}

@media screen and (max-width: 960px) {
  .contact__wrap {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 640px) {
  .contact__wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media screen and (max-width: 960px) {
  .contact__wrap {
    padding-top: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  .contact__wrap {
    padding-top: calc((8px * 6) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .contact__wrap {
    padding-bottom: calc((8px * 9) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  .contact__wrap {
    padding-bottom: calc((8px * 9) * 0.5);
  }
}

@media screen and (max-width: 640px) {
  .contact__wrap {
    background: #fff;
  }
}

.contact .contact-txt {
  max-width: 640px;
  margin: 0 auto;
  margin-bottom: calc(8px * 4);
  letter-spacing: 0;
}

@media screen and (max-width: 960px) {
  .contact .contact-txt {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  .contact .contact-txt {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 640px) {
  .contact .contact-txt {
    font-size: 1.3rem;
  }
}

/*# sourceMappingURL=../../maps/pages/top.css.map */
