@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@400;600&display=swap");
:root {
  --psi-blue:#2f66b0;
  --psi-blue-light:#3b78cf;
  --psi-bg:#f5f7fb;
  --psi-text:#334;
}

body {
  color: #2a2a2a;
  letter-spacing: 0.02em;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.bg-light-blue {
  background: linear-gradient(135deg, #f4f5fa 0%, #f3fcff 100%) !important;
  border: 2px solid #64B1F4 !important;
}

.text-white {
  color: #fff !important;
}

.btn-psi {
  border-radius: 100px;
  color: #fff;
  background: linear-gradient(135deg, #1889d7 0%, #003D98 100%) !important;
  padding: 12px 26px;
  transition: all 0.5s ease;
  background-repeat: no-repeat;
  background-clip: padding-box;
  background-size: 110% 100%;
  font-weight: 600;
}
.btn-psi:hover {
  background: linear-gradient(135deg, #64B1F4 0%, #1889d7 100%) !important;
  text-decoration: none;
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
.btn-psi:focus {
  color: #fff;
}

.btn-white {
  border-radius: 100px;
  background: linear-gradient(135deg, #fff 0%, #f4f5fa 100%) !important;
  padding: 12px 26px;
  transition: all 0.5s ease;
  background-repeat: no-repeat;
  background-clip: padding-box;
  background-size: 110% 100%;
  font-weight: 600;
  color: #003D98;
}
.btn-white:hover {
  background: linear-gradient(135deg, #64B1F4 0%, #1889d7 100%) !important;
  text-decoration: none;
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.btn-blue {
  border-radius: 100px;
  color: #fff;
  background: linear-gradient(135deg, #64B1F4 0%, #1889d7 100%) !important;
  padding: 12px 26px;
  transition: all 0.5s ease;
  background-repeat: no-repeat;
  background-clip: padding-box;
  background-size: 110% 100%;
  font-weight: 600;
}
.btn-blue:hover {
  background: linear-gradient(135deg, #1889d7 0%, #003D98 100%) !important;
  text-decoration: none;
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}
.btn-blue:focus {
  color: #fff;
}

.navbar {
  margin-bottom: 10px;
}
.navbar .navbar-brand img {
  width: 70px;
  height: auto;
}

.navbar-nav > li > a {
  color: #122;
  font-size: 14px;
  transition: all 0.5s ease;
}
.navbar-nav > li > a:hover {
  background-color: #f4f5fa;
}
.navbar-nav > li > .dropdown-menu.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  max-width: 1000px;
  padding: 20px;
  border: none;
  border-radius: 10px !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  background: #f4f5fa;
  z-index: 1000;
}
.navbar-nav > li.mega-dropdown {
  position: static;
}
.navbar-nav > li.mega-dropdown > .dropdown-menu {
  display: none;
}
.navbar-nav > li .nav-btn {
  background: #3ba4ec;
  padding: 8px 14px 8px;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  margin-left: 10px;
  letter-spacing: 0.05em;
  transition: all 0.5s ease;
}
.navbar-nav > li .nav-btn:hover {
  background-color: #003D98;
}
.navbar-nav > li .nav-btn.nav-btn-psi {
  background: linear-gradient(135deg, #1889d7 0%, #003D98 100%) !important;
  background-clip: padding-box;
  background-size: 110% 100%;
  font-weight: 600;
  padding: 9px 18px 9px;
}
.navbar-nav > li .nav-btn.nav-btn-psi:hover {
  background: linear-gradient(135deg, #64B1F4 0%, #1889d7 100%) !important;
  text-decoration: none;
  color: #fff;
}
.navbar-nav > li .nav-btn.nav-btn-psi:focus {
  color: #fff;
}
.full-width-banner {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navbar-nav > li {
    float: none;
  } /* ← Bootstrapのfloatを打消し */
}
@media (min-width: 992px) {
  .navbar-nav > li.mega-dropdown > .dropdown-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
}
.mega-visual {
  position: relative;
}
.mega-visual .mega-ttl {
  color: #003D98;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 40px;
}
.mega-visual .mega-sub {
  color: #575757;
  font-size: 16px;
}

.mega-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
.mega-grid > li {
  width: 50%;
  padding: 8px;
}
.mega-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e6ecf6;
  padding: 14px 16px;
  text-decoration: none;
  background: #fff;
  transition: all 0.15s ease;
  position: relative;
}
.mega-grid a::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 0;
  height: 0;
  border-bottom: 15px solid #003D98;
  border-left: 15px solid transparent;
}
.mega-grid a:hover {
  background: #f7faff;
  border-color: #cfe0ff;
  box-shadow: 0 6px 14px rgba(47, 102, 176, 0.08);
}
.mega-grid a .mega-ico {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #1889d7 0%, #003D98 100%);
  margin-right: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.mega-grid a .mega-ico img {
  max-width: 50px;
  max-height: 50px;
}
.mega-grid a .mega-text {
  color: #122;
  font-weight: 700;
}

@media (max-width: 767px) {
  .mega-grid > li {
    width: 100%;
  }
  .mega-visual {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-nav > li.mega-dropdown:hover > .dropdown-menu {
    display: block;
  }
}
@media (max-width: 767px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    min-height: 80px;
    padding-top: env(safe-area-inset-top);
    margin-top: 0;
    -webkit-backdrop-filter: saturate(180%) blur(6px);
  }
  .navbar-collapse {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .navbar-collapse.in {
    display: block !important;
    height: auto !important;
  }
  body {
    overflow: visible !important;
    padding-top: calc(80px + env(safe-area-inset-top));
  }
  body.top-page {
    padding-top: 0;
  }
  .navbar-brand {
    margin-left: 15px;
    margin-top: 10px;
  }
  #primaryNav {
    background: #fff;
  }
  .navbar-nav {
    display: block !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    margin: 0; /* 余白打消し */
    float: none !important; /* 念のため */
    padding: 10px 15px 50px;
  }
  .navbar-nav > li {
    float: none;
  }
  .navbar-nav > li > a {
    padding: 16px 14px;
    border: 1px solid #e6ecf6;
    border-radius: 6px;
    margin: 6px 0;
    font-weight: 600;
  }
  .navbar-nav > li .nav-btn, .navbar-nav > li .nav-btn.nav-btn-psi {
    margin-left: 0;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .navbar-nav .mega-grid li:first-child a {
    margin-top: 0;
  }
  .navbar-nav .mega-grid li:last-child a {
    margin-bottom: 0;
  }
  .navbar-collapse {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .navbar-collapse .dropdown.mega-dropdown {
    position: static;
  }
  .navbar-collapse .dropdown.mega-dropdown > .dropdown-menu.mega-menu {
    display: block !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0;
    border: 0;
    border-radius: 0 !important;
    box-shadow: none;
    background: transparent;
    box-sizing: border-box;
  }
  .navbar-collapse .dropdown.mega-dropdown > a {
    pointer-events: none;
  }
  .mega-visual {
    display: none;
  }
  .mega-links {
    padding: 0;
  }
  .mega-grid {
    display: block;
    margin: 0;
  }
  .mega-grid > li {
    width: 100%;
    padding: 0;
  }
  .mega-grid a {
    margin: 6px 0;
    padding: 16px 14px;
    border: 1px solid #e6ecf6;
    border-radius: 6px;
    background: #fff;
  }
  .navbar-collapse .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    border: 0;
    box-shadow: none;
  }
  .dropdown.mega-dropdown .dropdown-toggle {
    display: none;
  }
  .mega-grid a {
    padding: 4px 14px;
  }
  .mega-grid a .mega-ico {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1889d7 0%, #003D98 100%);
    margin-right: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  .mega-grid a .mega-ico img {
    max-width: 30px;
    max-height: 30px;
  }
}
#wpadminbar ~ .navbar {
  top: 32px;
}

#wpadminbar ~ body {
  padding-top: 82px;
}

@media (min-width: 992px) {
  .navbar-nav > li.mega-dropdown > .dropdown-menu {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}
.navbar-toggle {
  position: relative;
  z-index: 1100;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  transition: all 0.5s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  animation: Header_shadowin__XLfdY 0.5s forwards, Header_towhite__d_EcX 0.5s forwards;
  width: 64px;
  height: 64px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.navbar-toggle .icon-bar {
  width: 30px;
  height: 2px;
  margin: 6px auto;
  background: #64B1F4;
  transition: background 0.3s ease;
}
.navbar-toggle:hover {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.navbar-toggle:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.4);
}

.navbar-toggle:not(.collapsed) .icon-bar:nth-child(2) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(3) {
  opacity: 0;
}
.navbar-toggle:not(.collapsed) .icon-bar:nth-child(4) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.navbar-toggle.collapsed .icon-bar {
  transform: none;
  opacity: 1;
}

@keyframes Header_shadowin__XLfdY {
  0% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}
@keyframes Header_towhite__d_EcX {
  0% {
    background: rgba(255, 255, 255, 0.1);
  }
  100% {
    background: rgba(255, 255, 255, 0.25);
  }
}
.btn-wrap {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .btn-wrap.btn-left {
    justify-content: start;
  }
}

.btn-wrap .btn {
  min-width: 180px;
}

.page-top {
  /* 縦方向中央 */
  /* お知らせ */
}
.page-top h2 {
  border-bottom: none;
}
.page-top .hero {
  position: relative;
  background: url("/assets/psi/img/top/psi-bg.jpg") no-repeat center top fixed;
  background-size: contain;
  background-color: #00193e;
  text-align: center;
  padding: 90px 0 100px;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 1680px) {
  .page-top .hero {
    background: url("/assets/psi/img/top/psi-bg-wide.jpg") no-repeat center top fixed;
    background-size: contain;
  }
}
@media (min-width: 1980px) {
  .page-top .hero {
    background: url("/assets/psi/img/top/psi-bg-s-wide.jpg") no-repeat center top fixed;
    background-size: 100%;
  }
}
@media (max-width: 1140px) {
  .page-top .hero {
    background-size: cover;
  }
}
@media (max-width: 516px) {
  .page-top .hero {
    background-size: 1500px;
    padding: 140px 0 120px;
  }
}
.page-top .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  background-size: cover;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}
.page-top .hero .container {
  position: relative;
  z-index: 2;
}
.page-top .hero .site-ttl {
  text-shadow: 0 0 24px rgb(0, 0, 0), 0 0 32px rgba(0, 0, 0, 0.3), 0 0 48px rgba(0, 0, 0, 0.1);
  font-size: 70px;
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.8em;
}
.page-top .hero h1 {
  line-height: 1.6em;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  margin-top: 0;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.9), 0 0 48px rgba(0, 0, 0, 0.4), 0 0 55px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .page-top .hero h1 {
    font-size: 26px;
  }
}
.page-top .hero p {
  color: #fff;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.6em;
  margin-bottom: 24px;
  font-weight: 600;
  text-shadow: 0 0 14px rgb(0, 0, 0), 0 0 22px rgba(0, 0, 0, 0.5), 0 0 55px rgba(0, 0, 0, 0.1);
}
.page-top section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-top section > * {
  position: relative;
  z-index: 1;
}
.page-top section p.txt {
  font-size: 16px;
}
@media (min-width: 768px) {
  .page-top .row-middle {
    display: flex;
    align-items: center;
  }
  .page-top .row-middle > [class*=col-] {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.page-top .section-head {
  margin-bottom: 30px;
}
.page-top .section-head .section-ttl span {
  display: inline-block;
  background: linear-gradient(135deg, #1889d7, #64B1F4);
  background: -webkit-linear-gradient(135deg, #1889d7, #64B1F4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  font-weight: 300;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.page-top .section-head h2 {
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 0;
  margin-left: 2px;
}
.page-top .section-reasons {
  background: url(/assets/psi/img/top/bg-reason.png) right top no-repeat;
  max-width: 1840px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .page-top .section-reasons {
    background-size: 60%;
    background-position: right -65px top;
  }
}
@media (max-width: 516px) {
  .page-top .section-reasons {
    background-size: 300px;
    background-position: right -65px top;
  }
}
.page-top .section-reasons .row {
  display: flex;
  flex-wrap: wrap;
}
.page-top .section-reasons .col-xs-12 {
  display: flex;
  margin-bottom: 15px;
}
.page-top .section-reasons .reason-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.page-top .section-reasons .reason-card {
  position: relative;
  background-color: #f4f5fa;
  border-radius: 4px;
  height: 100%;
  text-align: center;
  padding: 40px 22px 180px;
  overflow: hidden;
}
.page-top .section-reasons .reason-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 200px;
  transform: translateX(-50%);
  background: url("/assets/psi/img/top/reason01.png") no-repeat center bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
.page-top .section-reasons .reason-card.reason02::after {
  background-image: url("/assets/psi/img/top/reason02.png");
}
.page-top .section-reasons .reason-card.reason03::after {
  background-image: url("/assets/psi/img/top/reason03.png");
}
.page-top .section-reasons .reason-card::before {
  content: "01";
  position: absolute;
  top: 0px;
  left: 5px;
  font-size: 76px;
  font-weight: 800;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8980392157);
  z-index: 1;
  pointer-events: none;
  font-style: italic;
}
.page-top .section-reasons .reason-card.reason02::before {
  content: "02";
}
.page-top .section-reasons .reason-card.reason03::before {
  content: "03";
}
.page-top .section-reasons .reason-card h4 {
  color: #003D98;
  font-weight: bold;
  line-height: 1.5em;
}
.page-top .section-reasons .reason-card h4, .page-top .section-reasons .reason-card p {
  position: relative;
  z-index: 2;
}
.page-top .section-reasons .reason-card p {
  text-align: left;
}
.page-top .section-features {
  position: relative;
  background: url(/assets/psi/img/top/service-bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}
.page-top .section-features::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
.page-top .section-features .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.page-top .section-features .col-sm-6.col-md-4 {
  display: flex;
  flex-direction: column;
}
.page-top .section-features .feat {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  padding: 24px 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.page-top .section-features .feat i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  color: #fff;
  background: linear-gradient(135deg, #1889d7 0%, #003D98 100%);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.page-top .section-features .feat .title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.page-top .section-features .feat h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #003D98;
  line-height: 1.4em;
}
.page-top .section-features .feat p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}
.page-top .cta-center {
  text-align: center;
  margin-top: 18px;
}
.page-top .cta-center .btn {
  padding: 12px 30px;
  border-radius: 28px;
}
.page-top .section-services {
  background: linear-gradient(135deg, #1889d7 0%, #003D98 100%) !important;
}
.page-top .section-services .section-ttl span {
  background: linear-gradient(135deg, #fff, #f4f5fa);
  background: -webkit-linear-gradient(135deg, #fff, #f4f5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-top .section-services .row {
  display: flex;
  flex-wrap: wrap;
}
.page-top .section-services .row > [class*=col-] {
  display: flex;
}
.page-top .section-services .svc-card-link {
  flex: 1;
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}
.page-top .section-services .svc-card-link p {
  color: #333;
}
.page-top .section-services .svc-card-link::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 0;
  height: 0;
  border-bottom: 25px solid #003D98;
  border-left: 25px solid transparent;
}
.page-top .section-services .svc-card-link .svc-card {
  padding-top: 100px;
  background-size: 100px;
  background-repeat: no-repeat;
  background-position: center top;
}
.page-top .section-services .svc-card-link .svc-card.svc01 {
  background-image: url(/assets/psi/img/icon/icon_01-b.svg);
}
.page-top .section-services .svc-card-link .svc-card.svc02 {
  background-image: url(/assets/psi/img/icon/icon_02-b.svg);
}
.page-top .section-services .svc-card-link .svc-card.svc03 {
  background-image: url(/assets/psi/img/icon/icon_03-b.svg);
}
.page-top .section-services .svc-card-link .svc-card.svc04 {
  background-image: url(/assets/psi/img/icon/icon_04-b.svg);
}
.page-top .section-services .svc-card-link .svc-card.svc05 {
  background-image: url(/assets/psi/img/icon/icon_05-b.svg);
}
.page-top .section-services .svc-card-link .svc-card.svc06 {
  background-image: url(/assets/psi/img/icon/icon_06-b.svg);
}
.page-top .section-services .svc-card-link .svc-card h4 {
  color: #003D98;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .page-top .section-services .svc-card-link .svc-card {
    padding-top: 1px;
    background-size: 60px;
    background-position: left top;
  }
  .page-top .section-services .svc-card-link .svc-card h4 {
    text-align: left;
    padding-left: 70px;
    display: flex;
    align-items: center;
    height: 40px;
    line-height: 1.6em;
  }
}
.page-top .section-services .svc-card-link:hover {
  text-decoration: none;
  background: #64B1F4;
}
.page-top .section-services .svc-card-link:hover h4, .page-top .section-services .svc-card-link:hover p {
  color: #fff;
}
.page-top .section-services .svc-card-link:hover .svc-card.svc01 {
  background-image: url(/assets/psi/img/icon/icon_01.svg);
}
.page-top .section-services .svc-card-link:hover .svc-card.svc02 {
  background-image: url(/assets/psi/img/icon/icon_02.svg);
}
.page-top .section-services .svc-card-link:hover .svc-card.svc03 {
  background-image: url(/assets/psi/img/icon/icon_03.svg);
}
.page-top .section-services .svc-card-link:hover .svc-card.svc04 {
  background-image: url(/assets/psi/img/icon/icon_04.svg);
}
.page-top .section-services .svc-card-link:hover .svc-card.svc05 {
  background-image: url(/assets/psi/img/icon/icon_05.svg);
}
.page-top .section-services .svc-card-link:hover .svc-card.svc06 {
  background-image: url(/assets/psi/img/icon/icon_06.svg);
}
.page-top .section-services .svc-card-link:hover::after {
  border-bottom: 25px solid #fff;
}
.page-top .section-news .news-panel .news-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.page-top .section-news .news-panel a {
  display: block;
  padding: 20px 8px;
}
.page-top .section-news .news-panel a .news-meta {
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}
.page-top .section-news .news-panel a .news-meta .cat {
  background: #003D98;
  border-radius: 60px;
  color: #fff;
  padding: 0 15px;
  line-height: 1.4em;
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  margin-left: 10px;
  margin-right: 10px;
}
.page-top .section-news .news-panel a .news-title {
  color: #003D98;
  font-weight: 700;
}
.page-top .section-news .news-panel a:hover {
  background: #f4f5fa;
}
.page-top #latest-news.section-news {
  background: linear-gradient(135deg, #003D98 0%, #002c6d 100%) !important;
  padding: 20px 0;
}
.page-top #latest-news.section-news .section-head {
  margin-bottom: 0;
}
.page-top #latest-news.section-news .section-head h2 {
  color: #fff;
  margin: 0 !important;
  padding: 0;
  font-size: 18px;
  white-space: nowrap;
}
.page-top #latest-news.section-news .news-panel .news-item {
  border-bottom: none;
}
.page-top #latest-news.section-news .news-panel a {
  transition: all 0.5s ease;
  padding: 8px 8px;
  color: #fff;
}
@media (min-width: 768px) {
  .page-top #latest-news.section-news .news-panel a {
    display: flex;
  }
}
.page-top #latest-news.section-news .news-panel a .news-meta {
  color: #fff;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.page-top #latest-news.section-news .news-panel a .news-meta .cat {
  background: #fff;
  color: #003D98;
  font-weight: bold;
  margin-left: 0;
}
.page-top #latest-news.section-news .news-panel a .news-title {
  color: #fff;
}
.page-top #latest-news.section-news .news-panel a:hover {
  background: #f4f5fa;
  color: #003D98;
}
.page-top #latest-news.section-news .news-panel a:hover .news-meta {
  color: #003D98;
}
.page-top #latest-news.section-news .news-panel a:hover .news-title {
  color: #003D98;
}
.page-top .band {
  position: relative;
  padding: 100px 10px;
  margin-bottom: -30px;
}
.page-top .band .container {
  background: rgba(255, 255, 255, 0.8509803922);
  border-radius: 10px;
  padding: 40px;
}
.page-top .band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-35deg, color-mix(in srgb, #f4f5fa 10%, transparent), color-mix(in srgb, #64B1F4 20%, transparent)), url(/assets/psi/img/top/bg-contact.jpg);
  background-size: cover;
  background-position: right center, right center;
  background-repeat: no-repeat, no-repeat;
  z-index: 0;
  opacity: 1;
}
@media (max-width: 768px) {
  .page-top .band::before {
    background-size: cover, cover;
  }
}
.page-top .band p.txt {
  font-size: 20px;
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .page-top .band p.txt {
    font-size: 18px;
  }
}
.page-top .band p {
  text-align: center;
}

.page-title-area {
  background-color: #1889d7;
}
.page-title-area h1 {
  color: #fff;
  margin-top: 4rem;
}
.page-title-area .bread-crumb {
  list-style: none;
  margin-bottom: 15px;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 0.5em;
}
.page-title-area .bread-crumb li {
  display: inline;
  color: #fff;
}
.page-title-area .bread-crumb li + li::before {
  content: "›";
  margin: 0 0.5em;
  color: #fff;
  font-size: 1.5rem;
}
.page-title-area .bread-crumb a {
  text-decoration: none;
  color: #fff;
}
.page-title-area .bread-crumb a:hover {
  text-decoration: underline;
}

.Side-menu {
  margin-top: 30px;
}
.Side-menu .sidebar-acc > a.list-group-item {
  background: #f4f5fa;
}
.Side-menu .sidebar-acc > a.list-group-item.active {
  color: #fff !important;
  background: #337ab7 !important;
  border-color: #337ab7 !important;
}
.Side-menu .sidebar-acc .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media (max-width: 768px) {
  .img-sp-200 {
    width: 200px;
    height: auto;
  }
}
.text-highlight {
  background: linear-gradient(transparent 60%, rgba(255, 250, 125, 0.5) 60%);
}

.Page-content-main h2, .Page-content-main h3, .Page-content-main h4, .Page-content-main h5 {
  line-height: 1.4em;
}
.Page-content-main h2 {
  font-size: 2.2rem;
  padding: 1.4rem 1.6rem;
  color: #1989d7;
  background: #f4f5fa;
  border: none;
}
.Page-content-main h3 {
  color: #333;
  border-bottom: 2px solid #48a1d9;
  padding-bottom: 8px;
}
.Page-content-main p {
  line-height: 1.6em;
  font-size: 15px;
}
.Page-content-main .font-l {
  font-size: 1.8rem;
}
.Page-content-main .img-s {
  width: 140px;
  height: auto;
}
.Page-content-main .img-bg {
  background: #f4f5fa;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: center;
}
.Page-content-main .img-bg img {
  max-height: 150px;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .Page-content-main .row:not(.row-wide) > [class*=col-] {
    padding-left: 10px;
    padding-right: 10px;
  }
  .Page-content-main .row:not(.row-wide) {
    margin-right: -10px;
    margin-left: -10px;
  }
}
.Page-content-main .list-check {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.Page-content-main .list-check li {
  margin: 0.6em 0;
  font-size: 1.3em;
}
@media (max-width: 768px) {
  .Page-content-main .list-check li {
    font-size: 1.2em;
  }
}
.Page-content-main .list-check li span {
  position: relative;
  border-radius: 100px;
  padding: 6px 20px 6px 36px;
  background: #efefef;
  display: block;
}
.Page-content-main .list-check li span:before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("/assets/psi/img/dns/check.png") no-repeat center center;
  background-size: contain;
}
.Page-content-main .list-card {
  display: flex;
  flex-wrap: wrap;
}
.Page-content-main .list-card .card-inner {
  border: 1px solid #dddddd;
  padding: 15px;
  margin-bottom: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 8px;
  background: #fff;
}
.Page-content-main .list-card > [class*=col-] {
  display: flex;
  flex-direction: column;
}
.Page-content-main .list-card img {
  margin: 0 auto;
}
.Page-content-main .list-card h3 {
  border-bottom: 0;
  font-weight: 600;
  color: #003D98;
  font-size: 1.6rem;
  padding: 0;
  margin-top: 10px;
  margin-top: 0;
}
.Page-content-main .merit-card {
  counter-reset: merit;
}
.Page-content-main .merit-card .card-inner h3 {
  position: relative;
  padding-left: 74px;
  min-height: 64px;
  display: flex;
  align-items: center;
  counter-increment: merit;
  text-align: left;
}
.Page-content-main .merit-card .card-inner h3::before {
  content: "MERIT";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef5fd;
  color: #4a99d0;
  font-weight: 700;
  font-family: "Oswald", "Roboto Condensed", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  font-style: italic;
}
.Page-content-main .merit-card .card-inner h3::after {
  content: counter(merit, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  color: #075096;
  font-weight: 700;
  font-family: "Oswald", "Roboto Condensed", sans-serif;
  font-size: 22px;
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .Page-content-main .merit-card .card-inner h3 {
    padding-left: 72px;
    min-height: 52px;
  }
  .Page-content-main .merit-card .card-inner h3::before {
    width: 52px;
    height: 52px;
    font-size: 11px;
    padding-top: 6px;
  }
  .Page-content-main .merit-card .card-inner h3::after {
    width: 52px;
    height: 52px;
    font-size: 16px;
    padding-bottom: 8px;
  }
}
.Page-content-main .dl-set dl {
  background: #f4f5fa;
  padding: 8px;
  border-radius: 4px;
}
.Page-content-main .dl-set dt, .Page-content-main .dl-set dd {
  display: inline;
  margin: 0;
  line-height: 1.6em;
}
.Page-content-main .dl-set dt {
  background: #003D98;
  color: #fff;
  padding: 4px 20px;
  border-radius: 60px;
}
.Page-content-main .dl-set .dl-color-gray {
  background: #efefef;
}
.Page-content-main .dl-set .dl-color-gray dt {
  background: #414141;
}
.Page-content-main .item-box {
  display: flex;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}
.Page-content-main .item-box .item-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex: 0 0 88px;
  border-radius: 8px;
  background: #fff;
}
.Page-content-main .item-box .item-icon img {
  max-width: 64px;
  max-height: 64px;
  display: block;
}
.Page-content-main .item-box .item-text h4 {
  font-size: 16px;
  margin: 0;
  font-weight: bold;
  color: #333;
}
.Page-content-main .item-box .item-text p {
  margin-bottom: 0;
}
.Page-content-main .cta-area {
  background: linear-gradient(to right, #64B1F4, #1889d7);
  padding: 10px 10px 20px;
  margin: 30px 0;
  border-radius: 4px;
}
.Page-content-main .cta-area h2 {
  background: none;
  padding: 0;
  text-align: center;
  color: #fff;
}
.Page-content-main .cta-area .card-inner {
  border: 0;
}
.Page-content-main .row.col2 {
  max-width: 700px;
  margin: 0 auto;
}
.Page-content-main .btn-cta {
  background: #1889d7;
  color: #fff;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
  line-height: 1.4;
  white-space: normal;
  overflow: hidden;
}
.Page-content-main .btn-cta:hover {
  opacity: 0.9;
  text-decoration: none;
  color: #fff;
}
.Page-content-main .btn-cta::after {
  content: "›";
  margin-left: 0.6em;
  font-size: 1.8em;
  line-height: 1;
}

.border-box {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #fff;
}

.process-step.panel {
  border: 2px solid #78B7F2;
  border-radius: 14px;
  box-shadow: none;
  position: relative;
  padding-top: 22px;
  background: #fff;
  margin-bottom: 20px;
}
.process-step.panel .panel-body {
  padding: 10px;
}
.process-step .step-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #63A8F0;
  color: #fff;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
}
.process-step h4 {
  text-align: center;
  font-weight: 700;
  color: #003D98;
  font-size: 16px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 992px) {
  .row.equal-height {
    display: flex;
  }
  .row.equal-height > [class*=col-] {
    display: flex;
    flex-direction: column;
  }
  .process-step {
    flex: 1;
  }
}
.faq-wrap .panel-default > .panel-heading {
  background-color: #f4f5fa;
}
.faq-wrap .panel-heading::before {
  content: "Q. ";
  font-weight: bold;
  color: #003D98;
}/*# sourceMappingURL=common.css.map */