@import url("https://fonts.googleapis.com/css2?family=Spline+Sans:wght@300..700&family=Noto+Sans+JP:wght@100..900&display=swap");
/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio, input, select):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

html {
  font-size: 62.5%;
  scrollbar-gutter: stable;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.168rem + 0.3vw, 1.6rem);
  line-height: 1.8;
  font-weight: 400;
  background-color: #F5F5F5;
}
body.menu-open {
  overflow: hidden;
}
body .coming {
  pointer-events: none;
  opacity: 0.5;
}

.en {
  font-family: "Spline Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

a {
  transition: all 0.3s ease;
}

a img {
  transition: all 0.3s ease;
}

a:hover {
  color: #005BAC;
}

a.textlink {
  color: #005587;
  text-decoration: underline;
  transition: all 0.2s ease;
}
a.textlink:hover {
  color: #00BFB3;
}

.ly_container {
  position: relative;
}

.inview {
  opacity: 0;
}

.inviewwrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.inview.active {
  animation: fadeInup 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.noanimation {
  opacity: 1;
  animation: none;
}

.inview.active.left {
  animation: fadeInLeft 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.fade.active {
  animation: fadeIn 1s ease-out;
  animation-fill-mode: forwards;
}

.inview.clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease-in;
  transition-delay: 0.3s;
  opacity: 1;
}

.inview.active.clip {
  clip-path: inset(0 0 0 0);
  animation: none;
}

.inview.clip.delay01 {
  transition-delay: 0.6s;
}

.inview.clip.delay02 {
  transition-delay: 0.9s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInup {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.delay01 {
  animation-delay: 0.3s !important;
}

.delay02 {
  animation-delay: 0.6s !important;
}

.delay03 {
  animation-delay: 0.9s !important;
}

._spShowImportant {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .inviewwrap {
    position: static;
  }
  ._pcShowImportant {
    display: none !important;
  }
  ._spShowImportant {
    display: block !important;
  }
}
.slick-dots {
  position: absolute;
  bottom: -35px;
  right: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #BFBFBF;
}

.slick-dots li.slick-active button:before {
  background-color: #133BA3;
}

.slash-title {
  display: inline-block;
  padding: 10px 50px 10px 20px;
  font-size: clamp(1.2rem, 0.736rem + 0.6vw, 1.6rem);
  font-size: clamp(1.2rem, 0.736rem + 0.6vw, 1.6rem);
  font-weight: bold;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, calc(100% - 33px) 100%, 0 100%);
  background: linear-gradient(90deg, #133BA3 0%, #3865DB 100%);
}

a .zoom {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 0;
  border-radius: 6px;
}
a .zoom img {
  transform-origin: center;
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

a.zoom .image {
  display: block;
  line-height: 0;
  overflow: hidden;
}

a.zoom:hover img,
a:hover .zoom img {
  transform: scale(1.05);
  opacity: 1;
}

a.blank[target=_blank]::after {
  right: 12px;
  content: "";
  background: url(//company/jp/recruit/career/assets/image/blank.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 14px;
  height: auto;
  border: none;
  transform: none;
  margin-left: 5px;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.inner {
  position: relative;
  max-width: calc(1332px + 6%);
  margin: auto;
  padding: 0 3%;
}
.inner.short {
  max-width: calc(1200px + 6%);
}
.inner.over-right {
  max-width: 1360px;
  padding-right: 0;
  padding-left: 3%;
}
.inner.over-right .image {
  margin-right: calc(51% - 50vw);
}
@media (min-width: 1332px) {
  .inner.over-right {
    max-width: calc(1332px + 6%);
  }
}
@media (min-width: 1360px) {
  .inner.over-right {
    max-width: 1360px;
    padding-left: 14px;
  }
  .inner.over-right .image {
    margin-right: 0;
  }
}
.inner.over-left {
  max-width: 1360px;
  padding-left: 0;
  padding-right: 3%;
}
.inner.over-left .image {
  margin-left: calc(51% - 50vw);
}
@media (min-width: 1332px) {
  .inner.over-left {
    max-width: calc(1332px + 6%);
  }
}
@media (min-width: 1360px) {
  .inner.over-left {
    max-width: 1360px;
    padding-right: 14px;
  }
  .inner.over-left .image {
    margin-left: 0;
  }
}

main {
  padding-top: 100px;
}
main.no-hp {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 70px;
  }
  main p {
    font-size: 1.5rem;
  }
}
main #breadcrumb {
  position: absolute;
  padding: 20px 45px;
  z-index: 2;
}
main #breadcrumb ul {
  display: flex;
}
main #breadcrumb ul li::after {
  content: ">";
  margin: 0 1ex;
}
main #breadcrumb ul li:last-child::after {
  content: "";
}
main #breadcrumb.white {
  color: #fff;
}
main .round-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px 8px 20px;
  border: 1px solid #fff;
  border-radius: 50px;
  font-size: clamp(1.175rem, 1.012rem + 0.2vw, 1.3rem);
  color: #fff;
}
main .round-btn.bk {
  border: 1px solid #000;
  color: #000;
}
main .round-btn.bk .round-arrow-btn {
  background-color: #000;
}
main .round-btn.bk .round-arrow-btn::before, main .round-btn.bk .round-arrow-btn::after {
  background-color: #fff;
  border-color: #fff;
}
main .round {
  line-height: 0;
  overflow: hidden;
  border-radius: 10px;
}
main .mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 32px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  main .mark {
    width: 26px;
    height: 26px;
  }
}
main .mark.bk {
  background-color: #000;
}
main .mark.bk::before {
  background-color: #fff;
}
main .mark.bk::after {
  border-color: #fff;
}
main .mark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background-color: #000;
  transform: translate(-50%, -50%);
}
main .mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: translate(-50%, -50%) rotate(45deg);
}
main .mark.blank::before {
  content: "";
  display: block;
  position: absolute;
  width: 8.3px;
  height: 7.4px;
  background: url(/saiyo/assets/image/blank.svg) no-repeat center center/100% auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
main .mark.blank::after {
  content: none;
}
main a:hover .round-arrow-btn {
  background-color: #005BAC;
}
main a:hover .round-arrow-btn::before {
  background-color: #fff;
}
main a:hover .round-arrow-btn::after {
  border-color: #fff;
}
main .basic-visual {
  padding: 3rem 0 6rem;
}
@media screen and (max-width: 960px) {
  main .basic-visual {
    padding: 2rem 5% 3rem;
  }
}
main .basic-visual .title {
  max-width: 1200px;
  margin: auto;
}
main .basic-visual .title .category {
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
  font-weight: 500;
  margin-bottom: 3rem;
}
@media screen and (max-width: 960px) {
  main .basic-visual .title .category {
    margin-bottom: 1rem;
  }
}
main .basic-visual .title h1 {
  font-size: clamp(4.25rem, 2.952rem + 1.7vw, 5.4rem);
  line-height: 1.3;
  margin-bottom: 4rem;
}
@media screen and (max-width: 960px) {
  main .basic-visual .title h1 {
    font-size: 3rem;
    margin-bottom: 0;
  }
}
main .circle {
  position: absolute;
  width: 70vw;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 10px solid #EEB83F;
}
@media screen and (max-width: 767px) {
  main .circle {
    border-width: 5px;
  }
}
main p {
  text-align: justify;
}

/* HEADER
================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 500;
  transition: all 0.2s ease;
  padding: 0 0 0 1%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #header {
    display: flex;
    height: 70px;
    padding-left: 0;
  }
}
#header .header-layout-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 200;
}
@media screen and (max-width: 970px) {
  #header .header-layout-main {
    padding-block: 0;
  }
}
@media screen and (max-width: 767px) {
  #header .header-layout-main {
    padding: 0 0 0 0;
  }
}
#header .header-layout-main .header-logo {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#header .header-layout-main .header-logo .logo {
  display: inline-block;
  line-height: 1;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-logo .logo {
    width: 200px;
    margin-right: 10px;
    height: auto;
  }
}
#header #header-navi {
  flex: 1;
  margin-right: 5px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3%;
}
@media screen and (max-width: 1280px) {
  #header #header-navi {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #header #header-navi {
    display: none;
    padding-bottom: 0;
    flex: 1;
  }
}
#header #header-navi ul.header-mega-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3%;
  padding: 7px 2%;
  width: 100%;
  height: 100%;
}
#header #header-navi ul.header-mega-menu .parent-title {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
}
#header #header-navi ul.header-float-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3%;
  padding: 7px 2%;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1360px) {
  #header #header-navi ul.header-float-menu {
    gap: 1%;
  }
}
#header #header-navi ul.header-float-menu .parent-menu {
  position: relative;
  cursor: pointer;
}
#header #header-navi ul.header-float-menu .parent-menu .parent-title {
  font-weight: 400;
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  padding: 20px 0;
  position: relative;
}
#header #header-navi ul.header-float-menu .parent-menu .parent-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #005BAC;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#header #header-navi ul.header-float-menu .parent-menu .parent-title:hover::after {
  transform: scaleX(1);
}
#header #header-navi ul.header-float-menu .parent-menu a {
  font-size: clamp(1.1rem, 1.3vw, 1.4rem);
  text-align: center;
}
#header #header-navi ul.header-float-menu .parent-menu a:hover {
  color: #005BAC;
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: calc(100% + 15px);
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 0 15px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu.active {
  animation: menuFadeIn 0.2s ease forwards;
  pointer-events: visible;
}
@keyframes menuFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu .flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 15px;
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu li {
  width: 100%;
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu li .child-title,
#header #header-navi ul.header-float-menu .parent-menu .child-menu li a {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  display: block;
  text-align: left;
  padding: 6px 14px;
  white-space: nowrap;
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu li .child-title span,
#header #header-navi ul.header-float-menu .parent-menu .child-menu li a span {
  display: inline-block;
  margin-inline: 6px;
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu li .child-title {
  cursor: default;
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu li .grand-child-menu li a {
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
  padding: 4px 14px;
}
#header #header-navi .base-ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1280px) {
  #header #header-navi .base-ul {
    justify-content: flex-end;
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #header #header-navi .base-ul {
    width: auto;
    margin-bottom: 0;
    padding: 0;
  }
}
#header #header-navi .base-ul .mo {
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
}
#header #header-navi .base-ul .mo:focus-visible {
  outline: solid;
}
#header #header-navi .base-ul .mo:hover > span {
  color: #005BAC;
}
#header #header-navi .base-ul .mo > span, #header #header-navi .base-ul .mo > a {
  cursor: pointer;
  font-size: clamp(1.2rem, 1vw, 1.5rem);
  display: block;
  line-height: 1.3;
  display: flex;
  align-items: center;
  height: 100%;
}
#header #header-submenu {
  width: 260px;
  display: flex;
  gap: 1px;
}
@media screen and (max-width: 1280px) {
  #header #header-submenu {
    margin-left: auto;
  }
}
#header #header-submenu .sps {
  display: none;
}
@media screen and (max-width: 767px) {
  #header #header-submenu .sps {
    display: inline;
  }
}
@media screen and (max-width: 767px) {
  #header #header-submenu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 0;
  }
  #header #header-submenu li:nth-child(2) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  #header #header-submenu li a {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}
#header #header-submenu li {
  width: 33.333%;
}
#header #header-submenu .sub {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  text-align: center;
  line-height: 1;
  font-size: clamp(1.4rem, 0.936rem + 0.6vw, 1.8rem);
  color: #005587;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 5px 3% 0;
}
@media screen and (max-width: 767px) {
  #header #header-submenu .sub {
    display: none;
  }
}
#header #header-submenu a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
  font-weight: bold;
  line-height: 1;
  padding: 16px 7px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #header #header-submenu a {
    height: auto;
    font-size: 1.2rem;
  }
}
#header #header-submenu a.y1 {
  background-color: #6F92CC;
}
@media screen and (max-width: 767px) {
  #header #header-submenu a.y1 {
    background-color: #005BAC;
  }
}
#header #header-submenu a.y1:hover {
  background-color: #005BAC;
}
#header #header-submenu a.y2 {
  background-color: #6F92CC;
}
@media screen and (max-width: 767px) {
  #header #header-submenu a.y2 {
    background-color: #005BAC;
  }
}
#header #header-submenu a.y2:hover {
  background-color: #005BAC;
}
#header #header-submenu a.intern {
  background-color: #5dcc86;
}
@media screen and (max-width: 767px) {
  #header #header-submenu a.intern {
    background-color: #00A33E;
  }
}
#header #header-submenu a.intern:hover {
  background-color: #00A33E;
}
#header #header-submenu a.comming {
  pointer-events: none;
  background-color: #707070;
}

#sp-mm {
  display: none;
  position: relative;
  height: 72px;
  width: 72px;
  cursor: pointer;
  z-index: 200;
  background: #005BAC;
  border-radius: 50%;
}
@media screen and (max-width: 1280px) {
  #sp-mm {
    display: block;
    margin: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  #sp-mm {
    width: 55px;
    height: 55px;
  }
}
#sp-mm:focus-visible {
  outline: solid;
}
#sp-mm:hover .sp-mm-btn span:before {
  top: -10px;
}
#sp-mm:hover .sp-mm-btn span:after {
  bottom: -10px;
}
#sp-mm .sp-mm-btn {
  position: relative;
  width: 17px;
  height: 2px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#sp-mm .sp-mm-btn span {
  display: block;
  width: 100%;
  height: 1px;
  transition: all 0.3s ease;
  background-color: #fff;
}
#sp-mm .sp-mm-btn span:before, #sp-mm .sp-mm-btn span:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  transition: all 0.3s ease;
  background-color: #fff;
  transform-origin: center;
}
#sp-mm .sp-mm-btn span:before {
  top: -5px;
}
#sp-mm .sp-mm-btn span:after {
  bottom: -4px;
}
#sp-mm.close .sp-mm-btn span {
  background-color: transparent;
}
#sp-mm.close .sp-mm-btn span:before {
  animation: close1 0.3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
#sp-mm.close .sp-mm-btn span:after {
  animation: close2 0.3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes close1 {
  0% {
    top: -8px;
    transform: rotate(0);
  }
  50% {
    top: 0px;
    transform: rotate(0);
  }
  100% {
    top: 0px;
    transform: rotate(-45deg);
  }
}
@keyframes close2 {
  0% {
    bottom: -8px;
    transform: rotate(0);
  }
  50% {
    bottom: 0px;
    transform: rotate(0);
  }
  100% {
    bottom: 0px;
    transform: rotate(45deg);
  }
}

#sp-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  z-index: 210;
  background-color: #fff;
  padding-block: 50px;
  overflow-y: auto;
  height: calc(100vh - 90px);
}
@media screen and (max-width: 767px) {
  #sp-menu {
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: scroll;
    padding-top: 20px;
  }
}
#sp-menu .inner {
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  #sp-menu .inner {
    padding: 0;
  }
}
#sp-menu .row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #sp-menu .row {
    display: block;
    padding: 0 0;
  }
}
#sp-menu .row .col {
  width: 33.333%;
}
@media screen and (max-width: 767px) {
  #sp-menu .row .col {
    width: 100%;
  }
  #sp-menu .row .col.open .parent-title::after {
    content: none;
  }
}
#sp-menu .row .col .parent-title {
  position: relative;
  font-size: clamp(1.5rem, 1.224rem + 0.4vw, 1.8rem);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  #sp-menu .row .col .parent-title {
    padding: 1rem 5%;
  }
  #sp-menu .row .col .parent-title::before {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 1px;
    background-color: #005BAC;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  #sp-menu .row .col .parent-title::after {
    content: "";
    display: block;
    position: absolute;
    height: 15px;
    width: 1px;
    background-color: #005BAC;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
  }
}
#sp-menu .row .col .parent-title.link {
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  #sp-menu .row .col .parent-title.link {
    margin-bottom: 0;
  }
  #sp-menu .row .col .parent-title.link::before, #sp-menu .row .col .parent-title.link::after {
    content: none;
  }
}
#sp-menu .row .col .parent-title.link::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #005BAC;
  border-right: 1px solid #005BAC;
  transform: rotate(45deg);
  background: transparent;
}
@media screen and (max-width: 767px) {
  #sp-menu .row .col .parent-title.link::after {
    right: 17px;
    top: 18px;
  }
}
#sp-menu .row .col .parent-title.link a {
  display: block;
  position: relative;
}
#sp-menu .row .col .parent-title.link a:hover {
  text-decoration: underline;
}
#sp-menu .row .col .parent-title.link a[target=_blank]::after {
  right: 12px;
  content: "";
  background: url(/assets/image/blank.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 12px;
  aspect-ratio: 9/7;
  height: auto;
  border: none;
  transform: none;
  margin-left: 5px;
}
#sp-menu .row .col ul {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  #sp-menu .row .col ul {
    margin-bottom: 1rem;
  }
  #sp-menu .row .col ul .child-title {
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
    padding: 10px 5%;
  }
  #sp-menu .row .col ul .grand-child-menu {
    display: block;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
#sp-menu .row .col ul li a {
  font-size: clamp(1.2rem, 0.968rem + 0.3vw, 1.4rem);
}
@media screen and (max-width: 767px) {
  #sp-menu .row .col ul li a {
    padding: 10px 5%;
  }
}
#sp-menu .row .col ul li a:hover {
  text-decoration: underline;
}
#sp-menu .row .col ul li a[target=_blank]::after {
  right: 12px;
  content: "";
  background: url(/assets/image/blank-w.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 12px;
  aspect-ratio: 9/7;
  height: auto;
  border: none;
  transform: none;
  margin-left: 5px;
}
#sp-menu .page-title {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 0.992rem + 0.7vw, 2rem);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #sp-menu .page-title {
    position: relative;
    margin-bottom: 0;
    color: #0f0f0f;
    font-size: 1.8rem;
    border-bottom: 1px solid #ccc;
    padding: 12px 0;
  }
  #sp-menu .page-title::after {
    content: "";
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: rotate(45deg) translateY(-55%);
  }
  #sp-menu .page-title.open::after {
    transform: rotate(-135deg) translateY(-55%);
    right: 9px;
  }
}
#sp-menu .page-title.single {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #sp-menu .page-title.single {
    margin-bottom: 0;
    padding: 0;
  }
  #sp-menu .page-title.single::after {
    transform: rotate(-45deg) translateY(-55%);
    right: 12px;
  }
}
#sp-menu .page-title a {
  display: block;
  padding: 12px 0;
}
#sp-menu ul {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #sp-menu ul {
    margin-bottom: 0;
    padding-bottom: 20px;
    display: none;
  }
}
#sp-menu ul li {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  #sp-menu ul li {
    margin-bottom: 0;
  }
}
#sp-menu ul li a {
  font-size: clamp(1.1rem, 0.636rem + 0.6vw, 1.5rem);
}
#sp-menu ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #sp-menu ul li a {
    display: block;
    padding: 12px 0;
  }
}
#sp-menu ul li a span {
  display: inline-block;
  margin-left: 5px;
}
#sp-menu ul li.subtitle {
  margin-top: 1rem;
}

.menu-open #header #header-navi {
  opacity: 0;
  pointer-events: none;
}

/* Mega menu
==================== */
#megamenu-overflow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.megamenu-block {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 200vh;
  left: 0;
  width: 100%;
  background-color: #2B3A42;
  z-index: 101;
  padding: 40px 0;
  white-space: wrap;
}
.megamenu-block.show {
  animation: mmFadeIn 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes mmFadeIn {
  0% {
    display: block;
    visibility: hidden;
    opacity: 0;
    top: 130px;
  }
  100% {
    display: block;
    visibility: visible;
    opacity: 1;
    top: 100px;
  }
}
.megamenu-block .inner {
  display: flex;
}
.megamenu-block h2 {
  width: 20%;
  color: #fff;
  margin-bottom: 30px;
  font-size: clamp(1.3rem, 1.024rem + 0.4vw, 1.6rem);
  font-weight: 500;
  padding-right: 2%;
}
.megamenu-block .col {
  width: 25%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-inline: 2%;
}
.megamenu-block .col h3 {
  color: #fff;
  font-weight: 500;
}
.megamenu-block .col h3 a {
  color: #fff;
}
.megamenu-block .col h3 a:hover {
  color: #fff;
  text-decoration: underline;
}
.megamenu-block .col ul {
  margin-bottom: 2rem;
}
.megamenu-block .col ul li {
  padding-left: 15px;
}
.megamenu-block .col ul li a {
  display: block;
  color: #fff;
  font-size: clamp(1.1rem, 0.824rem + 0.4vw, 1.4rem);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.megamenu-block .col ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
.megamenu-block .col ul li a[target=_blank]::after {
  right: 12px;
  content: "";
  background: url(/assets/image/blank-w.svg) no-repeat center center;
  background-size: contain;
  display: inline-block;
  width: 14px;
  aspect-ratio: 9/7;
  height: auto;
  border: none;
  transform: none;
  margin-left: 5px;
}
.megamenu-block .col2 {
  flex: 1;
}
.megamenu-block .layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
.megamenu-block .layout a {
  max-width: 31.33%;
  height: auto;
  padding: 0 0 15px;
  font-size: clamp(1.1rem, 0.636rem + 0.6vw, 1.5rem);
}
.megamenu-block .layout a figure span {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  line-height: 0;
}
.megamenu-block .layout a figure figcaption {
  padding: 0 0;
  color: #fff;
  font-size: clamp(1.1rem, 0.824rem + 0.4vw, 1.4rem);
  white-space: wrap;
  display: block;
  line-height: 1.3;
  margin-top: 0.5rem;
}
/* FOOTER
================================================== */
#footer {
  background-color: #464646;
  color: #fff;
  padding-top: 100px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #footer {
    padding-block: 20px;
  }
}
#footer #footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  #footer #footer-top {
    text-align: center;
    display: block;
  }
}
#footer #footer-top .footer-left .footer-left-top .comp-name {
  font-size: clamp(1.025rem, 0.956rem + 0.1vw, 1.1rem);
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #footer #footer-top .footer-left .footer-left-top .comp-name {
    margin-bottom: 1rem;
  }
}
#footer #footer-top .footer-left .footer-left-top .copy {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #footer #footer-top .footer-left .footer-left-top .copy {
    margin-bottom: 2rem;
  }
}
#footer #footer-top .footer-left .footer-left-top a {
  display: inline-block;
  font-size: clamp(1.325rem, 1.068rem + 0.3vw, 1.5rem);
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 10px 30px;
  margin-bottom: 1rem;
}
#footer #footer-top .footer-left .footer-left-top a.comig {
  pointer-events: none;
  border-color: #707070;
  color: #707070;
}
#footer #footer-top .footer-left .footer-left-top a:hover {
  background-color: #fff;
  color: #464646;
}
#footer #footer-top .footer-left #footer-logo {
  position: absolute;
  bottom: 100px;
}
@media screen and (max-width: 767px) {
  #footer #footer-top .footer-left #footer-logo {
    position: static;
    margin: 30px auto 0;
  }
}
#footer #footer-top .footer-left #footer-logo p {
  margin-top: 1rem;
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  #footer #footer-menu-layout {
    display: none;
  }
}
#footer #footer-menu-layout .row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 2%;
  margin-bottom: 3rem;
}
#footer #footer-menu-layout .row .col .mb {
  margin-bottom: 3rem;
}
#footer #footer-menu-layout .row .parent-title {
  color: #fff;
  font-size: clamp(1.5rem, 1.224rem + 0.4vw, 1.8rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
#footer #footer-menu-layout .row .parent-title.link {
  position: relative;
  margin-bottom: 0;
}
#footer #footer-menu-layout .row .parent-title.link::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
#footer #footer-menu-layout .row .parent-title.link a {
  display: block;
  position: relative;
}
#footer #footer-menu-layout .row .parent-title.link a:hover {
  color: #fff;
  text-decoration: underline;
}
#footer #footer-menu-layout .row .parent-title.link a.coming {
  pointer-events: none;
  color: #707070;
}
#footer #footer-menu-layout .row .parent-title.link a.coming:hover {
  text-decoration: none;
}
#footer #footer-menu-layout .row .sub-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
#footer #footer-menu-layout .row h3 {
  font-size: clamp(1.5rem, 1.456rem + 0.1vw, 1.6rem);
  padding-top: 0.5rem;
}
#footer #footer-menu-layout .row h3 + ul {
  padding-left: 1ex;
}
#footer #footer-menu-layout .row h3 a:hover {
  text-decoration: underline;
}
#footer #footer-menu-layout .row ul li .child-title,
#footer #footer-menu-layout .row ul li a {
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
  display: inline-block;
  line-height: 1;
}
#footer #footer-menu-layout .row ul li .child-title span,
#footer #footer-menu-layout .row ul li a span {
  display: inline-block;
  line-height: 0;
  margin-left: 5px;
}
#footer #footer-menu-layout .row ul li a:hover {
  text-decoration: underline;
  color: #fff;
}
#footer #footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 35px 0 70px;
}
@media screen and (max-width: 767px) {
  #footer #footer-bottom {
    margin-top: 3rem;
    text-align: center;
    display: block;
  }
}
#footer #footer-bottom ul {
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  #footer #footer-bottom ul {
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
  }
}
#footer #footer-bottom ul a {
  font-size: clamp(1.175rem, 1.012rem + 0.2vw, 1.3rem);
}
#footer #footer-bottom ul a:hover {
  text-decoration: underline;
  color: #fff;
}
#footer #footer-bottom .copyright {
  font-size: clamp(1.025rem, 0.956rem + 0.1vw, 1.1rem);
}

#pagetop {
  position: fixed;
  right: 5%;
  bottom: 5%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #pagetop {
    right: 3%;
    bottom: 55px;
  }
}
#pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  line-height: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.5);
}
#pagetop a:hover {
  background-color: #ccc;
}
#pagetop a::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #005BAC;
  border-left: 2px solid #005BAC;
  transform: rotate(45deg);
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #pagetop a {
    width: 50px;
    height: 50px;
  }
  #pagetop a::after {
    width: 11px;
    height: 11px;
    margin-top: 4px;
    margin-left: 2px;
  }
}

@keyframes pagetop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}
#total_top {
  background-color: #FAFAFA;
}
#total_top header {
  width: 100%;
  height: 100px;
  z-index: 500;
  transition: all 0.2s ease;
  padding: 0 0 0 1%;
}
@media screen and (max-width: 767px) {
  #total_top header {
    display: flex;
    height: 70px;
    padding-left: 0;
  }
}
#total_top header .header-layout-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 200;
}
@media screen and (max-width: 970px) {
  #total_top header .header-layout-main {
    padding-block: 0;
  }
}
@media screen and (max-width: 767px) {
  #total_top header .header-layout-main {
    padding: 0 10px 0 0;
  }
}
#total_top header .header-layout-main .header-logo {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#total_top header .header-layout-main .header-logo .image {
  display: inline-block;
  line-height: 1;
  max-width: 200px;
  width: 140px;
}
@media screen and (max-width: 767px) {
  #total_top header .header-layout-main .header-logo .image {
    width: 100px;
    margin-right: 10px;
    height: auto;
  }
}
#total_top main {
  padding-top: 6vw;
}
@media screen and (max-width: 767px) {
  #total_top main {
    padding-top: 3rem;
  }
}
#total_top main .circle {
  width: 100vw;
  max-width: 950px;
  top: 0;
  transform: translateY(-50%);
  left: 60%;
}
@media screen and (max-width: 767px) {
  #total_top main .circle {
    bottom: auto;
    top: 0;
    transform: translateY(-50%);
  }
}
#total_top main .inner {
  max-width: calc(1080px + 16vw);
  padding: 0 8vw 8rem;
  margin: auto;
  position: relative;
  z-index: 1;
}
#total_top main .inner .title-block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 5rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  #total_top main .inner .title-block {
    display: block;
  }
}
#total_top main .inner .title-block .title .en-title {
  color: #005BAC;
  font-size: clamp(2.375rem, 1.748rem + 0.8vw, 2.9rem);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #total_top main .inner .title-block .title .en-title {
    font-size: clamp(2rem, 1.536rem + 0.6vw, 2.4rem);
  }
}
#total_top main .inner .title-block .title h1 {
  font-size: clamp(3.2rem, 2.272rem + 1.2vw, 4rem);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #total_top main .inner .title-block .title h1 {
    font-size: clamp(2.6rem, 1.904rem + 0.9vw, 3.2rem);
  }
}
#total_top main .inner .title-block .link {
  text-align: right;
  margin-top: 2rem;
}
#total_top main .inner .title-block .link a {
  font-size: 1.5rem;
  font-weight: 600;
}
#total_top main .inner .title-block .link a span {
  display: inline-block;
  line-height: 0;
  margin-left: 15px;
  vertical-align: middle;
}
#total_top main .recruit-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 25px;
}
@media screen and (max-width: 767px) {
  #total_top main .recruit-layout {
    display: block;
  }
}
#total_top main .recruit-layout li {
  margin-bottom: 25px;
}
#total_top main .recruit-layout li:nth-child(2) a .mark, #total_top main .recruit-layout li:nth-child(3) a .mark {
  background-color: #009436;
}
#total_top main .recruit-layout a {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 40px;
  font-size: clamp(1.6rem, 2.4vw, 2.8rem);
  font-weight: 500;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#total_top main .recruit-layout a:hover {
  transform: scale(1.02);
}
#total_top main .recruit-layout a .mark {
  position: absolute;
  right: 30px;
  background-color: #2D74BB;
}
#total_top main .recruit-layout a .mark::before {
  background-color: #fff;
}
#total_top main .recruit-layout a .mark::after {
  border-color: #fff;
}
#total_top footer #footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 35px 0 40px;
}
@media screen and (max-width: 767px) {
  #total_top footer #footer-bottom {
    margin-top: 3rem;
    text-align: center;
    display: block;
  }
}
#total_top footer #footer-bottom ul {
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 767px) {
  #total_top footer #footer-bottom ul {
    justify-content: center;
    gap: 16px;
    margin-bottom: 2rem;
  }
}
#total_top footer #footer-bottom ul a {
  font-size: clamp(1.175rem, 1.012rem + 0.2vw, 1.3rem);
}
#total_top footer #footer-bottom .copyright {
  font-size: clamp(1.025rem, 0.956rem + 0.1vw, 1.1rem);
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: auto;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

.scroll-hint-shadow-wrap {
  position: relative;
}

.scroll-hint-shadow-wrap::after {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap::before {
  content: "";
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-right-scrollable)::after,
.scroll-hint-shadow-wrap.is-right-scrollable::after {
  opacity: 1;
  visibility: visible;
}

.scroll-hint-shadow-wrap:has(.scroll-hint.is-left-scrollable)::before,
.scroll-hint-shadow-wrap.is-left-scrollable::before {
  opacity: 1;
  visibility: visible;
}