/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:

	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:

#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #2C2B32;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  --header-height: 149px;
}
body.is_active {
  overflow: hidden;
}

main {
  display: block;
  margin-top: calc(var(--header-height) * -1);
}

span,
div,
p {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
a span {
  display: block;
  overflow: hidden;
  position: relative;
  top: 0;
}
a .linkBlock {
  overflow: hidden;
  position: relative;
}
a .linkBlock::before {
  content: attr(data-content);
  display: inline-block;
  left: 0;
  position: absolute;
  top: 1.8em;
  width: 100%;
}
a:hover span {
  top: -1.8em;
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}
a:hover .linkBlock::before {
  top: 0;
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}

img {
  display: block;
  height: 100%;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 80px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.spot-target {
  overflow: hidden;
  position: relative;
}

.color-gray02 {
  background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(13, 34, 101, 0) 100%) no-repeat, #393D44;
  -webkit-background-clip: text;
          background-clip: text;
  background-position: 0 0, center;
  background-size: 302px 302px, cover;
  color: transparent;
  cursor: default;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  transition: background-position 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  .color-gray02 {
    background-color: #EDEFF2;
    color: transparent;
  }
}

.js-animation {
  opacity: 0;
  transition: translate 0.8s, opacity 0.8s, visibility 0.8s;
  translate: 0 20px;
  visibility: hidden;
}
.js-animation.is-obserbed {
  opacity: 1;
  translate: 0 0;
  visibility: visible;
}
.js-animation.transition-01 {
  transition: translate 0.8s 0.3s, opacity 0.8s 0.3s, visibility 0.8s 0.3s;
}
.js-animation.transition-02 {
  transition: translate 0.8s 0.6s, opacity 0.8s 0.6s, visibility 0.8s 0.6s;
}

.footer {
  color: #fff;
  padding-top: 14px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 40px;
    padding-top: 0;
    text-align: center;
  }
}
.footer .container {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .container {
    -webkit-align-items: center;
            align-items: center;
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    -webkit-justify-content: unset;
            justify-content: unset;
  }
}
.footer__logoLink {
  display: block;
  margin-bottom: 4px;
  width: 157px;
}
@media screen and (max-width: 768px) {
  .footer__logoLink {
    margin: 0 auto 7px;
  }
}
.footer__copy {
  color: #758192;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
}
.footer__links {
  -webkit-align-items: center;
          align-items: center;
  display: -webkit-flex;
  display: flex;
  gap: 44px;
}
.footer__link {
  font-size: 1.2rem;
  line-height: 2;
}
.footer__link[target=_blank] {
  overflow: hidden;
  padding-right: 22px;
  position: relative;
}
.footer__link[target=_blank]::after, .footer__link[target=_blank]::before {
  background: url("data: image/svg+xml;utf8,%3Csvg%20width%3D%2219%22%20height%3D%2218%22%20viewBox%3D%220%200%2019%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.23%205.26875H9.51346V3.76875H14.7635V9.01875H13.2635V6.35625L9.57796%2010.0418L8.51746%208.98125L12.23%205.26875Z%22%20fill%3D%22%23EDEFF2%22%20%2F%3E%3Cpath%20d%3D%22M8.73645%205.23125H4.23645V14.2312H13.2365V9.73125H11.7365V12.7312H5.73645V6.73125H8.73645V5.23125Z%22%20fill%3D%22%23EDEFF2%22%20%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  content: "";
  display: block;
  height: 18px;
  position: absolute;
  right: 0;
  width: 18px;
}
.footer__link[target=_blank]::after {
  top: 2px;
}
.footer__link[target=_blank]::before {
  top: calc(2em + 2px);
}
.footer__link[target=_blank]:hover::after {
  top: calc(-2em + 2px);
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}
.footer__link[target=_blank]:hover::before {
  top: 2px;
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}
.footer__anchorLink {
  font-family: "Source Code Pro", sans-serif;
  line-height: 1.4;
  overflow: hidden;
  padding-right: 24px;
  position: relative;
}
.footer__anchorLink::after, .footer__anchorLink::before {
  background: url("/images/common/icon_to_top.svg") no-repeat center center/contain;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  right: 0;
  translate: 0 25%;
  width: 16px;
}
.footer__anchorLink::after {
  top: 0;
}
.footer__anchorLink::before {
  top: 1.5em;
}
.footer__anchorLink:hover::after {
  top: -1.5em;
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}
.footer__anchorLink:hover::before {
  top: 0;
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}
@media screen and (max-width: 768px) {
  .footer__anchorLink {
    display: none;
  }
}

.is-show .topFv__fig {
  opacity: 1;
  translate: -50% calc(-50% + 47px);
}
@media screen and (max-width: 768px) {
  .is-show .topFv__fig {
    translate: -50% calc(-50% + 69px);
  }
}
.is-show .topFv__bgTexts {
  opacity: 1;
}
.is-show .topFv__textContainer, .is-show .topFv__scrollContainer {
  opacity: 1;
}

.header {
  opacity: 0;
  padding: 40px 40px 20px;
  position: -webkit-sticky;
  position: sticky;
  transition: opacity 0.7s 1s;
  z-index: 100;
}
.header.is-show {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 32px 20px 12px;
  }
}
.header__logo {
  position: relative;
  width: 190px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 189px;
  }
}
.header__logoLink {
  display: block;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .header__logoLink {
    padding: 0;
  }
}
.header__navBlock {
  border: 1px solid #EDEFF2;
  border-radius: 50%;
  height: 80px;
  max-height: 550px;
  overflow: hidden;
  position: fixed;
  right: 60px;
  top: 60px;
  transition: width 0.3s, height 0.2s, background-color 0.6s, border-radius 0.3s;
  width: 80px;
}
.on-service .header__navBlock {
  border: 1px solid #2C2B32;
}
.header__navBlock.nav_open {
  background-color: #EDEFF2;
  border: 1px solid #EDEFF2;
  border-radius: 16px;
  box-shadow: 0px 0px 24px 0px rgba(64, 64, 64, 0.12);
  height: 534px;
  padding: 32px 32px 48px;
  transition: width 0.4s, height 0.4s;
  width: 284px;
}
@media screen and (max-width: 768px) {
  .header__navBlock {
    height: 48px;
    max-height: 100%;
    right: 20px;
    top: 20px;
    width: 48px;
  }
  .header__navBlock.nav_open {
    height: 572px;
    width: calc(100% - 40px);
  }
}
.header__nav {
  display: -webkit-flex;
  display: flex;
  opacity: 0;
  translate: 0 10px;
  visibility: hidden;
}
.header__nav.nav_open {
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  opacity: 1;
  transition: opacity 0.3s 0.4s, visibility 0.3s 0.4s, translate 0.3s 0.4s;
  translate: 0 0;
  visibility: visible;
}
.header__text {
  color: #393D44;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8;
}
.header__menuList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 8px 0;
  width: 100%;
}
.header__menuItem {
  position: relative;
  width: 100%;
}
.header__menuLink {
  color: #2C2B32;
  display: block;
  line-height: 2;
  position: relative;
}
.header__menuLink.is-active::after {
  background: linear-gradient(90deg, #133FD0 0%, #29CFA0 100%);
  content: "";
  height: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  width: 12px;
}
.header__menuLink--disactive {
  opacity: 0.4;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .header__menuLink {
    font-size: 2.2rem;
  }
}
.header__otherMenuList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.header__otherMenuItem {
  border-bottom: 1px solid #758192;
  width: 100%;
}
.header__otherMenuItem:first-child {
  border-top: 1px solid #758192;
}
.header__otherMenuLink {
  -webkit-align-items: center;
          align-items: center;
  color: #404040;
  display: block;
  display: -webkit-flex;
  display: flex;
  font-size: 1.4rem;
  font-weight: 600;
  gap: 8px;
  -webkit-justify-content: center;
          justify-content: center;
  line-height: 2;
  padding: 16px 0;
  position: relative;
}
.header__linkIcon {
  height: 18px;
  overflow: hidden;
  position: relative;
  width: 18px;
}
.header__linkIcon::after, .header__linkIcon::before {
  background: url("data: image/svg+xml;utf8,%3Csvg%20width%3D%2219%22%20height%3D%2218%22%20viewBox%3D%220%200%2019%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.23%205.26875H9.51346V3.76875H14.7635V9.01875H13.2635V6.35625L9.57796%2010.0418L8.51746%208.98125L12.23%205.26875Z%22%20fill%3D%22%23404040%22%20%2F%3E%3Cpath%20d%3D%22M8.73645%205.23125H4.23645V14.2312H13.2365V9.73125H11.7365V12.7312H5.73645V6.73125H8.73645V5.23125Z%22%20fill%3D%22%23404040%22%20%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  content: "";
  display: block;
  height: 18px;
  position: absolute;
  width: 18px;
}
.header__linkIcon::after {
  top: calc(2em - 1px);
}
.header__linkIcon::before {
  top: -1px;
}
.header__otherMenuLink:hover .header__linkIcon::after {
  top: -1px;
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}
.header__otherMenuLink:hover .header__linkIcon::before {
  top: calc(-2em - 1px);
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}
.header__closebtn {
  cursor: pointer;
  height: 15px;
  position: absolute;
  right: 0;
  top: 1px;
  transition: 0.3s;
  width: 15px;
  z-index: 1;
}
.header__closebtn::before, .header__closebtn::after {
  background-color: #404040;
  border-radius: 2px;
  content: "";
  height: 2px;
  position: absolute;
  top: 50%;
  width: 15px;
}
.header__closebtn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__closebtn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header__closebtn:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .header__closebtn {
    height: 29px;
    right: 0;
    top: -6px;
    width: 29px;
  }
  .header__closebtn::before, .header__closebtn::after {
    width: 33px;
  }
}
.header__hamburger {
  cursor: pointer;
  height: 82px;
  left: -1px;
  position: relative;
  top: -1px;
  transition: 0.3s;
  width: 82px;
}
.header__hamburger:hover .header__hamburgerLine:not(:first-child) {
  scale: 1.5 1;
}
.header__hamburger.nav_open {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    height: 48px;
    width: 48px;
  }
}
.header__hamburgerLine {
  background-color: #EDEFF2;
  height: 1px;
  left: 50%;
  max-width: 24px;
  position: absolute;
  position: relative;
  top: 50%;
  -webkit-transform-origin: left;
          transform-origin: left;
  transition: 0.3s cubic-bezier(0.642, 0, 0.328, 1) 0s;
}
.on-service .header__hamburgerLine {
  background-color: #2C2B32;
}
.header__hamburgerLine:nth-child(1) {
  translate: -50% -8px;
  width: 24px;
}
.header__hamburgerLine:nth-child(2) {
  translate: calc(-50% - 4px) -1px;
  width: 16px;
}
.header__hamburgerLine:nth-child(3) {
  translate: calc(-50% - 4px) 6px;
  width: 16px;
}
@media screen and (max-width: 768px) {
  .header__hamburgerLine {
    max-width: 12px;
  }
  .header__hamburgerLine:nth-child(1) {
    translate: -50% -5px;
    width: 12px;
  }
  .header__hamburgerLine:nth-child(2) {
    translate: calc(-50% - 2px) -1px;
    width: 8px;
  }
  .header__hamburgerLine:nth-child(3) {
    translate: calc(-50% - 2px) 3px;
    width: 8px;
  }
}

.sectionTtl {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .sectionTtl {
    gap: 36px;
    margin-bottom: 36px;
  }
}
.sectionTtl__subText {
  font-family: "Source Code Pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
}
.sectionTtl__text {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .sectionTtl__text {
    font-size: 2.6rem;
    line-height: 1.6;
  }
}

.wave-01 {
  opacity: 0;
  position: relative;
  transition: opacity 0.8s 2s;
  z-index: -1;
}
.wave-01.is-show {
  opacity: 0.6;
}
.wave-01 .nt-embed {
  position: absolute;
  -webkit-transform: translateY(-38%);
          transform: translateY(-38%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .wave-01 .nt-embed {
    -webkit-transform: translateY(-34%);
            transform: translateY(-34%);
  }
}
.wave-01 .nt-embed canvas {
  height: 100%;
  max-width: 100%;
  width: 100%;
}

.wave-02 {
  opacity: 0.6;
  position: relative;
  top: 0;
  z-index: -1;
}
.wave-02 .nt-embed {
  position: absolute;
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
}
@media screen and (max-width: 768px) {
  .wave-02 .nt-embed {
    -webkit-transform: translateY(-98%);
            transform: translateY(-98%);
  }
}
.wave-02 .nt-embed canvas {
  height: 50%;
  max-width: 100%;
  width: 100%;
}

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

@keyframes loop01 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop02 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop02 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.top {
  margin-bottom: -101px;
}

.sticky {
  position: relative;
}
.sticky__wrap {
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.sticky__line {
  background: url("/images/common/bg_base.png") repeat center center/cover;
  display: -webkit-flex;
  display: flex;
  height: 100vh;
  margin: 0 auto;
  max-width: 1280px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sticky__line {
    padding: 0 20px;
  }
}
.sticky__lineItem {
  position: relative;
  width: 100%;
}
.sticky__lineItem::before {
  background: linear-gradient(180deg, rgba(48, 48, 59, 0.1607843137) 0%, rgba(142, 142, 142, 0.1607843137) 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 1px;
}
.sticky__lineItem:last-child::after {
  background: linear-gradient(180deg, rgba(48, 48, 59, 0.1607843137) 0%, rgba(142, 142, 142, 0.1607843137) 100%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
}

.topContact {
  background: url("/images/common/bg_base.png") repeat center center/cover;
  overflow: hidden;
  padding: 91px 0 164px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .topContact {
    padding: 80px 0 148px;
  }
}
.topContact__bg {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.topContact__bgText {
  color: #17181A;
  font-size: 10rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.4;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .topContact__bgText {
    font-size: 6rem;
    line-height: 1.2;
  }
}
.topContact__bgText:nth-child(even) {
  -webkit-animation: loop02 60s linear infinite;
          animation: loop02 60s linear infinite;
}
.topContact__bgText:nth-child(odd) {
  -webkit-animation: loop01 60s -30s linear infinite;
          animation: loop01 60s -30s linear infinite;
}
.topContact__bgText--reverse:nth-child(even) {
  animation: loop02 60s linear reverse infinite;
}
.topContact__bgText--reverse:nth-child(odd) {
  animation: loop01 60s -30s linear reverse infinite;
}
.topContact__bgTexts {
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  position: absolute;
  top: 10px;
  width: 100%;
  z-index: -1;
}
.topContact__bgTexts--reverse {
  top: 8.7rem;
}
.topContact__bgTexts:not(:first-child) {
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .topContact__bgTexts {
    top: 2px;
  }
  .topContact__bgTexts--reverse {
    top: 4.7rem;
  }
}
.topContact__btnBlock {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 67px auto 0;
  max-width: 672px;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .topContact__btnBlock {
    -webkit-flex-direction: column;
            flex-direction: column;
    margin-top: 48px;
    max-width: 100%;
    width: 100%;
  }
}
.topContact__line {
  display: -webkit-flex;
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 80px;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .topContact__line {
    padding: 0 20px;
  }
}
.topContact__lineItem {
  position: relative;
  width: 100%;
}
.topContact__lineItem::before {
  background: linear-gradient(180deg, rgba(101, 102, 106, 0.1607843137) 0%, rgba(142, 142, 142, 0.1607843137) 100%);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 1px;
}
.topContact__lineItem:last-child::after {
  background: linear-gradient(180deg, rgba(101, 102, 106, 0.1607843137) 0%, rgba(142, 142, 142, 0.1607843137) 100%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
}
.topContact__link {
  -webkit-align-items: center;
          align-items: center;
  border-bottom: 1px solid #393D44;
  display: -webkit-flex;
  display: flex;
  font-size: 1.4rem;
  font-weight: 600;
  gap: 16px;
  -webkit-justify-content: center;
          justify-content: center;
  line-height: 2;
  padding: 16px 0;
  position: relative;
  width: 33.3333333333%;
}
.topContact__link--width100 {
  border-top: 1px solid #393D44;
  padding: 40px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topContact__link {
    gap: 8px;
    width: 100%;
  }
  .topContact__link--width100 {
    padding: 48px 0;
  }
}
.topContact__linkText {
  font-weight: 600;
}
.topContact__text {
  font-size: 3.6rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .topContact__text {
    font-size: 2.8rem;
    line-height: 1.2;
  }
}
.topContact__linkIcon {
  height: 18px;
  overflow: hidden;
  position: relative;
  width: 18px;
}
.topContact__linkIcon::after, .topContact__linkIcon::before {
  background: url("data: image/svg+xml;utf8,%3Csvg%20width%3D%2219%22%20height%3D%2218%22%20viewBox%3D%220%200%2019%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M12.23%205.26875H9.51346V3.76875H14.7635V9.01875H13.2635V6.35625L9.57796%2010.0418L8.51746%208.98125L12.23%205.26875Z%22%20fill%3D%22%23EDEFF2%22%20%2F%3E%3Cpath%20d%3D%22M8.73645%205.23125H4.23645V14.2312H13.2365V9.73125H11.7365V12.7312H5.73645V6.73125H8.73645V5.23125Z%22%20fill%3D%22%23EDEFF2%22%20%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  content: "";
  display: block;
  height: 18px;
  position: absolute;
  width: 18px;
}
.topContact__linkIcon::after {
  top: calc(2em - 1px);
}
.topContact__linkIcon::before {
  top: -1px;
}
.topContact__link:hover .topContact__linkIcon::after {
  top: -1px;
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}
.topContact__link:hover .topContact__linkIcon::before {
  top: calc(-2em - 1px);
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}

.topFv {
  height: max(56.25vw, 720px);
  pointer-events: none;
  position: relative;
  width: 100%;
}
.topFv::after {
  background-color: #24232A;
  content: "";
  display: block;
  height: 59.8%;
  position: absolute;
  width: 100%;
  z-index: -2;
}
@media screen and (max-width: 768px) {
  .topFv {
    height: max(48.4375vw, 620px);
  }
  .topFv::after {
    height: 63%;
  }
}
.topFv__bg {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.topFv__bgText {
  color: #2C2B32;
  font-size: 10rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.topFv__bgText:nth-child(even) {
  -webkit-animation: loop02 60s linear infinite;
          animation: loop02 60s linear infinite;
}
.topFv__bgText:nth-child(odd) {
  -webkit-animation: loop01 60s -30s linear infinite;
          animation: loop01 60s -30s linear infinite;
}
@media screen and (max-width: 768px) {
  .topFv__bgText {
    font-size: 4.8rem;
  }
}
.topFv__bgTexts {
  display: -webkit-flex;
  display: flex;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: calc(59.8% - 8.7rem);
  transition: 0.8s 2s;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .topFv__bgTexts {
    top: calc(63% - 4rem);
  }
}
.topFv__fig {
  aspect-ratio: 200/278.75;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: 0.7s 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  translate: -50% -20%;
  width: 15.625%;
}
@media screen and (max-width: 768px) {
  .topFv__fig {
    translate: -50% calc(-50% - 4px);
    width: 115px;
  }
}
.topFv__textContainer, .topFv__scrollContainer {
  left: 50%;
  max-width: 1280px;
  opacity: 0;
  padding: 0 80px;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  transition: opacity 0.7s 1s;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .topFv__textContainer, .topFv__scrollContainer {
    padding: 0 20px;
  }
}
.topFv__textContainer {
  bottom: 6%;
}
@media screen and (max-width: 768px) {
  .topFv__textContainer {
    bottom: 1.516129%;
  }
}
.topFv__scrollContainer {
  bottom: 6.4%;
}
@media screen and (max-width: 768px) {
  .topFv__scrollContainer {
    display: none;
  }
}
.topFv__scroll {
  display: block;
  font-family: "Source Code Pro", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  margin-right: auto;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
.topFv__subText {
  font-family: "Source Code Pro", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
}
.topFv__text {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .topFv__text {
    font-size: 2.2rem;
  }
}
.topFv__textBlock {
  -webkit-align-items: flex-start;
          align-items: flex-start;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .topFv__textBlock {
    gap: 16px;
    margin: 0;
  }
}

.topMission {
  padding: 190px 0 140px;
}
@media screen and (max-width: 768px) {
  .topMission {
    padding: 109px 0 99px;
  }
}
.topMission__fig {
  -webkit-flex: 1 0 auto;
          flex: 1 0 auto;
  height: 180px;
  width: 180px;
}
@media screen and (max-width: 768px) {
  .topMission__fig {
    height: auto;
    width: 100%;
  }
}
.topMission__licItm {
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .topMission__licItm {
    font-size: 1.4rem;
  }
}
.topMission__name {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .topMission__name {
    font-size: 1.8rem;
    margin-bottom: 9px;
  }
}
.topMission__prof {
  border-top: 1px solid #393D44;
  display: -webkit-flex;
  display: flex;
  gap: 100px;
  margin-top: 64px;
  padding-top: 64px;
}
@media screen and (max-width: 768px) {
  .topMission__prof {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin-top: 48px;
    padding-top: 60px;
  }
}
.topMission__profText {
  display: block;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .topMission__profText {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }
}
.topMission__profTextBlock {
  -webkit-flex: 1 1 auto;
          flex: 1 1 auto;
}
.topMission__text {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .topMission__text {
    font-size: 1.4rem;
  }
}

.topService {
  background: #EDEFF2 url("/images/common/bg_base.png") repeat center center/cover;
  color: #404040;
  padding: 115px 0 119px;
}
@media screen and (max-width: 768px) {
  .topService {
    padding: 76px 0;
  }
}
.topService__capItem {
  color: #A39FAE;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .topService__capItem {
    font-size: 1.2rem;
  }
}
.topService__caption {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .topService__caption {
    gap: 13px;
  }
}
.topService__card {
  background: #fff;
  border-radius: 8px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  min-width: 300px;
  padding: 32px;
  text-align: center;
  width: calc((100% - 48px) / 3);
}
@media screen and (max-width: 768px) {
  .topService__card {
    width: 100%;
  }
}
.topService__cardBtn {
  -webkit-align-items: center;
          align-items: center;
  border-bottom: 1px solid #393D44;
  border-top: 1px solid #393D44;
  display: -webkit-flex;
  display: flex;
  font-weight: 600;
  gap: 8px;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 16px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topService__cardBtn {
    font-size: 1.4rem;
  }
}
.topService__cardBtnIcon {
  height: 18px;
  overflow: hidden;
  position: relative;
  width: 18px;
}
.topService__cardBtnIcon::after, .topService__cardBtnIcon::before {
  background: url("/images/common/icon_blank.svg") no-repeat center center/contain;
  content: "";
  display: block;
  height: 18px;
  position: absolute;
  width: 18px;
}
.topService__cardBtnIcon::after {
  top: calc(2em - 1px);
}
.topService__cardBtnIcon::before {
  top: -1px;
}
.topService__cardBtn:hover .topService__cardBtnIcon::after {
  top: -1px;
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}
.topService__cardBtn:hover .topService__cardBtnIcon::before {
  top: calc(-2em - 1px);
  transition: 0.3s cubic-bezier(0.306, 0.968, 0.632, 1);
}
.topService__cardText {
  display: block;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 24px;
  margin-top: 20px;
  text-align: left;
}
.topService__cardTtl {
  font-weight: 600;
  width: 100%;
}
.topService__cardSubTtl {
  display: block;
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 4px;
}
.topService__cards {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px;
  -webkit-justify-content: center;
          justify-content: center;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .topService__cards {
    -webkit-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.topService__hour {
  color: #A39FAE;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: inherit;
}
.topService__price {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .topService__price {
    font-size: 3.2rem;
    margin: 26px auto 23px;
  }
}
.topService__ttl {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto 64px;
  padding-top: 37px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.topService__ttl::before {
  background: linear-gradient(90deg, #133FD0 0%, #29CFA0 100%);
  content: "";
  display: block;
  height: 4px;
  left: 50%;
  position: absolute;
  top: 0;
  translate: -50% 0;
  width: 35px;
}
@media screen and (max-width: 768px) {
  .topService__ttl {
    font-size: 2.4rem;
    margin-bottom: 48px;
  }
}
.topService__small {
  font-size: 2.2rem;
  font-weight: inherit;
  line-height: inherit;
}
.topService__asterisk {
  font-size: 1rem;
  line-height: 28px;
  vertical-align: bottom;
}

.u_d_n {
  display: none;
}
.u_d_b {
  display: block;
}
.u_d_f {
  display: -webkit-flex;
  display: flex;
}
@media screen and (max-width: 768px) {
  .u_sp_d_n {
    display: none;
  }
  .u_sp_d_b {
    display: block;
  }
  .u_sp_d_f {
    display: -webkit-flex;
    display: flex;
  }
}
@media screen and (max-width: 1400px) {
  .u_pc_d_n {
    display: none;
  }
  .u_pc_d_b {
    display: block;
  }
  .u_pc_d_f {
    display: -webkit-flex;
    display: flex;
  }
}