@charset "UTF-8";

/* ========================================
   header,footer,styles
======================================== */

/*----- Reset & Base -----*/

*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
  overflow-x: hidden;
  /*font-family: "Zen Kaku Gothic New", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;*/
  color: #19436E;
  line-height: 1.7;
  background: #fff;
  padding-top: 120px;
}
img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1, h2, h3, h4, p {
  margin: 0;
}
.u-visuallyHidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
:root {
  --c-brand: #2a6eb9;
  --c-accent: #ff6a6a;
  --c-ink: #1a2740;
  --c-muted: #6e7b8f;
  --c-surface: #ffffff;
  --c-surface-2: #f6f8fb;
  --c-surface-3: #eef3f9;
  --g-navy: linear-gradient(135deg, #0a3a64 0%, #2b6aa3 100%);
  --g-rose: linear-gradient(135deg, #ffd7c8 0%, #f7b5a6 100%);
  --g-amber: linear-gradient(135deg, #fff0cc 0%, #ffe0b0 100%);
  --g-soft-sky: linear-gradient(135deg, #f2f7ff 0%, #ffffff 100%);
  --g-cta: linear-gradient(135deg, #ffe7d3 0%, #fff2e4 100%);
  --g-footer-band: linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
  --shadow-1: 0 6px 18px rgba(18, 37, 74, .08), 0 2px 6px rgba(18, 37, 74, .06);
  --shadow-2: 0 12px 28px rgba(18, 37, 74, .12), 0 4px 10px rgba(18, 37, 74, .08);
  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --max: 1100px;
  --pad: 24px;
  --nav-h: 64px;
}
.container {
  width: min(var(--max), 100% - var(--pad)*2);
  margin-left: auto;
  margin-right: auto;
}
.site-header, .site-header *, .global-nav, .global-nav * {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
  font-style: normal !important;
}
.lang-switch__label, .lang-switch__btn {
  font-weight: 400 !important;
}
.global-nav__link {
  font-weight: 400 !important;
}


/* ========================================
  ヘッダー
======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: #fff;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #19436E;
  transform: scaleX(0);
  transform-origin: left;
  animation: slideInBorder 2.0s ease-out forwards;
  z-index: 102;
}

@keyframes slideInBorder {
  to {
    transform: scaleX(1);
  }
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 60px;
  background: #fff;
  transform: translateY(100%);
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'><path d='M0,100 C360,130 480,130 720,100 S1080,70 1440,100 L1440,0 L0,0 Z' fill='%23000'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'><path d='M0,100 C360,130 480,130 720,100 S1080,70 1440,100 L1440,0 L0,0 Z' fill='%23000'/></svg>");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  z-index: 100;
  pointer-events: none
}
.site-header__bar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.site-header__bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  height: 60px;
  transform: translateY(100%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'><path d='M0,100 C360,130 480,130 720,100 S1080,70 1440,100' fill='none' stroke='%23D5D5D5' stroke-width='2'/></svg>");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 100%;
  z-index: 101;
  pointer-events: none;
}
.site-header__inner {
  width: min(1200px, 100% - var(--pad)*2);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
}
.site-header__spacer {
  min-width: 40px;
}
.site-header__logoLink {
  display: block;
  width: 205px;
  height: 37px;
  margin-left: auto;
  margin-right: auto;
  background: url("../img/logo.png") center/contain no-repeat;
}
.site-header__utils {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}
/*----------　言語ボタンの設置 ----------*/
.lang-switch{display: flex;align-items: center;gap: 7px;}
.lang-switch__label{color: #19436E;font-weight: 600;letter-spacing: .02em;line-height: 1;font-size: 12px;;}
.lang-switch__btn.is-active{width: 23px;height: 23px;display: inline-grid;place-items: center;border-radius: 50%;border: 1px solid #19436E;background: #fff;color: #19436E;font-weight: 700;font-size: 12px;line-height: 1;text-transform: none;transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .1s ease;display: flex;align-items: center;justify-content: center;}
.lang-switch__btn:hover{transform: translateY(-1px);}  
.lang-switch__btn{width: 24px;height: 24px;display: inline-flex;align-items: center;justify-content: center;border-radius: 50%;border: 1px solid #19436E;background: #E6644C;color: #fff;border-color: transparent;font-weight: 700;font-size: 12px;line-height: 1;transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .1s ease;padding: 5px;}
.lang-switch__sep{display: none !important;}

.global-nav {
  background: #fff;
}
.global-nav__list {
  width: min(1200px, 100% - var(--pad)*2);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  height: 52px;
  letter-spacing: 1px;
  font-size: 18px;
  list-style: none;
}
.global-nav__link {
  display: block;
  padding: .4rem .2rem;
  color: #42516a;
  font-weight: 600;
  transition: color 0.3s ease;
}
.global-nav__link:hover {
  color: #E6644C;
}

/* スクロール後のヘッダー（PCサイズのみ 961px以上） */
@media (min-width: 961px) {
  .site-header.scrolled .site-header__bar {
    height: var(--nav-h);
  }
  .site-header.scrolled .site-header__inner {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding-top: 0;
  }
  .site-header.scrolled .site-header__spacer {
    display: none;
  }
  .site-header.scrolled .site-header__logo {
    order: 1;
    width: 107px;
    height: 20px;
    margin-top: 5px;
    flex-shrink: 0;
    animation: slideDown 0.5s ease-out;
  }

  @keyframes slideDown {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .site-header.scrolled .site-header__logoLink {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    height: 100%;
  }
  .site-header.scrolled .site-header__utils {
    display: none;
  }
  .site-header.scrolled .burger-btn {
    display: none;
  }
  .site-header.scrolled .global-nav {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    max-height: none !important;
    overflow: visible;
    pointer-events: none;
  }
  .site-header.scrolled .global-nav__list {
    max-width: 800px; /*FAQ、Contact Usも表示させる場合は1100pxにする*/
    width: 100%;
    margin: 0 auto;
    padding-left: calc(102px + var(--pad) + 40px);
    padding-right: var(--pad);
    height: var(--nav-h);
    gap: 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
  }
  .site-header.scrolled .global-nav__item {
    width: auto;
    border-bottom: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    animation: slideDown 0.5s ease-out;
  }
  .site-header.scrolled .global-nav__link {
    color: #42516a;
    padding: .4rem .2rem;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  .site-header.scrolled .global-nav__link:hover {
    color: #E6644C;
  }
}

/* パンくず */
.breadcrumb {
  padding: 18px 0;
}
.breadcrumb__list {
  width: min(1200px, 100% - var(--pad)*2);
  margin: auto;
  display: flex;
  gap: 14px;
  color: #19436E;
  font-size: 13px;
}
.breadcrumb__item a {
  color: #19436E;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "›";
  color: #19436E;
  margin-right: 14px;
}

/* ========================================
  フッター
======================================== */
.site-footer {
  position: relative;
  overflow: visible;
  background-color: #fff;
}
.site-footer__cta {
  position: relative;
  overflow: visible;
  margin-top: -40px;
  background: transparent;
}
.site-footer__cta::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -140px;
  height: 500px;
  background-image: url("../img/contact_bg.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 115% auto;
  z-index: 0;
  pointer-events: none;
}
.site-footer__ctaInner {
  width: min(1100px, 100% - var(--pad)*2);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding-top: 0px;
  padding-bottom: 80px;
}
.site-footer__ctaTitle {
  font-size: 42px;
  color: #19436E;
  font-weight: normal;
}
.site-footer__ctaText {
  color: #19436E;
  margin-top: 8px;
  line-height: 2.3;
  margin-bottom: 40px;
}
.site-footer_ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 16px 40px;
  border-radius: 999px;
  font-weight: normal;
  letter-spacing: .02em;
  transition: .2s ease;
  background: #fff;
  color: #19436E;
  border: 2px solid #19436E;
}
.site-footer_ctaBtn_icon {
  height: 25px;
  width: auto;
  margin-left: 10px;
  transition: filter 0.2s ease;
}
.site-footer_ctaBtn:hover {
  background: #19436E;
  color: #fff;
}
.site-footer_ctaBtn:hover .site-footer_ctaBtn_icon {
  filter: brightness(0) invert(1);
}
.site-footer__links {
  width: min(1100px, 100% - var(--pad)*2);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  background-color: #fff;
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 16px;
  justify-content: center;
}
.footer-nav__list li:not(:first-child)::before {
  content: "|";
  color: #19436E;
  margin-right: 24px;
}
.footer-nav__link {
  color: #19436E;
  font-weight: normal;
  transition: opacity 0.3s ease;
}
.footer-nav__link:hover {
  opacity: 0.3;
}
.site-footer__brand {
  display: flex;
}
.site-footer__brandLogo {
  height: 35px;
  width: auto;
  aspect-ratio: auto;
  background: url("../img/logo02.jpg") left center / contain no-repeat;
  display: block;
  min-width: 90px;
  transition: opacity 0.3s ease;
}
.site-footer__brandLogo:hover {
  opacity: 0.3;
}
.site-footer__copy {
  text-align: center;
  padding: 15px 0;
  color: #fff;
  font-size: 11px;
  background-color: #19436E;
  letter-spacing: 1px;
  font: normal;
}
/*----- ハンバーガーメニュー -----*/
.burger-btn {
  display: none;
}

/* モバイル専用ナビアイテム */
.global-nav__item--mobile-only {
  display: none;
}


/* ========================================
  レスポンシブ
======================================== */

/* ====================　960px以下　==================== */
@media (max-width: 960px) {
  body {
    padding-top: 70px;
  }
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }
  .site-header__spacer {
    display: none;
  }
  .site-header__logo {
    order: -1;
  }
  .site-header__logoLink {
    width: 200px;
    margin-left: 0;
    margin-right: 0;
  }
  .site-header {
    overflow: visible;
  }
  .site-header__bar {
    overflow: visible;
  }
  .site-header__inner {
    overflow: visible;
  }
  /*
  .site-header::before {
    display: block;
  }
  */
  .burger-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 0 0 8px 8px;
    margin-top: 15px;
    cursor: pointer;
    position: relative;
    z-index: 101;
  }
  .burger-btn__lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 35px;
  }
  .burger-btn__lines span {
    display: block;
    height: 3px;
    background: #19436E;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .burger-btn.is-active .burger-btn__lines span:nth-child(1) {
    opacity: 0;
  }
  .burger-btn.is-active .burger-btn__lines span:nth-child(2) {
    opacity: 0;
  }
  .burger-btn.is-active .burger-btn__lines span:nth-child(3) {
    transform: translateY(4px) rotate(-45deg);
  }
  .burger-btn.is-active .burger-btn__lines span:nth-child(4) {
    transform: translateY(-4px) rotate(-135deg);
  }
  .burger-btn__text {
    font-size: 10px;
    color: #19436E;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .global-nav {
    position: fixed;
    top: calc(var(--nav-h) + -12px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: max-height 0.4s ease;
    z-index: 98;
    background-color: #19436E;
  }
  .global-nav.is-open {
    max-height: calc(100vh - var(--nav-h) - 15px);
  }
  .global-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    height: auto;
    margin: 50px auto 0;
  }
  .global-nav__item--mobile-only {
    display: list-item;
  }
  .global-nav__item {
    width: calc(100% + 48px);
    margin-left: -24px;
    padding-left: 24px;
    padding-right: 24px;
    border-bottom: 1px solid #CCDBE3;
  }
  .global-nav__link {
    display: block;
    padding: 16px 0;
    text-align: center;
    color: #fff;
    font-weight: 200 !important;
  }
  .site-footer__links {
    flex-direction: column;
    padding: 0;
    width: 100%;
  }
  .footer-nav {
    width: 100%;
  }
  .footer-nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .footer-nav__list li {
    width: 100%;
    border-bottom: 1px solid #19436E;
    text-align: center;
    padding: 10px 0;
    background-color: #fff;
  }
  .footer-nav__list li:first-child {
    border-top: 1px solid #19436E;
  }
  .footer-nav__list li:not(:first-child)::before {
    display: none;
  }
  .site-footer__brand {
    padding: 16px 0;
    justify-content: center;
  }
  .site-footer__brandLogo {
    background: url("../img/logo03.png") center center / contain no-repeat;
    width: auto;
    min-width: 180px;
  }
  .lang-switch {
    display: none !important;
  }
}

/* ====================　760px以下　==================== */
@media (max-width: 760px) {
  .site-footer__cta {
    background: #fff;
  }
  .site-footer__cta::before {
    top: -120px;
    background-size: 100% auto;
    background-image: url("../img/contact_bg_sp.png");
  }
}

/* ====================　560px以下　==================== */
@media (max-width: 560px) {
  .site-header__spacer {
    display: none;
  }
  .site-header__logoLink {
    margin-left: 0;
    margin-right: 0;
    width: 180px;
  }
  .site-footer__ctaText {
    line-height: 1.5;
  }
}