<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
.heroVisual {
  position: relative;
  width: 100%;
}
.heroVisual__heading{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #fff;
  text-align: center;
  font-size: clamp(69px,8vw ,138px);
  letter-spacing: .1em;
  text-indent: .1em;
}
.heroVisual__heading span{
  display: inline-block;
}
.general-box{
  margin-top: 40px;
  padding: 24px;
  position: relative;
  background: #fff;
}
.general-box + .general-box{
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .general-box{
    margin-top: 80px;
    padding: 40px;
  }
  .general-box + .general-box{
    margin-top: 40px;
  }
  .pc-order-2{
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .general-box .has-gap{
    gap: 8px;
  }
}
.logo-item{
  margin-bottom: 24px;
}
.number-list{
  font-size: 10px;
  line-height: 1.5;
}
.number-list li{
  margin-top: 16px;
  padding-left: 20px;
  position: relative;
  counter-increment: num;
}
.number-list li:before{
  width: 16px;
  height: 16px;
  display: grid;
  position: absolute;
  left: 0;
  top: 3px;
  place-items: center;
  background: #000;
  color: #fff;
  content: counter(num);
  font-size: 14px;
  line-height: 1;

}
@media screen and (min-width: 768px) {
  .number-list{
    position: absolute;
    bottom: 40px;
    font-size: 14px;
  }
  .number-list.pc-pos-right{
    width: calc(40% - 64px);
    right: 40px;
  }
  .content-item{
    padding-bottom: 200px;
  }
}
</pre></body></html>