.hero {
  background: url(../../img/hero_bg0.jpg) no-repeat center center;
  background-size: cover;
  height: 92vh;
  height: calc(var(--vh, 1vh) * 92);
  position: relative;
}

@media screen and (max-width: 1199px) {
  .hero {
    background-position: left 25% center;
  }
}

.hero .hero-logo {
  display: block;
  width: 350px;
  height: auto;
  margin-top: -240px;
  margin-left: -185px;
  top: 50%;
  left: 50%;
  position: absolute;
}

@media screen and (max-width: 767px) {
  .hero .hero-logo {
    width: 240px;
    margin-top: -150px;
    margin-left: -130px;
  }
}

.hero .hero-scroll {
  display: block;
  position: absolute;
  left: 50%;
  top: 100%;
  text-decoration: none;
  width: 60px;
  height: 60px;
  margin-top: -72px;
  margin-left: -30px;
  text-align: center;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .hero .hero-scroll {
    margin-top: -43px;
  }
}

.hero .hero-scroll::after {
  width: 2px;
  height: 0;
  content: "";
  display: block;
  background: linear-gradient(180deg, #fff 32px, #8BC0D0 32px);
  margin: 0 auto;
  border-top: 0 solid #fff;
}

.hero .hero-bg .item {
  display: block;
  position: absolute;
  height: auto;
  pointer-events: none;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  user-select: none;
}

.hero .hero-bg .item:nth-child(1) {
  width: 200px;
  left: 50%;
  top: 50%;
  margin-left: -400px;
  margin-top: -160px;
}

.hero .hero-bg .item:nth-child(2) {
  width: 240px;
  left: 50%;
  top: 50%;
  margin-left: 160px;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .hero .hero-bg .item:nth-child(1) {
    width: 160px;
    left: -80px;
    top: 6%;
    margin-left: 10vw;
    margin-top: 0;
    opacity: 0.7;
  }
  .hero .hero-bg .item:nth-child(2) {
    width: 160px;
    left: auto;
    right: -10px;
    top: auto;
    bottom: 12%;
    margin-left: 0;
    margin-top: 0;
  }
}

.important-info {
  border: #ffb0a0 2px solid;
  color: #df5557;
  background: #ffebe1;
  z-index: 3;
  position: relative;
  padding: 24px 32px;
  border-radius: 10px;
  font-weight: 600px;
  text-align: center;
  margin-top: -120px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .important-info {
    padding: 24px;
  }
}

.important-info .title {
  display: inline-block;
  margin: 0 auto 20px;
  background: url(../../img/icon_info.svg) left center no-repeat;
  background-size: 24px auto;
  padding-left: 30px;
  line-height: 1.5;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .important-info .title {
    font-size: 16px;
    line-height: 1.75;
    background-size: 20px auto;
  }
}

.important-info .content {
  text-align: left;
  font-size: 14px;
}

.important-info .content p {
  margin: 8px 0;
}

body.ready .hero-scroll {
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.ready .hero-scroll::after {
  animation: stretch-border 2.5s ease-in 1s infinite;
  will-change: height;
  backface-visibility: hidden;
}

body.ready .hero-scroll.pause::after {
  animation: none;
  height: 64px;
}

@keyframes stretch-border {
  0% {
    height: 0;
  }
  10% {
    height: 0;
  }
  20% {
    height: 64px;
  }
  100% {
    height: 64px;
  }
}

.section-main {
  position: relative;
  padding-bottom: 64px;
}

@media screen and (max-width: 767px) {
  .section-main {
    padding-bottom: 40px;
  }
}

.section-main-intro {
  background: #FFFBF1;
}

@media screen and (max-width: 767px) {
  .section-main-intro {
    padding-top: 40px;
  }
}

.section-main-intro::before {
  position: absolute;
  top: -50px;
  background: url(../../img/intro_bg0.svg) no-repeat center top;
  width: 100%;
  height: 100px;
  content: "";
  display: block;
  background-size: 100% auto;
}

@media screen and (max-width: 767px) {
  .section-main-intro::before {
    background-size: 100% 100%;
  }
}

.section-main-intro .content {
  position: relative;
  z-index: 1;
}

.section-main-intro .section-bg {
  pointer-events: none;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  user-select: none;
}

.section-main-intro .section-bg .item {
  display: block;
  position: absolute;
  top: 0;
  height: auto;
}

.section-main-intro .section-bg .item.bg1 {
  width: 180px;
  left: -90px;
  margin-left: 5vw;
  margin-top: 350px;
}

.section-main-intro .section-bg .item.bg2 {
  width: 100px;
  left: 5vw;
  margin-left: 5vw;
  margin-top: 200px;
}

.section-main-intro .section-bg .item.bg3 {
  width: 120px;
  left: 30px;
  margin-left: 12vw;
  margin-top: 500px;
}

.section-main-intro .section-bg .item.bg4 {
  width: 80px;
  left: 10px;
  margin-left: 5vw;
  margin-top: 640px;
}

.section-main-intro .section-bg .item.bg5 {
  width: 180px;
  right: 15vw;
  margin-right: -80px;
  margin-top: 200px;
}

.section-main-intro .section-bg .item.bg6 {
  width: 120px;
  right: 20vw;
  margin-right: -50px;
  margin-top: 550px;
}

.section-main-intro .section-bg .item.bg7 {
  width: 150px;
  right: 5vw;
  margin-right: -100px;
  margin-top: 380px;
}

.section-main-intro .section-bg .item.bg8 {
  width: 100px;
  right: 7vw;
  margin-right: 0;
  margin-top: 700px;
}

@media screen and (max-width: 767px) {
  .section-main-intro .section-bg .item.bg1 {
    width: 120px;
    left: -65px;
    margin-left: 0;
    margin-top: 370px;
  }
  .section-main-intro .section-bg .item.bg2 {
    width: 50px;
    left: -5px;
    margin-left: 0;
    margin-top: 220px;
  }
  .section-main-intro .section-bg .item.bg3 {
    width: 75px;
    left: -30px;
    margin-left: 0;
    margin-top: 560px;
  }
  .section-main-intro .section-bg .item.bg4 {
    width: 40px;
    left: 5px;
    margin-left: 0;
    margin-top: 720px;
  }
  .section-main-intro .section-bg .item.bg5 {
    width: 110px;
    right: -55px;
    margin-right: 0;
    margin-top: 140px;
  }
  .section-main-intro .section-bg .item.bg6 {
    width: 60px;
    right: -20px;
    margin-right: 0;
    margin-top: 320px;
  }
  .section-main-intro .section-bg .item.bg7 {
    width: 85px;
    right: -45px;
    margin-right: 0;
    margin-top: 470px;
  }
  .section-main-intro .section-bg .item.bg8 {
    width: 40px;
    right: 5px;
    margin-right: 0;
    margin-top: 650px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section-main-intro .section-bg .item.bg1 {
    width: 150px;
    left: -100px;
    margin-left: 5vw;
    margin-top: 350px;
  }
  .section-main-intro .section-bg .item.bg2 {
    width: 90px;
    left: 0;
    margin-left: 5vw;
    margin-top: 230px;
  }
  .section-main-intro .section-bg .item.bg3 {
    width: 80px;
    left: 30px;
    margin-left: 5vw;
    margin-top: 500px;
  }
  .section-main-intro .section-bg .item.bg4 {
    width: 60px;
    left: 10px;
    margin-left: 5vw;
    margin-top: 640px;
  }
  .section-main-intro .section-bg .item.bg5 {
    width: 150px;
    right: 5vw;
    margin-right: -60px;
    margin-top: 200px;
  }
  .section-main-intro .section-bg .item.bg6 {
    width: 90px;
    right: 10vw;
    margin-right: -30px;
    margin-top: 570px;
  }
  .section-main-intro .section-bg .item.bg7 {
    width: 120px;
    right: 5vw;
    margin-right: -80px;
    margin-top: 400px;
  }
  .section-main-intro .section-bg .item.bg8 {
    width: 60px;
    right: 7vw;
    margin-right: 0;
    margin-top: 700px;
  }
}

.section-main-service {
  background: #fff;
  padding-bottom: 0;
}

.section-main-service::before {
  position: absolute;
  top: -50px;
  background: url(../../img/service_bg0.svg) no-repeat center top;
  width: 100%;
  height: 100px;
  content: "";
  display: block;
  background-size: 100% auto;
}

@media screen and (max-width: 767px) {
  .section-main-service::before {
    background-size: 100% 100%;
  }
}

.section-main-info {
  background: #F2F7FA;
}

.section-main-info::before {
  position: absolute;
  top: -50px;
  background: url(../../img/info_bg0.svg) no-repeat center top;
  width: 100%;
  height: 100px;
  content: "";
  display: block;
  background-size: 100% auto;
}

@media screen and (max-width: 767px) {
  .section-main-info::before {
    background-size: 100% 100%;
  }
}

.section-main-info .section-bg {
  pointer-events: none;
  touch-action: manipulation;
  -webkit-touch-callout: none;
  user-select: none;
  opacity: 0.7;
}

.section-main-info .section-bg .item {
  display: block;
  position: absolute;
  top: 0;
  height: auto;
}

.section-main-info .section-bg .item.bg1 {
  width: 256px;
  right: -20px;
  margin-left: -5vw;
  margin-top: -80px;
}

.section-main-info .section-bg .item.bg2 {
  width: 320px;
  left: -250px;
  margin-left: 10vw;
  margin-top: 200px;
}

.section-main-info .section-bg .item.bg3 {
  width: 215px;
  right: 0;
  margin-left: -5vw;
  top: 50%;
  margin-top: 0;
}

.section-main-info .section-bg .item.bg4 {
  width: 260px;
  left: 60px;
  top: auto;
  bottom: 5px;
  margin-left: 5vw;
}

@media screen and (max-width: 767px) {
  .section-main-info .section-bg .item.bg1 {
    width: 120px;
    right: -20px;
    margin-left: 0;
    margin-top: -40px;
  }
  .section-main-info .section-bg .item.bg2 {
    width: 140px;
    left: -60px;
    margin-left: 0;
    margin-top: 280px;
  }
  .section-main-info .section-bg .item.bg3 {
    width: 100px;
    right: -20px;
    margin-left: 0;
    top: 520px;
    margin-top: 0;
  }
  .section-main-info .section-bg .item.bg4 {
    width: 130px;
    left: -40px;
    bottom: 80px;
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section-main-info .section-bg .item.bg1 {
    width: 200px;
    right: -20px;
    margin-left: -5vw;
    margin-top: -80px;
  }
  .section-main-info .section-bg .item.bg2 {
    width: 200px;
    left: -160px;
    margin-left: 10vw;
    margin-top: 280px;
  }
  .section-main-info .section-bg .item.bg3 {
    width: 145px;
    right: 0;
    margin-left: -5vw;
    top: 35%;
    margin-top: 0;
  }
  .section-main-info .section-bg .item.bg4 {
    width: 160px;
    left: 40px;
    top: auto;
    bottom: 5px;
    margin-left: 5vw;
  }
}

@media screen and (max-width: 767px) {
  .section-main-overview,
  .section-main-contact {
    padding-top: 32px;
  }
}

.overview-table {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .overview-table {
    font-size: 13px;
    line-height: 1.6;
  }
}

.overview-table th, .overview-table td {
  padding-top: 12px;
  padding-bottom: 12px;
  vertical-align: top;
}

.overview-table th {
  width: 20%;
  padding-right: 16px;
}

@media screen and (max-width: 767px) {
  .overview-table th {
    width: 8em;
  }
}

.service-subsection.support {
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 80px;
  background-color: #fffbf1;
}

.service-subsection.support .service-subsection-title span {
  background-color: #fffbf1;
}

.service-subsection .service-subsection-title {
  border-bottom: 2px solid rgba(86, 79, 68, 0.1);
}

.service-subsection .service-subsection-title span {
  display: inline-block;
  background-color: #fff;
  position: relative;
  line-height: 1;
  bottom: -0.6em;
  padding: 0 16px;
}

.service-subsection-title {
  text-align: center;
  font-size: 20px;
  margin: 20px 0;
  font-family: fot-tsukuardgothic-std, sans-serif;
}
