@charset "UTF-8";
/*
Light 300
Regular 400
Medium 500
SemiBold 600
Bold 700
Black 900
*/
/*

  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
  --color-text-base: #004D9F;
  --color-lightblue: #D7E1EB;
  --color-grad-start: #B700FF;
  --color-grad-end: #00E1FF;
  --font-base: "Noto Sans JP", sans-serif;
  --font-en: "Lexend", sans-serif;
}
@media (width >= 960px) {
  :root {
    --dist-header: 110px;
  }
}
@media (width < 960px) {
  :root {
    --dist-header: 55px;
    font-size: 0.875px;
  }
}

body {
  color: var(--color-text-base);
  font-family: var(--font-base);
  font-size: 16rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
}
@media (width < 960px) {
  body {
    font-size: 14rem;
  }
}

:is(p) {
  line-height: 2;
}

:is(li, dt, dd, th, td, address) {
  line-height: 1.8;
}

:is(input, textarea, select) {
  font-size: 16px;
}

:where(a) {
  color: inherit;
}
:where(a):hover {
  text-decoration: none;
}

.en {
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}

/*

  LAYOUT
----------------------------------------------- */
body {
  overflow-x: clip;
}
@media (width < 960px) {
  body.isMenuOpen {
    overflow: hidden;
  }
}

.main_contents {
  overflow: clip;
}

/*
  HEADER
----------------------------------------------- */
.header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
}
@media (width >= 960px) {
  .header {
    display: grid;
    grid-template-areas: "corporate corporate" "logo gnav";
    align-items: end;
    grid-template-columns: auto 1fr;
    gap: 0 20px;
    padding-inline: 80px;
  }
}
@media (width < 1340px) {
  .header {
    padding-inline: 30px;
    transition: padding 0.4s;
  }
}
@media (width < 960px) {
  .header {
    padding-inline: 25px 80px;
    padding-block: 21px;
    display: flex;
    align-items: center;
  }
}
@media (width >= 960px) {
  .header .logo {
    grid-area: logo;
    margin-bottom: 7px;
  }
}
@media (width < 960px) {
  .header .logo {
    margin-right: auto;
  }
}
.header .logo a {
  text-decoration: none;
  display: grid;
  align-items: center;
  grid-template-columns: 63fr 262fr;
  gap: 4%;
}
@media (width < 960px) {
  .header .logo a {
    width: 195px;
  }
}
.header .corporate {
  grid-area: corporate;
  width: fit-content;
  display: flex;
  gap: 25px;
  padding: 8px 30px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
}
.header .corporate dt {
  font-weight: 500;
}
.header .corporate dd {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header .corporate a {
  position: relative;
  text-decoration: none;
}
.header .corporate a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  background-color: currentColor;
  transform: scale(0, 1);
  transform-origin: right;
  transition: transform 0.4s;
}
.header .corporate a:hover::after {
  transform-origin: left;
  transform: scale(1, 1);
}
@media (width < 960px) {
  .header .corporate {
    display: none;
  }
}
@media (width >= 960px) {
  .header .btn-mail {
    display: none;
  }
}
@media (width < 960px) {
  .header .btn-mail {
    position: fixed;
    top: 21px;
    right: 80px;
    padding: 10px;
  }
}

/*
  MENU
----------------------------------------------- */
@media (width >= 960px) {
  .gnav {
    grid-area: gnav;
    display: grid;
    grid-template-areas: "sub sub" "main access";
    gap: 15px 55px;
    align-items: center;
    margin-left: auto;
    color: #000;
  }
}
@media (width < 1340px) {
  .gnav {
    gap: 15px 30px;
  }
}
@media (width < 960px) {
  .gnav {
    position: fixed;
    z-index: 10;
    inset: 20px;
    background: #fff;
    padding-block: 80px;
    box-shadow: 0 0 30px rgba(88, 88, 255, 0.3);
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    overflow-y: auto;
  }
}
.gnav-main {
  display: flex;
}
@media (width >= 960px) {
  .gnav-main {
    grid-area: main;
    gap: 35px;
  }
}
@media (width < 1340px) {
  .gnav-main {
    gap: 25px;
  }
}
@media (width < 960px) {
  .gnav-main {
    flex-direction: column;
    gap: 0;
  }
}
@media (width >= 960px) {
  .gnav-main > li {
    display: flex;
    align-items: center;
    height: 50px;
  }
  .gnav-main > li > a {
    position: relative;
    text-decoration: none;
  }
  .gnav-main > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--color-border);
    background-color: currentColor;
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform 0.4s;
  }
  .gnav-main > li > a:hover::after {
    transform-origin: left;
    transform: scale(1, 1);
  }
  .gnav-main > li > a {
    white-space: nowrap;
  }
}
@media (width < 960px) {
  .gnav-main > li {
    border-top: 1px solid var(--color-lightblue);
  }
  .gnav-main > li > a {
    display: flex;
    align-items: center;
    height: 50px;
    padding-inline: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
  }
}
.gnav-main .has-subpage {
  position: relative;
}
@media (width >= 960px) {
  .gnav-main .has-subpage:hover .subpage {
    opacity: 1;
    pointer-events: inherit;
  }
  .gnav-main .has-subpage:hover::before {
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 50%;
    translate: -50% -100%;
    content: "";
    background: url(../img/mrk-submenu.svg) no-repeat center top/cover;
    width: 13px;
    height: 11px;
  }
}
@media (width >= 960px) {
  .gnav-sub {
    margin-inline: auto 145px;
    grid-area: sub;
    display: flex;
    gap: 20px;
    font-size: 14rem;
  }
}
@media (width < 1340px) {
  .gnav-sub {
    margin-right: 200px;
  }
}
@media (width < 960px) {
  .gnav-sub {
    display: flex;
    margin-right: 0;
    border-top: 1px solid var(--color-lightblue);
  }
}
.gnav-sub li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media (width >= 960px) {
  .gnav-sub li::before, .gnav-sub li::after {
    font-family: "Font Awesome 7 Free";
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
    text-rendering: auto;
    flex-shrink: 0;
  }
  .gnav-sub li {
    gap: 5px;
  }
  .gnav-sub li::before {
    content: "\f105";
  }
}
@media (width < 960px) {
  .gnav-sub li {
    flex: 1 1 50%;
  }
  .gnav-sub li + li {
    border-left: 1px solid var(--color-lightblue);
  }
}
@media (width >= 960px) {
  .gnav-sub a {
    position: relative;
    text-decoration: none;
  }
  .gnav-sub a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--color-border);
    background-color: currentColor;
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform 0.4s;
  }
  .gnav-sub a:hover::after {
    transform-origin: left;
    transform: scale(1, 1);
  }
}
@media (width < 960px) {
  .gnav-sub a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
  }
}
@media (width >= 960px) {
  .gnav-access {
    grid-area: access;
  }
}
@media (width < 960px) {
  .gnav-access {
    border-top: 1px solid var(--color-lightblue);
  }
}
.gnav-access li {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
@media (width < 960px) {
  .gnav-access li img {
    display: none;
  }
}
@media (width >= 960px) {
  .gnav-access a {
    position: relative;
    text-decoration: none;
  }
  .gnav-access a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--color-border);
    background-color: currentColor;
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform 0.4s;
  }
  .gnav-access a:hover::after {
    transform-origin: left;
    transform: scale(1, 1);
  }
}
@media (width < 960px) {
  .gnav-access a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    padding-inline: 55px;
    background: url(../img/ico-access-sp.svg) no-repeat 30px center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
  }
}
@media (width >= 960px) {
  .gnav-contact {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (width < 960px) {
  .gnav-contact {
    border-top: 1px solid var(--color-lightblue);
    padding: 15px 25px;
  }
}
.gnav-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5858FF url(../img/mrk-contact.svg) no-repeat;
  box-shadow: 0 4px 4px rgba(0, 77, 159, 0.15);
  color: #fff;
  font-weight: 500;
}
@media (width >= 960px) {
  .gnav-contact a {
    width: 190px;
    height: 60px;
    padding-right: 25px;
    background-position: right 20px center;
    border-bottom-left-radius: 9px;
  }
}
@media (width < 960px) {
  .gnav-contact a {
    height: 50px;
    background-position: right 25px center;
    background-size: 20px;
    border-radius: 10px;
    font-size: 16px;
  }
}
@media (width >= 960px) {
  .gnav-corporate {
    display: none;
  }
}
@media (width < 960px) {
  .gnav-corporate {
    border-top: 1px solid var(--color-lightblue);
    border-bottom: 1px solid var(--color-lightblue);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .gnav-corporate li + li {
    border-left: 1px solid var(--color-lightblue);
  }
  .gnav-corporate a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
  }
}
.gnav .btnOpenMenu::before, .gnav .btnOpenMenu::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  text-rendering: auto;
  flex-shrink: 0;
}
.gnav .btnOpenMenu::after {
  content: "+";
}
@media (width >= 960px) {
  .gnav .btnOpenMenu {
    margin-left: 5px;
    font-size: 75%;
  }
}
@media (width < 960px) {
  .gnav .btnOpenMenu {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
  }
  .gnav .btnOpenMenu.active::after {
    content: "−";
  }
}
@media (width >= 960px) {
  .gnav .subpage {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 77, 159, 0.3);
    border-radius: 10px;
    width: 240px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    font-size: 14px;
    overflow: hidden;
  }
}
@media (width < 960px) {
  .gnav .subpage {
    display: none;
  }
}
.gnav .subpage li {
  line-height: 1.85;
}
@media (width >= 960px) {
  .gnav .subpage li + li {
    border-top: 1px solid var(--color-lightblue);
  }
}
@media (width < 960px) {
  .gnav .subpage li {
    border-top: 1px solid var(--color-lightblue);
  }
}
.gnav .subpage a {
  display: flex;
  text-decoration: none;
}
@media (width >= 960px) {
  .gnav .subpage a {
    padding: 10px 25px;
    transition: background 0.2s;
  }
  .gnav .subpage a:hover {
    background: var(--color-lightblue);
  }
}
@media (width < 960px) {
  .gnav .subpage a {
    background: #F7F7FF;
    height: 50px;
    padding-inline: 55px;
    align-items: center;
    font-size: 14px;
  }
}

.isMenuOpen .gnav {
  opacity: 1;
  pointer-events: inherit;
}

/*
  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-bottom-left-radius: 20px;
  transition: 0.2s;
}
@media (width >= 960px) {
  .btnMenu {
    display: none;
  }
}
.btnMenu span, .btnMenu::before, .btnMenu::after {
  content: "";
  grid-area: 1/1;
  background: #5858FF;
  width: 25px;
  height: 2px;
  transition: 0.2s;
}
.btnMenu::before {
  translate: 0 -5px;
}
.btnMenu::after {
  translate: 0 5px;
}

.isMenuOpen .btnMenu {
  background: linear-gradient(90deg, var(--color-grad-start), var(--color-grad-end));
}
.isMenuOpen .btnMenu::before {
  rotate: 45deg;
  translate: 0;
  background: #fff;
}
.isMenuOpen .btnMenu::after {
  rotate: -45deg;
  translate: 0;
  background: #fff;
}

/*
  FOOTER
----------------------------------------------- */
@media (width >= 960px) {
  .cta_bottom {
    padding-inline: calc(50% - 640px);
    position: relative;
  }
}
@media (width >= 960px) and (width < 1340px) {
  .cta_bottom {
    padding-inline: 30px;
  }
}
@media (width >= 960px) and (max-width: 960px) {
  .cta_bottom {
    padding-inline: 25px;
  }
}
@media (width < 960px) {
  .cta_bottom {
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 25px;
    right: 25px;
  }
}
.cta_bottom::before {
  position: absolute;
  z-index: -1;
  content: "";
  background: url(../img/ill-circle.png) no-repeat center/cover;
  filter: blur(60px);
  rotate: 210deg;
  opacity: 0.3;
  aspect-ratio: 1;
}
@media (width >= 960px) {
  .cta_bottom::before {
    top: -100px;
    left: 47%;
    width: 508px;
  }
}
.cta_bottom-inner {
  display: grid;
  background: #fff;
  border: 1px solid #D9EEFD;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media (width >= 960px) {
  .cta_bottom-inner {
    grid-template-columns: 66fr 34fr;
    grid-template-rows: 1fr 1fr;
    border-radius: 20px;
    height: 270px;
  }
}
@media (width < 960px) {
  .cta_bottom-inner {
    border-radius: 20px 20px 0 0;
  }
}
.cta_bottom .menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (width >= 960px) {
  .cta_bottom .menu {
    grid-row: 1/-1;
    border-right: 1px solid #D9EEFD;
  }
}
.cta_bottom .menu a {
  text-decoration: none;
  text-align: center;
}
.cta_bottom .menu a + a {
  border-left: 1px solid #D9EEFD;
}
@media (width >= 960px) {
  .cta_bottom .menu a {
    display: grid;
    justify-items: center;
    align-content: end;
    gap: 20px;
    padding-inline: 20px;
    padding-bottom: 30px;
  }
}
@media (width < 960px) {
  .cta_bottom .menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 52px;
    padding-inline: 5px;
  }
}
.cta_bottom .menu .button {
  position: relative;
  aspect-ratio: 1;
}
@media (width >= 960px) {
  .cta_bottom .menu .button {
    width: 120px;
  }
}
@media (width < 960px) {
  .cta_bottom .menu .button {
    border-radius: none;
    background: none;
    background-color: var(--color-text-base);
    mask: var(--cta-icon) no-repeat center;
  }
  .cta_bottom .menu .button img {
    opacity: 0;
  }
}
.cta_bottom .menu a:nth-child(1) .button {
  --cta-icon: url(../img/ico-cta-1.svg);
  mask-size: 22.6px;
}
.cta_bottom .menu a:nth-child(2) .button {
  --cta-icon: url(../img/ico-cta-2.svg);
  mask-size: 18.5px;
}
.cta_bottom .menu a:nth-child(3) .button {
  --cta-icon: url(../img/ico-cta-3.svg);
  mask-size: 21.6px;
}
.cta_bottom .menu .label {
  font-weight: bold;
  line-height: 1.3;
}
@media (width >= 960px) {
  .cta_bottom .menu .label {
    height: 2.6em;
    font-size: 18rem;
  }
}
@media (width < 960px) {
  .cta_bottom .menu .label {
    font-size: 10px;
  }
}
.cta_bottom .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3em;
  pointer-events: inherit !important;
  text-decoration: none;
  font-weight: bold;
}
@media (width >= 960px) {
  .cta_bottom .tel {
    border-bottom: 1px solid #D9EEFD;
    font-size: 33rem;
  }
}
@media (width < 960px) {
  .cta_bottom .tel {
    border-top: 1px solid #D9EEFD;
    height: 50px;
    font-size: 20px;
  }
  .cta_bottom .tel img {
    width: 16px;
  }
}
.cta_bottom .sns {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width >= 960px) {
  .cta_bottom .sns {
    gap: 40px;
  }
}
@media (width < 960px) {
  .cta_bottom .sns {
    display: none;
  }
}

.footer {
  padding-inline: calc(50% - 640px);
}
@media (width < 1340px) {
  .footer {
    padding-inline: 30px;
  }
}
@media (max-width: 960px) {
  .footer {
    padding-inline: 25px;
  }
}
.footer {
  display: grid;
}
@media (width >= 960px) {
  .footer {
    padding-block: 80px;
    grid-template-columns: auto auto 1fr;
    grid-template-areas: "logo menu link" "info info copyright";
    gap: 20px 80px;
  }
}
@media (width < 960px) {
  .footer {
    justify-items: center;
    padding-block: 0px 130px;
    text-align: center;
  }
}
.footer .sns {
  margin-bottom: 20px;
}
@media (width >=960px) {
  .footer .sns{
    display: none;
  }
}
.footer .sns a {
  margin: 0 10px;
}

.footer .logo {
  width: fit-content;
  display: grid;
  align-items: center;
  grid-template-columns: 63fr 262fr;
  gap: 4%;
}
@media (width >= 960px) {
  .footer .logo {
    grid-area: logo;
  }
}
@media (width < 960px) {
  .footer .logo {
    width: 200px;
    margin-bottom: 15px;
  }
}
.footer .info {
  font-style: normal;
}
@media (width >= 960px) {
  .footer .info {
    grid-area: info;
    font-size: 13rem;
  }
}
@media (width < 960px) {
  .footer .info {
    margin-bottom: 20px;
    font-size: 13px;
  }
}
.footer .menu {
  display: flex;
  font-weight: 500;
}
@media (width >= 960px) {
  .footer .menu {
    grid-area: menu;
    align-self: end;
    gap: 2em;
    font-size: 13rem;
  }
}
@media (width < 960px) {
  .footer .menu {
    gap: 1em;
    margin-bottom: 20px;
    font-size: 12px;
  }
}
.footer .menu a {
  position: relative;
  text-decoration: none;
}
.footer .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  background-color: currentColor;
  transform: scale(0, 1);
  transform-origin: right;
  transition: transform 0.4s;
}
.footer .menu a:hover::after {
  transform-origin: left;
  transform: scale(1, 1);
}
.footer .link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}
@media (width >= 960px) {
  .footer .link {
    grid-area: link;
    justify-self: end;
    align-self: flex-start;
  }
}
@media (width < 960px) {
  .footer .link {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.footer .link a {
  position: relative;
  text-decoration: none;
}
.footer .link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  background-color: currentColor;
  transform: scale(0, 1);
  transform-origin: right;
  transition: transform 0.4s;
}
.footer .link a:hover::after {
  transform-origin: left;
  transform: scale(1, 1);
}
@media (width >= 960px) {
  .footer .copyright {
    grid-area: copyright;
    justify-self: end;
    font-size: 13rem;
  }
}
@media (width < 960px) {
  .footer .copyright {
    font-size: 13px;
  }
}

/*
  modules
----------------------------------------------- */
.btn {
  text-decoration: none;
  transition: filter 0.2s;
}
.btn:hover {
  filter: brightness(1.07);
}
.btn:hover img {
  opacity: 1;
}
.btn:hover .button {
  filter: brightness(1);
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, var(--color-grad-start), var(--color-grad-end));
  border-radius: 999px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: filter 0.2s;
}
.button:hover {
  filter: brightness(1.07);
}
.button.dot {
  position: relative;
  box-shadow: 0 4px 4px rgba(0, 77, 159, 0.15);
  padding-right: 20px;
}
.button.dot::after {
  position: absolute;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  width: 26px;
  right: 25px;
  content: "";
  background: url(../img/mrk-button.svg) no-repeat center/100%;
  aspect-ratio: 1;
}

.grad-light {
  background: linear-gradient(90deg, #D1F1FB, #F2E0F8);
}