@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: vw(1480, 16);
  }
}
@media screen and (min-width: 1480px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.4s ease;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/****  pc,spだし分け  *****/
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

/*****  タイトル系  *******/
h1,
h2 {
  font-weight: normal;
}

.h2-title {
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 800;
  text-transform: capitalize;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .h2-title {
    margin-bottom: 3vw;
    font-size: min(9.3vw, 180px);
  }
}

/**** コンテンツ *****/
main {
  margin-top: 5rem;
}
@media screen and (max-width: 1280px) {
  main {
    margin-top: 3.125rem;
  }
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 0rem;
  }
}

/***** innerなど余白 *****/
.inner {
  width: 100%;
  max-width: 1270px;
  margin-inline: auto;
  padding-inline: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 5.0890585242vw;
  }
}

/******* flex ******/
.flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}

/****** font ****/
p {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  p {
    font-size: clamp(16px, 4.6vw, 18px);
  }
}

.bold {
  font-weight: bold;
}

/*****スクロール時にふわっと**********/
.fadein {
  transform: translateY(30px);
  opacity: 0;
}

.fadein.scrollin {
  transform: unset;
  opacity: 1;
  transition: 1s ease-in-out;
}

.fadein.scrollin.delay200 {
  transition-delay: 0.2s;
}

.zoomin.img {
  border-radius: 1.25rem;
  overflow: hidden;
}
.zoomin.img img {
  transform: scale(1.1);
  transition: all 1s ease-in-out;
}
.zoomin.img.scrollin img {
  transform: none;
}

/*------------------------
btn
------------------------*/
.btn {
  max-width: 40.625rem;
}
.btn a {
  width: 100%;
  min-height: 6.875rem;
  background: linear-gradient(to left, #019fe9 0%, #004fa1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.25rem;
  font-family: "Kantumruy Pro", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn a {
    min-height: 20.3562340967vw;
    border-radius: 50vw;
    font-size: 9.1603053435vw;
  }
}
.btn a span {
  position: relative;
  z-index: 2;
}
.btn a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #019fe9 0%, #004fa1 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
}
.btn a:hover:after {
  opacity: 1;
}

.more {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .more {
    width: 100%;
    max-width: 62.0865139949vw;
    margin: 0 auto;
  }
}
.more a {
  min-height: 3.125rem;
  border: 1px solid #999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .more a {
    min-height: 12.7226463104vw;
    font-size: 4.0712468193vw;
    margin: 0 auto;
  }
}
.more a:hover {
  color: #fff;
  background-color: #999999;
}

/*------------------------
ul-page
------------------------*/
.ul-page {
  position: relative;
  overflow: hidden;
}
.ul-page::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 40%;
  width: 100%;
  height: 100%;
  background: repeat center top/100% url(/images/ul-page_bg.png);
  z-index: -1;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .ul-page::before {
    background: no-repeat 6vw 131vw/148% url(/images/ul-page_bg_sp.png);
  }
}

.ul-head {
  position: relative;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .ul-head {
    margin-bottom: 25.4452926209vw;
  }
}
.ul-head__en {
  position: absolute;
  top: 37%;
  left: 10%;
  font-size: calc(84 * 100vw / 1920);
  font-weight: 500;
  letter-spacing: -0.05em;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-family: "Kantumruy Pro", sans-serif;
  text-transform: capitalize;
}
@media screen and (max-width: 768px) {
  .ul-head__en {
    font-size: 13.7404580153vw;
    line-height: 1;
    top: 38%;
    left: 6%;
  }
}

.ul-head__cont {
  position: absolute;
  top: 47%;
  right: 0;
  min-width: 57%;
  color: #fff;
  padding: 3.125rem 5rem 4.375rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ul-head__cont {
    padding: 2.875rem 1.25rem 2.5rem;
    top: 51.5%;
    width: 100%;
  }
}
.ul-head__cont::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: linear-gradient(45deg, #004fa1 0%, #019fe9 100%);
  z-index: -1;
}
.ul-head__cont .en {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: -0.05em;
  text-transform: capitalize;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .ul-head__cont .en {
    font-size: 1.5rem;
  }
}
.ul-head__cont .title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .ul-head__cont .title {
    margin-bottom: 0.9375rem;
  }
}
@media (max-width: 393px) {
  .ul-head__cont .title {
    font-size: 10vw;
  }
}
.ul-head__cont .name {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .ul-head__cont .name {
    font-size: 1.25rem;
  }
}

.page-title {
  max-width: 62.5rem;
  min-height: 5rem;
  font-size: 2.25rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #019fe9;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 6.6157760814vw;
    min-height: 15.2671755725vw;
  }
}

.footer {
  padding: 5rem 0;
  background: no-repeat left top/44% url(/images/footer_bg.png);
  background-color: #eff6fc;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 12.7226463104vw 0;
    background: no-repeat left top/89% url(/images/footer_bg_sp.png);
    background-color: #eff6fc;
  }
}
.footer .inner {
  max-width: 1270px;
}
.footer .btn {
  margin: 0 auto 5.625rem;
}
.footer .btn a {
  border-radius: 12.5rem;
}
.footer .btn a::after {
  border-radius: 12.5rem;
}
@media screen and (max-width: 768px) {
  .footer .btn {
    margin: 0 auto 12.7226463104vw;
  }
}

.footer__cont {
  justify-content: space-between;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .footer__cont {
    margin-bottom: 25.4452926209vw;
  }
}

.footer__info .en {
  font-size: 1.25rem;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .footer__info .en {
    font-size: 4.0712468193vw;
    margin-bottom: 0;
  }
}

.footer__logo {
  display: block;
  max-width: 12.125rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 49.3638676845vw;
    margin-bottom: 7.6vw;
  }
}

.footer__catch {
  font-size: 2rem;
  line-height: 1.125;
  font-weight: bold;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .footer__catch {
    font-size: 8.1424936387vw;
    margin-bottom: 5vw;
  }
}

@media screen and (max-width: 768px) {
  .footer__company {
    display: none;
  }
}
.footer__company .name {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: bold;
}
.footer__company .address {
  font-size: 1rem;
  line-height: 2.5;
  margin-bottom: 2em;
}

.footer__link {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
  transition: all 0.4s ease;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .footer__link {
    display: none;
  }
}
.footer__link:hover {
  color: #004FA1;
}

.footer__nav {
  display: flex;
  gap: 10%;
  justify-content: end;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}

.footer__item {
  padding-bottom: 1em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #cccccc;
}
.footer__item:last-of-type {
  border-bottom: none;
}
.footer__item .title {
  font-size: 1.125rem;
  color: #004fa1;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.footer__item .footer__link {
  padding-left: 1em;
}

.copy-right {
  font-size: 0.75rem;
}
@media screen and (max-width: 768px) {
  .copy-right {
    font-size: 3.0534351145vw;
  }
}

body.nav-open {
  overflow: hidden;
}

.header {
  width: 100%;
  height: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 1280px) {
  .header {
    height: 3.125rem;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.25rem;
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .header__inner {
    padding-left: 0.625rem;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 2.125rem;
}
@media screen and (max-width: 1280px) {
  .header__logo {
    gap: 0.75rem;
  }
}
@media (max-width: 1600px) {
  .header__logo {
    gap: 0.3125rem;
  }
}
.header__logo a {
  display: block;
  width: 12.125rem;
}
@media screen and (max-width: 1280px) {
  .header__logo a {
    width: 9.0625rem;
  }
}
.header__logo span {
  display: block;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .header__logo span {
    font-size: clamp(10px, 3vw, 14px);
  }
}

.header__btn {
  width: 3.125rem;
  height: 3.125rem;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #004fa1;
  display: none;
}
@media screen and (max-width: 1280px) {
  .header__btn {
    display: block;
  }
}

.header__btn span {
  width: 1.5625rem;
  height: 0.125rem;
  background-color: #fff;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
}

.header__btn span:nth-child(1) {
  top: 1rem;
}

.header__btn span:nth-child(2) {
  top: 1.5rem;
}

.header__btn span:nth-child(3) {
  top: 2rem;
}

.header.is-active .header__btn span:nth-child(1) {
  transform: rotate(-45deg);
  top: 1.5rem;
}

.header.is-active .header__btn span:nth-child(2) {
  display: none;
}

.header.is-active .header__btn span:nth-child(3) {
  transform: rotate(45deg);
  top: 1.5rem;
}

/*
  -----------------------------------
sp
  -----------------------------------
  */
.headerSp__nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #41bcff;
  color: #fff;
  transition: all 0.4s ease;
  overflow-y: scroll;
  display: none;
}
@media screen and (max-width: 1280px) {
  .headerSp__nav {
    display: block;
    top: 3.125rem;
  }
}
.headerSp__nav .header__nav-items {
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .headerSp__nav .header__nav-items {
    padding: 5vw 3vw 5vw 0;
  }
}
@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-items {
    padding: 12.7226463104vw 5.0890585242vw 12.7226463104vw 0;
  }
}
@media screen and (max-width: 1280px) {
  .headerSp__nav .header__nav-item {
    margin-bottom: 2.5641025641vw;
  }
}
@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-item {
    margin-bottom: 5.0890585242vw;
  }
}
.headerSp__nav .header__nav-item a {
  display: flex;
  line-height: 1.75;
  padding-left: 5.1282051282vw;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 1280px) {
  .headerSp__nav .header__nav-item a {
    font-size: 2.0512820513vw;
    min-height: 3.8461538462vw;
    max-width: 32.0512820513vw;
    background-color: #004fa1;
  }
}
@media screen and (max-width: 768px) {
  .headerSp__nav .header__nav-item a {
    font-size: 4.0712468193vw;
    min-height: 7.6335877863vw;
    max-width: 63.6132315522vw;
  }
}
.headerSp__nav .header__nav-link--child {
  margin-top: 2vw;
}
.headerSp__nav .header__nav-link--child li:last-child a.header__nav-link--child-list {
  border-bottom: none;
}
.headerSp__nav a.header__nav-link--child-list {
  background-color: transparent;
  max-width: 78.8804071247vw;
  border-bottom: 1px solid #004fa1;
  padding-bottom: 1vw;
  padding-left: 1vw;
  text-indent: -1vw;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .headerSp__nav a.header__nav-link--child-list {
    padding-top: 1vw;
  }
}
.headerSp__nav a.header__nav-link--child-list span {
  color: #004fa1;
  display: inline-block;
  margin-right: 1.5vw;
}
@media screen and (max-width: 768px) {
  .headerSp__nav a.header__nav-link--child-list span {
    margin-right: 2vw;
  }
}

/*
-----------------------------------
pc
-----------------------------------
*/
.headerPc__nav {
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .headerPc__nav {
    display: none;
  }
}
.headerPc__nav ul {
  height: 100%;
}
.headerPc__nav .header__nav-items {
  display: flex;
  align-items: center;
}
.headerPc__nav .header__nav-item {
  position: relative;
  height: 100%;
}
.headerPc__nav .header__nav-item:nth-child(7) {
  margin-right: 1.875rem;
}
@media (max-width: 1600px) {
  .headerPc__nav .header__nav-item:nth-child(7) {
    margin-right: 0.625rem;
  }
}
.headerPc__nav .header__nav-item:nth-child(7) a::after {
  display: none;
}
.headerPc__nav .header__nav-item.--home {
  text-transform: uppercase;
}
.headerPc__nav .header__nav-item.--entry {
  display: flex;
  align-items: center;
}
.headerPc__nav .header__nav-item.--entry.on-hover a.header__nav-link::before {
  display: none;
}
.headerPc__nav .header__nav-item.--entry a {
  justify-content: center;
  text-transform: uppercase;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
  font-weight: 600;
  color: #fff;
  width: 10rem;
  height: 2.5rem;
  background: linear-gradient(to right, #001D3B 0%, #019FE9 100%);
  border-radius: 6.25rem 0 0 6.25rem;
}
.headerPc__nav .header__nav-item.--entry a::after {
  display: none;
}
.headerPc__nav .header__nav-item.on-hover .header__nav-link:before {
  display: block;
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #004fa1;
}
.headerPc__nav .header__nav-item.on-hover .header__nav-link--child {
  opacity: 1;
  visibility: visible;
}
.headerPc__nav .header__nav-item a {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  padding-inline: 1em;
  height: 100%;
  position: relative;
}
.headerPc__nav .header__nav-item a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  width: 1px;
  height: 40px;
  background-color: #ccc;
}
@media (max-width: 1600px) {
  .headerPc__nav .header__nav-item a {
    padding-inline: 0.5em;
    font-size: 0.75rem;
  }
}
.headerPc__nav .header__nav-link--child {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 23px);
  left: 0;
  width: 21.25rem;
  height: auto;
  padding: 1.25rem;
  background-color: #41bcff;
}
.headerPc__nav .header__nav-link--child li:first-child a.header__nav-link--child-list {
  border-top: none;
}
.headerPc__nav .header__nav-link--child::before {
  display: block;
  content: "";
  position: absolute;
  top: -24px;
  left: 0px;
  width: 100%;
  height: 26px;
  background: no-repeat 20px bottom/contain url(/images/header-delta.png);
}
.headerPc__nav a.header__nav-link--child-list {
  font-size: 1rem;
  line-height: 3;
  min-height: 3.125rem;
  font-weight: 500;
  color: #fff;
  border-right: none;
  padding-left: 1.6em;
  padding-right: 0;
  position: relative;
  border-top: 1px solid #004fa1;
  transition: all 1s ease;
}
.headerPc__nav a.header__nav-link--child-list:hover {
  color: #004fa1;
}
.headerPc__nav a.header__nav-link--child-list::before {
  display: block;
  content: "＋";
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 1.25rem;
  line-height: 1;
  color: #004fa1;
}
.headerPc__nav a.header__nav-link--child-list::after {
  display: none;
}

.header.is-active .headerSp__nav {
  right: 0;
}

.business-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.3125rem;
  justify-content: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .business-types {
    gap: 7.6335877863vw;
    margin-bottom: 12.7226463104vw;
  }
}

.business-types__type {
  display: flex;
  flex-direction: column;
}
.business-types__type.--01 .title {
  background-color: #0068b3;
}
.business-types__type.--02 .title {
  background-color: #ff638b;
}
.business-types__type.--03 .title {
  background-color: #ffb92e;
}
.business-types__type.--04 .title {
  background-color: #64c667;
}
.business-types__type.--05 .title {
  background-color: #47caf0;
}
.business-types__type .title {
  min-height: 3.125rem;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .business-types__type .title {
    min-height: 12.7226463104vw;
    font-size: 4.5801526718vw;
  }
}
.business-types__type .desc {
  padding: 1.3125rem;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 768px) {
  .business-types__type .desc {
    padding: 5.0890585242vw 0;
    font-size: 4.0712468193vw;
    margin-bottom: 0;
  }
}

#top {
  background: repeat center 49vw/cover url(/images/top/top_bg.png);
  /*トップ共通*/
  /*トップ共通ここまで*/
}
#top .top-section-title {
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.05em;
  text-transform: capitalize;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  #top .top-section-title {
    font-size: 10.1781170483vw;
    margin-bottom: 0;
  }
}
#top .top-section-sub {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-section-sub {
    font-size: 4.5801526718vw;
    margin-bottom: 5.0890585242vw;
  }
}
#top .top-section-lead {
  font-size: 1rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  #top .top-section-lead {
    font-size: 4.0712468193vw;
    line-height: 1.75;
    margin-bottom: 7.6335877863vw;
  }
}
#top .top-mv {
  margin-bottom: 8.125rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .top-mv {
    margin-bottom: 12.7226463104vw;
  }
}
#top .top-mv picture {
  position: absolute;
  top: 2vw;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #top .top-mv picture {
    top: 27vw;
  }
}
#top .background-video {
  width: 100%;
  mask-image: url(/images/top/mv_bg.png);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  -webkit-mask-image: url(/images/top/mv_bg.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  #top .background-video {
    mask-image: url(/images/top/mv_bg_sp.png);
    -webkit-mask-image: url(/images/top/mv_bg_sp.png);
  }
}
#top .top-message {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-message {
    margin-bottom: 12.7226463104vw;
  }
}
#top .top-message .more {
  max-width: 52.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top .top-message .more {
    max-width: 100%;
  }
}
#top .top-message .more a {
  min-height: 5rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #top .top-message .more a {
    min-height: 15.2671755725vw;
    font-size: 4.5801526718vw;
    letter-spacing: -0.05em;
  }
}
#top .top-message--catch {
  font-size: 2.625rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-message--catch {
    font-size: 6.106870229vw;
    line-height: 1.4166666667;
    margin-bottom: 6.3613231552vw;
  }
}
#top .top-message--desc {
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-message--desc {
    font-size: 3.8167938931vw;
    line-height: 1.8;
    margin-bottom: 12.7226463104vw;
  }
}
#top .top-about {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-about {
    margin-bottom: 12.7226463104vw;
    overflow: hidden;
  }
}
#top .top-about .top-titleSet {
  padding-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  #top .top-about .top-titleSet {
    padding-top: 5.0890585242vw;
  }
}
#top .top-about--row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .top-about--row {
    width: 340vw;
    margin-bottom: 1.5267175573vw;
    gap: 1.5267175573vw;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #top .top-about--row.--top.--reverse, #top .top-about--row.--bottom.--reverse {
    animation: auto-scroll-reverse 20s linear infinite;
  }
}
#top .top-about--row.--top .img img, #top .top-about--row.--bottom .img img {
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  #top .top-about--row.--bottom {
    animation: auto-scroll-bottom 20s linear infinite;
  }
}
@media screen and (max-width: 768px) {
  #top .top-about--row.--imgs {
    animation: auto-scroll 20s linear infinite;
  }
}
@media screen and (max-width: 768px) {
  #top .top-about--row.--imgs.--reverse {
    animation: auto-scroll-reverse 20s linear infinite;
  }
}
@media screen and (max-width: 768px) {
  #top .top-about--row.--middle {
    margin-inline: calc(50% - 170vw);
  }
}
#top .top-about--row .img {
  width: 25%;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #top .top-about--row .img {
    width: 44.5292620865%;
    opacity: 1;
  }
}
#top .top-about--row .img img {
  border-radius: 1.375rem;
}
@media screen and (max-width: 768px) {
  #top .top-about--row .img img {
    border-radius: 1.5267175573vw;
  }
}
@keyframes auto-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes auto-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes auto-scroll-bottom {
  0% {
    transform: translateX(0) rotate(180deg);
  }
  100% {
    transform: translateX(-50%) rotate(180deg);
  }
}
#top .top-about--cont {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top .top-about--cont {
    max-width: 90vw;
  }
}
#top .top-about__links {
  gap: 0.625rem;
  margin-inline: -6.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-about__links {
    align-items: center;
    margin: 0 auto 12.7226463104vw;
  }
}
#top .top-about__links .more {
  width: 33%;
}
#top .top-about__links .more a {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top .top-about__links .more {
    width: 100%;
    max-width: 78.8804071247vw;
  }
}
#top .top-business {
  padding: 2.5rem 0 8.5rem;
  background: no-repeat center bottom/cover url(/images/top/business_bg.png);
}
@media screen and (max-width: 768px) {
  #top .top-business {
    padding: 12.7226463104vw 0 10.1781170483vw;
    background: no-repeat center bottom/cover url(/images/top/business_bg_sp.png);
  }
}
#top .top-business .more {
  max-width: 26.25rem;
  margin: 0 auto 5rem;
}
@media screen and (max-width: 768px) {
  #top .top-business .more {
    margin: 0 auto 10.1781170483vw;
    max-width: 80.1526717557vw;
  }
}
@media screen and (max-width: 768px) {
  #top .top-business .more a {
    min-height: 9.6692111959vw;
  }
}
#top .top-business__links {
  display: flex;
  justify-content: center;
  gap: 2.3%;
}
@media (max-width: 1200px) {
  #top .top-business__links {
    max-width: 43.75rem;
    margin: 0 auto;
    gap: 1.25rem;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  #top .top-business__links {
    max-width: 66.1577608142vw;
    gap: 2vw 4vw;
  }
}
#top .top-business__link {
  max-width: 13.125rem;
  display: flex;
  flex-direction: column;
  padding-top: 2%;
  align-items: center;
  background-color: rgba(255, 99, 139, 0.6);
  border: 7px solid #ff638b;
  border-radius: 50%;
  aspect-ratio: 1/1;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  #top .top-business__link {
    width: 45%;
    padding-top: 5%;
    max-width: 33.0788804071vw;
    border-width: 1vw;
  }
}
#top .top-business__link:hover {
  background-color: #ff638b;
}
#top .top-business__link:nth-child(2) {
  background-color: rgba(0, 104, 179, 0.7);
  border: 7px solid #0068b3;
}
@media screen and (max-width: 768px) {
  #top .top-business__link:nth-child(2) {
    border-width: 1vw;
  }
}
#top .top-business__link:nth-child(2):hover {
  background-color: #0068b3;
}
#top .top-business__link:nth-child(3) {
  background-color: rgba(71, 202, 240, 0.7);
  border: 7px solid #47caf0;
}
@media screen and (max-width: 768px) {
  #top .top-business__link:nth-child(3) {
    border-width: 1vw;
  }
}
#top .top-business__link:nth-child(3):hover {
  background-color: #47caf0;
}
#top .top-business__link:nth-child(4) {
  background-color: rgba(100, 198, 103, 0.7);
  border: 7px solid #64c667;
}
@media screen and (max-width: 768px) {
  #top .top-business__link:nth-child(4) {
    border-width: 1vw;
  }
}
#top .top-business__link:nth-child(4):hover {
  background-color: #64c667;
}
#top .top-business__link:nth-child(5) {
  background-color: rgba(255, 185, 46, 0.7);
  border: 7px solid #ffb92e;
}
@media screen and (max-width: 768px) {
  #top .top-business__link:nth-child(5) {
    border-width: 1vw;
  }
}
#top .top-business__link:nth-child(5):hover {
  background-color: #ffb92e;
}
#top .top-business__link .icon {
  width: 38.0952380952%;
  margin-bottom: 8%;
}
@media screen and (max-width: 768px) {
  #top .top-business__link .icon {
    width: 11.4503816794vw;
    margin-bottom: 5%;
  }
}
#top .top-business__link .text {
  font-size: 1.25rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top .top-business__link .text {
    font-size: 3.5623409669vw;
    letter-spacing: -0.05em;
    white-space: nowrap;
  }
}
#top .top-jobpeople {
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  #top .top-jobpeople {
    padding: 12.7226463104vw 0;
  }
}
#top .top-jobpeople .more {
  max-width: 26.25rem;
  margin: 0 auto 3.125rem;
}
@media screen and (max-width: 768px) {
  #top .top-jobpeople .more {
    max-width: 80.1526717557vw;
    margin: 0 auto 12.7226463104vw;
  }
}
@media screen and (max-width: 768px) {
  #top .top-jobpeople .more a {
    min-height: 9.6692111959vw;
  }
}
#top .top-jobpeople__imgs {
  padding-top: 41.6666666667%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top .top-jobpeople__imgs {
    padding-top: 0;
    padding-inline: 3vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5623409669vw;
  }
}
#top .top-jobpeople__imgs .img {
  position: absolute;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-jobpeople__imgs .img {
    position: static;
    margin-bottom: 0;
    width: 100% !important;
  }
}
#top .top-jobpeople__imgs .img:nth-child(1) {
  width: calc(500 * 100vw / 1920);
  top: 0;
  left: 1%;
}
#top .top-jobpeople__imgs .img:nth-child(2) {
  width: calc(530 * 100vw / 1920);
  top: 0;
  left: 66%;
}
#top .top-jobpeople__imgs .img:nth-child(3) {
  width: calc(350 * 100vw / 1920);
  top: 19%;
  left: 42%;
}
#top .top-jobpeople__imgs .img:nth-child(4) {
  width: calc(530 * 100vw / 1920);
  top: 55%;
  left: 8%;
}
#top .top-jobpeople__imgs .img:nth-child(5) {
  width: calc(500 * 100vw / 1920);
  top: 55%;
  left: 72%;
}
#top .top-jobpeople__imgs .img img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-jobpeople__imgs .img img {
    border-radius: 5.0890585242vw;
  }
}
#top .top-career {
  background: no-repeat center bottom/cover url(/images/top/career_bg.png);
  padding: 3.125rem 0 8.4375rem;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-career {
    background: no-repeat center bottom/cover url(/images/top/career_bg_sp.png);
    padding: 12.7226463104vw 0 17.8117048346vw;
    margin-bottom: 12.7226463104vw;
  }
}
#top .top-career__links {
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  #top .top-career__links {
    gap: 5.0890585242vw;
  }
}
#top .top-career__link {
  display: block;
  position: relative;
}
#top .top-career__link .img img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-career__link .img img {
    aspect-ratio: 353/250;
    height: 100%;
    object-fit: cover;
    border-radius: 5.0890585242vw;
  }
}
#top .top-career__link .btn {
  position: absolute;
  bottom: 15%;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 68%;
}
@media screen and (max-width: 768px) {
  #top .top-career__link .btn {
    max-width: 88.6685552408%;
  }
}
#top .top-career__link .btn a {
  min-height: 3.125rem;
  border-radius: 0;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  #top .top-career__link .btn a {
    min-height: 10.1781170483vw;
  }
}
#top .top-special {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-special {
    margin-bottom: 12.7226463104vw;
  }
}
#top .top-special .more {
  max-width: 26.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top .top-special .more {
    max-width: 80.1526717557vw;
  }
}
@media screen and (max-width: 768px) {
  #top .top-special .more a {
    min-height: 10.1781170483vw;
  }
}
#top .top-special__imgs {
  gap: 3.125rem;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  #top .top-special__imgs {
    flex-direction: row;
    gap: 3.8167938931vw;
    margin-bottom: 12.7226463104vw;
  }
}
#top .top-special__imgs img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  #top .top-special__imgs img {
    aspect-ratio: 169/150;
    height: 100%;
    object-fit: cover;
    border-radius: 5.0890585242vw;
  }
}
#top .top-recruit {
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 768px) {
  #top .top-recruit {
    padding-bottom: 12.7226463104vw;
  }
}
#top .top-recruit .top-titleSet {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  #top .top-recruit .top-titleSet {
    margin-bottom: 7.6335877863vw;
  }
}
#top .top-recruit__links {
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  #top .top-recruit__links {
    gap: 5.0890585242vw;
  }
}
#top .top-recruit__links .btn {
  width: 100%;
}
#top .top-recruit__links .btn a {
  font-size: 1.5rem;
  min-height: 12.5rem;
  border-radius: 0;
  background: linear-gradient(to bottom, #019fe9 0%, #004fa1 100%);
}
@media screen and (max-width: 768px) {
  #top .top-recruit__links .btn a {
    font-size: 4.0712468193vw;
    min-height: 25.4452926209vw;
  }
}
#top .top-recruit__links .btn a:hover:after {
  background: linear-gradient(to top, #019fe9 0%, #004fa1 100%);
}/*# sourceMappingURL=styles.css.map */