@charset "UTF-8";
.kv {
  position: relative;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .kv {
    text-align: left;
  }
}
.kv__catch {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 80px;
  left: 6.25vw;
}
@media screen and (max-width: 767px) {
  .kv__catch {
    top: 24px;
    left: 6.4vw;
    transform: scale(0.5);
    transform-origin: top left;
  }
}
.kv__catch-01 {
  width: 546px;
  height: 46px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}
.kv__catch-01 > img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.kv__catch-01.is-show {
  opacity: 1;
  transform: translateX(0);
}
.kv__catch-02 {
  width: 465px;
  height: 46px;
  margin-top: 32px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}
.kv__catch-02 > img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.kv__catch-02.is-show {
  opacity: 1;
  transform: translateX(0);
}
.kv__catch-03 {
  width: 546px;
  height: 8px;
  margin-top: 48px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}
.kv__catch-03 > img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.kv__catch-03.is-show {
  opacity: 1;
  transform: translateX(0);
}
.kv__right {
  width: calc(100% - 12.5vw);
  margin-left: auto;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .kv__right {
    width: calc(100% - 12.8vw);
  }
}
.kv__image-box {
  position: relative;
}
.kv__image {
  border-radius: 0 0 0 160px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}
@media screen and (max-width: 767px) {
  .kv__image {
    border-radius: 0 0 0 32px;
  }
}
.kv__image > img {
  width: 100%;
  height: calc(100vh - 240px);
  min-height: 500px;
  max-height: 860px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .kv__image > img {
    height: 420px;
    min-height: inherit;
    max-height: inherit;
  }
}
.kv__image.is-show {
  opacity: 1;
  transform: translateX(0);
}
.kv__text {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  margin-top: 16px;
  padding-right: 50px;
  font-size: 32px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
@media screen and (max-width: 767px) {
  .kv__text {
    padding-right: 6.4vw;
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.4;
  }
}
.kv__text.is-show {
  opacity: 1;
  transform: translateY(0);
}

.scroll {
  width: 11px;
  position: absolute;
  bottom: 0;
  left: -6.52vw;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
@media screen and (max-width: 767px) {
  .scroll {
    bottom: -14px;
    left: -9.2vw;
  }
}
.scroll__text {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  padding-bottom: 132px;
  display: inline-block;
  color: #2d2d2d;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  word-break: normal;
}
@media screen and (max-width: 767px) {
  .scroll__text {
    padding-bottom: 112px;
    transform: scale(0.727);
  }
}
.scroll__bar {
  margin-left: -1px;
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .scroll__bar {
    margin-left: 5px;
    bottom: 14px;
  }
}
.scroll__bar:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2d2d2d;
  display: block;
  position: absolute;
  bottom: 0;
  left: -4px;
}
@media screen and (max-width: 767px) {
  .scroll__bar:before {
    width: 4px;
    height: 4px;
    left: -2px;
  }
}
.scroll__bar:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 120px;
  background: #2d2d2d;
  -webkit-animation: liner01 2.5s cubic-bezier(1, 0, 0, 1) infinite;
  animation: liner01 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@media screen and (max-width: 767px) {
  .scroll__bar:after {
    height: 80px;
  }
}
.scroll.is-show {
  opacity: 1;
  transform: translateY(0);
}
@-webkit-keyframes liner01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@keyframes liner01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.service {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .service {
    margin-top: 40px;
  }
}
.service__list {
  padding-left: 6.25vw;
  counter-reset: number 0;
}
@media screen and (max-width: 767px) {
  .service__list {
    padding-left: 6.4vw;
  }
}
.service__item {
  display: flex;
  gap: 0 80px;
  counter-increment: number 1;
}
@media screen and (max-width: 767px) {
  .service__item {
    flex-direction: column;
  }
}
.service__item + .service__item {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .service__item + .service__item {
    margin-top: 56px;
  }
}
.service__detail {
  width: 34.583vw;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .service__detail {
    width: 100%;
    padding-bottom: 24px;
  }
}
.service__heading {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  padding-left: 40px;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__heading {
    padding-top: 30px;
    padding-left: 0;
    font-size: 28px;
  }
}
.service__heading > span {
  margin-top: 16px;
  display: inline-block;
}
.service__heading:before {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  content: counter(number, decimal-leading-zero);
  color: #828691;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: initial;
  position: absolute;
  top: 0;
  left: 0;
}
.service__text {
  padding-left: 40px;
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .service__text {
    padding-left: 0;
    margin-top: 24px;
  }
}
.service__features {
  padding: 40px;
  margin-top: 40px;
  background: #f5f5f5;
  border-radius: 0 0 24px 0;
}
@media screen and (max-width: 767px) {
  .service__features {
    padding: 24px;
    margin-top: 24px;
    border-radius: 0;
  }
}
.service__features-item {
  padding-left: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  position: relative;
}
.service__features-item + .service__features-item {
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .service__features-item + .service__features-item {
    margin-top: 12px;
  }
}
.service__features-item:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2d2d2d;
  display: block;
  position: absolute;
  top: 8px;
  left: 0px;
}
.service__image {
  width: 30vw;
  height: 30vw;
}
@media screen and (max-width: 767px) {
  .service__image {
    width: 100%;
    height: auto;
    margin-top: 24px;
  }
}
.service__image > img {
  width: 100%;
}

.product {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .product {
    margin-top: 40px;
  }
}
.product__list {
  padding-left: 6.25vw;
  display: flex;
  gap: 80px 80px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .product__list {
    padding-left: 6.4vw;
    flex-direction: column;
    gap: 56px 0;
  }
}
.product__item {
  width: calc(50% - 40px);
  padding-bottom: 80px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .product__item {
    width: 100%;
    padding-bottom: 24px;
  }
}
.product__image {
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .product__image {
    margin-bottom: 12px;
  }
}
.product__image > img {
  transition: all 0.3s;
}
.product__heading {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(90deg, #2d2d2d, #2d2d2d); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left 0% bottom 20%;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
.product__text {
  margin-top: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .product__text {
    margin-top: 8px;
  }
}

.product-deco {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}
.product-deco__image {
  width: 7700px;
  height: 158px;
  flex-shrink: 0;
  -webkit-animation: loop_animation_right_double 100s linear infinite;
  animation: loop_animation_right_double 100s linear infinite;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .product-deco__image {
    width: auto;
    height: 79px;
  }
}
.product-deco__image > img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .product-deco__image > img {
    width: auto;
    height: 100%;
  }
}

@-webkit-keyframes loop_animation_right_double {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes loop_animation_right_double {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.about {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about {
    margin-top: 24px;
  }
}
.about__text {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about__text {
    padding-left: 6.4vw;
    font-size: 22px;
  }
}
.about__deco {
  width: 968px;
  height: 96px;
  position: absolute;
  right: -120px;
  bottom: -124px;
}
@media screen and (max-width: 767px) {
  .about__deco {
    display: none;
  }
}
.about__deco > img {
  width: 100%;
}

.news {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .news {
    margin-top: 40px;
  }
}
.news__list {
  padding-left: 6.25vw;
}
@media screen and (max-width: 767px) {
  .news__list {
    padding-left: 6.4vw;
  }
}
.news__item {
  border-bottom: 1px solid #ccc;
}
.news__item:first-child {
  border-top: 1px solid #ccc;
}
.news__link {
  padding: 32px 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  .news__link {
    flex-direction: column;
    gap: 8px 0;
  }
}
.news__link:hover .news__title {
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .news__link:hover .news__title {
    background-size: 0;
  }
}
.news__date {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  width: 133px;
  color: #828691;
  line-height: 2.1;
  letter-spacing: 0.03em;
}
.news__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(90deg, #2d2d2d, #2d2d2d); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left 0% bottom 14%;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
@media screen and (max-width: 767px) {
  .news__title {
    font-size: 14px;
    text-decoration: underline;
  }
}

.note {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .note {
    margin-top: 40px;
  }
}
.note__list {
  padding-left: 6.25vw;
  display: flex;
  gap: 120px 80px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .note__list {
    padding-left: 6.4vw;
    gap: 56px 0;
    flex-direction: column;
  }
}
.note__item {
  width: calc(50% - 40px);
}
@media screen and (max-width: 767px) {
  .note__item {
    width: 100%;
  }
}
.note__link {
  display: block;
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .note__link {
    padding-bottom: 16px;
  }
}
.note__link:hover .note__heading {
  background-size: 100% 1px;
}
@media screen and (max-width: 767px) {
  .note__link:hover .note__heading {
    background-size: 0;
  }
}
.note__link:hover .note__image > img {
  transform: scale(1.09);
}
@media screen and (max-width: 767px) {
  .note__link:hover .note__image > img {
    transform: scale(1);
  }
}
.note__image {
  margin-bottom: 32px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .note__image {
    margin-bottom: 20px;
  }
}
.note__image > img {
  transition: all 0.3s;
}
.note__heading {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
  display: inline;
  text-decoration: none;
  background-image: linear-gradient(90deg, #2d2d2d, #2d2d2d); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left 0% bottom 13%;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
@media screen and (max-width: 767px) {
  .note__heading {
    font-size: 16px;
    text-decoration: underline;
  }
}
.note__text {
  margin-top: 24px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .note__text {
    margin-top: 16px;
  }
}
.note__foot {
  padding-top: 16px;
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.note__avatar {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 20px;
}
.note__profile {
  font-size: 12px;
  letter-spacing: 0.03em;
}
.note__date {
  margin-top: 8px;
  color: #828691;
}