@charset "UTF-8";
/* ======================== */
/*         common           */
/* ======================== */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #111111;
  background: #FFFFFF;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 auto;
  padding: 0;
  padding-top: var(--header-h);
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html.is-menu-open,
body.is-menu-open {
  overflow: hidden;
  scroll-behavior: auto;
}

main {
  flex: 1;
}

img {
  display: block;
  height: auto;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
}

.pc-only {
  display: block !important;
}
@media screen and (max-width: 750px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 750px) {
  .sp-only {
    display: block !important;
  }
}

/* 改行制御（brタグや span で使用）*/
.br-sm {
  display: inline;
}
@media screen and (max-width: 620px) {
  .br-sm {
    display: inline;
  }
}

.br-sp-only {
  display: none;
}
@media screen and (max-width: 750px) {
  .br-sp-only {
    display: inline;
  }
}

.br-pc-only {
  display: inline;
}
@media screen and (max-width: 750px) {
  .br-pc-only {
    display: none;
  }
}

.layout-padding {
  padding-top: min(150px, 10.980966325vw);
  padding-bottom: min(122px, 8.9311859444vw);
  padding-inline: min(30px, 2.196193265vw);
}
@media screen and (max-width: 750px) {
  .layout-padding {
    padding-block: min(132px, 17.6vw);
    padding-inline: min(30px, 4vw);
  }
}

.layout-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ======================== */
/*         header           */
/* ======================== */
.l-header {
  position: absolute;
  width: 100%;
  z-index: 100;
}
.l-header__padding {
  padding-block: 1.5rem;
  padding-inline: min(30px, 2.196193265vw);
}
@media screen and (max-width: 750px) {
  .l-header__padding {
    padding-block: min(28px, 3.7333333333vw);
    padding-inline: min(30px, 4vw);
  }
}
.l-header__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.l-header__content {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: min(16px, 1.1713030747vw);
}
@media screen and (max-width: 750px) {
  .l-header__content {
    height: 30px;
  }
}

.l-header__logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: 130px;
}
@media screen and (max-width: 750px) {
  .l-header__logo {
    width: min(218px, 29.0666666667vw);
  }
}

.l-header__nav {
  flex: 1 1 auto;
}
@media screen and (max-width: 1100px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: min(19px, 1.3909224012vw);
  white-space: nowrap;
}

.l-header__list a {
  color: #FFFFFF;
  font-size: 10px;
  line-height: 1;
  text-decoration: none;
}

.l-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 1100px) {
  .l-header__actions {
    display: none;
  }
}

.c-pill-btn {
  height: 34px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.c-pill-btn__icon {
  display: block;
}

.c-pill-btn--mail {
  padding-inline: min(30px, 2.196193265vw);
  color: #002AC7;
  background: #FFFFFF;
}
.c-pill-btn--mail img {
  width: 19px;
}

.c-pill-btn--doc {
  padding-inline: min(24px, 1.756954612vw);
  color: #FFFFFF;
  background: #00AAFF;
}
.c-pill-btn--doc img {
  width: 16px;
}

.l-header--static .l-header__list a {
  color: #111111;
}
.l-header--static .c-pill-btn--mail {
  background: #002AC7;
  color: #FFFFFF;
}
.l-header--static .l-header__hamburger span {
  background: #111111;
}

/* ======================== */
/*         hamburger           */
/* ======================== */
.l-header__hamburger {
  display: none;
  width: min(40px, 5.3333333333vw);
  height: min(40px, 5.3333333333vw);
  padding: 0;
  border: 0;
  background: transparent;
}
@media screen and (max-width: 1100px) {
  .l-header__hamburger {
    display: grid;
    place-items: center;
  }
}

.l-header__hamburger span {
  display: block;
  width: min(40px, 5.3333333333vw);
  height: 1px;
  border-radius: 9999px;
  background: #FFFFFF;
}
.l-header__hamburger span + .l-header__hamburger span {
  margin-top: 5px;
}

.c-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: start end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.c-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.c-drawer__panel {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  position: relative;
  transform: translateX(12px);
  transition: transform 0.2s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.c-drawer.is-open .c-drawer__panel {
  transform: translateX(0);
}

.c-drawer__close {
  position: absolute;
  top: min(14px, 1.8666666667vw);
  right: min(18px, 2.4vw);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
}

/* × */
.c-drawer__close::before,
.c-drawer__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 1px;
  background: #111;
  transform-origin: center;
}

.c-drawer__close::before {
  transform: translate(-50%, -50%) rotate(40deg);
}

.c-drawer__close::after {
  transform: translate(-50%, -50%) rotate(-40deg);
}

.c-drawer__nav {
  padding-top: min(117px, 15.6vw);
  padding-left: min(55px, 7.3333333333vw);
}

.c-drawer__list {
  display: grid;
  gap: min(40px, 5.3333333333vw);
}

.c-drawer__list a {
  color: #002AC7;
  text-decoration: none;
  font-size: min(30px, 4vw);
  line-height: 1.2;
}

.c-drawer__ctas {
  margin-top: min(40px, 5.3333333333vw);
  padding: 0 36px 36px;
  display: grid;
  gap: 18px;
}

.c-drawer__cta {
  height: min(80px, 10.6666666667vw);
  width: min(353px, 47.0666666667vw);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: min(28px, 3.7333333333vw);
}

.c-drawer__cta-icon {
  display: block;
  height: auto;
}

.c-drawer__cta--dark {
  background: #002AC7;
  color: #FFFFFF;
}
.c-drawer__cta--dark img {
  width: min(37px, 4.9333333333vw);
}

.c-drawer__cta--blue {
  background: #00AAFF;
  color: #FFFFFF;
}
.c-drawer__cta--blue img {
  width: min(27px, 3.6vw);
}

/* ドロワー開いてる時はスクロール止める */
body.is-locked {
  overflow: hidden;
  touch-action: none;
}

/* ======================== */
/*         section           */
/* ======================== */
.c-section1920 {
  width: min(100%, 1920px);
  margin-inline: auto;
  position: relative;
  background: #FAFBFF;
}

.c-deco-poc {
  position: absolute;
  top: 0;
  left: 0;
  width: min(197px, 14.4216691069vw);
  height: auto;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .c-deco-poc {
    width: min(190px, 25.3333333333vw);
  }
}

/* ======================== */
/*         heading           */
/* ======================== */
.c-section-heading {
  text-align: center;
  position: relative;
  z-index: 1;
}

.c-section-heading__label {
  font-family: Arial, "Helvetica Neue", Helvetica, "Noto Sans JP", sans-serif;
  font-size: min(1.4641288433vw, 20px);
  font-weight: 700;
  color: #002AC7;
}
@media screen and (max-width: 750px) {
  .c-section-heading__label {
    font-size: min(4vw, 30px);
  }
}

.c-section-heading__title {
  margin-top: min(20px, 1.4641288433vw);
  display: grid;
  gap: min(20px, 1.4641288433vw);
}
@media screen and (max-width: 750px) {
  .c-section-heading__title {
    margin-top: min(2.6666666667vw, 20px);
    gap: min(1.3333333333vw, 10px);
  }
}

.c-section-heading__line {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  white-space: nowrap;
  padding: 10px 14px;
  background: #002AC7;
  color: #FFFFFF;
  font-weight: 700;
  font-size: min(2.196193265vw, 30px);
  line-height: 1;
}
@media screen and (max-width: 750px) {
  .c-section-heading__line {
    font-size: min(40px, 5.3333333333vw);
    padding: min(10px, 1.3333333333vw) min(12px, 1.6vw);
  }
}

.c-section-heading--split .c-section-heading__title {
  display: block;
}
@media screen and (max-width: 750px) {
  .c-section-heading--split .c-section-heading__title {
    display: none;
  }
}
.c-section-heading--split .c-section-heading__title-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .c-section-heading--split .c-section-heading__title-sp {
    display: inline-grid;
    gap: 10px;
  }
}

.c-section-heading--static .c-section-heading__label {
  margin-top: min(108px, 7.906295754vw);
  font-size: 1.25rem;
}
@media screen and (max-width: 750px) {
  .c-section-heading--static .c-section-heading__label {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 750px) {
  .c-section-heading--static .c-section-heading__title {
    margin-top: 0.75rem;
  }
}
.c-section-heading--static .c-section-heading__line {
  font-size: 1.875rem;
}
@media screen and (max-width: 750px) {
  .c-section-heading--static .c-section-heading__line {
    font-size: 1.25rem;
  }
}

/* ======================== */
/*         footer           */
/* ======================== */
.c-section1920--footer {
  background: #002AC7;
  color: #FFFFFF;
  line-height: 1.25;
}
.c-section1920--footer .p-footer__padding {
  padding-block: min(94px, 6.8814055637vw);
}
@media screen and (max-width: 750px) {
  .c-section1920--footer .p-footer__padding {
    padding-top: min(60px, 8vw);
    padding-bottom: min(10px, 1.3333333333vw);
  }
}

/* 上段 */
.p-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .p-footer__top {
    flex-direction: column;
    justify-content: flex-start;
    gap: min(52px, 6.9333333333vw);
    text-align: center;
  }
}

.p-footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: min(42px, 3.074670571vw);
}
@media screen and (max-width: 750px) {
  .p-footer__main {
    flex-direction: column;
    gap: min(45px, 6vw);
  }
}

.p-footer__logo img {
  display: block;
  height: min(16px, 1.1713030747vw);
  width: auto;
}
@media screen and (max-width: 750px) {
  .p-footer__logo img {
    width: min(183px, 24.4vw);
    height: auto;
  }
}

.p-footer__catch {
  font-size: min(1.0248901903vw, 14px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .p-footer__catch {
    font-size: min(3.2vw, 24px);
  }
}

.p-footer__policy-link {
  color: inherit;
  text-decoration: none;
  font-size: min(0.878477306vw, 12px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 750px) {
  .p-footer__policy-link {
    font-size: min(2.4vw, 18px);
  }
}

.p-footer__policy-link:hover {
  text-decoration: underline;
}

/* 下段(コピーライト帯) */
.p-footer__bottom {
  border-top: 1px solid #FFFFFF;
  padding-block: min(0.7320644217vw, 10px);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-footer__bottom {
    padding-block: min(1.3333333333vw, 10px);
    border-top: min(0.1333333333vw, 1px) solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.p-footer__copy {
  font-size: 10px;
  letter-spacing: 0.06em;
  opacity: 0.9;
}
@media screen and (max-width: 750px) {
  .p-footer__copy {
    font-size: min(2.4vw, 18px);
  }
}

/* ======================== */
/*         404           */
/* ======================== */
.p-not-found {
  line-height: 2;
}
.p-not-found .section__heading {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .p-not-found .section__title {
    margin-bottom: 4.25rem;
    font-size: 2.875rem;
  }
}
.p-not-found .section__lead {
  margin-top: 1.5rem;
}
.p-not-found .not-found__description {
  text-align: center;
}
.p-not-found .not-found__description a {
  text-decoration: underline;
}