@charset "UTF-8";
@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");
/***
    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.2rem, 0.576rem + 0.8vw, 1.6rem);
  line-height: 2;
  font-weight: 400;
  color: #140B42;
  background-color: #F7F7F7;
}
body.menu-open {
  overflow: hidden;
}
body .coming {
  pointer-events: none;
  opacity: 0.5;
}

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

a {
  transition: all 0.3s ease;
}

a img {
  transition: all 0.3s ease;
}

a:hover {
  color: #140B42;
}

a.textlink {
  color: #005587;
  text-decoration: underline;
  transition: all 0.2s ease;
}
a.textlink[target=_blank]::after {
  content: url(/assets/image/blank.svg);
  padding-left: 10px;
}
a.textlink:hover {
  color: #00BFB3;
}

.ly_container {
  position: relative;
}

.inview {
  opacity: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

._spShowImportant {
  display: none !important;
}

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

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

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

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

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

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

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

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

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

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

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.inner {
  max-width: calc(1280px + 6%);
  margin: auto;
  padding: 0 3%;
}
.inner.short {
  max-width: calc(1042px + 6%);
}

main {
  padding-top: 140px;
}
main.no-hp {
  padding-top: 0;
}
main.bg1 {
  background: url(/recruit/assets/image/bg01.png) repeat-y center top/100%;
}
main.bg2 {
  background: url(/recruit/assets/image/bg02.png) repeat-y center top/100%;
}
main.bg3 {
  background: url(/recruit/assets/image/bg03.png) repeat-y center top/100%;
}
main.bg4 {
  background: url(/recruit/assets/image/bg04.png) repeat-y center top/100%;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 75px;
  }
  main p {
    font-size: 1.5rem;
  }
}
main #breadcrumb {
  padding: 8px 3%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  main #breadcrumb {
    display: none;
  }
}
main #breadcrumb ul {
  display: flex;
}
main #breadcrumb ul li {
  font-size: clamp(1.1rem, 0.788rem + 0.4vw, 1.3rem);
}
main #breadcrumb ul li::after {
  content: ">";
  margin: 0 1ex;
}
main #breadcrumb ul li:last-child::after {
  content: "";
}
main #breadcrumb.white {
  color: #fff;
}
main .layout {
  display: flex;
}
@media screen and (max-width: 767px) {
  main .layout.sp-break {
    flex-direction: column;
    gap: 20px;
  }
  main .layout.sp-break .box {
    width: 100% !important;
    margin: 0 auto !important;
  }
}
main .layout.wrap {
  flex-wrap: wrap;
}
main .layout.col3 .box {
  width: 31.333%;
  margin-right: 3%;
}
main .layout.col3 .box:nth-child(3n) {
  margin-right: 0;
}
main .layout.col2 {
  justify-content: space-between;
}
main .layout.col2 .box {
  width: 48%;
}
main .section-block {
  margin: 0 auto 60px;
}
main .attention {
  color: #D00000;
}
main .text-stop {
  text-decoration: line-through;
}
main a.arrow-link {
  position: relative;
  display: flex;
  padding: 13px 0;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #aaa;
}
main a.arrow-link .arrow {
  width: 28px;
  height: 28px;
  background-color: #140B42;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  border-radius: 50%;
  transition: background-color 0.3s;
}
main a.arrow-link .arrow img {
  width: 6px;
}
main a.arrow-link:hover .arrow {
  background-color: #00BFB4;
}

/* HEADER
================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 116px;
  z-index: 500;
  transition: all 0.2s ease;
  padding: 0 2% 0 3%;
}
@media screen and (max-width: 1100px) {
  #header {
    padding-right: 0;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  #header {
    display: flex;
    height: 70px;
    padding-left: 0;
  }
}
#header .header-layout-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 200;
}
@media screen and (max-width: 970px) {
  #header .header-layout-main {
    padding-block: 0;
  }
}
@media screen and (max-width: 767px) {
  #header .header-layout-main {
    padding: 0 0;
  }
}
#header .header-layout-main .header-logo {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 230px;
  padding-right: 25px;
}
@media screen and (max-width: 1320px) {
  #header .header-layout-main .header-logo {
    width: 230px;
  }
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-logo {
    display: block;
    padding: 0 3%;
    width: auto;
  }
}
#header .header-layout-main .header-logo .logo {
  display: inline-block;
  line-height: 1;
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  #header .header-layout-main .header-logo .logo {
    max-width: 145px;
    margin-right: 10px;
    height: auto;
  }
}
#header #header-navi {
  flex: 1;
  margin-right: 25px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  #header #header-navi {
    padding-bottom: 0;
    flex: 1;
  }
}
#header #header-navi .base-ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  #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: #00BFB4;
}
#header #header-navi .base-ul .mo > span, #header #header-navi .base-ul .mo > a {
  cursor: pointer;
  font-size: clamp(1.2rem, 1vw, 1.5rem);
  display: block;
  line-height: 1.3;
  display: flex;
  align-items: center;
  height: 100%;
}
#header #header-submenu {
  width: 170px;
}
@media screen and (max-width: 1100px) {
  #header #header-submenu {
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  #header #header-submenu {
    width: 150px;
    padding-top: 0;
  }
}
#header #header-submenu .sub {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  text-align: center;
  line-height: 1;
  font-size: clamp(1.4rem, 0.776rem + 0.8vw, 1.8rem);
  color: #005587;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 5px 3% 0;
}
@media screen and (max-width: 767px) {
  #header #header-submenu .sub {
    display: none;
  }
}
#header #header-submenu a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
  background: linear-gradient(-90deg, #005587 0%, #140B42 100%);
  color: #fff;
  font-size: clamp(1.3rem, 0.988rem + 0.4vw, 1.5rem);
  font-weight: bold;
  line-height: 1;
  padding: 14px 7px;
  text-align: center;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  #header #header-submenu a {
    height: auto;
    font-size: 1.2rem;
  }
}
#header #header-submenu a:hover {
  background-color: #00BFB4;
}

#sp-mm {
  display: none;
  position: relative;
  height: 78px;
  width: 90px;
  cursor: pointer;
  z-index: 200;
}
@media screen and (max-width: 1100px) {
  #sp-mm {
    display: block;
  }
}
#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: 31px;
  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: #000;
}
#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: #000;
  transform-origin: center;
}
#sp-mm .sp-mm-btn span:before {
  top: -8px;
}
#sp-mm .sp-mm-btn span:after {
  bottom: -8px;
}
#sp-mm.close .sp-mm-btn span {
  background-color: transparent;
}
#sp-mm.close .sp-mm-btn span:before {
  animation: close1 0.3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
#sp-mm.close .sp-mm-btn span:after {
  animation: close2 0.3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
}
@keyframes close1 {
  0% {
    top: -8px;
    transform: rotate(0);
  }
  50% {
    top: 0px;
    transform: rotate(0);
  }
  100% {
    top: 0px;
    transform: rotate(-45deg);
  }
}
@keyframes close2 {
  0% {
    bottom: -8px;
    transform: rotate(0);
  }
  50% {
    bottom: 0px;
    transform: rotate(0);
  }
  100% {
    bottom: 0px;
    transform: rotate(45deg);
  }
}

#sp-menu {
  display: none;
  position: fixed;
  top: 116px;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  z-index: 210;
  background-color: #2B3A42;
  padding-block: 50px;
  overflow-y: auto;
  height: calc(100vh - 90px);
}
@media screen and (max-width: 767px) {
  #sp-menu {
    top: 70px;
    height: calc(100vh - 70px);
    overflow-y: scroll;
    padding-top: 20px;
  }
}
#sp-menu .row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #sp-menu .row {
    display: block;
    padding: 0 3%;
  }
}
#sp-menu .row .col {
  width: 33.333%;
  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;
  color: #fff;
  font-size: clamp(1.5rem, 1.032rem + 0.6vw, 1.8rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
@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: 12px;
  right: 0;
  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: block;
  position: relative;
}
#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 li a {
  color: #fff;
  font-size: clamp(1.2rem, 0.888rem + 0.4vw, 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 .row2 {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #sp-menu .row2 {
    display: block;
  }
}
#sp-menu .row2 .row2-col-1 {
  flex: 1;
}
#sp-menu .row2 .row2-col-1 .col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #sp-menu .row2 .row2-col-1 .col {
    width: 100%;
  }
}
#sp-menu .row2 .row2-col-2 {
  width: calc(33.3333% - 20px);
}
@media screen and (max-width: 767px) {
  #sp-menu .row2 .row2-col-2 {
    width: 100%;
  }
}
#sp-menu .row2 .row2-col-2 .col {
  width: 100%;
}
#sp-menu .page-title {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 0.72rem + 1vw, 2rem);
  font-weight: 500;
  color: #140B42;
}
@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;
    border-right: 1px solid #140B42;
    border-bottom: 1px solid #140B42;
    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.476rem + 0.8vw, 1.5rem);
}
#sp-menu ul li a:hover {
  color: #140B42;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #sp-menu ul li a {
    display: block;
    padding: 12px 0;
  }
}
#sp-menu ul li.subtitle {
  color: #140B42;
  margin-top: 1rem;
}
#sp-menu #sp-bottom {
  padding-top: 30px;
}
#sp-menu #sp-bottom .other-link ul {
  display: flex;
  gap: 5%;
}
#sp-menu #sp-bottom .other-link ul li {
  width: 50%;
}
#sp-menu #sp-bottom .other-link ul li a {
  text-align: center;
  border-radius: 4px;
  border: 2px solid #140B42;
  background-color: #fff;
  color: #140B42;
  line-height: 1;
  padding: 16px 18px;
}
#sp-menu #sp-bottom .sns {
  display: flex;
  align-items: center;
  gap: 10%;
  justify-content: center;
  margin-top: 30px;
}
#sp-menu #sp-bottom .sns #sp-bottom-youtube {
  width: 35%;
}
#sp-menu #sp-bottom .sns #sp-bottom-youtube img {
  width: 100%;
  max-width: none;
}

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

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

/* 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);
  -webkit-backdrop-filter: blur(10px);
          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: 116px;
  }
}
.megamenu-block .inner {
  display: flex;
}
.megamenu-block h2 {
  width: 20%;
  color: #fff;
  margin-bottom: 30px;
  font-size: clamp(1.3rem, 0.832rem + 0.6vw, 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.632rem + 0.6vw, 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.476rem + 0.8vw, 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.632rem + 0.6vw, 1.4rem);
  white-space: wrap;
  display: block;
  line-height: 1.3;
  margin-top: 0.5rem;
}
.megamenu-block .layout a:hover {
  color: #140B42;
}

/* FOOTER
================================================== */
#footer {
  background-color: #150e44;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  #footer {
    padding-block: 40px;
  }
}
#footer #footer-top {
  display: flex;
  gap: 5%;
}
#footer #footer-top .footer-left {
  width: 15%;
}
@media screen and (max-width: 767px) {
  #footer #footer-top .footer-left {
    width: 100%;
  }
}
#footer #footer-top .footer-left #footer-logo {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  #footer #footer-top .footer-left #footer-logo {
    text-align: center;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #footer #footer-top .footer-left .corp-copy {
    color: #fff;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 50px;
    text-align: center;
  }
}
#footer #footer-top .footer-left ul {
  display: flex;
  justify-content: space-between;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  #footer #footer-top .footer-left ul {
    justify-content: center;
  }
}
#footer #footer-top .footer-left ul a:hover {
  opacity: 0.8;
}
#footer #footer-top #footer-menu-layout {
  width: 85%;
}
@media screen and (max-width: 767px) {
  #footer #footer-top #footer-menu-layout {
    display: none;
  }
}
#footer #footer-top #footer-menu-layout .corp-copy {
  color: #fff;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 3rem;
}
#footer #footer-top #footer-menu-layout .row {
  display: flex;
  gap: 3%;
}
#footer #footer-top #footer-menu-layout .row .col {
  width: 33.333%;
  margin-bottom: 5rem;
}
#footer #footer-top #footer-menu-layout .row .parent-title {
  color: #fff;
  font-size: clamp(1.5rem, 1.032rem + 0.6vw, 1.8rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
#footer #footer-top #footer-menu-layout .row .parent-title.link {
  position: relative;
  margin-bottom: 0;
}
#footer #footer-top #footer-menu-layout .row .parent-title.link::after {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
#footer #footer-top #footer-menu-layout .row .parent-title.link a {
  display: block;
  position: relative;
}
#footer #footer-top #footer-menu-layout .row .parent-title.link a:hover {
  color: #fff;
  text-decoration: underline;
}
#footer #footer-top #footer-menu-layout .row .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;
}
#footer #footer-top #footer-menu-layout .row h3 {
  color: #fff;
  font-size: clamp(1.5rem, 1.344rem + 0.2vw, 1.6rem);
  padding-top: 0.5rem;
}
#footer #footer-top #footer-menu-layout .row h3 + ul {
  padding-left: 1ex;
}
#footer #footer-top #footer-menu-layout .row h3 a:hover {
  color: #fff;
  text-decoration: underline;
}
#footer #footer-top #footer-menu-layout .row ul li a {
  color: #fff;
  font-size: clamp(1.2rem, 0.888rem + 0.4vw, 1.4rem);
}
#footer #footer-top #footer-menu-layout .row ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
#footer #footer-top #footer-menu-layout .row 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;
}
#footer #footer-top #footer-menu-layout .row2 {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #footer #footer-top #footer-menu-layout .row2 {
    display: block;
  }
}
#footer #footer-top #footer-menu-layout .row2 .row2-col-1 {
  flex: 1;
}
#footer #footer-top #footer-menu-layout .row2 .row2-col-1 .col {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #footer #footer-top #footer-menu-layout .row2 .row2-col-1 .col {
    width: 100%;
  }
}
#footer #footer-top #footer-menu-layout .row2 .row2-col-2 {
  width: calc(33.3333% - 20px);
  display: block;
}
@media screen and (max-width: 767px) {
  #footer #footer-top #footer-menu-layout .row2 .row2-col-2 {
    width: 100%;
  }
}
#footer #footer-top #footer-menu-layout .row2 .row2-col-2 .col {
  width: 100%;
}
#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 50px;
  display: flex;
  justify-content: flex-end;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #footer .footer-bottom {
    display: none;
  }
}
#footer .footer-bottom ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  #footer .footer-bottom ul {
    justify-content: center;
    margin-bottom: 10px;
  }
}
#footer .footer-bottom ul li a {
  font-size: 1.2rem;
}
#footer .footer-bottom ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
#footer .footer-bottom p {
  font-size: 1.2rem;
  margin-left: 10%;
}
@media screen and (max-width: 767px) {
  #footer .footer-bottom p {
    text-align: center;
    margin-left: auto;
  }
}
#footer .footer-bottom-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  #footer .footer-bottom-sp {
    display: block;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 50px;
    margin-top: 50px;
  }
}
#footer .footer-bottom-sp ul {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
#footer .footer-bottom-sp ul li:first-child::after {
  content: "|";
  margin: 0 10px;
}
#footer .footer-bottom-sp ul li a {
  font-size: 1.2rem;
}
#footer .footer-bottom-sp ul li a:hover {
  color: #fff;
  text-decoration: underline;
}
#footer .footer-bottom-sp p {
  font-size: 1.2rem;
  text-align: center;
  margin-left: auto;
}

#pagetop {
  position: fixed;
  right: 2%;
  bottom: 2%;
  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: 50px;
  height: 50px;
  line-height: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.5);
}
#pagetop a:hover {
  background-color: #ccc;
}
#pagetop a::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  top: 20px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  #pagetop a {
    width: 50px;
    height: 50px;
  }
}

@keyframes pagetop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-4px);
  }
}
/* 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;
}

.sub-contents {
  padding-bottom: 100px;
}
.sub-contents #visual {
  text-align: center;
  padding: 50px 0 50px;
}
.sub-contents #visual h1 {
  color: #005587;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sub-contents #visual h1 {
    margin-bottom: 30px;
    font-size: 2rem;
  }
}
.sub-contents #visual p {
  text-align: left;
}
.sub-contents #visual p.tc {
  display: flex;
  justify-content: center;
}
.sub-contents #contents-block h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.sub-contents #contents-block h2 + p {
  margin-bottom: 2rem;
}
.sub-contents #contents-block p {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sub-contents #contents-block p {
    font-size: 1.4rem;
  }
}
.sub-contents #contents-block b {
  font-weight: bold;
}
.sub-contents #contents-block ol {
  padding-left: 5rem;
}
@media screen and (max-width: 767px) {
  .sub-contents #contents-block ol {
    padding-left: 25px;
  }
}
.sub-contents #contents-block ol li {
  list-style-type: numeric;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .sub-contents #contents-block ol li {
    font-size: 1.4rem;
  }
}
.sub-contents #contents-block ul {
  padding-left: 25px;
}
.sub-contents #contents-block ul.pl {
  padding-left: 5rem;
}
@media screen and (max-width: 767px) {
  .sub-contents #contents-block ul.pl {
    padding-left: 25px;
  }
}
.sub-contents #contents-block ul li {
  list-style-type: disc;
}
.sub-contents #contents-block ol.mb, .sub-contents #contents-block ul.mb {
  margin-bottom: 2rem;
}
.sub-contents #contents-block a {
  text-decoration: underline;
}
.sub-contents .contact {
  margin-top: 5rem;
}
.sub-contents .contact b {
  font-weight: bold;
}
.sub-contents .contact a {
  text-decoration: underline;
}

#learning h2.panel-title {
  text-align: center;
  font-size: clamp(2rem, 1.688rem + 0.4vw, 2.2rem);
  font-weight: 500;
  color: #005587;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #learning h2.panel-title {
    margin-bottom: 30px;
  }
}
#learning .lead {
  margin-bottom: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  #learning .lead {
    margin-bottom: 30px;
  }
}
#learning .panels {
  display: flex;
  gap: 45px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #learning .panels {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
#learning .panels.col2 .panel {
  width: 50%;
  min-height: 260px;
  padding: 60px 5% 40px;
}
@media screen and (max-width: 767px) {
  #learning .panels.col2 .panel {
    width: 100%;
    padding: 40px 5% 40px;
    min-height: 0;
  }
}
#learning .panels.col2 .panel:nth-child(1) {
  background-color: #008F86;
}
#learning .panels.col2 .panel:nth-child(2) {
  background-color: #43B02A;
}
#learning .panels.col3 {
  gap: 28px;
}
#learning .panels.col3 .panel {
  width: 33.333%;
  min-height: 327px;
  padding: 60px 3% 40px;
}
@media screen and (max-width: 767px) {
  #learning .panels.col3 .panel {
    width: 100%;
    padding: 40px 5% 40px;
    min-height: 0;
  }
}
#learning .panels.col3 .panel:nth-child(1) {
  background-color: #00BFB3;
}
#learning .panels.col3 .panel:nth-child(2) {
  background-color: #008F86;
}
#learning .panels.col3 .panel:nth-child(3) {
  background-color: #43B02A;
}
#learning .panels.row2 .panel:nth-child(1) {
  background-color: #00A3E0;
}
#learning .panels.row2 .panel:nth-child(2) {
  background-color: #005587;
}
#learning .panels.row2 .panel:nth-child(3) {
  background-color: #00CCFF;
}
#learning .panels .panel {
  position: relative;
  border-radius: 80px 6px 6px 6px;
  text-align: center;
  color: #fff;
}
#learning .panels .panel .label {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}
#learning .panels .panel .icon {
  width: 80px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  #learning .panels .panel .icon {
    width: 60px;
  }
}
#learning .panels .panel h3 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #learning .panels .panel h3 {
    margin-bottom: 20px;
  }
}
#learning .panels .panel p {
  font-size: 1.8rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #learning .panels .panel p {
    font-size: 1.6rem;
  }
}
#learning .panels .panel .note {
  font-size: 1.2rem;
}
#learning #relation {
  text-align: center;
}
#learning #relation a {
  display: block;
  margin: auto;
  max-width: 800px;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  background-color: #00BFB3;
  border-radius: 100px;
  padding: 50px;
  color: #fff;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  #learning #relation a {
    font-size: 1.6rem;
    padding: 30px;
    width: 90%;
    margin: auto;
  }
}
#learning #relation a:hover {
  background-color: #00968c;
}
#learning #relation .note {
  font-size: 1.2rem;
  margin-top: 1rem;
}

#contact #contents-block {
  max-width: 860px;
  margin: auto;
}
#contact #contents-block p.lead {
  margin-bottom: 3rem;
}
#contact #contents-block p.lead .sub {
  font-size: 1.4rem;
}
#contact #contents-block .req {
  color: red;
}
#contact form input[type=text],
#contact form input[type=email],
#contact form input[type=tel],
#contact form textarea {
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 1.4rem;
  width: 100%;
  border-radius: 4px;
  background-color: #fff;
}
#contact form input[type=text].error,
#contact form input[type=email].error,
#contact form input[type=tel].error,
#contact form textarea.error {
  border-color: #c00;
  background-color: #fff0f0;
}
#contact form input[type=text]::-moz-placeholder, #contact form input[type=email]::-moz-placeholder, #contact form input[type=tel]::-moz-placeholder, #contact form textarea::-moz-placeholder {
  color: #858585;
}
#contact form input[type=text]::placeholder,
#contact form input[type=email]::placeholder,
#contact form input[type=tel]::placeholder,
#contact form textarea::placeholder {
  color: #858585;
}
#contact form .error-message {
  font-weight: 500;
  color: #c00;
}
#contact form .agree {
  background-color: #fff;
  border: 1px solid #140B42;
  padding: 15px;
  border-radius: 4px;
  margin: 2rem 0;
}
#contact form .agree.error {
  border-color: #c00;
  background-color: rgb(255, 235, 235);
}
#contact form .agree label {
  cursor: pointer;
}
#contact form .note {
  font-size: 1.2rem;
}
#contact table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #contact table {
    display: block;
  }
  #contact table tbody,
  #contact table tr {
    display: block;
  }
}
#contact table th {
  vertical-align: top;
  padding: 12px 8px;
  width: 25%;
}
@media screen and (max-width: 767px) {
  #contact table th {
    display: block;
    font-weight: bold;
    padding-bottom: 0;
    width: 100%;
  }
}
#contact table td {
  padding: 12px 8px;
}
@media screen and (max-width: 767px) {
  #contact table td {
    display: block;
    width: 100%;
  }
}
#contact .submit-btn {
  text-align: center;
}
#contact button,
#contact input[type=button],
#contact input[type=submit] {
  display: inline-block;
  background: linear-gradient(-90deg, #005587 0%, #140B42 100%);
  color: #fff;
  font-size: clamp(1.4rem, 1.088rem + 0.4vw, 1.6rem);
  font-weight: bold;
  line-height: 1;
  padding: 24px 48px;
  text-align: center;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: auto;
}
#contact button:hover,
#contact input[type=button]:hover,
#contact input[type=submit]:hover {
  opacity: 0.8;
}
#contact #sendPrevButtonDiv button {
  margin: 0 15px;
}
#contact #sendPrevButtonDiv button.btn-secondary {
  background: #ccc !important;
  color: #333;
}
#contact #contents-block .thanks {
  text-align: center;
}
#contact #contents-block .thanks .title {
  font-size: clamp(2rem, 1.376rem + 0.8vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 30px;
  color: #005587;
}

#network #visual {
  padding: 0;
  position: relative;
}
#network #visual .inner {
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 8vw;
  padding-top: 3vw;
  width: 100%;
  height: 100%;
}
#network #visual .image {
  line-height: 0;
}
#network #visual h1 {
  text-align: left;
  margin-bottom: 2rem;
  font-size: clamp(2rem, 0.256rem + 2.3vw, 3.2rem);
}
@media screen and (max-width: 767px) {
  #network #visual h1 {
    padding-top: 3%;
  }
}
#network #contents-block {
  padding-block: 80px;
}
#network #contents-block .inner {
  max-width: calc(1000px + 6%);
}
#network #contents-block .lead {
  font-size: clamp(1rem, -0.248rem + 1.6vw, 1.8rem);
  color: #005587;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #network #contents-block .lead {
    text-align: center;
    padding: 5%;
    font-size: 1.6rem;
  }
}

/**
 * Modules in this bundle
 * @license
 *
 * scroll-hint:
 *   license: MIT (http://opensource.org/licenses/MIT)
 *   author: steelydylan
 *   version: 1.2.8
 *
 * es6-object-assign:
 *   license: MIT (http://opensource.org/licenses/MIT)
 *   author: Rubén Norte <rubennorte@gmail.com>
 *   homepage: https://github.com/rubennorte/es6-object-assign
 *   version: 1.1.0
 *
 * This header is generated by licensify (https://github.com/twada/licensify)
 */
@media screen and (max-width: 767px) {
  .js-scroll img {
    width: 800px;
    max-width: 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;
}