:root {
  --color-default: #333;
  --color-inverted: white;
  --color-black: black;
  --color-link: inherit;
  --color-gray: #ccc;
  --bg-default: white;
  --bg-inverted: #333;
  --bg-light: url(/images/common/bg_light.jpg);
  --bg-dark: url(/images/common/bg_dark.jpg);
  --basic-margin: 40px;
  --wide-margin: 70px;
  --mobile-basic-margin: 27px;
  --section-padding: 96px;
  --mobile-section-padding: 40px;
  --mobile-content-padding: 15px;
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
}

/*
====================================================================
 COMMON
====================================================================
*/
.section-block h2 span {
  text-align: center;
}
.section-block h2 span.en::after {
  left: calc(50% + 6px);
}
.section-block__header p {
  text-align: center;
  font-weight: 600;
  margin-top: var(--basic-margin);
  opacity: 0;
  transform: translateY(15%);
  transition: opacity 2s var(--ease-out-cubic), transform 2s var(--ease-out-quint);
  transition-delay: 1.5s;
}
.section-block__header.in-viewport p {
  opacity: 1;
  transform: translateY(0);
}
.section-block__content {
  width: 1000px;
  margin-top: 60px;
}

/*
====================================================================
 SECTION 01
====================================================================
*/
.section-block--01 {
  background-image: var(--bg-light);
  background-position: center top;
  background-repeat: repeat;
}

.feature__item {
  display: grid;
  grid-template-columns: 1fr 159px;
  grid-template-rows: repeat(3, auto);
  -moz-column-gap: 130px;
       column-gap: 130px;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateY(15%);
  transition: opacity 2s var(--ease-out-cubic), transform 2s var(--ease-out-quint);
}
.feature__item:nth-child(1) {
  transition-delay: 0.2;
}
.feature__item:nth-child(2) {
  transition-delay: 0.4;
}
.feature__item:nth-child(3) {
  transition-delay: 0.6;
}
.feature__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.feature__item h3 {
  font-size: 24px;
  margin-bottom: 30px;
}
.feature__index {
  grid-column: 1/3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-bottom: 40px;
}
.feature__index::after {
  content: "";
  display: block;
  position: static;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: top right;
  background-color: var(--bg-inverted);
  transition: transform 1s ease-out;
}
.feature__item:nth-child(1) .feature__index::after {
  transition-delay: 0.4s;
}
.feature__item:nth-child(2) .feature__index::after {
  transition-delay: 0.6s;
}
.feature__item:nth-child(3) .feature__index::after {
  transition-delay: 0.8s;
}
.is-visible .feature__index::after {
  transform: scaleX(1);
}
.feature__index span {
  display: block;
  font-weight: 600;
  white-space: nowrap;
}
.feature__icon {
  grid-column: 2/3;
  grid-row: 2/4;
}

/*
====================================================================
 SECTION 02
====================================================================
*/
.section-block--02 {
  position: relative;
}
.section-block--02::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 615px;
  background: url(/images/common/bg_dark.jpg);
  top: 0;
  left: 0;
}
.section-block--02 h2 .en::after {
  background-color: var(--bg-default);
}
.section-block--02 .section-block__header {
  color: var(--color-inverted);
}
.section-block--02 .section-block__body {
  background-color: var(--bg-default);
  width: 100%;
  position: relative;
  z-index: 1;
}
.section-block--02 .section-block__content {
  width: 1000px;
  margin: 0 auto;
}

.service__item {
  padding: 50px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto 1fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 30px;
  counter-increment: number;
}
.service__item dl {
  border: 1px dashed var(--color-default);
  padding: 18px;
  position: relative;
  text-align: center;
  margin-top: 1em;
}
.service__item dl::before, .service__item dl::after {
  content: "";
  display: block;
  position: absolute;
  width: calc(100% + 8px);
  height: 8px;
  background: url(/images/common/icon_circle.svg) left top no-repeat, url(/images/common/icon_circle.svg) right top no-repeat;
  left: -4px;
}
.service__item dl::before {
  top: -4px;
}
.service__item dl::after {
  bottom: -4px;
}
.service__item dt {
  background-color: var(--bg-inverted);
  color: var(--color-inverted);
  font-weight: 400;
  font-size: 16px;
  border-radius: 4px;
}
.service__item dd {
  font-size: 14px;
  margin-top: 1em;
}
.service__index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.service__index::after {
  content: "";
  display: block;
  position: static;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: top right;
  background-color: var(--bg-inverted);
  transition: transform 1s ease-out;
}
.is-visible .service__index::after {
  transform: scaleX(1);
}
.service__index span {
  display: block;
  font-weight: 600;
  white-space: nowrap;
}
.service__index span::after {
  content: " 0" counter(number);
}
.service__media {
  grid-row: 1/4;
  overflow: hidden;
}
.service__media img {
  transform: scale(1.1);
  transition: transform 1.2s;
}
.is-visible .service__media img {
  transform: scale(1);
}
.service__item:nth-child(odd) .service__media {
  grid-column: 2/3;
}
.service__item:nth-child(even) .service__media {
  grid-column: 1/2;
}
.service h3 {
  font-size: 24px;
}
.service .note {
  border: 1px solid var(--color-default);
  margin-top: 50px;
  padding: 1em;
  border-radius: 10px;
}
.service .note h4 {
  font-weight: 600;
  text-indent: -0.5em;
}
.service .note p {
  font-size: 16px;
}
.service .note p span {
  font-size: 14px;
}

/*----------------------------------------------------------------*/
@media (width < 768px) {
  /*----------------------------------------------------------------*/
  /*
  ====================================================================
   SP / COMMON
  ====================================================================
  */
  .section-block__content {
    width: 100%;
    margin-top: unset;
  }
  /*
  ====================================================================
   SP / SECTION 01
  ====================================================================
  */
  .feature__item {
    display: block;
  }
  .feature__item h3 {
    margin: 20px 0;
    text-align: center;
  }
  .feature__index {
    margin-bottom: 0;
  }
  .feature__icon {
    width: 43.5%;
    margin: 25px auto;
  }
  /*
  ====================================================================
   SP / SECTION 02
  ====================================================================
  */
  .section-block--02::before {
    height: 0;
    padding-bottom: 109%;
  }
  .section-block--02 .section-block__content {
    width: 100%;
  }
  .service__list {
    padding: 0 var(--mobile-content-padding);
  }
  .service__item {
    padding: 20px 0;
    display: block;
  }
  .service__item dl {
    padding: 10px;
    letter-spacing: 0;
  }
  .service__item dt {
    padding: 5px 0;
    border-radius: 2px;
  }
  .service__item dd {
    text-align: left;
    margin-top: 10px;
  }
  .service__index {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .service h3 {
    margin: 20px 0 14px 0;
  }
  .service__media {
    margin-bottom: 18px;
  }
  .service .note {
    margin-top: 25px;
    padding: 10px;
    border-radius: 5px;
  }
  .service .note h4 {
    font-weight: 600;
    text-indent: -0.5em;
  }
  .service .note p {
    font-size: 16px;
  }
  .service .note p span {
    font-size: 14px;
  }
  /*----------------------------------------------------------------*/
}
/*----------------------------------------------------------------*//*# sourceMappingURL=business.css.map */