@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&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%;
}

body {
  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;
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.loaded {
  opacity: 1;
}

.en {
  font-family: "Inter", sans-serif;
}

a {
  transition: all 0.3s ease;
}

a img {
  transition: all 0.3s ease;
}

a:hover img {
  opacity: 0.8;
}

.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 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;
}

.inner {
  max-width: calc(1354px + 6%);
  margin: auto;
  padding: 0 3%;
}
.inner.short {
  max-width: calc(1180px + 6%);
}

a.zoom {
  display: block;
  position: relative;
  overflow: hidden;
}
a.zoom img {
  transform-origin: center;
}

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

ruby rt {
  font-size: 50%;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
main {
  padding-top: 102px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 80px;
  }
  main p {
    font-size: 1.5rem;
  }
}
main .arrow-list a[href$=".pdf"],
main .arrow-list a[href$=".doc"],
main .arrow-list a[href$=".xls"],
main .arrow-list a[href$=".ppt"],
main .arrow-list a[href$=".docx"],
main .arrow-list a[href$=".xlsx"],
main .arrow-list a[href$=".pptx"] {
  padding-right: 25px;
}
main .arrow-list a[href$=".pdf"]::after,
main .arrow-list a[href$=".doc"]::after,
main .arrow-list a[href$=".xls"]::after,
main .arrow-list a[href$=".ppt"]::after,
main .arrow-list a[href$=".docx"]::after,
main .arrow-list a[href$=".xlsx"]::after,
main .arrow-list a[href$=".pptx"]::after {
  content: "";
  display: block;
  position: absolute;
  background: url("/assets/image/icon_pdf.svg") no-repeat center center;
  background-size: 100% auto;
  right: 0;
  top: calc(50% + 5px);
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: none;
}
main .arrow-list a[href$=".doc"]:after,
main .arrow-list a[href$=".docx"]:after {
  background: url("/assets/image/icon_doc.svg") no-repeat center center;
  background-size: 100% auto;
}
main .arrow-list a[href$=".xls"]:after,
main .arrow-list a[href$=".xlsx"]:after {
  background: url("/assets/image/icon_xls.svg") no-repeat center center;
  background-size: 100% auto;
}
main .arrow-list a[href$=".ppt"]:after,
main .arrow-list a[href$=".pptx"]:after {
  background: url("/assets/image/icon_ppt.svg") no-repeat center center;
  background-size: 100% auto;
}
main .corner {
  display: block;
  background-color: #fff;
  position: absolute;
  z-index: 1;
}
main .corner::before, main .corner::after {
  content: url(/assets/image/corner-white.png);
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  line-height: 0;
}
main .corner.corner-left-top {
  border-radius: 0 0 15px 0;
}
main .corner.corner-left-top::before {
  bottom: -15px;
  left: 0;
  transform: scaleX(1);
}
main .corner.corner-left-top::after {
  right: -15px;
  top: 0;
  transform: scaleX(1);
}
main .corner.corner-right-top {
  border-radius: 0 0 0 15px;
}
main .corner.corner-right-top::before {
  top: 0;
  left: -15px;
  transform: scaleX(-1);
}
main .corner.corner-right-top::after {
  bottom: -15px;
  right: 0;
  transform: scaleX(-1);
}
main .corner.corner-left-bottom {
  border-radius: 0 15px 0 0;
}
main .corner.corner-left-bottom::before {
  bottom: 0;
  right: -15px;
  transform: scaleY(-1);
}
main .corner.corner-left-bottom::after {
  top: -15px;
  left: 0;
  transform: scaleY(-1);
}
main .corner.corner-right-bottom {
  border-radius: 15px 0 0 0;
}
main .corner.corner-right-bottom::before {
  top: -15px;
  right: 0;
  transform: scale(-1, -1);
}
main .corner.corner-right-bottom::after {
  bottom: 0;
  left: -15px;
  transform: scale(-1, -1);
}
main .common-visual {
  background: url(/assets/image/header-bg.webp) no-repeat center center/100% auto;
}
main .common-visual .inner {
  position: relative;
}
main .common-visual .image {
  position: relative;
  border-radius: 15px 15px 0 15px;
  overflow: hidden;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  main .common-visual .image {
    height: 220px;
  }
  main .common-visual .image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main .common-visual h1 {
  font-size: clamp(2.825rem, 2.06rem + 1vw, 3.5rem);
  font-weight: bold;
  color: #008B3E;
  line-height: 1.2;
  padding: 17px 32px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 15px 0 0 0 !important;
}
@media screen and (max-width: 767px) {
  main .common-visual h1 {
    font-size: 20px;
  }
}
main .common-visual-noimage {
  position: relative;
  background: url(/assets/image/header-bg2.webp) no-repeat center center/100% auto;
  min-height: 255px;
}
@media screen and (max-width: 767px) {
  main .common-visual-noimage {
    min-height: 130px;
  }
}
main .common-visual-noimage {
  display: flex;
  align-items: center;
  justify-content: center;
}
main .common-visual-noimage .inner {
  position: relative;
}
main .common-visual-noimage h1 {
  font-size: clamp(2.825rem, 2.06rem + 1vw, 3.5rem);
  font-weight: bold;
  color: #008B3E;
  line-height: 1.2;
  position: static;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .common-visual-noimage h1 {
    font-size: 20px;
  }
}
main .common-visual-noimage h1 span {
  display: block;
  font-size: clamp(2.075rem, 1.636rem + 0.6vw, 2.5rem);
  margin-top: 5px;
}
main .common-visual-noimage .title {
  align-items: center;
  color: #008B3E;
  padding: 5rem 3%;
}
main .common-visual-noimage .title .cat-title {
  position: absolute;
  top: 0;
  left: 3%;
  font-size: clamp(1.475rem, 1.268rem + 0.3vw, 1.7rem);
  padding-bottom: 1rem;
  margin-bottom: 0;
}
main .common-visual-noimage .title .cat-title a {
  text-decoration: underline;
  position: relative;
  padding-right: 2ex;
}
main .common-visual-noimage .title .cat-title a::after {
  content: "";
  position: absolute;
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  top: 50%;
  right: 5px;
  transform: translateY(-50%) rotate(45deg);
}
main .common-visual-noimage .title .cat-title a:last-child::after {
  display: none;
}
main .common-title {
  text-align: center;
}
main .common-title .title-en {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  font-weight: 500;
}
main .common-title .title-en span {
  color: #008B3E;
}
main .common-title h2 {
  font-size: clamp(3.2rem, 2.272rem + 1.2vw, 4rem);
  font-weight: bold;
  color: #008B3E;
  margin-bottom: 70px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  main .common-title h2 {
    margin-bottom: 30px;
    font-size: clamp(2.45rem, 1.848rem + 0.8vw, 3rem);
    line-height: 1.3;
  }
}
main .bg {
  background: #F1F5F2;
  border-radius: 15px;
  padding: 100px 5%;
}
@media screen and (max-width: 767px) {
  main .bg {
    padding: 40px 5%;
  }
}
main .scroll-text {
  position: absolute;
  overflow: hidden;
  width: 100%;
  display: flex;
  white-space: nowrap;
}
main .scroll-text p {
  white-space: nowrap;
  display: inline-block;
  color: #F7F7FA;
  font-size: clamp(16.7rem, 10.624rem + 7.9vw, 22rem);
  animation: scroll-text 10s linear infinite;
  padding-right: 10%;
  line-height: 1;
}
@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
main #next-contents {
  position: relative;
  padding-block: 0 150px;
}
main #next-contents .scroll-text {
  z-index: -1;
  bottom: 0;
  top: auto;
}
main #next-contents h2 {
  text-align: center;
  color: #008B3E;
  font-size: clamp(2rem, 1.536rem + 0.6vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 30px;
}
main #next-contents .layout {
  display: flex;
  justify-content: center;
  gap: 5%;
  max-width: 1110px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  main #next-contents .layout {
    flex-direction: column;
    gap: 20px;
    padding: 0 5%;
  }
}
main #next-contents .layout .box {
  flex: 1;
  background-color: #F1F5F2;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  display: block;
  position: relative;
  line-height: 0;
  max-width: 530px;
}
main #next-contents .layout .box::after {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(45deg, #018B3E, #0088AB);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
}
main #next-contents .layout .box h3 {
  position: absolute;
  bottom: 22px;
  left: 22px;
  color: #fff;
  font-size: clamp(1.7rem, 1.424rem + 0.4vw, 2rem);
  font-weight: 500;
  line-height: 1;
  z-index: 1;
}
main #next-contents .layout .box .mark {
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 1;
}
main #next-contents .layout .box .mark::after {
  border-top: 1px solid #008B3E;
  border-right: 1px solid #008B3E;
}
main .mark {
  position: relative;
  display: inline-block;
  width: 44px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #008B3E;
}
main .mark::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -5px;
  transform: rotate(45deg);
}
main ul.list-type-dot {
  list-style-type: "・";
  padding-inline-start: 1em;
}
main ol.list-type-decimal {
  list-style-type: decimal;
  padding-inline-start: 1.5em;
}
main ol.list-type-katakana {
  list-style-type: katakana;
  padding-inline-start: 2em;
}
main ul.list-type-kome {
  list-style-type: "※";
  padding-inline-start: 1em;
}
main .table-normal {
  border: 1px solid #000;
}
main .table-normal td {
  padding: 4px 8px;
  border: 1px solid #000;
  font-size: clamp(1rem, 0.6745762712rem + 0.4237288136vw, 1.2rem);
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  main .table-normal td {
    font-size: 1.2rem;
  }
}
main .table-normal .table-bg {
  background-color: #eee;
}
main .table-normal .center {
  text-align: center;
}
main a.arrow {
  position: relative;
  text-decoration: underline;
  padding-top: 10px;
}
main a.arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 1px solid #008B3E;
  border-right: 1px solid #008B3E;
  top: 50%;
  right: -10px;
  transform: translateY(-50%) rotate(45deg);
}
main #content_updateinfo_heading_all .title {
  font-size: clamp(2rem, 1.536rem + 0.6vw, 2.4rem);
  color: #008B3E;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  main #content_updateinfo_heading_all .title {
    font-size: 2.4rem;
  }
}
main #content_updateinfo_all .block-body {
  padding: 20px 0;
  border-bottom: 1px solid #EFEFEF;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  main #content_updateinfo_all .block-body {
    display: block;
  }
}
main #content_updateinfo_all .block-body:first-child {
  border-top: 1px solid #EFEFEF;
}
main #content_updateinfo_all .block-body .date {
  width: 100px;
}
@media screen and (max-width: 767px) {
  main #content_updateinfo_all .block-body .date {
    width: 100%;
    display: block;
  }
}
main #content_updateinfo_all .block-body a {
  flex: 1;
}
main #content_updateinfo_all .block-body .attention {
  width: 100px;
  display: inline-block;
  line-height: 1;
  padding: 6px 12px;
  background-color: #0088AB;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}
main .basic {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  main .basic {
    padding-bottom: 40px;
  }
}
main .basic .bg {
  background-color: #F1F5F2;
  border-radius: 15px;
  width: 100%;
  padding: 80px 5%;
}
@media screen and (max-width: 767px) {
  main .basic .bg {
    padding: 40px 5%;
  }
}
main .basic h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(2.45rem, 1.848rem + 0.8vw, 3rem);
  font-weight: 700;
  color: #008B3E;
}
@media screen and (max-width: 767px) {
  main .basic h2 {
    margin-bottom: 30px;
  }
}
main .basic .border-title {
  font-size: clamp(1.85rem, 1.48rem + 0.5vw, 2.2rem);
  font-weight: 500;
  color: #008B3E;
  border-bottom: 1px solid #008B3E;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
main .basic.padding {
  padding: 0 6%;
}
main .basic .btn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
main .basic .btn-list a {
  width: auto;
  margin-bottom: 14px;
  min-width: 23%;
  position: relative;
  background-color: #008B3E;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 50px;
  line-height: 1.2;
  padding: 18px 34px 18px 24px;
}
main .basic .btn-list a::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
main .basic .rec-table {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  line-height: 1.4;
}
main .basic .rec-table thead th {
  background-color: #008B3E;
  color: #fff;
  vertical-align: middle;
  border: 1px solid #008B3E;
  padding: 12px;
  text-align: center;
}
main .basic .rec-table thead th.first {
  border-right: 1px solid #fff;
}
main .basic .rec-table thead td {
  border: 1px solid #008B3E;
  padding: 15px;
  color: #008B3E;
  text-align: center;
}
main .basic .rec-table tbody th {
  background-color: #F1F5F2;
  border-right: 1px solid #008B3E;
  border-bottom: 1px dashed #008B3E;
  padding: 12px;
  text-align: center;
  color: #008B3E;
  width: 14.28%;
}
main .basic .rec-table tbody th sup {
  font-size: clamp(0.95rem, 0.856rem + 0.1vw, 1rem);
  vertical-align: top;
}
main .basic .rec-table tbody td {
  width: 14.28%;
  border-right: 1px solid #008B3E;
  border-bottom: 1px dashed #008B3E;
  padding: 15px;
  text-align: center;
  background-color: #fff;
  vertical-align: middle;
}
main .basic .rec-table tbody td span {
  display: block;
  margin: auto;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 5px solid #008B3E;
  border-radius: 50%;
}
main .basic .table-matrix {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  line-height: 1.4;
}
main .basic .table-matrix .table-bg {
  background-color: #008B3E;
  color: #fff;
  vertical-align: middle;
  border: 1px solid #008B3E;
  padding: 12px;
  text-align: center;
}
main .basic .table-matrix .table-bg:first-child {
  border-right: 1px solid #fff;
}
main .basic .table-matrix .content-tr:nth-child(n+2) .table-bg:first-child {
  border-right: 1px solid #008B3E;
}
main .basic .table-matrix .content-tr:nth-child(n+3) .table-bg {
  background-color: #F1F5F2;
  color: #008B3E;
  font-weight: 500;
}
main .basic .table-matrix td {
  border: 1px solid #008B3E;
  padding: 15px;
  color: #008B3E;
  text-align: center;
}
main .basic .table-matrix .block-body:last-child td {
  text-align: left;
  color: #000;
}
main .basic .note {
  margin-top: 1rem;
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
}
main #search-wrap {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  main #search-wrap {
    margin-bottom: 30px;
  }
}
main #search-wrap .search-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  main #search-wrap .search-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
main #search-wrap .search-col .search-title {
  position: relative;
}
main #search-wrap .search-col .search-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #008B3E;
  border-radius: 50%;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  main #search-wrap .search-col .search-title::before {
    display: none;
  }
}
main #search-wrap .search-col .select-container select {
  padding: 15px;
  border-radius: 4px;
  border: 1px solid rgba(0, 139, 62, 0.2);
  background-color: #F1F5F2;
}
main #content_updateinfo_all {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  main #content_updateinfo_all {
    margin-bottom: 3rem;
  }
}
main .event-list dl {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 15px;
  justify-content: space-between;
  padding: 30px 40px;
  margin-bottom: 14px;
  gap: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  main .event-list dl {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
main .event-list dl:hover {
  background-color: rgba(0, 139, 62, 0.1);
}
main .event-list dl dt .label {
  display: inline-block;
  background-color: #008B3E;
  color: #fff;
  line-height: 1;
  padding: 10px;
  border-radius: 100px;
  min-width: 110px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  main .event-list dl dt .label {
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
    padding: 8px;
    min-width: 70px;
  }
}
main .event-list dl dd {
  flex: 1;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  main .event-list dl dd {
    padding-right: 30px;
  }
}
main .event-list dl dd .mark {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  main .event-list dl dd .mark {
    right: 15px;
    width: 26px;
  }
}
main .event-list dl dd .label {
  margin-right: 8px;
  padding: 7px 16px;
  font-size: clamp(1.175rem, 1.012rem + 0.2vw, 1.3rem);
}
main .event-list dl dd .label-c2 {
  background-color: #0089AB;
}
main .event-list dl a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
main .pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 60px;
}
main .pagination li span,
main .pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #008B3E;
  border: 1px solid #008B3E;
  background-color: #fff;
}
main .pagination li span.current, main .pagination li span:hover,
main .pagination li a.current,
main .pagination li a:hover {
  background-color: #008B3E;
  color: #fff;
}
main .pagination li .prev,
main .pagination li .next {
  background: none;
  border: none;
  position: relative;
}
main .pagination li .prev::after,
main .pagination li .next::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: 2px solid #008B3E;
  border-right: 2px solid #008B3E;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
main .pagination li .prev.prev::after,
main .pagination li .next.prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
}
main .pagination li .prev:hover::after,
main .pagination li .next:hover::after {
  background-color: #008B3E;
  border-color: #fff;
}
main#visit .lead {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  main#visit .lead {
    text-align: left;
    margin-bottom: 20px;
  }
}
main#event #search-wrap, main#internship #search-wrap {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  main#event #search-wrap, main#internship #search-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
main#event .block-body, main#internship .block-body {
  margin-bottom: 3rem;
}
main#event .btn-list, main#internship .btn-list {
  margin-top: 2rem;
}
main#requirement-det .content-section {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  main#requirement-det .content-section {
    margin-top: 3rem;
  }
}
main#requirement-det .content-section .section-block {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  main#requirement-det .content-section .section-block {
    margin-bottom: 35px;
  }
}
main#requirement-det .content-section .section-block.last {
  margin-bottom: 0;
}
main#requirement-det .content-section .section-block .lead {
  margin-bottom: 4rem;
}
main#requirement-det .content-section .btn-list {
  margin-top: 3rem;
}
main#requirement-det .content-section .block-body {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  main#requirement-det .content-section .block-body {
    margin-bottom: 1rem;
  }
}
main#requirement-det .content-wrap .news-list-wrap {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  main#requirement-det .content-wrap .news-list-wrap {
    margin-bottom: 4rem;
  }
}
main#requirement-det .content-wrap .news-list-wrap .block-header {
  text-align: center;
}
main#requirement-det .content-wrap .news-list-wrap .block-header .block-header-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(2.45rem, 1.848rem + 0.8vw, 3rem);
  font-weight: 700;
  color: #008B3E;
}
@media screen and (max-width: 767px) {
  main#requirement-det .content-wrap .news-list-wrap .block-header .block-header-title {
    margin-bottom: 30px;
  }
}
main#requirement-det .content-wrap .news-list-wrap .block-body-group .block-body {
  margin-bottom: 20px;
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  padding: 20px 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  main#requirement-det .content-wrap .news-list-wrap .block-body-group .block-body {
    padding: 15px 50px 15px 20px;
  }
}
main#requirement-det .content-wrap .news-list-wrap .block-body-group .block-body:hover {
  background-color: rgba(0, 139, 62, 0.1);
}
main#requirement-det .content-wrap .news-list-wrap .block-body-group .block-body .date {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  color: #008B3E;
  margin-right: 10px;
}
main#requirement-det .content-wrap .news-list-wrap .block-body-group .block-body .attention {
  background-color: #B70116;
  color: #fff;
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
  padding: 4px 8px;
  border-radius: 50px;
  line-height: 1;
}
main#requirement-det .content-wrap .news-list-wrap .block-body-group .block-body a {
  display: block;
  width: calc(100% - 55px);
}
@media screen and (max-width: 767px) {
  main#requirement-det .content-wrap .news-list-wrap .block-body-group .block-body a {
    width: calc(100% - 5px);
  }
}
main#requirement-det .content-wrap .news-list-wrap .block-body-group .block-body .mark {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  main#requirement-det .content-wrap .news-list-wrap .block-body-group .block-body .mark {
    right: 15px;
    width: 26px;
  }
}
main#requirement-det .job-info-wrap .block-body {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  main#requirement-det .job-info-wrap .block-body {
    margin-bottom: 3rem;
  }
}
main#requirement-det .job-info-wrap .block-body p {
  margin-bottom: 2rem;
}
main#requirement-det .faq .block-header {
  text-align: center;
}
main#requirement-det .faq .block-header .block-header-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(2.45rem, 1.848rem + 0.8vw, 3rem);
  font-weight: 700;
  color: #008B3E;
}
@media screen and (max-width: 767px) {
  main#requirement-det .faq .block-header .block-header-title {
    margin-bottom: 30px;
  }
}
main#requirement-det .faq {
  margin-bottom: 80px;
}
main#requirement-det .faq .block-body-group .block-body {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 14px;
}
main#requirement-det .faq .block-body-group .block-body .accordion-title {
  position: relative;
  background-color: #008B3E;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
  padding: 20px 30px 20px 80px;
}
@media screen and (max-width: 767px) {
  main#requirement-det .faq .block-body-group .block-body .accordion-title {
    padding: 15px 20px 15px 60px;
  }
}
main#requirement-det .faq .block-body-group .block-body .accordion-title:hover {
  background-color: #59AC6E;
}
main#requirement-det .faq .block-body-group .block-body .accordion-title::before {
  content: "Q";
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #008B3E;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  main#requirement-det .faq .block-body-group .block-body .accordion-title::before {
    width: 28px;
    height: 28px;
    left: 20px;
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  }
}
main#requirement-det .faq .block-body-group .block-body .accordion-title .right {
  position: absolute;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  main#requirement-det .faq .block-body-group .block-body .accordion-title .right {
    right: 16px;
  }
}
main#requirement-det .faq .block-body-group .block-body .content-body {
  position: relative;
  background-color: #F1F5F2;
  padding: 20px 30px 30px 80px;
  display: none;
}
@media screen and (max-width: 767px) {
  main#requirement-det .faq .block-body-group .block-body .content-body {
    padding: 15px 20px 20px 60px;
  }
}
main#requirement-det .faq .block-body-group .block-body .content-body::before {
  content: "A";
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #008B3E;
  color: #fff;
  left: 30px;
  top: 20px;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  main#requirement-det .faq .block-body-group .block-body .content-body::before {
    width: 28px;
    height: 28px;
    left: 20px;
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  }
}
@media screen and (max-width: 767px) {
  main#requirement-det .faq .block-body-group .block-body .content-body p {
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  }
}
main#requirement-det #achievements ul {
  display: flex;
  justify-content: center;
  gap: 2%;
}
@media screen and (max-width: 767px) {
  main#requirement-det #achievements ul {
    flex-wrap: wrap;
  }
}
main#requirement-det #achievements ul li {
  max-width: 290px;
  width: 33.333%;
}
@media screen and (max-width: 767px) {
  main#requirement-det #achievements ul li {
    width: 100%;
    margin-bottom: 15px;
  }
}
main#requirement-det #achievements ul li a {
  background-color: #008B3E;
  color: #fff;
  text-align: center;
  border-radius: 15px;
  line-height: 1.2;
  padding: 10px 34px 10px 24px;
  position: relative;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  main#requirement-det #achievements ul li a {
    height: auto;
    text-align: left;
    padding: 15px 40px 15px 20px;
  }
}
main#requirement-det #achievements ul li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}
main#requirement-det #faq {
  margin-bottom: 80px;
}
main#requirement-det #faq .block-body-group .block-body {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 14px;
}
main#requirement-det #faq .block-body-group .block-body .accordion-title {
  position: relative;
  background-color: #59AC6E;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
  padding: 20px 30px 20px 80px;
}
@media screen and (max-width: 767px) {
  main#requirement-det #faq .block-body-group .block-body .accordion-title {
    padding: 15px 20px 15px 60px;
  }
}
main#requirement-det #faq .block-body-group .block-body .accordion-title:hover {
  background-color: #008B3E;
}
main#requirement-det #faq .block-body-group .block-body .accordion-title::before {
  content: "Q";
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #008B3E;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  main#requirement-det #faq .block-body-group .block-body .accordion-title::before {
    width: 28px;
    height: 28px;
    left: 20px;
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  }
}
main#requirement-det #faq .block-body-group .block-body .accordion-title .right {
  position: absolute;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  main#requirement-det #faq .block-body-group .block-body .accordion-title .right {
    right: 16px;
  }
}
main#requirement-det #faq .block-body-group .block-body .content-body {
  position: relative;
  background-color: #F1F5F2;
  padding: 20px 30px 30px 80px;
  display: none;
}
@media screen and (max-width: 767px) {
  main#requirement-det #faq .block-body-group .block-body .content-body {
    padding: 15px 20px 20px 60px;
  }
}
main#requirement-det #faq .block-body-group .block-body .content-body::before {
  content: "A";
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #008B3E;
  color: #fff;
  left: 30px;
  top: 20px;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 767px) {
  main#requirement-det #faq .block-body-group .block-body .content-body::before {
    width: 28px;
    height: 28px;
    left: 20px;
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  }
}
@media screen and (max-width: 767px) {
  main#requirement-det #faq .block-body-group .block-body .content-body p {
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  }
}
main#requirement-det #panf {
  padding: 0 3% 80px;
}
@media screen and (max-width: 767px) {
  main#requirement-det #panf {
    padding: 0 3% 40px;
  }
}
main#requirement-det #panf .layout {
  display: flex;
  justify-content: center;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  main#requirement-det #panf .layout {
    gap: 15px;
    align-items: center;
  }
}
main#requirement-det #panf .layout .text h2 {
  text-align: left;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  main#requirement-det #panf .layout .text h2 {
    font-size: clamp(1.55rem, 1.224rem + 0.4vw, 1.8rem);
  }
}
main#requirement-det #panf .layout .text p {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  main#requirement-det #panf .layout .text p {
    margin-bottom: 2rem;
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  }
}
main#requirement-det #panf .layout .text a {
  text-decoration: underline;
  color: #008B3E;
}
main#requirement-det #panf .layout .image {
  max-width: 280px;
}
@media screen and (max-width: 767px) {
  main#requirement-det #panf .layout .image {
    width: 25%;
  }
}
main #contact {
  background-color: #F1F5F2;
  border-radius: 15px 15px 0 0;
  padding: 60px 5%;
}
main #contact .layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  main #contact .layout {
    flex-direction: column;
    text-align: center;
  }
}
main #contact .layout h2 {
  width: 238px;
  display: block;
  border: 1px solid #008B3E;
  color: #008B3E;
  padding: 32px;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  main #contact .layout h2 {
    padding: 20px;
    margin-bottom: 2rem;
  }
}
main #contact .layout .buka {
  font-size: clamp(1.7rem, 1.424rem + 0.4vw, 2rem);
  font-weight: bold;
}

#overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 990;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.menu-open #overlay {
  opacity: 1;
  pointer-events: auto;
}

/* HEADER
================================================== */
#recruit_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 3%;
  z-index: 1000;
  transition: background-color 0.3s ease;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #recruit_header {
    padding: 10px 3% 10px 5%;
  }
}
#recruit_header .header-layout-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#recruit_header .header-layout-main .header-logo {
  position: relative;
  width: 212px;
  line-height: 1;
}
@media screen and (max-width: 920px) {
  #recruit_header .header-layout-main .header-logo {
    width: 100px;
  }
}
#recruit_header .header-layout-main .header-logo img {
  width: 100%;
  transition: opacity 0.2s ease;
}
#recruit_header .header-layout-main .header-logo .wh {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
#recruit_header .header-layout-main .header-logo .sub {
  text-align: center;
  color: #008B3E;
  margin-top: 8px;
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
}
@media screen and (max-width: 920px) {
  #recruit_header .header-layout-main .header-logo .sub {
    font-size: 11px;
  }
}
#recruit_header .header-layout-main .header-nav {
  flex: 1;
  padding-right: 1%;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu {
  position: relative;
}
@media screen and (max-width: 1280px) {
  #recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu {
    display: none;
  }
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: bottom;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .parent-title {
  position: relative;
  line-height: 1;
  padding: 9px 10px;
  cursor: pointer;
  z-index: 1;
  font-size: clamp(1.4rem, 1.168rem + 0.3vw, 1.6rem);
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu:hover::after {
  transform: scaleY(1);
  transition: all 0.1s linear;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu:hover .parent-title {
  color: #008B3E;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu.open .parent-title {
  color: #008B3E !important;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu.open .child-menu {
  display: flex;
  animation: fadeDownMenu 0.3s ease forwards;
}
@keyframes fadeDownMenu {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu {
  position: fixed;
  display: none;
  padding: 16px 20px;
  top: 102px;
  left: 0;
  background-color: #fff;
  width: 100%;
  padding: 40px 8%;
  display: flex;
  flex-wrap: wrap;
  display: none;
  opacity: 0;
  transform: translateY(-20px);
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 20px;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu li a {
  display: block;
  color: #008B3E;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu li a:hover {
  text-decoration: underline;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu li a .image {
  display: block;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu li:nth-child(3n) {
  margin-right: 0;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.wp-list li {
  width: 23.5%;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.wp-list li:nth-child(3n) {
  margin-right: 2%;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.wp-list li:nth-child(4n) {
  margin-right: 0;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.wp-list li.wide {
  width: 31.333%;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.wp-list li.min a {
  display: flex;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.wp-list li.min a .image {
  width: 50px;
  line-height: 0;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.wp-list li.min a .title {
  flex: 1;
  padding-left: 10px;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.wp-list li.min a .title .name {
  display: block;
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.wp-list li.min a .title .buka {
  display: block;
  font-size: clamp(1.025rem, 0.956rem + 0.1vw, 1.1rem);
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.recruit-list {
  flex-wrap: nowrap;
  gap: 2%;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.recruit-list li {
  width: 24%;
  margin-right: 0;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .child-menu.recruit-list li a {
  background-color: #008B3E;
  color: #fff;
  line-height: 1;
  padding: 30px 5%;
}
#recruit_header .header-layout-main .header-nav .header-nav-layout .menu-entry-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #recruit_header .header-layout-main .header-nav .header-nav-layout .btn-menu {
    display: none;
  }
  #recruit_header .header-layout-main .header-nav .header-nav-layout .menu-entry-sp {
    display: block;
    width: 36vw;
    max-width: 170px;
  }
  #recruit_header .header-layout-main .header-nav .header-nav-layout .menu-entry-sp a {
    height: 50px;
    font-size: min(14px, 3vw);
  }
  #recruit_header .header-layout-main .header-nav .header-nav-layout .menu-entry-sp a small {
    display: block;
    font-size: min(11px, 2vw);
    margin-right: 4%;
    padding-right: 4%;
    border-right: 1px solid #fff;
  }
}
#recruit_header .header-layout-main #sp-mm {
  width: 74px;
}
@media screen and (max-width: 767px) {
  #recruit_header .header-layout-main #sp-mm {
    width: 60px;
  }
}
#recruit_header .header-layout-main #sp-mm .sp-mm-btn {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: #008B3E 1px solid;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  #recruit_header .header-layout-main #sp-mm .sp-mm-btn {
    width: 60px;
    height: 60px;
  }
}
#recruit_header .header-layout-main #sp-mm .sp-mm-btn:hover {
  background-color: #008B3E;
}
#recruit_header .header-layout-main #sp-mm .sp-mm-btn:hover span {
  background-color: #fff;
}
#recruit_header .header-layout-main #sp-mm .sp-mm-btn:hover span:before, #recruit_header .header-layout-main #sp-mm .sp-mm-btn:hover span:after {
  background-color: #fff;
}
#recruit_header .header-layout-main #sp-mm .sp-mm-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 21px;
  height: 2px;
  background-color: #008B3E;
}
#recruit_header .header-layout-main #sp-mm .sp-mm-btn span:before, #recruit_header .header-layout-main #sp-mm .sp-mm-btn span:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.3s ease;
}
#recruit_header .header-layout-main #sp-mm .sp-mm-btn span:before {
  background-color: #008B3E;
  top: -7px;
}
#recruit_header .header-layout-main #sp-mm .sp-mm-btn span:after {
  background-color: #008B3E;
  bottom: -7px;
}
#recruit_header .header-layout-main #sp-mm .sp-mm-btn:hover span:before {
  top: -9px;
}
#recruit_header .header-layout-main #sp-mm .sp-mm-btn:hover span:after {
  bottom: -9px;
}
#recruit_header .btn-menu {
  text-align: center;
  width: 10vw;
  max-width: 124px;
}
@media screen and (max-width: 1280px) {
  #recruit_header .btn-menu {
    width: 15vw;
  }
}
#recruit_header .btn-menu a {
  line-height: 1;
  display: block;
  padding: 10px 0;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 10px;
  font-size: clamp(1.325rem, 1.068rem + 0.3vw, 1.5rem);
  border-radius: 5px;
}
#recruit_header .btn-menu a:hover {
  opacity: 0.8;
}
#recruit_header .btn-menu.menu-intern a {
  background-color: #018B3E;
}
#recruit_header .btn-menu.menu-entry-sp a, #recruit_header .btn-menu.menu-entry a {
  background-color: #E13000;
}
#recruit_header .btn-menu.menu-require a {
  background-color: #0088AB;
}

.header-nobg #recruit_header {
  background-color: transparent;
}
.header-nobg #recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .parent-title {
  color: #fff;
}
.header-nobg #recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .parent-title:hover {
  color: #008B3E;
}
.header-nobg #recruit_header .header-layout-main .header-logo img.wh {
  opacity: 1;
}
.header-nobg #recruit_header .header-layout-main .header-logo img.bk {
  opacity: 0;
}
.header-nobg.scroll-in #recruit_header {
  background-color: #fff;
}
.header-nobg.scroll-in #recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .parent-title {
  color: #000;
}
.header-nobg.scroll-in #recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu:hover .parent-title {
  color: #008B3E;
}
.header-nobg.scroll-in #recruit_header .header-layout-main .header-logo img.wh {
  opacity: 0;
}
.header-nobg.scroll-in #recruit_header .header-layout-main .header-logo img.bk {
  opacity: 1;
}
.header-nobg.scroll-in #recruit_header .sp-mm-btn {
  background-color: #008B3E;
}
@media screen and (max-width: 767px) {
  .header-nobg.spbg #recruit_header {
    background-color: #fff;
  }
  .header-nobg.spbg #recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu .parent-title {
    color: #000;
  }
  .header-nobg.spbg #recruit_header .header-layout-main .header-nav .header-nav-layout .parent-menu:hover .parent-title {
    color: #008B3E;
  }
  .header-nobg.spbg #recruit_header .header-layout-main .header-logo img.wh {
    opacity: 0;
  }
  .header-nobg.spbg #recruit_header .header-layout-main .header-logo img.bk {
    opacity: 1;
  }
  .header-nobg.spbg #recruit_header .sp-mm-btn {
    background-color: #008B3E;
  }
}
.header-nobg main {
  padding-top: 0;
}

#slide-menu {
  display: none;
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1100;
}
#slide-menu .slide-menu-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px 3% 0 0;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-top {
    align-items: flex-start;
    padding: 10px 3% 0 0;
  }
}
#slide-menu .slide-menu-top-menu {
  flex: 1;
}
#slide-menu .slide-menu-top-menu .entry-menu {
  display: flex;
  justify-content: flex-end;
  margin-right: 1%;
  align-items: center;
}
#slide-menu .slide-menu-top-menu .entry-menu li {
  width: 30%;
}
#slide-menu #sp-mm-close {
  width: 74px;
}
@media screen and (max-width: 767px) {
  #slide-menu #sp-mm-close {
    width: 60px;
  }
}
#slide-menu #sp-mm-close .sp-mm-btn {
  position: relative;
  width: 72px;
  height: 72px;
  background-color: #008B3E;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #slide-menu #sp-mm-close .sp-mm-btn {
    width: 60px;
    height: 60px;
  }
}
#slide-menu #sp-mm-close .sp-mm-btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  display: block;
  width: 21px;
  height: 21px;
  transition: all 0.3s ease;
}
#slide-menu #sp-mm-close .sp-mm-btn span:before, #slide-menu #sp-mm-close .sp-mm-btn span:after {
  content: "";
  display: block;
  position: absolute;
}
#slide-menu #sp-mm-close .sp-mm-btn span:before {
  width: 100%;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  background-color: #fff;
}
#slide-menu #sp-mm-close .sp-mm-btn span:after {
  height: 100%;
  width: 2px;
  left: 50%;
  margin-left: -1px;
  background-color: #fff;
}
#slide-menu #sp-mm-close .sp-mm-btn:hover span {
  transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
}
#slide-menu .other-site-menu {
  padding: 0 40px 0 0;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 3%;
  flex: 1;
}
@media screen and (max-width: 767px) {
  #slide-menu .other-site-menu {
    justify-content: flex-start;
    padding-left: 5%;
  }
}
#slide-menu .other-site-menu li {
  padding-right: 23px;
  position: relative;
}
#slide-menu .other-site-menu li::after {
  content: url("/recruit/newgraduate/images/blank-icon.svg");
  display: block;
  position: absolute;
  right: 0px;
  top: 52%;
  transform: translateY(-50%);
}
#slide-menu .other-site-menu li a {
  color: #008B3E;
}
#slide-menu .slide-menu-nav-layout {
  display: flex;
  justify-content: center;
  gap: 4%;
  padding: 50px 5% 40px;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout {
    display: block;
    padding: 20px 5%;
  }
}
#slide-menu .slide-menu-nav-layout .col {
  width: 33%;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .col {
    width: 100%;
  }
}
#slide-menu .slide-menu-nav-layout .col .parent-menu {
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .col .parent-menu {
    margin-bottom: 0;
  }
}
#slide-menu .slide-menu-nav-layout .col .parent-menu .parent-title {
  position: relative;
  display: block;
  color: #008B3E;
  border-bottom: 1px solid #008B3E;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .col .parent-menu .parent-title {
    font-size: 1.6rem;
    padding: 12px 0;
    margin-bottom: 0;
  }
  #slide-menu .slide-menu-nav-layout .col .parent-menu .parent-title i {
    position: absolute;
    display: block;
    width: 19px;
    height: 19px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  #slide-menu .slide-menu-nav-layout .col .parent-menu .parent-title i::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #008B3E;
    top: calc(50% - 1px);
    left: 0;
  }
  #slide-menu .slide-menu-nav-layout .col .parent-menu .parent-title i::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #008B3E;
    top: 0;
    left: calc(50% - 1px);
  }
}
#slide-menu .slide-menu-nav-layout .col .parent-menu .child-menu a:hover {
  color: #008B3E;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .col .parent-menu .child-menu a {
    font-size: 1.6rem;
    position: relative;
    display: block;
  }
  #slide-menu .slide-menu-nav-layout .col .parent-menu .child-menu a::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -4.5px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #008B3E;
    border-right: 1px solid #008B3E;
    transform: rotate(45deg);
  }
  #slide-menu .slide-menu-nav-layout .col .parent-menu .child-menu a {
    padding: 12px 0;
    border-bottom: 1px solid #ccc;
  }
}
#slide-menu .slide-menu-nav-layout .col .parent-menu .child-menu a .title {
  display: flex;
}
#slide-menu .slide-menu-nav-layout .col .parent-menu .child-menu a .name {
  white-space: nowrap;
  width: 95px;
}
#slide-menu .slide-menu-nav-layout .col .parent-menu .child-menu a .buka {
  flex: 1;
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .col .parent-menu .child-menu a .buka {
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .col .parent-menu .child-menu {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #slide-menu .slide-menu-nav-layout .col .parent-menu.open .parent-title i {
    transform: translateY(-50%) rotate(45deg);
  }
}

.entry-menu-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 1px;
  z-index: 999;
}
.entry-menu-sp li {
  width: 33.3333%;
}
.entry-menu-sp li a {
  display: block;
  padding: 12px 0 10px;
  text-align: center;
  background-color: #9A0126;
}
.entry-menu-sp li:nth-child(1) a {
  background-color: #fff;
}

/* FOOTER
================================================== */
#recruit_footer {
  background-color: #008B3E;
  padding: 40px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #recruit_footer {
    padding: 40px 3%;
  }
}
#recruit_footer #footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  #recruit_footer #footer-bottom {
    display: block;
  }
}
#recruit_footer #footer-bottom .menu {
  display: flex;
}
@media screen and (max-width: 767px) {
  #recruit_footer #footer-bottom .menu {
    display: block;
    margin-bottom: 20px;
  }
}
#recruit_footer #footer-bottom .menu li {
  position: relative;
}
#recruit_footer #footer-bottom .menu li::after {
  content: "｜";
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  #recruit_footer #footer-bottom .menu li::after {
    display: none;
  }
}
#recruit_footer #footer-bottom .menu li:last-child::after {
  content: "";
}
#recruit_footer #footer-bottom .menu li a {
  position: relative;
}
#recruit_footer #footer-bottom .menu li a::after {
  content: url("/assets/image/blank-white.svg");
  margin-left: 5px;
}
#recruit_footer #footer-bottom .menu li a:hover {
  text-decoration: underline;
}
#recruit_footer #footer-bottom .copyright {
  font-size: 1.3rem;
}

#notfound .inner {
  padding: 40px 3%;
}
#notfound .title {
  background-color: #008B3E;
  color: #fff;
  font-size: clamp(1.7rem, 1.424rem + 0.4vw, 2rem);
  font-weight: bold;
  line-height: 1;
  padding: 15px;
  margin-bottom: 20px;
}
#notfound .list {
  padding: 0 5%;
}
#notfound ul {
  padding-left: 25px;
  margin-bottom: 30px;
}
#notfound ul li {
  position: relative;
  margin-bottom: 1rem;
}
#notfound ul li::before {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #008B3E;
  border-right: 2px solid #008B3E;
  top: 13px;
  left: -20px;
  transform: rotate(45deg);
}
#notfound .back {
  padding: 0 5%;
}
#notfound .back a {
  text-decoration: underline;
}
#notfound .back a:hover {
  color: #B70116;
}

#modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #008B3E;
  opacity: 0.97;
  background: linear-gradient(45deg, #018B3E, #0088AB);
}
#modal-overlay::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("/assets/image/noize.png");
  opacity: 0.2;
  mix-blend-mode: multiply;
  z-index: 1;
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  max-width: 1175px;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  padding: 5px 0;
}
.modal .scroll-area {
  overflow-y: scroll;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .modal .scroll-area {
    padding: 25px 0;
  }
}
.modal .scroll-area::-webkit-scrollbar {
  width: 0;
}
.modal .scroll-area::-webkit-scrollbar-thumb {
  background-color: #ccc;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.modal .scroll-area::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
.modal .modal-close {
  position: absolute;
  width: 80px;
  height: 40px;
  border-radius: 100px;
  background-color: #000;
  top: 0;
  right: 74px;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal .modal-close {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10;
  }
}
.modal .modal-close:hover {
  background-color: #008B3E;
}
.modal .modal-close::before {
  content: "";
  display: block;
  position: absolute;
  height: 16px;
  width: 1px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal-close::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal-content {
  position: relative;
}

@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;
}