@import url("https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@media print, (min-width: 768px) {
  .l-head.ver2 .nav-global.fst.fz200 .snd.megaMenuActive {
    z-index: 600;
  }
  .l-head.ver2 .nav-global .snd.megaMenuActive + .wrap-nav-close {
    z-index: 610;
  }
}
html {
  font-size: 62.5%;
  scrollbar-gutter: stable;
}

html.menu-open {
  overflow: hidden;
}

body {
  opacity: 0;
}
body.loaded {
  opacity: 1;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .l-head > .l-inner {
  z-index: 1;
}

.l-head > .l-inner {
  z-index: 501;
}

.modal,
main {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.168rem + 0.3vw, 1.6rem);
  line-height: 2;
  font-weight: 400;
  background-color: #fff;
  transition: opacity 0.5s ease;
}
.modal sub,
main sub {
  vertical-align: sub;
  font-size: smaller;
}
.modal .coming,
main .coming {
  pointer-events: none;
  opacity: 0.5;
}
.modal .en,
main .en {
  font-family: "Asap", serif;
  font-optical-sizing: auto;
  font-weight: 400;
}
.modal a,
main a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: #000;
}
.modal a img,
main a img {
  transition: all 0.3s ease;
}
.modal a:hover,
main a:hover {
  color: #1532AA;
}
.modal a.textlink,
main a.textlink {
  color: #005587;
  text-decoration: underline;
  transition: all 0.2s ease;
}
.modal a.textlink[target=_blank]::after,
main a.textlink[target=_blank]::after {
  content: url(/assets/image/blank.svg);
  padding-left: 10px;
}
.modal a.textlink:hover,
main a.textlink:hover {
  color: #00BFB3;
}
.modal .ly_container,
main .ly_container {
  position: relative;
}
.modal .inview,
main .inview {
  opacity: 0;
}
.modal .inviewwrap,
main .inviewwrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.modal .inview.active,
main .inview.active {
  animation: fadeInup 1s ease-out;
  animation-fill-mode: forwards;
}
.modal .inview.noanimation,
main .inview.noanimation {
  opacity: 1;
  animation: none;
}
.modal .inview.active.left,
main .inview.active.left {
  animation: fadeInLeft 1s ease-out;
  animation-fill-mode: forwards;
}
.modal .inview.active.right,
main .inview.active.right {
  animation: fadeInRight 1s ease-out;
  animation-fill-mode: forwards;
}
.modal .inview.fade.active,
main .inview.fade.active {
  animation: fadeIn 1s ease-out;
  animation-fill-mode: forwards;
}
.modal .inview.clip,
main .inview.clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease-in;
  transition-delay: 0.3s;
  opacity: 1;
}
.modal .inview.active.clip,
main .inview.active.clip {
  clip-path: inset(0 0 0 0);
  animation: none;
}
.modal .inview.clip.delay01,
main .inview.clip.delay01 {
  transition-delay: 0.6s;
}
.modal .inview.clip.delay02,
main .inview.clip.delay02 {
  transition-delay: 0.9s;
}
.modal .inview.open,
main .inview.open {
  overflow: hidden;
  opacity: 0;
  clip-path: inset(50% 50% 50% 50%);
  transition: clip-path 1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.modal .inview.open img,
main .inview.open img {
  display: block;
  width: 100%;
  height: auto;
}
.modal .inview.active.open,
main .inview.active.open {
  opacity: 1;
  clip-path: inset(0% 0% 0% 0%);
  animation: none;
}
.modal .inview.open.delay01,
main .inview.open.delay01 {
  transition-delay: 0.6s;
}
.modal .inview.open.delay02,
main .inview.open.delay02 {
  transition-delay: 0.9s;
}
.modal .inview.open.delay03,
main .inview.open.delay03 {
  transition-delay: 1.2s;
}
@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;
  }
}
@keyframes fadeInRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.modal .delay01,
main .delay01 {
  animation-delay: 0.3s !important;
}
.modal .delay02,
main .delay02 {
  animation-delay: 0.6s !important;
}
.modal .delay03,
main .delay03 {
  animation-delay: 0.9s !important;
}
.modal ._spShowImportant,
main ._spShowImportant {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .modal .inviewwrap,
  main .inviewwrap {
    position: static;
  }
  .modal ._pcShowImportant,
  main ._pcShowImportant {
    display: none !important;
  }
  .modal ._spShowImportant,
  main ._spShowImportant {
    display: block !important;
  }
}
.modal .slick-dots,
main .slick-dots {
  position: absolute;
  bottom: -35px;
  right: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: right;
}
.modal .slick-dots li,
main .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.modal .slick-dots li button,
main .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;
}
.modal .slick-dots li button:hover,
.modal .slick-dots li button:focus,
main .slick-dots li button:hover,
main .slick-dots li button:focus {
  outline: none;
}
.modal .slick-dots li button:hover:before,
.modal .slick-dots li button:focus:before,
main .slick-dots li button:hover:before,
main .slick-dots li button:focus:before {
  opacity: 1;
}
.modal .slick-dots li button:before,
main .slick-dots li button:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #BFBFBF;
}
.modal .slick-dots li.slick-active button:before,
main .slick-dots li.slick-active button:before {
  background-color: #133BA3;
}
.modal .slash-title,
main .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%);
}
.modal a.blank[target=_blank]::after,
main 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;
}

.l-all a.zoom .image {
  overflow: hidden;
  line-height: 0;
}
.l-all a.zoom .image img {
  transform-origin: center;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.l-all a .zoom {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 0;
  border-radius: 6px;
}
.l-all a .zoom img {
  transform-origin: center;
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.l-all a.zoom:hover img,
.l-all a:hover .zoom img {
  transform: scale(1.05);
  opacity: 1;
}
.l-all .sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .l-all .pc {
    display: none !important;
  }
  .l-all .sp {
    display: block !important;
  }
}

.inner {
  position: relative;
  max-width: calc(1210px + 6%);
  margin: auto;
  padding: 0 3%;
}
.inner.short {
  max-width: calc(1042px + 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: 1210px) {
  .inner.over-right {
    max-width: calc(1210px + 6%);
  }
}
@media (min-width: 1360px) {
  .inner.over-right {
    max-width: 1360px;
    padding-left: 75px;
  }
  .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: 1210px) {
  .inner.over-left {
    max-width: calc(1210px + 6%);
  }
}
@media (min-width: 1360px) {
  .inner.over-left {
    max-width: 1360px;
    padding-right: 75px;
  }
  .inner.over-left .image {
    margin-left: 0;
  }
}

main {
  padding-top: 113px;
}
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;
}
@media screen and (max-width: 767px) {
  main #breadcrumb {
    display: none;
  }
}
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 .btn {
  display: inline-block;
  width: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  line-height: 1;
  color: #1532AA;
  font-size: clamp(1.325rem, 1.068rem + 0.3vw, 1.5rem);
  font-weight: 500;
  padding: 20px 40px 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}
main .btn span {
  position: relative;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 22px;
  height: 22px;
  background-color: #1532AA;
  border-radius: 50%;
  transform: translateY(-50%);
}
main .btn span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
}
main .btn:hover {
  background-color: #1532AA;
  color: #fff;
}
main .btn:hover span {
  background-color: #fff;
}
main .btn:hover span::before {
  border-color: #1532AA;
}
main .btn.navy {
  background-color: #1532AA;
  color: #fff;
}
main .btn.navy span {
  background-color: #fff;
}
main .btn.navy span::before {
  border-color: #1532AA;
}
main .btn.navy:hover {
  background-color: #fff;
  color: #1532AA;
}
main .btn.navy:hover span {
  background-color: #1532AA;
}
main .btn.navy:hover span::before {
  border-color: #fff;
}
main .round {
  line-height: 0;
  overflow: hidden;
  border-radius: 10px;
}
main .round-arrow-btn {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 68px;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 32px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  main .round-arrow-btn {
    width: 46px;
    height: 46px;
  }
}
main .round-arrow-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background-color: #1532AA;
  transform: translate(-50%, -50%);
}
main .round-arrow-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid #1532AA;
  border-right: 1px solid #1532AA;
  transform: translate(-50%, -50%) rotate(45deg);
}
main a:hover .round-arrow-btn {
  background-color: #1532AA;
}
main a:hover .round-arrow-btn::before {
  background-color: #fff;
}
main a:hover .round-arrow-btn::after {
  border-color: #fff;
}

.corner {
  display: block;
  background-color: #fff;
  position: absolute;
  z-index: 1;
}
.corner::before, .corner::after {
  content: "";
  background: url(/recruit/newgraduates/technical/assets/image/corner-white.svg) no-repeat center center/100%;
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
}
.corner.light {
  background-color: #EDF1FF;
}
.corner.light::before, .corner.light::after {
  background: url(/recruit/newgraduates/technical/assets/image/corner-light-blue.svg) no-repeat center center/100%;
}
.corner.blue {
  background-color: #1532AA;
}
.corner.blue::before, .corner.blue::after {
  background: url(/recruit/newgraduates/technical/assets/image/corner-blue.svg) no-repeat center center/100%;
}
.corner.corner-left-top {
  border-radius: 24px 0 24px 0;
}
.corner.corner-left-top::before {
  bottom: -26px;
  left: 0;
  transform: scaleX(1);
}
.corner.corner-left-top::after {
  right: -26px;
  top: 0;
  transform: scaleX(1);
}
.corner.corner-right-top {
  border-radius: 0 24px 0 24px;
}
.corner.corner-right-top::before {
  top: 0;
  left: -26px;
  transform: scaleX(-1);
}
.corner.corner-right-top::after {
  bottom: -26px;
  right: 0;
  transform: scaleX(-1);
}
.corner.corner-left-bottom {
  border-radius: 0 24px 0 24px;
}
.corner.corner-left-bottom::before {
  bottom: 0;
  right: -26px;
  transform: scaleY(-1);
}
.corner.corner-left-bottom::after {
  top: -26px;
  left: 0;
  transform: scaleY(-1);
}
.corner.corner-right-bottom {
  border-radius: 24px 0 24px 0;
}
.corner.corner-right-bottom::before {
  top: -26px;
  right: 0;
  transform: scale(-1, -1);
}
.corner.corner-right-bottom::after {
  bottom: 0;
  left: -26px;
  transform: scale(-1, -1);
}

/* HEADER
================================================== */
#header {
  top: 140px;
  left: 0;
  width: 100%;
  height: 113px;
  z-index: 500;
  padding-right: 1%;
  position: absolute;
  line-height: 2;
}
#header.is-fixed {
  position: fixed;
  top: 0;
}
@media screen and (max-width: 1230px) {
  #header {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  #header {
    display: flex;
    height: 70px;
    padding-left: 0;
    top: 107px;
  }
}
#header.bg {
  background-color: #fff;
}
#header a {
  text-decoration: none;
}
#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;
  background-color: #1532AA;
  height: 100%;
  padding: 30px clamp(30px, 7vw, 40px);
  border-radius: 0 0 32px 0;
  max-width: 520px;
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-logo {
    padding: 10px 20px;
    text-align: center;
  }
}
#header .header-layout-main .header-logo::before {
  content: "";
  background: url(/recruit/newgraduates/technical/assets/image/corner-blue.svg) no-repeat center center/100%;
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 0;
  right: -26px;
}
#header .header-layout-main .header-logo::after {
  content: "";
  background: url(/recruit/newgraduates/technical/assets/image/corner-blue.svg) no-repeat center center/100%;
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  bottom: -26px;
  left: 0;
}
#header .header-layout-main .header-logo .logo {
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-logo .logo {
    width: 80px;
    line-height: 0;
    padding-right: 10px;
  }
}
#header .header-layout-main .header-logo .logo .navy {
  display: none;
}
#header .header-layout-main .header-logo .sub {
  padding-left: 20px;
  border-left: 1px solid #E3E3E3;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-logo .sub {
    font-size: 1rem;
    padding-left: 10px;
  }
}
#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: 1230px) {
  #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;
  gap: 24px;
}
#header #header-navi ul.header-mega-menu .parent-title {
  display: inline-block;
  color: #1532AA;
  position: relative;
  padding-bottom: 5px;
  font-weight: 600;
}
#header #header-navi ul.header-mega-menu .parent-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #1532AA;
  bottom: 0;
  left: 0;
  transition: transform 0.3s ease;
}
#header #header-navi ul.header-mega-menu .parent-title:hover::after {
  animation: underlineAnim 0.3s forwards;
}
@keyframes underlineAnim {
  0% {
    transform: scaleX(0);
    transform-origin: right;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
#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%;
}
#header #header-navi ul.header-float-menu .parent-menu {
  position: relative;
  cursor: pointer;
}
#header #header-navi ul.header-float-menu .parent-menu:hover {
  color: #fff;
}
#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;
  color: #1532AA;
}
#header #header-navi ul.header-float-menu .parent-menu .parent-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #1532AA;
  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 .child-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 15px);
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 0 15px 0;
  box-shadow: 0 2px 8px rgba(80, 75, 60, 0.2);
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu .col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 10px;
}
#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 a {
  display: block;
  text-align: left;
  padding: 6px 14px;
  white-space: nowrap;
  color: #000;
}
#header #header-navi ul.header-float-menu .parent-menu .child-menu li a:hover {
  color: #1532AA;
}
#header #header-navi .base-ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1230px) {
  #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: #1532AA;
}
#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 {
  margin-right: 15px;
}
@media screen and (max-width: 1230px) {
  #header #header-submenu {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  #header #header-submenu {
    width: 150px;
    display: none;
  }
}
#header #header-submenu a {
  position: relative;
  display: block;
  margin-left: auto;
  border-radius: 8px;
  background-color: #1532AA;
  color: #fff;
  font-size: clamp(1.325rem, 1.068rem + 0.3vw, 1.5rem);
  font-weight: 600;
  line-height: 1;
  padding: 18px 18px;
  width: 254px;
}
#header #header-submenu a span {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

#sp-mm {
  position: relative;
  height: 56px;
  width: 56px;
  cursor: pointer;
  z-index: 200;
  background: #1532AA;
  border-radius: 50%;
}
@media screen and (max-width: 1230px) {
  #sp-mm {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #sp-mm {
    width: 50px;
    height: 50px;
  }
}
#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: 2px;
  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: 2px;
  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: -5px;
}
#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);
  }
}

.menu-open #sp-menu {
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .menu-open #sp-menu {
    display: block !important;
  }
}

#sp-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 210;
  background-color: #1532AA;
  padding-block: 50px;
  overflow-y: auto;
  height: 100svh;
  color: #fff;
  align-items: center;
  justify-content: center;
}
#sp-menu::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: transparent; /* make scrollbar transparent */
}
@media screen and (max-width: 767px) {
  #sp-menu {
    overflow-y: scroll;
    padding-top: 20px;
    padding-top: 100px;
    height: 100svh;
  }
}
#sp-menu #sp-mm-close {
  position: absolute;
  height: 56px;
  width: 56px;
  cursor: pointer;
  z-index: 200;
  background: #fff;
  border-radius: 50%;
  top: 28px;
  right: 1%;
}
@media screen and (max-width: 767px) {
  #sp-menu #sp-mm-close {
    width: 50px;
    height: 50px;
    top: 10px;
  }
}
#sp-menu #sp-mm-close span {
  position: absolute;
  height: 18px;
  width: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#sp-menu #sp-mm-close span::before, #sp-menu #sp-mm-close span::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1532AA;
  top: 50%;
  left: 0;
}
#sp-menu #sp-mm-close span::before {
  transform: rotate(90deg);
}
#sp-menu .pickup {
  display: flex;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  #sp-menu .pickup {
    display: none;
  }
}
#sp-menu .pickup .pickup-title {
  width: 25%;
  gap: 3%;
}
#sp-menu .pickup .pickup-row {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3%;
}
#sp-menu .pickup .pickup-row .box {
  color: #fff;
  font-size: clamp(1.2rem, 0.968rem + 0.3vw, 1.4rem);
}
#sp-menu .pickup .pickup-row .box .image {
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
}
#sp-menu .row {
  display: grid;
  grid-template-columns: 1fr 1fr 2.5fr;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  #sp-menu .row {
    display: block;
  }
}
#sp-menu .row .col {
  color: #fff;
}
@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;
}
#sp-menu .row .col .parent-title span,
#sp-menu .row .col .parent-title a {
  display: inline-block;
  color: #fff;
  font-size: clamp(1.5rem, 1.224rem + 0.4vw, 1.8rem);
  border-bottom: 1px solid rgb(255, 255, 255);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  #sp-menu .row .col .parent-title span,
  #sp-menu .row .col .parent-title a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
#sp-menu .row .col .parent-title.mb {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  #sp-menu .row .col .parent-title.mb {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  #sp-menu .row .col .parent-title::before {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 1px;
    background-color: #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  #sp-menu .row .col .parent-title::after {
    content: "";
    display: block;
    position: absolute;
    height: 15px;
    width: 1px;
    background-color: #fff;
    right: 7px;
    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: 1.5rem;
  }
  #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: 25px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  background: transparent;
}
@media screen and (max-width: 767px) {
  #sp-menu .row .col .parent-title.link::after {
    right: 5px;
  }
}
#sp-menu .row .col .parent-title.link a {
  display: inline-block;
  position: relative;
  width: 100%;
}
#sp-menu .row .col .parent-title.link a:hover {
  color: #fff;
  text-decoration: underline;
}
#sp-menu .row .col .parent-title.link 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 .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.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  #sp-menu .row .col ul.col-2 {
    display: none;
  }
}
#sp-menu .row .col ul li a {
  color: #fff;
  font-size: clamp(1.2rem, 0.968rem + 0.3vw, 1.4rem);
}
#sp-menu .row .col ul li a:hover {
  color: #fff;
  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.subtitle {
  margin-top: 1rem;
}
#sp-menu .sp-menu-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #758EE6;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  #sp-menu .sp-menu-bottom {
    border: none;
    flex-direction: column;
    align-items: flex-start;
  }
}
#sp-menu .sp-menu-bottom .link {
  width: 50%;
  max-width: 196px;
}
#sp-menu .sp-menu-bottom .link a {
  position: relative;
  display: block;
  background-color: #fff;
  color: #1532AA;
  border-radius: 8px;
  line-height: 1;
  padding: 18px 24px;
}
#sp-menu .sp-menu-bottom .link a span {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
#sp-menu .sp-menu-bottom .copyright {
  font-size: clamp(1.175rem, 1.012rem + 0.2vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #sp-menu .sp-menu-bottom .copyright {
    margin-top: 2rem;
  }
}

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

.scroll-in #header {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}

/* 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: 113px;
  }
}
.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 {
  padding-top: 5vw;
}
#footer footer {
  background-color: #1532AA;
  border-radius: 32px 32px 0 0;
  padding: 100px 0;
  color: #fff;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #footer footer {
    padding-block: 20px;
  }
}
#footer footer .inner {
  max-width: calc(1360px + 6%);
  margin: auto;
  padding: 0 3%;
}
#footer footer a {
  text-decoration: none;
  color: #fff;
}
#footer #footer-menu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 2.5fr;
  gap: 48px;
}
@media screen and (max-width: 767px) {
  #footer #footer-menu-layout {
    display: none;
  }
}
#footer #footer-menu-layout #footer-logo {
  text-align: center;
}
#footer #footer-menu-layout #footer-logo p {
  margin-bottom: 64px;
}
#footer #footer-menu-layout #footer-logo p a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  margin-top: 1rem;
}
#footer #footer-menu-layout #footer-logo p a:hover {
  color: #fff;
}
#footer #footer-menu-layout #footer-logo .link a {
  position: relative;
  display: block;
  background-color: #fff;
  color: #1532AA;
  border-radius: 8px;
  line-height: 1;
  padding: 18px 24px;
  max-width: 196px;
  margin: auto;
  text-align: left;
}
#footer #footer-menu-layout #footer-logo .link a:hover {
  opacity: 0.9;
}
#footer #footer-menu-layout #footer-logo .link a span {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
#footer #footer-menu-layout .col h2 {
  margin-bottom: 25px;
}
#footer #footer-menu-layout .col h2 span,
#footer #footer-menu-layout .col h2 a {
  display: inline-block;
  font-size: clamp(1.7rem, 1.424rem + 0.4vw, 2rem);
  font-weight: 600;
  border-bottom: 1px solid #fff;
}
#footer #footer-menu-layout .col .single {
  margin-bottom: 50px;
}
#footer #footer-menu-layout .col ul {
  margin-bottom: 50px;
}
#footer #footer-menu-layout .col ul.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3%;
}
#footer #footer-menu-layout .col a {
  font-size: clamp(1rem, 0.492rem + 0.7vw, 1.5rem);
}
#footer #footer-menu-layout .col a:hover {
  color: #fff;
  text-decoration: underline;
}
#footer #footer-bottom {
  text-align: right;
  font-size: clamp(1.175rem, 1.012rem + 0.2vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  #footer #footer-bottom {
    margin-top: 3rem;
    text-align: center;
  }
}

#pagetop {
  position: fixed;
  right: 3%;
  bottom: 5%;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #pagetop {
    right: 3%;
  }
}
#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);
}
@media screen and (max-width: 767px) {
  #pagetop a {
    width: 50px;
    height: 50px;
  }
}
#pagetop a:hover {
  background-color: #fff;
  border: 1px solid #1532AA;
}
#pagetop a:hover::after {
  border-top-color: #1532AA;
  border-left-color: #1532AA;
}
#pagetop a::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #1532AA;
  border-left: 2px solid #1532AA;
  top: calc(50% - 4px);
  left: calc(50% - 5px);
  transform: rotate(45deg);
}

@keyframes pagetop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}
#modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(125, 125, 125, 0.5);
  backdrop-filter: blur(40px);
}

.modal {
  line-height: 2;
}
.modal a {
  text-decoration: none;
  color: #000;
}
.modal .sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .modal .pc {
    display: none !important;
  }
  .modal .sp {
    display: block !important;
  }
}

/* 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;
}