:root {
  --color-black: #282828;
  --color-light-blue: #50a2d2;
  --color-gray-bg1: #f9f9f9;
  --color-gray-bg2: #f2f2f2;
  --color-gray-font: #7c7c7c;
  --color-gray-arrow: #bcbcbc;
  --color-gray-line: #e3e3e3;
  --color-navy: #174f98;
  --color-navy-bg1: #ecf0f5;
  --color-red: #d25050;
  --color-orange: #f9b023;
  --color-gradient: linear-gradient(
    310deg,
    #ebc06a,
    #42a2da 45.97%,
    #2562b2 97.18%
  );
  --color-gradient-en: linear-gradient(180deg, #fff, #ecf0f5);
  --font-gothic: "游ゴシック体", "Yu Gothic", YuGothic,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-en: "Marcellus", serif;
  --font-heading: "BIZ UDPGothic", sans-serif;
  --ease-outquart: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes up2show {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes up2hide {
  0% {
    clip-path: inset(0 0 0 0);
  }
  to {
    clip-path: inset(0 0 100% 0);
  }
}
@keyframes left2show {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    visibility: visible;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    translate: 0 10px;
    visibility: visible;
  }
  to {
    opacity: 1;
    translate: 0 0;
    visibility: visible;
  }
}
@keyframes fadeInBlur {
  0% {
    filter: blur(10px);
    opacity: 0;
    visibility: visible;
  }
  to {
    filter: blur(0);
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    translate: 0 -10px;
    visibility: visible;
  }
  to {
    opacity: 1;
    translate: 0 0;
    visibility: visible;
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    translate: 0 0;
    visibility: visible;
  }
  to {
    opacity: 0;
    translate: 0 10px;
    visibility: visible;
  }
}
@keyframes loop-images {
  0% {
    transform: translateZ(0);
    visibility: visible;
  }
  to {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(-10%);
  }
  to {
    transform: translateY(10%);
  }
}
@keyframes scaledown {
  0% {
    scale: 1;
  }
  to {
    scale: var(--scale-down, 0.9);
  }
} /*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  word-break: normal;
}
*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}
:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}
* {
  margin: 0;
  padding: 0;
}
hr {
  color: inherit;
  height: 0;
  overflow: visible;
}
details,
main {
  display: block;
}
summary {
  display: list-item;
}
small {
  font-size: 80%;
}
[hidden] {
  display: none;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline-width: 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}
pre {
  font-size: 1em;
}
b,
strong {
  font-weight: bolder;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
table {
  border-color: inherit;
  text-indent: 0;
}
input {
  border-radius: 0;
}
[disabled] {
  cursor: default;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  resize: vertical;
}
button,
input,
optgroup,
select,
textarea {
  font: inherit;
}
optgroup {
  font-weight: 700;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[role="button"],
[type="button"],
[type="reset"],
[type="submit"],
button {
  color: inherit;
  cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
[type="reset"],
[type="submit"],
button,
html [type="button"] {
  -webkit-appearance: button;
}
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select::-ms-value {
  color: currentColor;
}
legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}
img {
  border-style: none;
}
progress {
  vertical-align: baseline;
}
[aria-busy="true"] {
  cursor: progress;
}
[aria-controls] {
  cursor: pointer;
}
[aria-disabled="true"] {
  cursor: default;
}
.Firstview {
  background: linear-gradient(180deg, #fff 51.6%, hsla(0, 0%, 100%, 0));
  height: 848px;
  overflow: hidden;
  padding: 16px 20px 0;
  position: relative;
  width: 100%;
  z-index: 0;
}
.Firstview__inner {
  margin: 0 auto;
  position: relative;
  width: min(96%, 1536px);
}
.Firstview__jpx {
  align-items: center;
  background: #fff;
  display: flex;
  gap: 8px;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.Firstview__jpx .logo {
  display: block;
  flex: 0 0 auto;
  width: 50px;
}
.Firstview__jpx .text {
  color: var(--color-gray-font);
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.Firstview-slider {
  height: 720px;
  left: 0;
  margin-top: 64px;
  position: absolute;
  top: 64px;
  width: 100%;
  z-index: 999;
}
.Firstview-slider .slide {
  display: flex;
  width: 100%;
}
.Firstview-slider .slick-track {
  will-change: transform;
}
.Firstview-slider__item {
  flex: 0 0 auto;
  margin-right: 40px;
  position: relative;
  transition: width 0.3s linear;
  width: 330px;
}
.Firstview-slider__item.left-item .Firstview-slider__inner {
  left: 0;
}
.Firstview-slider__item.show .Firstview-slider__inner {
  left: 0;
  margin-top: 0;
  width: 423px;
}
.Firstview-slider__item.show .Firstview-slider__info .text {
  font-size: 18px;
}
.Firstview-slider__inner {
  display: block;
  flex: 0 0 auto;
  font-weight: 700;
  height: 100%;
  left: 90px;
  margin-top: 62px;
  position: relative;
  text-decoration: none;
  transition: all 0.6s !important;
  width: 100%;
}
.Firstview-slider__image {
  background: #ccc;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(54, 112, 147, 0.2);
  height: 100%;
  overflow: hidden;
  width: 100%;
}
.Firstview-slider__image > img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.Firstview-slider__info .text {
  display: block;
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 30px;
  transition: font-size 0.3s ease;
}
.Firstview-slider__drag {
  border-radius: 100vw;
  height: 106px;
  left: 0;
  margin: -53px 0 0 -53px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  transition: opacity 0.6s ease;
  width: 106px;
  will-change: transform;
  z-index: 999;
}
.Firstview-slider__drag img {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.Firstview-slider__drag.active {
  opacity: 1;
}
.Firstview-slider__ui {
  display: flex;
  justify-content: space-between;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 560px;
  z-index: 999;
}
.Firstview-slider__ui > * {
  flex: 0 0 auto;
}
.Firstview-slider__ui > :first-child {
  rotate: 180deg;
}
.Firstview-slider__ui .Firstview-slider__pause {
  display: none;
  width: 9.1145vw;
}
.Firstview-slider__ui .Firstview-slider__pause .play {
  display: none;
  padding-left: 0.5208vw;
  width: 3.125vw;
}
.Firstview-slider__ui .Firstview-slider__pause .pause {
  display: flex;
  width: 2.6041vw;
}
.Firstview-slider__ui .Firstview-slider__pause.slide-pause .play {
  display: flex;
}
.Firstview-slider__ui .Firstview-slider__pause.slide-pause .pause {
  display: none;
}
.Important {
  margin: 0 0 37px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
.Important__inner {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--color-red);
  border-radius: 20px;
  display: flex;
  gap: 32px;
  padding: 64px 48px;
}
.Important__title {
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
}
.Important__title .icon {
  flex: 0 0 auto;
  width: 36px;
}
.Important__title .text {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
}
.Important__list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.Important__item {
  display: flex;
  font-size: 18px;
  font-weight: 700;
  gap: 20px;
  line-height: 1.6;
}
.Important__item .icon {
  align-items: center;
  aspect-ratio: 1;
  display: flex;
  flex: 0 0 auto;
  height: auto;
  justify-content: center;
  width: 30px;
}
.Important__item .icon > * {
  flex: 0 0 auto;
}
.Important__item .icon .arrow {
  width: 14px;
}
.Important__item .icon .pdf {
  width: 20px;
}
.Promise {
  background: linear-gradient(
      rgba(236, 240, 245, 0.9),
      rgba(236, 240, 245, 0.9)
    ),
    url(../img/home/img-map.png) 50% / contain no-repeat;
  padding: 0 20px;
}
.Promise__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin: 0 auto;
  padding: 132px 0 132px 100px;
  width: min(100%, 1000px);
}
.Promise__flex {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: row-reverse;
  max-width: 807px;
  order: 3;
  width: 100%;
}
.Promise__title {
  margin-top: 32px;
  order: 2;
}
.Promise__catch {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  order: 1;
}
.Promise__button {
  margin-top: 80px;
  order: 3;
}
.Promise__body {
  flex: 0 1 auto;
  font-weight: 700;
  line-height: 1.9;
  margin: 0 0 0 auto;
}
.Promise__body > * + * {
  margin-top: 1.9em;
}
.Pickup {
  background: #ffffff;
  margin: 35px 0 0;
  overflow: hidden;
  padding: 0 20px;
  width: 100%;
}
.Pickup__inner {
  overflow: visible;
  padding: 74px 0px 55px;
  position: relative;
  z-index: 0;
}
.Pickup__inner:before {
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: -1;
}

/*
.Pickup__inner:after {
  background: #ffffff;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  right: 100%;
  top: 0;
  width: 100vw;
}
*/

.Pickup__header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 0 55px;
  position: relative;
}
.Pickup__item {
  width: 274px;
}
.Pickup__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.Pickup__image {
  aspect-ratio: 274/144;
  background: var(--color-gray-bg2);
  border-radius: 10px;
  height: auto;
  margin-bottom: 24px;
  order: 1;
  overflow: hidden;
  width: 100%;
}
.Pickup__image {
  border: 3px solid var(--color-gray-line);
}
.Pickup__image > * {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.Pickup__image.no_image {
  border: 3px solid var(--color-gray-line);
}
.Pickup__label {
  font-weight: 700;
  line-height: 1.7;
  margin-top: 10px;
  order: 4;
}
.Pickup__tags {
  order: 3;
  padding: 0;
}
.Pickup__info {
  color: var(--color-gray-font);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.7;
  margin-bottom: 10px;
  order: 2;
}
.Pickup__info > :not(:first-child):before {
  content: "/";
  margin-right: 8px;
}
.Pickup__ui {
  bottom: 0;
  display: flex;
  gap: 16px;
  position: absolute;
  right: 0;
}
.Pickup__ui > :first-child {
  rotate: 180deg;
}
.Pickup .splide__track {
  overflow: visible;
}
.Pickup .splide__arrows [data-disabled="true"] {
  pointer-events: none;
}
.Pickup .splide__arrows [data-disabled="true"] path {
  fill: var(--color-gray-line);
}
.News {
  margin-top: 104px;
  padding: 0 20px 150px;
}
.News__inner {
  align-items: flex-start;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  position: relative;
}
.News__header {
  background: hsla(0, 0%, 100%, 0.6);
  border-radius: 20px;
  flex: 0 0 auto;
  padding: 48px 28px;
  position: sticky;
  top: 120px;
  width: 270px;
}
.News__title {
  font-size: 22px;
}
.News__changer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0 48px;
}
.News__changer .button {
  align-items: center;
  color: var(--color-gray-font);
  display: flex;
  font-size: 18px;
  font-weight: 700;
  gap: 10px;
  width: 100%;
}
.News__changer .button .icon {
  flex: 0 0 auto;
  width: 14px;
}
.News__changer .button .icon .circle {
  fill: currentColor;
}
.News__body {
  flex: 0 1 auto;
  width: 855px;
}
.js-tab-button {
  transition: color 0.3s ease;
}
.js-tab-button .icon .circle {
  transition: fill 0.3s ease;
}
.js-tab-button.js-tab-active {
  color: var(--color-light-blue);
  position: relative;
  z-index: 10;
}
.js-tab-content {
  height: 1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s ease;
  visibility: hidden;
}
.js-tab-content.js-tab-active {
  height: auto;
  opacity: 1;
  pointer-events: auto;
  position: static;
  visibility: visible;
}
.Economic {
  background: var(--color-gradient);
  color: #fff;
  padding: 0 20px;
}
.Economic__inner {
  --text-color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 208px 0 198px;
}
.Economic__header {
  display: flex;
  flex-direction: column;
}
.Economic__title {
  margin-top: 54px;
  order: 2;
}
.Economic__catch {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  order: 1;
}
.Economic__button {
  margin-top: 80px;
  order: 3;
}
.Economic__body {
  flex: 0 1 auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}
.Economic__body > * + * {
  margin-top: 1.5em;
}
.Services {
  overflow: hidden;
  padding: 118px 20px 260px;
  position: relative;
  z-index: 0;
}
.Services__bg {
  display: grid;
  inset: 0;
  position: absolute;
  z-index: -1;
}
.Services__bg:after,
.Services__bg:before {
  content: "";
  display: block;
  inset: 0;
  position: absolute;
  z-index: 20;
}
.Services__bg > * {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.Services__loop {
  bottom: 0;
  display: flex;
  left: 0;
  opacity: 0.08;
  position: absolute;
  width: 100%;
}
.Services__loop .item {
  animation: loop-images 50s linear 0.5s infinite both;
  flex: 0 0 auto;
}
.Services__loop img {
  max-width: 2084px;
  width: 2084px;
}
.Services__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 82px;
  width: 100%;
}
.Services__link {
  aspect-ratio: 1 / 1.33334;
  background: var(--color-gray-bg1);
  border: 1px solid var(--color-gray-line);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 30px 45px 30px 45px;
  position: relative;
  z-index: 10;
}
.Services__link .icon {
  bottom: 20px;
  position: absolute;
  right: 20px;
  width: 25px;
  z-index: 0;
}
.Services__item {
  height: 100%;
  position: relative;
}
.Services__label {
  font-size: 19px;
  margin-bottom: 16px;
  min-height: 60px;
  letter-spacing: normal;
}
.Services__label > span {
  font-size: 18px;
}

.Services__text {
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.9;
  margin-top: 16px;
  max-width: 270px;
  font-size: 14px;
}
.Services__number {
  height: 100px;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: -1;
}
.Services__number svg,
.Services__number > img {
  height: 100%;
  width: auto;
}
.Services__number.num01 {
  right: 15px;
}
.Services__image .thumbnail {
  aspect-ratio: 160 / 120;
  width: 160px;
  margin: auto;
}
.Services__image .logo {
  aspect-ratio: 210 / 64;
  width: 210px;
  margin: 16px auto;
}
.Services__image figcaption {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.07em;
}
.Services .js-service-bg,
.Services .js-service-bg > * {
  opacity: 0;
  transition: opacity 1s ease;
}
.Services .js-service-bg > * {
  z-index: 0;
}
.Services .js-service-bg.js-service-active {
  opacity: 1;
}
.Challenge {
  --text-color: #fff;
  aspect-ratio: 1536/798;
  background: linear-gradient(
      255.64deg,
      rgba(14, 73, 121, 0.35),
      rgba(14, 73, 121, 0.9) 94.82%
    ),
    url(../img/home/bg-challenge.webp) 50% / cover no-repeat;
  height: auto;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  width: 100%;
  z-index: 0;
}
.Challenge__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: flex-start;
  padding-left: 9.6354166667vw;
  position: relative;
}
.Challenge__inner .note {
  bottom: 34px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  right: 0;
}
.Company {
  overflow: hidden;
  padding: 118px 20px 260px;
  position: relative;
  z-index: 0;
}
.Company__body {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 80px 0 0;
  width: 100%;
}
.Company__link {
  height: 100%;
}
.Company__promise {
  grid-column: 1 / -1;
  margin-bottom: 24px;
}
.Company__promise .Company__link {
  --text-color: #fff;
  background: var(--color-gradient);
  color: #fff;
  height: 100%;
  overflow: hidden;
  padding: 100px 110px;
  position: relative;
  z-index: 0;
}
.Company__promise .Company__link:before {
  aspect-ratio: 648/362;
  background: url(../img/home/bg-company.png) 0 0 / contain no-repeat;
  content: "";
  display: block;
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: -5px;
  width: 648px;
}
.Company__promise .Company__label {
  border-bottom: 0;
  font-size: 37px;
  padding: 0;
}
.Company__promise .Company__text {
  font-size: 18px;
}
.Airline {
  background: var(--color-gradient);
  color: #fff;
  padding: 0 20px;
}
.Airline__inner {
  --text-color: #fff;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: 208px 0 198px;
}
.Airline__header {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
}
.Airline__title {
  margin-top: 32px;
  order: 2;
}
.Airline__catch {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  order: 1;
}
.Airline__text {
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.7;
  margin-top: 40px;
  order: 3;
}
.Airline__button {
  margin-top: 80px;
  order: 4;
}
.Airline__body {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, 130px);
  width: 620px;
}
.Ir {
  overflow: hidden;
  padding: 120px 20px 172px;
  position: relative;
  z-index: 0;
}
.Ir__body {
  align-items: flex-start;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-top: 64px;
}
.Ir__list {
  display: grid;
  flex: 0 1 auto;
  grid-template-columns: repeat(12, 1fr);
  width: 815px;
}
.Ir__list > * {
  grid-column: span 4;
}
.Ir__list > :first-of-type,
.Ir__list > :nth-of-type(2) {
  grid-column: span 6;
}
.Ir__list > :first-of-type .Ir__link,
.Ir__list > :nth-of-type(2) .Ir__link {
  aspect-ratio: 408/400;
  display: block;
}
.Ir__list > :first-of-type .Ir__info,
.Ir__list > :nth-of-type(2) .Ir__info {
  position: static;
}
.Ir__list > :first-of-type .icon,
.Ir__list > :nth-of-type(2) .icon {
  bottom: 32px;
  position: absolute;
  right: 32px;
  width: 25px;
}
.Ir__link {
  align-items: center;
  aspect-ratio: 270/150;
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 15px;
  display: flex;
  gap: 12px;
  height: auto;
  justify-content: center;
  overflow: hidden;
  padding: 40px;
  position: relative;
}
.Ir__link .icon {
  flex: 0 0 auto;
  width: 25px;
}
.Ir__link .text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}
.Ir__info {
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.Ir__label {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}
.Ir__text {
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.7;
  margin-top: 8px;
}
.Ir__image {
  flex: 0 0 auto;
  margin-bottom: 32px;
}
.Ir__news {
  background: #fff;
  border-radius: 20px;
  flex: 0 1 auto;
  padding: 35px 50px;
  width: 325px;
}
.Ir-News__title {
  font-size: 22px;
}
.Ir-News__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0 24px;
}
.Ir-News__item {
  border-bottom: 1px solid var(--color-gray-line);
  padding-bottom: 14px;
}
.Ir-News__info {
  align-items: center;
  display: flex;
  gap: 8px;
}
.Ir-News__date {
  color: var(--color-gray-font);
  font-size: 13px;
  font-weight: 700;
}
.Ir-News__label {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 16px;
  letter-spacing: normal;
  line-height: 1.7;
  margin-top: 4px;
}
.Ir-News__label .icon {
  flex: 0 0 auto;
  width: 20px;
}
.Sustainability {
  background: #fff;
  padding: 120px 20px;
}
.Sustainability__body {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 72px;
}
.Sustainability__body > :first-of-type {
  grid-column: 1 / -1;
  margin-top: 0;
}
.Sustainability__body > :first-of-type .Sustainability__link:before {
  aspect-ratio: 296/89;
  background: url(../img/home/text-sports.png) 0 0 / contain no-repeat;
  bottom: -30px;
  height: auto;
  width: 296px;
}
.Sustainability__body > :nth-of-type(2) .Sustainability__link:before {
  aspect-ratio: 234/72;
  background: url(../img/home/text-sdgs.png) 0 0 / contain no-repeat;
  bottom: -14px;
  height: auto;
  width: 234px;
}
.Sustainability__body > :nth-of-type(3) .Sustainability__link:before {
  aspect-ratio: 180/72;
  background: url(../img/home/text-csr.png) 0 0 / contain no-repeat;
  bottom: -14px;
  height: auto;
  width: 180px;
}
.Sustainability__link {
  border-radius: 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 222px;
  justify-content: center;
  margin-top: -1px;
  overflow: hidden;
  padding: 20px 120px;
  position: relative;
  z-index: 0;
}
.Sustainability__link:before {
  content: "";
  opacity: 0.09;
  pointer-events: none;
  position: absolute;
  right: 0;
}
.Sustainability__link .icon {
  flex: 0 0 auto;
  width: 25px;
}
.Sustainability__label {
  align-items: center;
  display: flex;
  gap: 22px;
}
.Sustainability__label .text {
  font-family: var(--font-heading);
  font-size: 26px;
}
.Sustainability__text {
  font-weight: 700;
  line-height: 1.7;
  margin-top: 8px;
}
.Sustainability__image {
  inset: 0;
  position: absolute;
  z-index: -1;
}
.Sustainability__image img,
.Sustainability__image picture {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.Recruit {
  background: url(../img/home/bg-recruit.webp) bottom/cover no-repeat;
  overflow: hidden;
  padding: 120px 20px;
  position: relative;
  width: 100%;
}
.Recruit__inner {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.Recruit__header {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
}
.Recruit__title {
  margin-top: 32px;
  order: 2;
}
.Recruit__catch {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  order: 1;
}
.Recruit__button {
  margin-top: 80px;
  order: 4;
}
.Recruit__image {
  aspect-ratio: 700/500;
  display: grid;
  flex: 0 1 auto;
  gap: 2px;
  grid-template-columns: repeat(2, 1fr);
  width: 700px;
}
.Recruit__image .mask {
  aspect-ratio: 350/250;
  clip-path: url(#clipshape);
  overflow: hidden;
  position: relative;
}
.Recruit__image .mask img {
  aspect-ratio: 700/500;
  max-width: 700px;
  position: absolute;
  transform-origin: center;
  width: 200%;
}
.Recruit__image .mask:nth-of-type(2) img {
  right: 0;
  top: 0;
}
.Recruit__image .mask:nth-of-type(3) img {
  bottom: 0;
  left: 0;
}
.Recruit__image .mask:nth-of-type(4) img {
  bottom: 0;
  right: 0;
}
.Recruit .maskShape {
  position: absolute;
}
.Recruit .maskShapePath {
  scale: 1;
  transition: scale 0.8s var(--ease-outquart);
}
.Recruit .js-recruit-mouseon .maskShapePath {
  scale: 0.92;
}
.Group {
  overflow: hidden;
  padding: 118px 20px 260px;
  position: relative;
  z-index: 0;
}
.Group__loop {
  bottom: 0;
  display: flex;
  left: 0;
  opacity: 0.08;
  position: absolute;
  width: 100%;
}
.Group__loop .item {
  animation: loop-images 50s linear 0.5s infinite both;
  flex: 0 0 auto;
}
.Group__loop img {
  max-width: 2084px;
  width: 2084px;
}
.Group__body {
  position: relative;
}
.Group__list {
  overflow: visible;
  width: 100%;
}
.Group__grid {
  display: grid;
  gap: 38px;
  grid-template-columns: auto auto;
  grid-template-rows: 1fr 1fr;
}
.Group__item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  padding: 0 20px;
  width: 200px;
}
.Group__item.empty_item {
  pointer-events: none;
  visibility: hidden;
}
.Group__image {
  aspect-ratio: 160/133;
  background: #fff;
  height: auto;
  width: 100%;
}
.Group__image img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}
.Group__info {
  border-top: 1px solid var(--color-gray-line);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 0;
}
.Group__info .label {
  letter-spacing: normal;
  line-height: 1.7;
}
.Group__info .text {
  color: var(--color-gray-font);
  line-height: 1.7;
}
.Group__ui {
  display: flex;
  gap: 16px;
  margin: 62px 0 24px auto;
  width: -moz-fit-content;
  width: fit-content;
}
.Group__ui > * {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid var(--color-gray-line);
  border-radius: 100vw;
  display: flex;
  height: auto;
  justify-content: center;
  width: 54px;
}
.Group__ui > :first-child {
  rotate: 180deg;
}
.Group__ui > * img,
.Group__ui > * svg {
  width: 20px;
}
.Group .splide__track {
  overflow: visible;
}
.Group .splide__arrows [data-disabled="true"] {
  pointer-events: none;
}
.Group .splide__arrows [data-disabled="true"] path {
  fill: var(--color-gray-line);
}
.Home__bgwhite {
  background: #fff;
}
.Home-logo {
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 58px;
  transition: opacity 0.3s ease;
  translate: -50% 0;
  z-index: 9999;
}
.Home-logo__image {
  width: 306px;
}
.Home-logo__image img {
  backface-visibility: hidden;
}
.Home .Header__logo {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.Home.js-header-logo-pos-hide .Header__logo {
  opacity: 1;
}
.Home.js-nav-active .Home-logo {
  opacity: 0;
}

/* 250805バナーを追従させる */
.floatLabel {
  position: fixed;
  display: inline-block;
  bottom: 10px;
  right: 0;
  z-index: 30;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
}

.floatLabel__close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(51, 51, 51, 0.75);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  top: -30px;
  right: 10px;
  z-index: 10;
  color: #fff;
  font-family: Material Icons;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05), 0 8px 14px rgba(0, 0, 0, 0.08);
}

.floating-banner__image {
  max-width: 100%; /* 画像の最大幅 */
}
@media screen and (max-width: 990px) {
  /* タブレット用のブレイクポイントを指定 */
  .floating-banner {
    display: none; /* タブレットサイズ以下でPC用のバナーを非表示に */
  }
}

@media screen and (max-width: 560px) {
  .floating-banner {
    display: block; /* 消していたバナーを表示させる */
    width: 320px; /* スマホの画面幅いっぱいにバナーを表示 */
  }
  .floatLabel {
    width: 320px; /* ←画像と同じ幅に */
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .floatLabel__close {
    right: 6px;
  }
}
/* 250805バナーを追従させる */

@media screen and (min-width: 769px) {
  .Firstview-slider .slick-track {
    left: -45px;
  }
}
@media screen and (max-width: 1100px) {
  .Services__link {
    aspect-ratio: auto;
    height: 100%;
  }
  .Ir__list > :first-of-type .Ir__link,
  .Ir__list > :nth-of-type(2) .Ir__link {
    aspect-ratio: auto;
    height: 100%;
  }
  .Home-logo {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1024px) {
  .Important__inner {
    flex-direction: column;
  }
  .Promise__inner {
    padding-left: 40px;
  }
  .News__header {
    top: 0;
  }
  .Airline__header {
    flex: 0 1 auto;
  }
  .Airline__body {
    grid-template-columns: repeat(3, 1fr);
  }
  .Ir__body {
    flex-direction: column;
    justify-content: flex-start;
  }
  .Ir__list {
    width: 100%;
  }
  .Ir__info {
    margin: 0 auto;
  }
  .Ir__news {
    width: 100%;
  }
  .Sustainability__link {
    padding: 20px 60px;
  }
}
@media screen and (max-width: 768px) {
  .Firstview {
    height: 166.6666vw;
    padding: 0 6.5104vw;
  }
  .Firstview__jpx {
    display: none;
    gap: 1.0416vw;
    padding: 0.5208vw 1.5625vw 0.5208vw 1.1718vw;
  }
  .Firstview__jpx .logo {
    width: 4.9479vw;
  }
  .Firstview__jpx .text {
    font-size: 2.0833vw;
  }
  .Firstview-slider {
    height: auto;
    left: -11.7188vw;
    margin-top: 0;
    top: 15.3645vw;
    width: calc(100% + 11.7187vw);
  }
  .Firstview-slider__item {
    margin-right: 7.2916vw;
    padding: 7.2916vw 0 8.3333vw;
    width: 59.8958vw;
  }
  .Firstview-slider__item.show .Firstview-slider__inner {
    width: 73.8281vw;
  }
  .Firstview-slider__item.show .Firstview-slider__info .text {
    font-size: 3.9062vw;
  }
  .Firstview-slider__inner {
    left: 13.0208vw;
    margin-top: 11.1979vw;
  }
  .Firstview-slider__info .text {
    font-size: 2.9947vw;
    margin-top: 4.1666vw;
  }
  .Firstview-slider__drag {
    display: none;
  }
  .Firstview-slider__ui {
    align-items: center;
    bottom: 10.4166vw;
    gap: 7.8125vw;
    right: 6.5104vw;
    top: auto;
    translate: -50% 0;
    width: -moz-fit-content;
    width: fit-content;
  }
  .Firstview-slider__ui .Firstview-slider__pause {
    display: flex;
  }
  .Important {
    margin: 0 0 -6.5105vw;
    padding: 0 6.5104vw;
  }
  .Important__inner {
    border-radius: 2.6041vw;
    gap: 4.1666vw;
    padding: 8.3333vw 6.25vw;
  }
  .Important__title {
    gap: 2.0833vw;
  }
  .Important__title .icon {
    empty-cells: 4.6875vw;
  }
  .Important__title .text {
    font-size: 4.1666vw;
  }
  .Important__list {
    gap: 3.125vw;
  }
  .Important__item {
    font-size: 3.3854vw;
    gap: 6.5104vw;
    line-height: 1.7;
  }
  .Important__item .icon {
    width: 4.5572vw;
  }
  .Important__item .icon .arrow {
    width: 4.5572vw;
  }
  .Important__item .icon .pdf {
    width: 4.5572vw;
  }
  .Promise {
    background-position: 0 0, top;
    padding: 0 6.5104vw;
  }
  .Promise__inner {
    flex-direction: column;
    gap: 0;
    padding: 22.6562vw 0 15.625vw;
    width: 100%;
  }
  .Promise__flex {
    align-items: flex-start;
    flex-direction: column-reverse;
    margin-top: 8.3333vw;
  }
  .Promise__title {
    margin-top: 4.1666vw;
  }
  .Promise__catch {
    font-size: 6.1197vw;
  }
  .Promise__button {
    margin: 0 0 0 auto;
  }
  .Promise__body {
    font-size: 3.9062vw;
    letter-spacing: normal;
    line-height: 2;
    margin: 7.8125vw 0 0;
  }
  .Pickup {
    margin: 0;
    padding: 0;
  }
  .Pickup__inner {
    background: #fff;
    padding: 10.4166vw 6.5104vw 31.25vw;
  }
  .Pickup__inner:before {
    display: none;
  }
  .Pickup__inner:after {
    display: none;
  }
  .Pickup__header {
    gap: 4.1666vw;
    margin-bottom: 7.1614vw;
    position: static;
  }
  .Pickup__item {
    width: 65.8854vw;
  }
  .Pickup__image {
    border-radius: 2.6041vw;
    margin-bottom: 4.1666vw;
  }
  .Pickup__label {
    font-size: 3.9062vw;
  }
  .Pickup__info {
    font-size: 2.9947vw;
    gap: 1.8229vw;
    margin-bottom: 3.125vw;
  }
  .Pickup__info > :not(:first-child):before {
    margin-right: 1.8229vw;
  }
  .Pickup__ui {
    bottom: 10.4166vw;
    gap: 4.1666vw;
    right: 6.5104vw;
  }
  .News {
    margin-top: 16.6666vw;
    padding: 0 6.5104vw;
  }
  .News__inner {
    flex-direction: column;
    gap: 5.7291vw;
    padding-bottom: 44.2708vw;
  }
  .News__header {
    background: transparent;
    border-radius: 0;
    padding: 0;
    position: static;
    width: 100%;
  }
  .News__title {
    font-size: 5.4687vw;
  }
  .News__button {
    bottom: 14.5833vw;
    position: absolute;
    right: 0;
  }
  .News__changer {
    flex-direction: row;
    gap: 1.0416vw;
    margin: 5.4687vw 0 0;
    overflow: hidden;
    position: relative;
  }
  .News__changer:before {
    background: var(--color-light-blue);
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    width: 100vw;
    z-index: 2;
  }
  .News__changer .button {
    align-items: center;
    background: var(--color-navy-bg1);
    border: 2px solid var(--color-gray-line);
    border-bottom: 0;
    border-radius: 1.0416vw 1.0416vw 0 0;
    display: flex;
    flex: 1 1 auto;
    font-size: 4.1666vw;
    gap: 1.302vw;
    height: 10.9375vw;
    justify-content: center;
    position: relative;
    width: 100%;
  }
  .News__changer .button .icon {
    display: none;
    width: 3.9062vw;
  }
  .News__body {
    width: 100%;
  }
  .js-tab-button.js-tab-active {
    border-color: currentColor;
  }
  .Economic {
    background-position: 0 0, top;
    padding: 0 6.5104vw;
  }
  .Economic__inner {
    flex-direction: column;
    gap: 8.5937vw;
    padding: 22.6562vw 0 15.625vw;
  }
  .Economic__title {
    margin-top: 4.1666vw;
  }
  .Economic__catch {
    font-size: 6.1197vw;
  }
  .Economic__button {
    margin: 8.3333vw 0 0 auto;
  }
  .Economic__body {
    font-size: 3.9062vw;
    letter-spacing: normal;
    line-height: 2;
  }
  .Services {
    padding: 15.625vw 6.5104vw 30.5989vw;
  }
  .Services__loop img {
    max-width: 271.3541vw;
    width: 271.3541vw;
  }
  .Services__body {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 8.3333vw;
  }
  .Services__link {
    border-radius: 1.9531vw;
    min-height: 224px;
    padding: 16px;
  }
  .Services__link .icon {
    bottom: 4.1666vw;
    right: 4.1666vw;
    width: 3.2552vw;
  }
  .Services__label {
    font-size: 3.077vw;
    min-height: 3.99vh;
    margin-bottom: 8px;
  }
  .Services__label > span {
    font-size: 2.56411vw;
  }
  .Services__text {
    font-size: 2.9947vw;
    line-height: 1.7;
    margin-top: 1.8229vw;
  }
  .Services__number {
    height: 11.4583vw;
  }
  .Services__image .thumbnail {
    width: 90px;
  }

  .Services__image .logo {
    width: 118px;
    margin: 1vh auto;
  }

  .Services__image figcaption {
    font-size: 2.56411vw;
  }

  .Challenge {
    aspect-ratio: 768/1000;
    background: linear-gradient(
        255.64deg,
        rgba(14, 73, 121, 0.35),
        rgba(14, 73, 121, 0.9) 94.82%
      ),
      url(../img/home/bg-challenge_sp.webp) 50% / cover no-repeat;
    padding: 0 6.5104vw;
  }
  .Challenge__inner {
    padding-left: 6.5104vw;
  }
  .Challenge__inner .note {
    bottom: 2.6041vw;
  }
  .Company {
    padding: 14.5833vw 6.5104vw 15.625vw;
  }
  .Company__body {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 8.3333vw;
  }
  .Company__promise {
    margin-bottom: 5.2083vw;
  }
  .Company__promise .Company__link {
    padding: 10.677vw 6.5104vw;
  }
  .Company__promise .Company__link:before {
    right: -11.9792vw;
    top: -0.6511vw;
    width: 84.375vw;
  }
  .Company__promise .Company__label {
    font-size: 4.1666vw;
  }
  .Company__promise .Company__text {
    font-size: 2.9947vw;
  }
  .Airline {
    background-position: 0 0, top;
    padding: 0 6.5104vw;
  }
  .Airline__inner {
    flex-direction: column;
    gap: 8.5937vw;
    padding: 22.6562vw 0 15.625vw;
  }
  .Airline__title {
    margin-top: 4.1666vw;
  }
  .Airline__catch {
    font-size: 6.1197vw;
  }
  .Airline__text {
    font-size: 3.9062vw;
    line-height: 2;
  }
  .Airline__button {
    margin: 8.3333vw 0 0 auto;
  }
  .Airline__body {
    gap: 4.1666vw;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }
  .Ir {
    padding: 14.5833vw 6.5104vw 15.625vw;
  }
  .Ir__body {
    gap: 8.3333vw;
  }
  .Ir__list > :first-of-type .Ir__link,
  .Ir__list > :nth-of-type(2) .Ir__link {
    padding: 4.9479vw 2.8645vw 8.3333vw;
  }
  .Ir__list > :first-of-type .Ir__info,
  .Ir__list > :nth-of-type(2) .Ir__info {
    padding: 0;
  }
  .Ir__list > :first-of-type .icon,
  .Ir__list > :nth-of-type(2) .icon {
    bottom: 3.9062vw;
    right: 3.9062vw;
    width: 3.2552vw;
  }
  .Ir__link {
    aspect-ratio: 1;
    border-radius: 1.9531vw;
    padding: 3.3854vw;
  }
  .Ir__link .icon {
    bottom: 3.9062vw;
    position: absolute;
    right: 3.9062vw;
    width: 3.2552vw;
  }
  .Ir__link .text {
    font-size: 3.3854vw;
  }
  .Ir__info {
    padding: 4.5572vw 3.2552vw 3.2552vw;
  }
  .Ir__label {
    font-size: 3.3854vw;
  }
  .Ir__text {
    font-size: 2.6041vw;
    margin-top: 1.8229vw;
  }
  .Ir__image {
    margin-bottom: 2.0833vw;
  }
  .Ir__news {
    padding: 6.25vw;
  }
  .Ir-News__title {
    font-size: 5.4687vw;
  }
  .Ir-News__list {
    gap: 5.2083vw;
    margin: 4.1666vw 0 8.3333vw;
  }
  .Ir-News__item {
    padding-bottom: 3.5156vw;
  }
  .Ir-News__info {
    gap: 2.6041vw;
  }
  .Ir-News__date {
    font-size: 2.9947vw;
  }
  .Ir-News__label {
    font-size: 3.9062vw;
    margin-top: 1.8229vw;
  }
  .Ir-News__label .icon {
    width: 5.2083vw;
  }
  .Ir-News__button {
    margin-left: auto;
  }
  .Sustainability {
    padding: 14.5833vw 6.5104vw;
  }
  .Sustainability__body {
    margin-top: 8.3333vw;
  }
  .Sustainability__body > :first-of-type .Sustainability__link {
    padding: 13.0208vw 12.3697vw;
  }
  .Sustainability__body > :first-of-type .Sustainability__link:before {
    bottom: -3.9063vw;
    width: 38.5416vw;
  }
  .Sustainability__body > :nth-of-type(2) .Sustainability__link:before {
    bottom: -1.823vw;
    width: 30.4687vw;
  }
  .Sustainability__body > :nth-of-type(3) .Sustainability__link:before {
    bottom: -1.823vw;
    width: 23.4375vw;
  }
  .Sustainability__link {
    border-radius: 1.9531vw;
    height: 100%;
    padding: 12.7604vw 5.7291vw;
    white-space: nowrap;
  }
  .Sustainability__link .icon {
    width: 3.2552vw;
  }
  .Sustainability__label .text {
    font-size: 4.1666vw;
  }
  .Sustainability__text {
    font-size: 2.9947vw;
    margin-top: 1.8229vw;
  }
  .Recruit {
    padding: 15.625vw 6.5104vw;
  }
  .Recruit__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8.5937vw;
  }
  .Recruit__header {
    width: 100%;
  }
  .Recruit__title {
    margin-top: 4.1666vw;
  }
  .Recruit__catch {
    font-size: 6.1197vw;
  }
  .Recruit__button {
    margin: 8.3333vw 0 0 auto;
  }
  .Recruit__image {
    width: 100%;
  }
  .Group {
    padding: 15.625vw 6.5104vw 30.5989vw;
  }
  .Group__loop img {
    max-width: 271.3541vw;
    width: 271.3541vw;
  }
  .Group__body {
    margin-top: 9.8958vw;
    padding-bottom: 22.7864vw;
  }
  .Group__grid {
    gap: 4.9479vw;
  }
  .Group__item {
    border-radius: 1.9531vw;
    padding: 0 3.125vw;
    width: 41.276vw;
  }
  .Group__info {
    font-size: 2.6041vw;
    letter-spacing: normal;
    padding: 3.125vw 0.5859vw 1.5625vw;
  }
  .Group__ui {
    bottom: 0;
    gap: 4.1666vw;
    position: absolute;
    right: 0;
  }
  .Group__ui > * {
    width: 14.3229vw;
  }
  .Group__ui > * img,
  .Group__ui > * svg {
    width: 5.2083vw;
  }
  .Home-logo {
    left: 0;
    padding: 0;
    top: 12.5vw;
    translate: 0 0;
    width: 100%;
  }
  .Home-logo__image {
    margin: 0 auto;
    width: 46.3541vw;
  }
}
@media (hover: hover) {
  .Services .Services__catch,
  .Services .Services__title {
    transition: color 0.3s ease;
  }
  .Services .Services__panel .Services__link {
    transition: background-color 0.3s ease, scale 0.8s var(--ease-outquart);
  }
  .Services .Services__panel .Services__link .Services__number path {
    transition: fill 0.3s ease;
  }
}

/*# sourceMappingURL=home.css.map */
