@charset "UTF-8";
/******************************************************************
Site Name: サイト名称
Author: Harimanics Co.Ltd.
******************************************************************/
body, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, table, caption, tr, th, td, dl, dt, dd, a, img, form, input, textarea, button, header, nav, article, section, footer, aside {
  margin: 0;
  padding: 0;
}

header, footer, article, section, div {
  box-sizing: border-box;
}

table {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
}

p, th, td, li {
  word-break: break-all;
}

legend {
  display: none;
}

li {
  list-style: none;
}

a, img {
  outline: 0;
  border: 0;
  text-decoration: none;
}

br {
  line-height: inherit;
}

span, strong, em, i, address {
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  font-style: inherit;
  color: inherit;
}

input {
  outline: 0;
}

input[type=submit], input[type=reset], button {
  cursor: pointer;
}

strong {
  font-weight: inherit;
}

i, em, address {
  font-style: normal;
}

address {
  font-size: inherit;
}

label {
  color: inherit;
  font-size: inherit;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input {
  line-height: normal;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

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

html {
  font-size: 0.625vw;
}

@media screen and (min-width: 1600px) {
  html {
    font-size: 62.5%;
  }
}
body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
  -webkit-user-drag: none;
}

a {
  text-decoration: none;
}

select {
  -webkit-appearance: none;
  appearance: none;
}

main {
  display: block;
}

iframe {
  max-width: 100%;
}

input[type=text],
input[type=date],
input[type=month],
input[type=tel],
input[type=email],
input[type=password],
select,
textarea {
  background-color: #fff;
  border: 1px solid #9C9C9C;
  border-radius: 5px;
  padding: 7px 20px;
  -webkit-appearance: none;
}
@media screen and (max-width: 1599px) {
  input[type=text],
  input[type=date],
  input[type=month],
  input[type=tel],
  input[type=email],
  input[type=password],
  select,
  textarea {
    padding: 5px 10px;
  }
}

input::placeholder,
textarea::placeholder {
  color: #AAA;
}

@media all {
  .header {
    align-items: center;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(8px);
    border: 1px solid transparent;
    border-radius: 0;
    display: flex;
    height: 100px;
    left: 0;
    margin: 0 auto;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    position: fixed;
    right: 0;
    top: 0;
    transition: all 0.2s ease-in-out;
    width: 100%;
    z-index: 1000;
  }
  .header[data-is-fixed=true] {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 80px;
    top: 20px;
    width: calc(100% - 5rem);
  }
  .header__logo {
    line-height: 1;
    transition: all 0.2s ease-in-out;
    width: 37rem;
  }
  .header__block {
    align-items: center;
    display: flex;
  }
  .header__box {
    display: flex;
    gap: 3.5rem;
    margin-right: 3.5rem;
  }
  .header__list {
    font-size: clamp(12px, 1.2vw, 18px);
  }
  .header__button {
    color: #000;
    font-weight: 500;
  }
}
@media (hover: hover) {
  .header__button:hover {
    color: #217FC4;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 50px;
    padding: 15px;
  }
  .header[data-is-fixed=true] {
    height: 40px;
    padding: 10px 15px;
    top: 10px;
    width: calc(100% - 30px);
  }
  .header[data-is-fixed=true] .header__logo {
    width: 135px;
  }
  .header__logo {
    width: 158px;
  }
  .header__logo-button {
    display: flex;
  }
  .header__logo-button img {
    vertical-align: middle;
  }
}
@media all {
  .hamburger {
    cursor: pointer;
    display: inline-block;
    height: 30px;
    position: fixed;
    right: 15px;
    transition: all 0.2s ease-in-out;
    top: 12px;
    width: 30px;
    z-index: 1200;
  }
  .hamburger[data-is-fixed=true] {
    right: 25px;
    top: 17px;
  }
  .hamburger__line {
    position: absolute;
    left: 3px;
    height: 2px;
    background: #2b78c5;
    border-radius: 999px;
    transform-origin: left center;
    transition: all 0.2s ease-in-out;
  }
  .hamburger__line:nth-child(1) {
    top: 10px;
    width: 24px;
  }
  .hamburger__line:nth-child(2) {
    top: 16px;
    width: 13px;
  }
  .hamburger[data-is-active=true] .hamburger__line {
    left: 50%;
  }
  .hamburger[data-is-active=true] .hamburger__line:nth-child(1) {
    width: 20px;
    transform: translate(-50%, 0) rotate(30deg);
    top: 8px;
  }
  .hamburger[data-is-active=true] .hamburger__line:nth-child(2) {
    width: 20px;
    transform: translate(-50%, 0) rotate(-30deg);
    top: 18px;
  }
}
@media all {
  .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
}
@media screen and (min-width: 768px) {
  .overlay {
    display: none !important;
  }
}
@media all {
  .menu {
    background-color: #FFF;
    border-radius: 15px;
    display: none;
    padding: 70px 35px 65px;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 256px;
    z-index: 1100;
  }
  .menu__list:not(:last-child) {
    margin-bottom: 10px;
  }
  .menu__button {
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
  }
  .menu__contact {
    align-items: center;
    background-color: #217FC4;
    border-radius: 34px;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    height: 43px;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    overflow: hidden;
    padding: 12px 20px;
    width: 186px;
  }
  .menu__arrow {
    align-items: center;
    background-color: #FFF;
    border-radius: 11px;
    display: flex;
    height: 20px;
    justify-content: center;
    width: 37px;
  }
  .menu__arrow svg {
    width: 10px;
  }
}
@media screen and (min-width: 768px) {
  .menu {
    display: none !important;
  }
}
@media all {
  .footer-access {
    background-color: #FFF;
    position: relative;
  }
  .footer-access::before {
    content: "";
    position: absolute;
    width: calc(50vw - 7rem);
    height: 1px;
    background-color: #CCCCCC;
    top: 0;
    right: 5rem;
  }
  .footer-access__container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1600px;
    width: calc(100vw - 10rem);
  }
  .footer-access__image {
    margin-left: calc(50% - 50vw);
    width: 50vw;
    padding-right: 1.5rem;
  }
  .footer-access__image img {
    border-radius: 0 20px 0 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    overflow: hidden;
  }
  .footer-access__block {
    display: flex;
    gap: 15.3rem;
    padding-bottom: 10.5rem;
    padding-top: 10.8rem;
  }
  .footer-access__boxes {
    font-size: clamp(12px, 12px + (4px) * (100vw - 768px) / (832px), 16px);
  }
  .footer-access__address {
    padding-top: 3rem;
  }
  .footer-access__contacts {
    padding-top: 2.3rem;
  }
  .footer-access__contact {
    font-size: clamp(22px, 22px + (13px) * (100vw - 768px) / (832px), 35px);
    font-weight: 700;
  }
  .footer-access__head {
    color: #003894;
    font-family: "Raleway", sans-serif;
    margin-right: 5px;
  }
  .footer-access__map {
    padding-right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .footer-access::before {
    content: none;
  }
  .footer-access__container {
    display: block;
    width: 100%;
  }
  .footer-access__image {
    margin-left: auto;
    padding-right: 0;
    width: 100%;
  }
  .footer-access__image img {
    width: 100%;
  }
  .footer-access__block {
    display: block;
    padding: 50px 15px;
  }
  .footer-access__address {
    font-size: 14px;
    padding-left: 15px;
    padding-top: 20px;
  }
  .footer-access__contacts {
    text-align: center;
    padding-top: 5px;
  }
  .footer-access__contact {
    font-size: 20px;
  }
  .footer-access__map {
    margin-right: 0;
    margin-top: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1599px) {
  .footer-access__block {
    gap: 14rem;
  }
  .footer-access__boxes {
    padding-left: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .footer-access__block {
    gap: 0;
  }
}
@media screen and (min-width: 901px) and (max-width: 1300px) {
  .footer-access__block {
    gap: 6rem;
  }
}
@media all {
  .access-map__button {
    border-radius: 50%;
    display: inline-block;
    height: 20rem;
    overflow: clip;
    position: relative;
    width: 20rem;
  }
  .access-map__button img {
    left: 0;
    position: absolute;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    top: 0;
  }
  .access-map__button img:nth-of-type(2) {
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }
}
@media (hover: hover) {
  .access-map__button:hover img:nth-of-type(1) {
    opacity: 0;
  }
  .access-map__button:hover img:nth-of-type(2) {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .access-map {
    text-align: center;
  }
  .access-map__button {
    height: 130px;
    width: 130px;
  }
}
@media all {
  .footer {
    background-color: #262D3B;
  }
  .footer__block {
    --guitter: 10px;
    display: flex;
    justify-content: space-between;
    margin-inline: auto;
    max-width: 1600px;
    padding: 8rem 1rem;
    width: calc(100vw - 10rem);
  }
  .footer__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .footer__logo {
    width: 43.2rem;
  }
  .footer__copy {
    color: #FFF;
    font-size: clamp(10px, 1.2vw, 12px);
    font-weight: 500;
  }
  .footer__box {
    display: flex;
    gap: 3.5rem;
  }
  .footer__list {
    font-size: clamp(14px, 1.2vw, 16px);
  }
  .footer__button {
    color: #FFF;
    font-weight: 500;
  }
}
@media screen and (max-width: 767px) {
  .footer__block {
    display: block;
    padding: 40px 30px;
    width: min(1600px, 100vw - 2 * var(--gutter));
  }
  .footer__info {
    display: block;
  }
  .footer__logo {
    margin-bottom: 25px;
    width: 100%;
  }
  .footer__copy {
    font-size: 10px;
    font-weight: 400;
  }
  .footer__boxes {
    margin-bottom: 20px;
  }
  .footer__box {
    display: grid;
    gap: 3px 0;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 25px;
  }
  .footer__list {
    font-size: 14px;
  }
  .footer__button {
    display: block;
    padding: 5px 0;
  }
}
@media all {
  .footer-certification {
    background-color: #313847;
    border-radius: 10px;
    margin: 5rem 0 0 auto;
    max-width: 575px;
    padding: 15px;
  }
  .footer-certification__button {
    color: #FFF;
    display: flex;
    font-weight: 500;
    justify-content: space-between;
  }
}
@media (hover: hover) {
  .footer-certification__button:hover .footer-certification__arrow {
    background-color: #FFF;
    border: 1px solid #217FC4;
  }
  .footer-certification__button:hover .footer-certification__arrow path {
    fill: #217FC4;
  }
}
@media all {
  .footer-certification__head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .footer-certification__arrow {
    align-items: center;
    background-color: #217FC4;
    border-radius: 15px;
    display: flex;
    height: 30px;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    width: 70px;
  }
  .footer-certification__arrow path {
    fill: #FFF;
    transition: all 0.2s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .footer-certification {
    border-radius: 10px;
    margin: 0 auto;
    max-width: 315px;
    padding: 10px;
  }
  .footer-certification__button {
    display: block;
  }
  .footer-certification__head {
    flex-direction: row;
    margin-bottom: 9px;
    padding: 0 5px;
  }
  .footer-certification__title {
    font-size: 13px;
    font-weight: 400;
  }
  .footer-certification__arrow {
    height: 20px;
    width: 37px;
  }
  .footer-certification__arrow svg {
    width: 10px;
  }
}
@media all {
  .main-container {
    padding-top: 100px;
  }
  .main-container[data-is-home=true] {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .main-container {
    padding-top: 70px;
  }
  .main-container[data-is-home=false] {
    padding-top: 50px;
  }
}
@media all {
  .contact-button {
    font-size: clamp(12px, 12px + (6px) * (100vw - 768px) / (832px), 18px);
    align-items: center;
    background: #217FC4;
    border: 1px solid #217FC4;
    border-radius: 26px;
    color: #FFF;
    height: 50px;
    display: flex;
    justify-content: space-between;
    min-width: 170px;
    width: 18.5rem;
    padding: 1rem 1.5rem;
    transition: all 0.2s ease-in-out;
  }
  .contact-button__text {
    font-weight: 500;
    white-space: nowrap;
  }
  .contact-button__arrow {
    align-items: center;
    background: #FFF;
    border: 1px solid #217FC4;
    border-radius: 11px;
    display: inline-flex;
    height: 21px;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    width: 37px;
  }
  .contact-button__arrow svg {
    width: 10px;
  }
  .contact-button__arrow path {
    fill: #217FC4;
    transition: all 0.2s ease-in-out;
  }
}
@media (hover: hover) {
  .contact-button:hover {
    background: #FFF;
    color: #217FC4;
    cursor: pointer;
  }
  .contact-button:hover .contact-button__arrow {
    background: #217FC4;
  }
  .contact-button:hover .contact-button__arrow path {
    fill: #FFF;
  }
}
@media screen and (min-width: 768px) and (max-width: 1599px) {
  .contact-button {
    min-width: 160px;
  }
}
@media all {
  .breadcrumbs {
    display: flex;
  }
  .breadcrumbs__list {
    align-items: center;
    display: flex;
    font-weight: 700;
  }
  .breadcrumbs__list:not(:first-child)::before {
    background-color: #A8A8A8;
    content: "";
    display: block;
    height: 1px;
    margin: 0 10px;
    width: 10px;
  }
  .breadcrumbs__list:not(:first-child)[data-is-active=true]::before {
    background-color: #003894;
  }
  .breadcrumbs__button {
    color: #A8A8A8;
  }
  .breadcrumbs__button[data-is-active=true] {
    color: #003894;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    overflow: hidden;
  }
  .breadcrumbs__list {
    font-size: 12px;
  }
  .breadcrumbs__list[data-is-active=true] {
    min-width: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 1; /* 縮小を許可 */
    flex-grow: 0; /* 拡大はしない */
  }
  .breadcrumbs__list[data-is-active=true]::before {
    min-width: 10px;
  }
  .breadcrumbs__button {
    min-width: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}
@media all {
  .link-button {
    align-items: center;
    background: #E3E9F3;
    border-radius: 34px;
    color: #000;
    height: 55px;
    display: flex;
    justify-content: space-between;
    max-width: 273px;
    min-width: 210px;
    padding: 15px 36px;
    transition: all 0.2s ease-in-out;
  }
  .link-button__text {
    font-weight: 700;
  }
  .link-button__arrow {
    align-items: center;
    background: #217FC4;
    border-radius: 11px;
    display: inline-flex;
    height: 21px;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    width: 37px;
  }
  .link-button__arrow svg {
    width: 10px;
  }
  .link-button__arrow path {
    fill: #FFF;
    transition: all 0.2s ease-in-out;
  }
}
@media (hover: hover) {
  .link-button:hover {
    background: #217FC4;
    color: #FFF;
    cursor: pointer;
  }
  .link-button:hover .link-button__arrow {
    background: #FFF;
  }
  .link-button:hover .link-button__arrow path {
    fill: #217FC4;
  }
}
@media screen and (max-width: 767px) {
  .link-button {
    font-size: 14px;
    height: 43px;
    max-width: 186px;
    padding: 12px 20px;
  }
}
@media all {
  .common-title__en {
    color: #003894;
    display: inline-flex;
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-weight: 600;
    gap: 0.5rem;
  }
  .common-title__en-text {
    line-height: 1;
    margin-top: 0.7rem;
  }
  .common-title__en-text[data-color=white] {
    color: #FFF;
  }
  .common-title__jp {
    font-size: clamp(25px, 25px + (15px) * (100vw - 768px) / (832px), 40px);
    font-weight: 600;
  }
  .common-title__jp[data-color=white] {
    color: #FFF;
  }
}
@media screen and (max-width: 767px) {
  .common-title__en {
    font-size: 12px;
    gap: 3px;
  }
  .common-title__en img {
    width: 22px;
  }
  .common-title__jp {
    font-size: 20px;
    line-height: 1;
    padding-top: 3px;
  }
}
@media all {
  .content-head {
    border-bottom: 1px solid #CCCCCC;
    margin-inline: auto;
    padding: 50px 0 43px;
    width: calc(100vw - 10rem);
  }
  .content-head__block {
    --guitter: 10px;
    margin-inline: auto;
    max-width: 1600px;
    width: min(1600px, 100vw - 2 * var(--gutter));
  }
  .content-head__title {
    margin-bottom: 52px;
  }
  .content-head__en {
    font-size: clamp(18px, 18px + (2px) * (100vw - 768px) / (832px), 20px);
    align-items: center;
    color: #003894;
    display: flex;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    gap: 5px;
    margin-bottom: 2px;
  }
  .content-head__en-text {
    line-height: 1;
    margin-top: 0.5rem;
  }
  .content-head__jp {
    font-size: clamp(28px, 28px + (12px) * (100vw - 768px) / (832px), 40px);
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .content-head {
    padding: 25px 0 20px;
    width: calc(100% - 30px);
  }
  .content-head__block {
    max-width: 100%;
    width: 100%;
  }
  .content-head__title {
    margin-bottom: 26px;
  }
  .content-head__en {
    font-size: 12px;
    font-weight: 700;
    gap: 5px;
    margin-bottom: 2px;
  }
  .content-head__en img {
    width: 22px;
  }
  .content-head__en-text {
    margin-top: 3px;
  }
  .content-head__jp {
    font-size: 24px;
  }
}
/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, 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");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

@media all {
  .swiper-wrapper {
    transition-timing-function: linear;
  }
  .swiper-slide img {
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 1599px) {
  .swiper-slide img {
    width: 50%;
  }
}
@media all {
  .news {
    margin: 0 auto;
    padding: 100px 0 160px;
    width: calc(100vw - 10rem);
  }
  .news__block {
    margin-inline: auto;
    max-width: 1100px;
  }
  .news__navi {
    padding-top: 60px;
  }
  .news__navi .nav-links {
    display: flex;
    gap: 35px;
    justify-content: center;
  }
  .news__navi .page-numbers {
    color: #000;
    font-size: 18px;
    position: relative;
  }
  .news__navi .page-numbers.current {
    color: #003894;
  }
  .news__navi .page-numbers.current::after {
    background-color: #003894;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
  }
}
@media (hover: hover) {
  .news__navi .page-numbers:hover {
    color: #003894;
  }
}
@media screen and (max-width: 767px) {
  .news {
    padding: 50px 0 80px;
  }
  .news__block {
    max-width: 100%;
    width: calc(100% - 30px);
  }
  .news__navi {
    padding-top: 30px;
  }
  .news__navi .nav-links {
    gap: 15px;
  }
  .news__navi .page-numbers {
    font-size: 16px;
  }
}
@media all {
  .news-archive__list {
    border-bottom: 1px solid #CCCCCC;
    padding: 42px 0;
  }
  .news-archive__article {
    align-items: center;
    color: #000;
    display: grid;
    gap: 10px;
    grid-template-columns: auto 70px;
  }
}
@media (hover: hover) {
  .news-archive__article:hover .news-archive__arrow {
    background-color: #217FC4;
  }
  .news-archive__article:hover .news-archive__arrow svg path {
    fill: #FFF;
  }
}
@media all {
  .news-archive__date {
    align-items: center;
    background-color: #000;
    border-radius: 10px;
    color: #FFF;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    height: 20px;
    justify-content: center;
    margin-bottom: 6px;
    width: 90px;
  }
  .news-archive__title {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
  }
  .news-archive__arrow {
    align-items: center;
    border: 1px solid #217FC4;
    border-radius: 15px;
    display: flex;
    height: 30px;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    width: 70px;
  }
  .news-archive__arrow svg path {
    transition: all 0.2s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .news-archive__list {
    padding: 20px 0;
  }
  .news-archive__article {
    gap: 10px;
    grid-template-columns: auto 35px;
  }
  .news-archive__date {
    font-size: 12px;
    margin-bottom: 3px;
  }
  .news-archive__title {
    font-size: 14px;
  }
  .news-archive__arrow {
    height: 20px;
    width: 35px;
  }
  .news-archive__arrow svg {
    width: 10px;
  }
}
@media all {
  .news-single__article {
    padding-bottom: 80px;
  }
  .news-single__date {
    align-items: center;
    background-color: #000;
    border-radius: 10px;
    color: #FFF;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    height: 20px;
    justify-content: center;
    margin-bottom: 6px;
    width: 90px;
  }
  .news-single__title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .news-single__content h2, .news-single__content h3, .news-single__content h4, .news-single__content ul, .news-single__content p {
    padding-top: 10px;
  }
  .news-single__content h2 {
    font-size: 28px;
  }
  .news-single__content h3 {
    font-size: 24px;
  }
  .news-single__content h4 {
    font-size: 20px;
  }
  .news-single__content li {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 1.5em;
    text-indent: -1.5em;
  }
  .news-single__content p {
    font-weight: 600;
    line-height: 2;
  }
  .news-single__back {
    text-align: center;
  }
  .news-single__back-button {
    color: #217FC4;
  }
}
@media (hover: hover) {
  .news-single__back-button:hover .news-single__back-arrow {
    background-color: #FFF;
  }
  .news-single__back-button:hover .news-single__back-arrow svg path {
    fill: #217FC4;
  }
}
@media all {
  .news-single__back-arrow {
    align-items: center;
    background-color: #217FC4;
    border: 1px solid #217FC4;
    border-radius: 15px;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    transform: scale(-1, 1);
    transition: all 0.2s ease-in-out;
    width: 70px;
  }
  .news-single__back-arrow svg path {
    fill: #FFF;
    transition: all 0.2s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .news-single__article {
    padding-bottom: 40px;
  }
  .news-single__date {
    font-size: 12px;
    margin-bottom: 3px;
  }
  .news-single__title {
    font-size: 22px;
  }
  .news-single__content h2, .news-single__content h3, .news-single__content h4, .news-single__content ul, .news-single__content p {
    padding-top: 5px;
  }
  .news-single__content h2 {
    font-size: 24px;
  }
  .news-single__content h3 {
    font-size: 20px;
  }
  .news-single__content h4 {
    font-size: 18px;
  }
  .news-single__content li {
    font-size: 14px;
  }
  .news-single__content p {
    font-size: 14px;
    line-height: 2;
  }
  .news-single__back-arrow {
    height: 20px;
    width: 35px;
  }
  .news-single__back-arrow svg {
    width: 10px;
  }
  .news-single__back-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .only-tab,
  .only-pc,
  .not-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1599px) {
  .only-sp,
  .only-pc,
  .not-tab {
    display: none;
  }
}
@media screen and (min-width: 1600px) {
  .only-sp,
  .only-tab,
  .not-pc {
    display: none;
  }
}