@charset "UTF-8";
/* ===============================================
   Font Import（フォント読み込みはここにまとめる）
   ・Google Fontsはここに記述
   ・案件ごとにここだけ差し替えればOK
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,500;0,600;1,500;1,600&family=Noto+Sans+JP:wght@400;500;600&display=swap");
/* ===============================================
   Font Variables（フォント設定）
   ・基本は日本語：Noto Sans JP
   ・英字は .u-en で切り替え
=============================================== */
/* ===============================================
   Font Weight
   ・基本：Medium
   ・強調：Bold / SemiBold
=============================================== */
/* ===============================================
   Color
=============================================== */
/* ===============================================
   Layout
=============================================== */
/* ===============================================
   Breakpoint
   ・tablet：1024px以下
   ・sp：767px以下
=============================================== */
/* ===============================================
   Mixin（レスポンシブ用）
   ・各クラス内でネストして使用
=============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

/* ===============================================
   Common Fixed Background
   ・全ページ共通で使う固定背景
   ・body直下に配置して、上にコンテンツを重ねる
=============================================== */
.c-site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: #ffffff;
}
.c-site-bg__grad {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 18% 24%, rgba(170, 230, 255, 0.22) 0, rgba(170, 230, 255, 0) 30%), radial-gradient(circle at 82% 18%, rgba(110, 195, 245, 0.16) 0, rgba(110, 195, 245, 0) 28%), linear-gradient(180deg, #eef7fc 0%, #ffffff 100%);
}
.c-site-bg__blob {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  filter: blur(54px);
  mix-blend-mode: overlay;
  will-change: transform, opacity;
  background-size: 100% 100%;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
@media screen and (max-width: 1024px) {
  .c-site-bg__blob {
    filter: blur(42px);
  }
}
@media screen and (max-width: 767px) {
  .c-site-bg__blob {
    filter: blur(36px);
  }
}
.c-site-bg__blob--01 {
  width: 420px;
  height: 420px;
  top: 4%;
  left: 4%;
  opacity: 0.9;
  background: radial-gradient(circle, rgba(118, 214, 255, 0.6) 0%, rgba(82, 194, 248, 0.45) 40%, rgba(52, 160, 232, 0.25) 70%, rgba(52, 160, 232, 0.08) 86%, rgba(52, 160, 232, 0) 100%);
  animation: siteBgBlobMove01 8s ease-in-out infinite alternate;
}
.c-site-bg__blob--02 {
  width: 520px;
  height: 520px;
  right: 2%;
  bottom: 0%;
  opacity: 0.6;
  background: radial-gradient(circle, rgba(118, 214, 255, 0.5) 0%, rgba(82, 194, 248, 0.38) 40%, rgba(52, 160, 232, 0.22) 70%, rgba(52, 160, 232, 0.06) 86%, rgba(52, 160, 232, 0) 100%);
  animation: siteBgBlobMove02 10s ease-in-out infinite alternate;
}
.c-site-bg__blob--03 {
  width: 300px;
  height: 300px;
  top: 12%;
  right: 22%;
  opacity: 0.5;
  background: radial-gradient(circle, rgba(118, 214, 255, 0.45) 0%, rgba(82, 194, 248, 0.32) 40%, rgba(52, 160, 232, 0.18) 70%, rgba(52, 160, 232, 0.05) 86%, rgba(52, 160, 232, 0) 100%);
  animation: siteBgBlobMove03 7s ease-in-out infinite alternate;
}
.c-site-bg__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* ===============================================
   Page Wrap
   ・固定背景の上にコンテンツを重ねる
=============================================== */
.l-site-wrap {
  position: relative;
  z-index: 10;
}

/* ===============================================
   Keyframes
=============================================== */
@keyframes siteBgBlobMove01 {
  0% {
    transform: translate3d(0, 0, 0) scale(0.95);
  }
  50% {
    transform: translate3d(60px, 30px, 0) scale(1.22);
  }
  100% {
    transform: translate3d(20px, -30px, 0) scale(1.05);
  }
}
@keyframes siteBgBlobMove02 {
  0% {
    transform: translate3d(0, 0, 0) scale(0.95);
  }
  50% {
    transform: translate3d(-70px, 40px, 0) scale(1.25);
  }
  100% {
    transform: translate3d(-20px, -20px, 0) scale(1.08);
  }
}
@keyframes siteBgBlobMove03 {
  0% {
    transform: translate3d(0, 0, 0) scale(0.95);
  }
  50% {
    transform: translate3d(30px, -20px, 0) scale(1.2);
  }
  100% {
    transform: translate3d(10px, 20px, 0) scale(1.05);
  }
}
.l-site-wrap {
  min-width: 320px;
}

.l-container {
  width: min(100% - 40px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-container {
    width: calc(100% - 20px);
  }
}

.l-header {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
.l-header.is-animate-in {
  opacity: 1;
  transform: translateY(0);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 112px;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    gap: 10px;
    min-height: 84px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    gap: 12px;
    min-height: 60px;
  }
}
.l-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .l-header__brand {
    gap: 10px;
    flex: 1 1 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-header__brand {
    gap: 8px;
  }
}
.l-header__logo {
  flex-shrink: 0;
  width: 72px;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .l-header__logo {
    width: 56px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 40px;
  }
}
.l-header__logo a {
  display: block;
}
.l-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.l-header__brand-text {
  min-width: 0;
  color: #333;
  text-align: center;
}
.l-header__company {
  margin: 0;
  font-size: clamp(0.9rem, 0.7vw + 0.5rem, 1.3rem);
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .l-header__company {
    font-size: 1.1rem;
    white-space: normal;
    line-height: 1.35;
  }
}
@media screen and (max-width: 767px) {
  .l-header__company {
    font-size: 0.9rem;
  }
}
.l-header__sub-company {
  margin: 2px 0 0;
  font-size: clamp(0.7rem, 0.5vw + 0.4rem, 1.1rem);
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .l-header__sub-company {
    font-size: 1rem;
    white-space: normal;
    line-height: 1.35;
  }
}
@media screen and (max-width: 767px) {
  .l-header__sub-company {
    font-size: 0.8rem;
  }
}
.l-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .l-header__nav {
    position: fixed;
    top: 84px;
    right: 0;
    left: 0;
    display: block;
    padding: 24px 24px 32px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #d9e2ec;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    top: 60px;
    padding: 20px 16px 28px;
  }
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2.8vw;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .l-header__nav-list {
    display: block;
  }
}
.l-header__nav-item {
  font-size: clamp(1rem, 0.5vw + 0.7rem, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .l-header__nav-item {
    border-bottom: 1px solid #d9e2ec;
  }
}
.l-header__nav-item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .l-header__nav-item a {
    display: flex;
    width: 100%;
    min-height: auto;
    padding: 16px 0;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav-item a {
    padding: 14px 0;
    font-size: 1.4rem;
  }
}
.l-header__nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #1777B7 0%, #4FABD5 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .l-header__nav-item a::after {
    display: none;
  }
}
@media (hover: hover) {
  .l-header__nav-item a:hover {
    transform: translateY(-2px);
    color: #004374;
  }
  .l-header__nav-item a:hover::after {
    transform: scaleX(1);
  }
}
.l-header__nav-item.is-current a {
  color: #004374;
}
.l-header__nav-item.is-current a::after {
  transform: scaleX(1);
}
.l-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  transform: translateX(20px);
}
@media screen and (max-width: 1024px) {
  .l-header__actions {
    gap: 10px;
    transform: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__actions {
    gap: 8px;
  }
}
.l-header__contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 45px;
  padding: 0 10px;
  overflow: hidden;
  background: linear-gradient(90deg, #1777B7 0%, #4FABD5 100%);
  color: #fff;
  font-size: clamp(1rem, 0.5vw + 0.7rem, 1.4rem);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .l-header__contact {
    min-width: 150px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__contact {
    min-width: 84px;
    min-height: 35px;
    padding: 0 10px;
    font-size: 1.1rem;
  }
}
@media (hover: hover) {
  .l-header__contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(29, 111, 191, 0.22);
  }
}
.l-header__toggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__toggle {
    position: relative;
    display: grid;
    place-items: center;
    width: 30px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-shrink: 0;
  }
}
.l-header__toggle span {
  position: absolute;
  display: block;
  width: 30px;
  height: 1px;
  background: #2f88c9;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.l-header__toggle span:nth-child(1) {
  top: 11px;
}
.l-header__toggle span:nth-child(2) {
  top: 19px;
  height: 2px;
  background: #1777B7;
}
.l-header__toggle span:nth-child(3) {
  top: 27px;
}

@media screen and (max-width: 1024px) {
  .is-nav-open .l-header__nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.is-nav-open .l-header__toggle span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.is-nav-open .l-header__toggle span:nth-child(2) {
  opacity: 0;
}
.is-nav-open .l-header__toggle span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

.l-footer {
  position: relative;
}
.l-footer__cta {
  position: relative;
  padding: 84px 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .l-footer__cta {
    padding: 64px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__cta {
    padding: 36px 0;
  }
}
.l-footer__cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 100%;
  background: url(/common/img/cont_bg.png) no-repeat right bottom/cover;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-footer__cta::after {
    background: url(/common/img/cont_bg_sp.png) no-repeat right bottom/cover;
  }
}
.l-footer__cta-inner {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.l-footer__main {
  position: relative;
  padding: 78px 0 36px;
  background: #edf2f5;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .l-footer__main {
    padding: 56px 0 28px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__main {
    padding: 36px 0 24px;
  }
}
.l-footer__main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #fff 1px, transparent 1px) 0 0/5px 5px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 20%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 20%, rgb(0, 0, 0) 50%, rgb(0, 0, 0) 100%);
  pointer-events: none;
}
.l-footer__wrap {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 1024px) {
  .l-footer__wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.l-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__brand {
    justify-content: center;
    gap: 16px;
  }
}
.l-footer__brand-logo {
  display: block;
  width: 5vw;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__brand-logo {
    width: 62px;
  }
}
.l-footer__brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.l-footer__brand-text {
  min-width: 0;
  color: #333;
  text-align: center;
}
.l-footer__company {
  margin: 0;
  font-size: clamp(1rem, 0.7vw + 0.6rem, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .l-footer__company {
    font-size: 1.1rem;
    white-space: normal;
    line-height: 1.35;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__company {
    font-size: 1rem;
  }
}
.l-footer__sub-company {
  margin: 2px 0 0;
  font-size: clamp(0.8rem, 0.5vw + 0.5rem, 1.2rem);
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .l-footer__sub-company {
    font-size: 1rem;
    white-space: normal;
    line-height: 1.35;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__sub-company {
    font-size: 0.9rem;
  }
}
.l-footer__nav {
  min-width: 0;
}
.l-footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8vw;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .l-footer__nav-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid #d9e3ea;
    border-left: 1px solid #d9e3ea;
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-footer__nav-item a {
  display: inline-block;
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .l-footer__nav-item a:hover {
    opacity: 0.65;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 13px 12px;
    border-right: 1px solid #d9e3ea;
    border-bottom: 1px solid #d9e3ea;
    background-color: rgba(255, 255, 255, 0.72);
    text-align: center;
    min-height: auto;
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.l-footer__contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 60px;
  padding: 0 20px;
  overflow: hidden;
  background: linear-gradient(90deg, #1777B7 0%, #4FABD5 100%);
  color: #fff;
  font-size: clamp(1rem, 0.5vw + 0.7rem, 1.5rem);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .l-footer__contact {
    min-width: 260px;
    min-height: 56px;
    padding: 0 20px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__contact {
    min-width: 260px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 1.3rem;
  }
}
@media (hover: hover) {
  .l-footer__contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(29, 111, 191, 0.22);
  }
}
@media screen and (max-width: 1024px) {
  .l-footer__contact-wrap {
    display: flex;
    justify-content: center;
  }
}
.l-footer__contact-wrap .l-footer__contact {
  min-width: 200px;
  min-height: 45px;
}
@media screen and (max-width: 1024px) {
  .l-footer__contact-wrap .l-footer__contact {
    min-width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__contact-wrap .l-footer__contact {
    min-width: 200px;
  }
}
.l-footer__bottom {
  width: 90%;
  max-width: 1660px;
  margin: 44px auto 0;
  display: flex;
  position: relative;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .l-footer__bottom {
    justify-content: center;
    margin-top: 28px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__bottom {
    margin-top: 24px;
  }
}
.l-footer__copyright {
  margin: 0;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .l-footer__copyright {
    text-align: center;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.sub-mv {
  position: relative;
  overflow: hidden;
}
.sub-mv__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 760px;
  height: 306px;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .sub-mv__media {
    right: -100px;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__media {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 257/147;
  }
}
.sub-mv__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  mask-image: url(/common/img/sub_mv_mask_pc.svg);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-position: right top;
  -webkit-mask-image: url(/common/img/sub_mv_mask_pc.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: right top;
}
@media screen and (max-width: 767px) {
  .sub-mv__photo {
    mask-image: url(/common/img/sub_mv_mask_sp.svg);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    mask-position: center top;
    -webkit-mask-image: url(/common/img/sub_mv_mask_sp.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center top;
  }
}
.sub-mv__photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
.sub-mv__photo-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}
@media screen and (max-width: 767px) {
  .sub-mv__photo-image {
    -o-object-position: center center;
       object-position: center center;
  }
}
.sub-mv__curve {
  position: absolute;
  inset: 0;
  background: url(/common/img/sub_mv_curve_pc.svg) no-repeat right top/100% 100%;
}
@media screen and (max-width: 767px) {
  .sub-mv__curve {
    background: url(/common/img/sub_mv_curve_sp.svg) no-repeat center top/100% 100%;
  }
}
.sub-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 240px;
  padding: 0 0 0 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .sub-mv__inner {
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__inner {
    align-items: flex-start;
    min-height: 250px;
    padding: 20px 0 0 20px;
    align-items: flex-start;
  }
}
.sub-mv__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
}
@media screen and (max-width: 1024px) {
  .sub-mv__content {
    max-width: 420px;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__content {
    max-width: none;
  }
}
.sub-mv__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 6.4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: linear-gradient(90deg, #1777B7 0%, #4FABD5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 1024px) {
  .sub-mv__title {
    font-size: clamp(2.6rem, 4vw, 4.8rem);
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__title {
    font-size: 3rem;
    line-height: 1.25;
    white-space: normal;
  }
}
.sub-mv__title--long {
  font-size: clamp(2.8rem, 3.8vw, 5.2rem);
}
@media screen and (max-width: 1024px) {
  .sub-mv__title--long {
    font-size: clamp(2.2rem, 3vw, 3.6rem);
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__title--long {
    font-size: 2.8rem;
  }
}
.sub-mv__lead {
  margin: 0 0 0;
  font-size: 1.2vw;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .sub-mv__lead {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__lead {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.img_frame {
  position: relative;
}
.img_frame::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1024px) {
  .u-only-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-only-pc {
    display: none !important;
  }
}

.u-only-tablet {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .u-only-tablet {
    display: initial !important;
  }
}

.u-only-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-only-sp {
    display: initial !important;
  }
}

.u-not-pc {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .u-not-pc {
    display: initial !important;
  }
}
@media screen and (max-width: 767px) {
  .u-not-pc {
    display: initial !important;
  }
}

@media screen and (max-width: 1024px) {
  .u-not-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-not-sp {
    display: none !important;
  }
}

.u-txt-c {
  text-align: center !important;
}

.u-txt-l {
  text-align: left !important;
}

.u-txt-r {
  text-align: right !important;
}

.u-mt-s {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .u-mt-s {
    margin-top: 16px;
  }
}

.u-mt-m {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .u-mt-m {
    margin-top: 32px;
  }
}

.u-mt-l {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .u-mt-l {
    margin-top: 56px;
  }
}

.u-mb-s {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .u-mb-s {
    margin-bottom: 16px;
  }
}

.u-mb-m {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .u-mb-m {
    margin-bottom: 32px;
  }
}

.u-mb-l {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .u-mb-l {
    margin-bottom: 56px;
  }
}

.u-pt-s {
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .u-pt-s {
    padding-top: 16px;
  }
}

.u-pt-m {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .u-pt-m {
    padding-top: 32px;
  }
}

.u-pt-l {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .u-pt-l {
    padding-top: 56px;
  }
}

.u-pb-s {
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .u-pb-s {
    padding-bottom: 16px;
  }
}

.u-pb-m {
  padding-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .u-pb-m {
    padding-bottom: 32px;
  }
}

.u-pb-l {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .u-pb-l {
    padding-bottom: 56px;
  }
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.c-heading {
  margin: 0 0 60px 0;
}
@media screen and (max-width: 1024px) {
  .c-heading {
    margin: 0 0 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-heading {
    margin: 0 0 30px 0;
  }
}
.c-heading__sub {
  color: #1777B7;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .c-heading__sub {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading__sub {
    margin: 0 0 20px 0;
    font-size: 1rem;
  }
}
.c-heading__title {
  margin: 28px 0 0;
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .c-heading__title {
    font-size: 2.4rem;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-heading__title {
    margin-top: 16px;
    font-size: 2rem;
  }
}
.c-heading__title span {
  font-size: smaller;
}

.c-sub-title {
  position: relative;
  margin-bottom: 50px;
  padding-left: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
}
.c-sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, #0078d4 0%, #39bff0 100%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-sub-title {
    margin-bottom: 32px;
    padding-left: 24px;
    font-size: 1.7rem;
  }
  .c-sub-title::before {
    width: 16px;
  }
}

.c-sub-title2 {
  position: relative;
  margin-bottom: 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.4;
  color: #004374;
}
@media screen and (max-width: 767px) {
  .c-sub-title2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
}

.contents {
  background: #fff;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .contents {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .contents {
    padding-bottom: 40px;
  }
}

.l-cont-wrap {
  background: #fff;
  padding: 80px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .l-cont-wrap {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .l-cont-wrap {
    padding: 50px 20px;
  }
}

.l-section-split {
  background: #fff;
  padding: 80px 80px 0;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .l-section-split {
    padding: 60px 40px 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-section-split {
    padding: 50px 20px 0;
    gap: 0;
  }
}
.l-section-split__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.l-section-split__body {
  min-width: 0;
}
.l-section-split__button {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .l-section-split__button {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .l-section-split__button {
    margin-top: 20px;
  }
}

.c-button {
  position: relative;
  display: inline-flex;
  justify-self: center;
  align-items: center;
  align-content: center;
  min-width: 200px;
  padding: 14px 64px 14px 40px;
  margin-top: 40px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background-color: #004374;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .c-button {
    min-width: 280px;
    min-height: 68px;
    padding: 0 56px 0 28px;
  }
}
@media screen and (max-width: 767px) {
  .c-button {
    width: auto;
    min-width: 180px;
    min-height: auto;
    padding: 10px 52px 10px 24px;
  }
}
.c-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #16639f;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
.c-button__text, .c-button__icon {
  position: relative;
  z-index: 1;
}
.c-button__text {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .c-button__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-button__text {
    font-size: 1.3rem;
  }
}
.c-button__icon {
  position: absolute;
  top: 50%;
  right: 28px;
  display: block;
  width: 15px;
  height: 12px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .c-button__icon {
    right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-button__icon {
    right: 20px;
  }
}
.c-button__icon::before, .c-button__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
}
.c-button__icon::before {
  left: 5px;
  width: 10px;
  height: 2px;
  background-color: currentColor;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-button__icon::before {
    height: 1px;
  }
}
.c-button__icon::after {
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-button__icon::after {
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
  }
}
.c-button:hover::before {
  transform: scaleX(1);
}
.c-button:hover .c-button__icon {
  transform: translateY(-50%) translateX(4px);
}
.c-button--primary {
  background-color: #0b4d82;
}
.c-button--primary::before {
  background-color: #16639f;
}
@media screen and (max-width: 767px) {
  .c-button--news {
    max-width: 220px;
    margin: 0 auto;
  }
}

.js-scroll-fade {
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.js-scroll-fade.is-fade-up {
  transform: translateY(30px);
}
.js-scroll-fade.is-fade-down {
  transform: translateY(-30px);
}
.js-scroll-fade.is-fade-left {
  transform: translateX(-40px);
}
@media screen and (max-width: 767px) {
  .js-scroll-fade.is-fade-left {
    transform: translateX(-20px);
  }
}
.js-scroll-fade.is-fade-right {
  transform: translateX(40px);
}
@media screen and (max-width: 767px) {
  .js-scroll-fade.is-fade-right {
    transform: translateX(20px);
  }
}
.js-scroll-fade.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.contArea p, .contArea li, .contArea td, .contArea th, .contArea dt, .contArea dd {
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 500;
  color: #333333;
}
.contArea p.lead, .contArea li.lead, .contArea td.lead, .contArea th.lead, .contArea dt.lead, .contArea dd.lead {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contArea p.lead, .contArea li.lead, .contArea td.lead, .contArea th.lead, .contArea dt.lead, .contArea dd.lead {
    text-align: left;
  }
}
.contArea p a, .contArea li a, .contArea td a, .contArea th a, .contArea dt a, .contArea dd a {
  position: relative;
  display: inline;
  color: #1777B7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contArea p a::after, .contArea li a::after, .contArea td a::after, .contArea th a::after, .contArea dt a::after, .contArea dd a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.contArea p a:hover, .contArea li a:hover, .contArea td a:hover, .contArea th a:hover, .contArea dt a:hover, .contArea dd a:hover {
  color: rgb(30.2475728155, 148.1504854369, 226.7524271845);
}
.contArea p a:hover::after, .contArea li a:hover::after, .contArea td a:hover::after, .contArea th a:hover::after, .contArea dt a:hover::after, .contArea dd a:hover::after {
  transform: scaleX(1);
}

.c-note-line {
  margin: 40px 0 0;
  padding: 18px 24px;
  border: 1px solid #EDF2F5;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  color: #707070;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-note-line {
    padding: 16px 18px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .c-note-line--center {
    text-align: center;
  }
}
.c-note-line--left {
  text-align: left;
}

.l-topicpath.l-cont-wrap {
  padding: 15px 80px 0;
}
@media screen and (max-width: 1024px) {
  .l-topicpath.l-cont-wrap {
    padding: 15px 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-topicpath.l-cont-wrap {
    padding: 15px 20px 0;
  }
}
.l-topicpath.l-cont-wrap p.lead {
  margin-bottom: 0;
}

.c-topicpath__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-topicpath__item {
  display: inline-flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.c-topicpath__item:not(:first-child) {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.c-topicpath__item:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 12px;
  border-top: 1px solid #1777B7;
  border-right: 1px solid #1777B7;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-topicpath__item:not(:first-child)::before {
    width: 6px;
    height: 6px;
    margin: 0 8px;
  }
}
.c-topicpath__link, .c-topicpath__current {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-topicpath__link, .c-topicpath__current {
    font-size: 1rem;
  }
}
.c-topicpath__link {
  color: #1777B7;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .c-topicpath__link:hover {
    opacity: 0.65;
  }
}
.c-topicpath__current {
  color: #333;
}

.c-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
}
.c-list li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
}
.c-list li::before {
  content: "";
  position: absolute;
  top: 0.95em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1697d3;
  transform: translateY(-50%);
}
.c-list li:last-child {
  margin-bottom: 0;
}
.c-list.c-list--number {
  counter-reset: list-number;
}
.c-list.c-list--number li {
  padding-left: 22px;
}
.c-list.c-list--number li::before {
  content: counter(list-number) ".";
  counter-increment: list-number;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.8;
  color: #1697d3;
  transform: none;
}

.parts-block {
  margin: 20px 0;
}

.c-deco-box {
  position: relative;
  padding: 40px;
  background: linear-gradient(#e5f5ff 0%, #f7fbff 100%);
}
.c-deco-box::before, .c-deco-box::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  pointer-events: none;
}
.c-deco-box::before {
  top: 0;
  left: 0;
  border-top: 1px solid #1777B7;
  border-left: 1px solid #1777B7;
}
.c-deco-box::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid #1777B7;
  border-bottom: 1px solid #1777B7;
}
@media screen and (max-width: 767px) {
  .c-deco-box {
    padding: 24px;
  }
  .c-deco-box::before, .c-deco-box::after {
    width: 48px;
    height: 48px;
  }
}

.c-image-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}
.c-image-grid__item {
  margin: 0;
  min-width: 0;
}
.c-image-grid img {
  display: block;
  width: 100%;
  height: auto;
}
.c-image-grid--single {
  grid-template-columns: minmax(0, 70%);
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-image-grid--single {
    grid-template-columns: 1fr;
  }
}
.c-image-grid--double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .c-image-grid--double {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.c-image-grid--triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .c-image-grid--triple {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-image-grid--sp-stack {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .c-image-grid--sp-keep.c-image-grid--double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .c-image-grid--sp-keep.c-image-grid--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}

.home-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.home-news__list:first-child {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .home-news__list {
    border-top: 0;
  }
}

.home-news__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.home-news__row {
  display: grid;
  grid-template-columns: 152px 1fr;
  gap: 24px;
  padding: 24px 0;
}
@media screen and (max-width: 1024px) {
  .home-news__row {
    grid-template-columns: 136px 1fr;
    gap: 20px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .home-news__row {
    display: block;
    padding: 18px 0;
  }
}

.home-news__meta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 2px;
}
@media screen and (max-width: 767px) {
  .home-news__meta {
    margin-bottom: 10px;
  }
}

.home-news__date {
  display: block;
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .home-news__date {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .home-news__date {
    font-size: 1.4rem;
  }
}

.home-news__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 22px;
  padding: 0 8px;
  background: #1777B7;
  color: #fff;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1;
  border-radius: 3px;
}

.home-news__content {
  min-width: 0;
}

.home-news__editor {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
  word-break: break-word;
}
@media screen and (max-width: 1024px) {
  .home-news__editor {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .home-news__editor {
    font-size: 1.3rem;
    line-height: 1.75;
  }
}
.home-news__editor p {
  margin: 0;
}
.home-news__editor p + p {
  margin-top: 8px;
}
.home-news__editor br {
  display: block;
}
.home-news__editor a {
  position: relative;
  display: inline;
  color: #1777B7;
  text-decoration: none;
  transition: color 0.3s ease;
}
.home-news__editor a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.home-news__editor a:hover {
  color: rgb(30.2475728155, 148.1504854369, 226.7524271845);
}
.home-news__editor a:hover::after {
  transform: scaleX(1);
}

.c-table-wrap {
  width: 100%;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.c-table th,
.c-table td {
  padding: 28px 0;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #d9d9d9;
}
.c-table th {
  position: relative;
  width: 220px;
  padding-right: 40px;
  font-weight: 600;
}
.c-table td {
  font-weight: 500;
}
.c-table th::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 36px;
  height: 1px;
  background: #1777B7;
}
@media screen and (max-width: 767px) {
  .c-table table,
  .c-table tbody,
  .c-table tr,
  .c-table th,
  .c-table td {
    display: block;
    width: 100%;
  }
  .c-table tr {
    padding: 0 0 24px;
    margin-bottom: 24px;
    border: none;
  }
  .c-table th,
  .c-table td {
    padding: 0;
    border: none;
  }
  .c-table th {
    margin-bottom: 14px;
    padding: 0 0 10px;
    padding-right: 0;
    font-size: 1.4rem;
    border-bottom: 1px solid #d9d9d9;
  }
  .c-table td {
    font-size: 1.4rem;
  }
  .c-table th::before {
    bottom: -1px;
    width: 28px;
  }
}/*# sourceMappingURL=style.css.map */