@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
}
*, *::before, *::after {
  box-sizing: inherit;
}

html {
  max-width: 100%;
  box-sizing: border-box;
  scroll-behavior: initial;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  html {
    font-size: 85%;
  }
}

body {
  max-width: 100%;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

body,
button,
h1, h2, h3, h4, h5, h6,
input,
nav,
select,
textarea,
ul, ol, dl {
  margin: 0;
  padding: 0;
}

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

a,
button,
input,
select,
textarea {
  background: none;
  color: inherit;
  border: none;
  text-transform: none;
  text-decoration: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

ul {
  list-style: none;
  padding: 0;
}

html,
body {
  font-family: "Inter", "Noto Sans JP", sans-serif !important;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.7;
}

p {
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

a {
  cursor: pointer;
  transition: ease-in-out 0.4s;
  font-weight: 500;
}
a:hover {
  opacity: 0.8;
}

a,
.nav__toggle,
button {
  background: none;
  color: inherit;
  border: none;
  text-transform: none;
  text-decoration: none;
}

a:focus,
.nav__toggle:focus,
button:focus {
  outline: none;
}

.nav__toggle,
a {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  outline: none;
}

img {
  border-radius: inherit;
}

.img-fluid {
  max-width: 100%;
}
.img-rounded {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  max-width: 100%;
}
.img-cover {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-position: center center;
  object-fit: cover;
}

main {
  min-height: 50vh;
}

.text-underline {
  text-decoration: underline;
}

.card {
  background-color: #ffffff;
}

@media screen and (max-width: 767.98px) {
  .col-md-reverse .rounded-left {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .col-md-reverse .rounded-right {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media screen and (min-width: 768px) {
  .col-md-reverse {
    flex-direction: row-reverse !important;
  }
}

br {
  display: none;
}

@media screen and (min-width: 992px) {
  br {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}
.container,
.container-fluid,
.container-medium,
.container-fullwidth {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 576px) {
  .container,
  .container-fluid,
  .container-medium,
  .container-fullwidth {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.container-medium {
  max-width: 1080px;
}

@media screen and (min-width: 576px) {
  .container {
    max-width: 95%;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 1250px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1340px;
  }
}

.py-gutter {
  padding: 50px 0;
}

.pt-gutter {
  padding-top: 50px;
}

.pb-gutter {
  padding-bottom: 50px;
}

.my-gutter {
  margin: 50px 0;
}

.mt-gutter {
  margin-top: 50px;
}

.mb-gutter {
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .py-gutter {
    padding: 100px 0;
  }
  .pt-gutter {
    padding-top: 100px;
  }
  .pb-gutter {
    padding-bottom: 100px;
  }
  .my-gutter {
    margin: 100px 0;
  }
  .mt-gutter {
    margin-top: 100px;
  }
  .mb-gutter {
    margin-bottom: 100px;
  }
}
main {
  margin-top: 95px;
}

main.no-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 991.98px) {
  main {
    margin-top: 80px;
  }
}
/* Block: background */
.bg--white {
  background-color: #ffffff !important;
}
.bg--dark {
  background-color: #000000 !important;
}
.bg--dark-gray {
  background-color: #333333 !important;
}
.bg--light-gray {
  background-color: #E5E5E5 !important;
}
.bg--light-blue {
  background-color: #EEF6FF !important;
}
.bg--sky-blue {
  background-color: #70A6EB !important;
}
.bg--dark-blue {
  background-color: #0E0D6A !important;
}

/* Block: text */
.fc--white {
  color: #ffffff !important;
}
.fc--dark {
  color: #000000 !important;
}
.fc--blue {
  color: #333333 !important;
}
.fc--light-gray {
  color: #E5E5E5 !important;
}
.fc--light-blue {
  color: #EEF6FF !important;
}
.fc--sky-blue {
  color: #70A6EB !important;
}
.fc--dark-blue {
  color: #0E0D6A !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.ff-all {
  font-family: "Inter", "Noto Sans JP", sans-serif !important;
}

h1, h2, h3, h4 {
  line-height: 1.4;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

small {
  font-size: 14px;
}

.anim {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.anim-half {
  animation-delay: 0.5s;
}
.anim-one {
  animation-delay: 1s;
}
.anim-two {
  animation-delay: 2s;
}
.anim-three {
  animation-delay: 3s;
}
.anim-fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.anim-fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* ==========================================================
                Other Keyframes Animation
=========================================================== */
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* Default (SP - with admin bar offset) */
.admin-bar .header-nav__wrap {
  top: var(--wp-admin--admin-bar--height);
}

/* When scrolled → remove offset */
.admin-bar.scrolled .header-nav__wrap {
  top: 0;
}

.bg--light-gray-2 {
  background: #e8edf3;
}

/* Desktop stays normal */
@media (min-width: 783px) {
  .admin-bar .header-nav__wrap {
    top: var(--wp-admin--admin-bar--height);
  }
  .admin-bar.scrolled .header-nav__wrap {
    top: var(--wp-admin--admin-bar--height);
  }
}
.header-nav {
  position: relative;
  z-index: 9999;
  width: 100%;
  /* SP Menu Button */
}
.header-nav__wrap {
  height: 95px;
  position: fixed;
  background: #ffffff;
  top: 0;
  z-index: 9999;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid #E4EEF8;
}
.header-nav-logo {
  margin-left: 15px;
}
.header-nav-logo img {
  width: 300px;
  padding-right: 20px;
}
.header-nav-grp {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
}
.header-nav__menu {
  display: flex;
  align-items: center;
  padding-left: 0;
}
.header-nav__item {
  list-style: none;
}
.header-nav__link {
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.header-nav__link:hover {
  opacity: 1;
  color: #70A6EB;
}
.header-nav__button {
  height: 100%;
}
.header-nav__button.button--1 i svg {
  width: 18px;
}
.header-nav__button i svg {
  width: 15px;
}
.header-nav__button-grp {
  display: flex;
  align-items: center;
}
.header-nav__button a {
  display: block;
}
.header-nav__button .nav__button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding: 5px 5px;
}
.header-nav__button svg {
  width: 25px;
  height: 20px;
}
.header-nav__button .bg-circle--sm {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.header-nav__button p {
  font-size: 13px;
}
.header-nav .navi-button {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 20px;
  background-color: #fff;
}
.header-nav .bar1, .header-nav .bar2 {
  width: 35px;
  height: 4px;
  margin: 5px 0;
  background-color: #0E0D6A;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.header-nav .active .bar1, .header-nav .active .bar2 {
  background-color: #fff;
}
.header-nav .active .bar1 {
  -webkit-transform: rotate(-45deg) translate(-3px, 5px);
  -moz-transform: rotate(-45deg) translate(-3px, 5px);
  -o-transform: rotate(-45deg) translate(-3px, 5px);
  transform: rotate(-45deg) translate(-3px, 5px);
}
.header-nav .active .bar2 {
  -webkit-transform: rotate(-45deg) translate(-2px, -4px);
  -moz-transform: rotate(-45deg) translate(-2px, -4px);
  -o-transform: rotate(-45deg) translate(-2px, -4px);
  transform: rotate(45deg) translate(-2px, -4px);
}
.header-nav_link:hover {
  color: #70A6EB !important;
}
.header-nav .is-open .dropdown-nav {
  pointer-events: auto;
  opacity: 1;
  transform: none;
  visibility: visible;
}
.header-nav .dropdown-parent {
  cursor: pointer;
}
.header-nav .dropdown-nav {
  width: 100%;
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  transform: translateY(-16px);
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}
.header-nav .dropdown-list {
  padding: 12px 10px;
}
.header-nav .dropdown-list li {
  width: 100%;
  line-height: 1.2;
  margin: 8px 0;
}
.header-nav .dropdown-list li span {
  color: #70A6EB;
}
.header-nav .dropdown-list li br {
  display: none !important;
}
.header-nav .dropdown-list li small {
  font-size: 11px;
}
.header-nav .dropdown-list a {
  color: #0E0D6A;
  font-size: 16px;
}
@media screen and (max-width: 991.98px) {
  .header-nav__wrap {
    height: 80px;
  }
  .header-nav__item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(14, 13, 106, 0.3490196078);
    width: 100%;
  }
  .header-nav-grp {
    position: absolute;
    z-index: 2;
    top: 80px;
    left: -100%;
    height: 100vh;
    display: block;
    overflow-y: scroll;
    background: #f3f6f9;
    padding-bottom: 130px;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .header-nav-grp.push {
    left: 0;
    z-index: 9;
  }
  .header-nav__button {
    min-height: 120px;
    width: 33%;
    margin: 5px;
  }
  .header-nav__button-grp {
    width: 100%;
    padding: 0 20px;
  }
  .header-nav__menu {
    align-items: flex-start;
    flex-direction: column;
    padding: 50px;
  }
  .header-nav__item-dropdown .dropdown-parent {
    position: relative;
    display: flex;
    padding-right: 15px;
    /* space for arrow */
  }
  .header-nav__item-dropdown .dropdown-parent::before {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    transition: transform 0.3s ease;
    transform: translateY(-50%) scaleY(1) rotate(45deg);
    width: 9px;
    height: 9px;
    border-right: 3px solid #70A6EB;
    border-bottom: 3px solid #70A6EB;
  }
  .header-nav__item-dropdown .dropdown-parent::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: 1px solid #70A6EB;
    border-radius: 50%;
  }
  .header-nav .is-open .dropdown-nav {
    height: 100%;
  }
  .header-nav .is-open .dropdown-parent::before {
    transform: translateY(-50%) scaleY(-1) rotate(45deg);
  }
  .header-nav .dropdown-nav {
    height: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .header-nav__menu {
    padding: 50px 25px;
  }
  .header-nav__button {
    min-height: 120px;
    width: 100%;
    margin: 5px 0;
  }
  .header-nav__button-grp {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .header-nav-logo {
    margin-left: 20px;
  }
}
@media screen and (min-width: 992px) {
  .header-nav .dropdown-nav {
    position: absolute;
    top: 85px;
    left: 0;
    background: #e8edf3;
    padding: 30px;
    justify-content: center;
  }
  .header-nav .dropdown-list {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    gap: 15px 30px;
    max-width: 80%;
  }
  .header-nav .dropdown-list li {
    margin: 0;
  }
  .header-nav__wrap {
    height: 85px;
  }
  .header-nav-logo img {
    width: 350px;
    margin-top: -8px;
  }
  .header-nav__link {
    font-size: 13px;
  }
  .header-nav__item {
    margin-right: 22px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .header-nav__button a {
    width: 110px;
  }
  .header-nav__button p {
    font-size: 11px;
  }
}
@media screen and (min-width: 1200px) {
  .header-nav .dropdown-list {
    max-width: 1000px;
    width: 100%;
  }
  .header-nav__link {
    font-size: 14px;
  }
  .header-nav__item {
    margin-right: 30px;
  }
  .header-nav__button a {
    width: 130px;
  }
  .header-nav__button p {
    font-size: 13px;
  }
}
@media screen and (min-width: 1400px) {
  .header-nav__wrap {
    height: 95px;
  }
  .header-nav .dropdown-nav {
    top: 95px;
  }
  .header-nav__link {
    font-size: 16px;
  }
  .header-nav-logo {
    margin-left: 50px;
  }
  .header-nav-logo img {
    width: 400px;
  }
  .header-nav__item {
    margin-right: 45px;
  }
  .header-nav__button a {
    width: 150px;
  }
}
@media screen and (min-width: 1600px) {
  .header-nav__item {
    margin-right: 65px;
  }
  .header-nav .dropdown-list {
    max-width: 1200px;
  }
}

.disabled {
  overflow: hidden;
}

.back-top__inner {
  position: fixed;
  z-index: 5;
  right: 15px;
  bottom: 15px;
  height: 60px;
  width: 60px;
  border-radius: 50px;
  box-shadow: inset 0 0 0 3px #ebf0f5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.back-top__inner.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-top__circle path {
  fill: none;
  stroke: rgba(14, 13, 106, 0.8);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.back-top .icon-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: 0;
  width: 45px;
  height: 45px;
  color: #ffffff;
  background-color: #0E0D6A;
  transform: translate(-50%, -50%);
  transition: 0.6s ease-in-out;
  cursor: pointer;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.back-top .icon-bg-circle:hover {
  transform: translate(-50%, -50%);
  background-color: rgba(14, 13, 106, 0.8);
}
.back-top .arrow-up::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #ffffff;
  border-top: 2.5px solid #ffffff;
  transform: translateY(0) rotate(-45deg);
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 576px) {
  .back-top__inner {
    right: 15px;
    bottom: 20px;
    height: 70px;
    width: 70px;
  }
  .back-top .icon-bg-circle {
    width: 50px;
    height: 50px;
  }
}

footer .icon__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 35px;
  border: 1px solid #70A6EB;
  border-radius: 100px !important;
}
footer .icon--arrow {
  transition: transform 0.3s ease;
}
footer .icon--arrow-chevron {
  width: 13px;
  margin-top: 2px;
}
footer .product-item span {
  color: #70A6EB;
}
footer .product-item br {
  display: none !important;
}
footer .footer .hr__line {
  border-top: 1px solid #333333 !important;
  width: 100%;
}
footer .footer ul {
  padding-left: 0 !important;
}
footer .footer ul li {
  margin-bottom: 8px;
}
footer .footer ul li a {
  font-size: 14px;
  color: #0E0D6A !important;
}
footer .footer__accordion-title a {
  color: #333333 !important;
  font-weight: 700;
}
footer .footer__accordion-content {
  transition: all 0.3s ease;
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}
footer .footer__accordion.active .icon--arrow {
  transform: rotate(180deg);
}
footer .footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer__logo-one {
  width: 120px;
}
footer .footer__logo-two {
  width: 130px;
  margin-top: 12px;
  margin-left: 14px;
}
footer .footer__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .footer__text .link-one {
  text-decoration: underline;
  padding-right: 14px;
  border-right: 1px solid rgba(51, 51, 51, 0.25);
}
footer .footer__text .link-two {
  text-decoration: underline;
  padding-left: 14px;
}
@media screen and (max-width: 767.98px) {
  footer .footer__accordion-title {
    cursor: pointer;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  footer .footer__accordion-content {
    height: auto !important;
  }
  footer .footer__accordion-content .products {
    column-count: 2;
  }
  footer .footer__accordion-content ul a {
    word-break: keep-all;
    overflow-wrap: normal;
    white-space: normal;
  }
  footer .footer__accordion-content ul li {
    break-inside: avoid;
  }
}
@media screen and (min-width: 768px) {
  footer .footer__logo {
    justify-content: flex-start;
  }
}

html,
body {
  font-size: 18px;
  font-weight: 500;
}

.fs1 {
  font-size: 32px;
}
.fs2 {
  font-size: 24px;
}
.fs3 {
  font-size: 22px;
}
.fs4 {
  font-size: 20px;
}
.fs5 {
  font-size: 18px;
}
.fs6 {
  font-size: 16px;
}
.fs7 {
  font-size: 14px;
}

.sec-title {
  color: #0E0D6A !important;
  text-align: center;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 1px;
}
.sec-title span {
  color: #70A6EB;
}

.title-bg {
  position: relative;
  display: inline-flex;
  margin: 20px 0 40px;
  padding: 10px 50px;
  background: transparent linear-gradient(90deg, #E6F2FF 0%, var(--white-ffffff) 48%, #EEF6FF 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #E6F2FF 0%, #FFFFFF 48%, #EEF6FF 100%) 0% 0% no-repeat padding-box;
  border-radius: 45px !important;
  color: #377FDC;
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.39px;
}

.th-1 {
  font-size: 30px;
}
.th-2 {
  font-size: 26px;
}
.th-3 {
  font-size: 22px;
}
.th-4 {
  font-size: 20px;
}
.th-5, .th-6 {
  font-size: 18px;
}
@media screen and (min-width: 400px) {
  .th-1 {
    font-size: 36px;
  }
  .th-2 {
    font-size: 32px;
  }
  .th-3 {
    font-size: 28px;
  }
  .th-4 {
    font-size: 24px;
  }
  .th-5, .th-6 {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .th-1 {
    font-size: 4.3vw;
  }
  .th-2 {
    font-size: 4.1vw;
  }
  .th-3 {
    font-size: 3.9vw;
  }
  .th-4 {
    font-size: 3vw;
  }
  .th-5 {
    font-size: 2.8vw;
  }
  .th-6 {
    font-size: 2.6vw;
  }
}
@media screen and (min-width: 992px) {
  .th-1 {
    font-size: 46px;
  }
  .th-2 {
    font-size: 40px;
  }
  .th-3 {
    font-size: 36px;
  }
  .th-4 {
    font-size: 34px;
  }
  .th-5 {
    font-size: 30px;
  }
  .th-6 {
    font-size: 28px;
  }
}

.btn svg {
  width: 25px;
  height: 20px;
}
.btn .bg-circle--sm {
  width: 35px;
  height: 35px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
