@charset "UTF-8";
:root {
  /* --------------------------------------------------
  カラー情報
  -------------------------------------------------- */
  --COLOR_WHITE: #ffffff;
  --COLOR_BLUE_10: #d4f4ff;
  --COLOR_BLUE_20: #c0e9fc;
  --COLOR_BLUE_30: #7ad3f8;
  --COLOR_BLUE_40: #48bbf3;
  --COLOR_BLUE_50: #009ce5;
  --COLOR_BLUE_60: #0075cb;
  --COLOR_BLUE_70: #0256be;
  --COLOR_BLUE_80: #0047a1;
  --COLOR_BLUE_90: #003c7c;
  --COLOR_BLUE_100: #002a55;
  --COLOR_GRAY_10: #ededed;
  --COLOR_GRAY_20: #dde3e3;
  --COLOR_GRAY_30: #c3c8ce;
  --COLOR_GRAY_40: #aab2ba;
  --COLOR_GRAY_50: #8d959d;
  --COLOR_GRAY_60: #6e7781;
  --COLOR_GRAY_70: #545d66;
  --COLOR_GRAY_80: #454e57;
  --COLOR_GRAY_90: #3a444d;
  --COLOR_GRAY_100: #222b34;
  --COLOR_PRIMARY: var(--COLOR_BLUE_70);
  --COLOR_ACCENT: #ffd167;
  /* --------------------------------------------------
  font-size
  -------------------------------------------------- */
  --FONT_SIZE_ROOT: 16;
  --FONT_SIZE: calc(16 / var(--FONT_SIZE_ROOT) * 1rem);
  /* --------------------------------------------------
  line-height
  -------------------------------------------------- */
  --LINE_HEIGHT_DEFAULT: 1.7;
  --LINE_HEIGHT_MIDDLE: 1.5;
  /* --------------------------------------------------
  font-family
  -------------------------------------------------- */
  --FONT_FAMILY: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  /* --------------------------------------------------
  font-weight
  -------------------------------------------------- */
  --FONT_MEDIUM: 500;
  --FONT_SEMI_BOLD: 600;
  --FONT_BOLD: 700;
  /* --------------------------------------------------
  z-index
  -------------------------------------------------- */
  --LAYER_BEHIND: -1;
  --LAYER_DEFAULT: 0;
  --LAYER_FRONT: 1;
  --LAYER_FRONT_SECOND: 10;
  --LAYER_TOP: 100;
  /* --------------------------------------------------
  画面幅に関する設定
  -------------------------------------------------- */
  --BREAK_POINT: 768px;
  --OUTSIDE_GUTTER_SP: 24px;
  --OUTSIDE_GUTTER_PC: 64px;
  --CONTENT_WIDTH_MIN: calc(320px - (var(--OUTSIDE_GUTTER_SP) * 2));
  --CONTENT_WIDTH_MAX: 682px;
}
@media screen and (width >= 1280px) {
  :root {
    --CONTENT_WIDTH_MAX: 1184px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), local("Noto Sans CJK JP Regular");
}
html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scroll-padding-top: 74px;
}
html:has(.l-navigation-company) {
  scroll-padding-top: 74px;
}
@media screen and (width >= 768px) {
  html:has(.l-navigation-company) {
    scroll-padding-top: 160px;
  }
}
html:has(dialog[open]) {
  scrollbar-gutter: stable;
}
html:has(:is(.l-header__utility-button[aria-expanded=true], .l-navigation-company__title[aria-expanded=true])) {
  overflow: hidden;
  scrollbar-gutter: stable;
}
html:has(:is(.l-header__utility-button[aria-expanded=true], .l-navigation-company__title[aria-expanded=true])) .l-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.6, 1) 80ms;
}

head noscript {
  display: none;
}

body {
  color: var(--COLOR_BLUE_90);
  font-size: var(--FONT_SIZE);
  font-family: var(--FONT_FAMILY);
  line-height: var(--LINE_HEIGHT_DEFAULT);
  margin: 0;
  overflow-x: clip;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
dl,
dd,
ul,
ol,
td,
th,
figure,
fieldset,
button {
  margin: 0;
  padding: 0;
}

:is(a[href], area[href], [tabindex]:not([tabindex="-1"]), button, input:not([type=hidden]), select, textarea, iframe, object, audio, video, embed, summary):focus-visible {
  outline: 2px solid #ABE9FF;
}

a,
a {
  color: var(--COLOR_BLUE_90);
  text-decoration: none;
}

em {
  color: var(--COLOR_BLUE_50);
  font-style: normal;
}

ul,
ol {
  list-style-type: none;
}

img,
svg {
  height: auto;
  max-width: 100%;
}

button,
label {
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

[type=text],
[type=date],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
select,
textarea,
button {
  appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  color: currentColor;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}

.l-section-app {
  display: grid;
  gap: 0 var(--OUTSIDE_GUTTER_SP);
  grid-template-columns: 1fr minmax(var(--CONTENT_WIDTH_MIN), var(--CONTENT_WIDTH_MAX)) 1fr;
  padding-block: 54px 72px;
  position: relative;
  background: url(/img/renewal/img-index-08_sp.png) no-repeat center/cover;
}
@media screen and (width <= 767px) {
  .l-section-app::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: 1;
  }
}
@media screen and (width >= 768px) {
  .l-section-app {
    padding-block: 45px;
    background: url(/img/renewal/img-index-08.jpg) no-repeat center/cover;
  }
}
@media screen and (width >= 1280px) {
  .l-section-app {
    padding-block: 54px;
  }
}

.l-section-app__inner {
  grid-column: 2/3;
}
@media screen and (width <= 767px) {
  .l-section-app__inner {
    position: relative;
    z-index: 2;
  }
}

.l-section-app__title {
  font-size: 1rem;
}

.l-section-app__lead {
  font-size: 1.375rem;
  font-weight: var(--FONT_BOLD);
  line-height: 1.8;
  letter-spacing: 0.44px;
  margin-block-start: 4px;
}
@media screen and (width >= 1280px) {
  .l-section-app__lead {
    font-size: 1.75rem;
    line-height: 42px;
    margin-block-start: 12px;
  }
}

.l-section-app__list {
  display: inline-grid;
  gap: 16px;
  margin-block-start: 38px;
}
@media screen and (width >= 768px) {
  .l-section-app__list {
    grid-template-columns: repeat(2, 1fr);
    margin-block-start: 32px;
  }
}

.l-section-app__button {
  background-color: var(--COLOR_WHITE);
  border: 2px solid var(--COLOR_BLUE_50);
  border-radius: 20px;
  display: flex;
  gap: 16px;
  justify-content: center;
  min-width: 192px;
  padding: 16px 20px;
  place-items: center;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  .l-section-app__button:hover {
    background-color: #F5F5F5;
  }
}

.l-section-app__button-text {
  color: #0062C0;
  font-size: 1rem;
  font-weight: var(--FONT_BOLD);
}
@media screen and (width >= 1280px) {
  .l-section-app__button-text {
    font-size: 1rem;
  }
}

.l-section-app .u-link-list {
  margin-block-start: 16px;
}
@media screen and (width >= 1280px) {
  .l-section-app .u-link-list {
    margin-block-start: 24px;
  }
}

.l-section-app .u-link-list__link {
  color: #0256BE;
  font-size: 0.875rem;
  font-feature-settings: "palt" on;
  line-height: 1.5;
  letter-spacing: 0.56px;
}
.l-section-app .u-link-list__link::after {
  background-color: #0256BE;
}
@media screen and (width >= 1280px) {
  .l-section-app .u-link-list__link {
    font-size: 1rem;
  }
}

.l-navigation-company {
  display: none;
}
@media screen and (width >= 768px) {
  .l-navigation-company {
    --CONTENT_WIDTH_MAX: 1040px;
    background-color: var(--COLOR_WHITE);
    display: grid;
    gap: 0 var(--OUTSIDE_GUTTER_SP);
    grid-template-columns: 1fr minmax(var(--CONTENT_WIDTH_MIN), var(--CONTENT_WIDTH_MAX)) 1fr;
    position: sticky;
    top: var(--header-height);
    z-index: 99;
  }
}
@media screen and (width >= 1280px) {
  .l-navigation-company {
    --CONTENT_WIDTH_MAX: 1184px;
  }
}

.l-navigation-company__list {
  display: flex;
  flex-direction: row;
  gap: 16px;
  grid-column: 2/3;
  justify-content: space-between;
}

.l-navigation-company__body {
  border-top: 1px solid var(--COLOR_GRAY_30);
  display: block;
  left: 0;
  position: absolute;
  visibility: hidden;
  width: 100%;
}

.l-navigation-company__body:has(.l-navigation-company__wrapper.is-show) {
  display: block;
  visibility: visible;
}

.l-navigation-company__wrapper {
  background-color: var(--COLOR_WHITE);
  display: grid;
  gap: 0 var(--OUTSIDE_GUTTER_SP);
  grid-template-columns: 1fr minmax(var(--CONTENT_WIDTH_MIN), var(--CONTENT_WIDTH_MAX)) 1fr;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100svh - 164px);
  transition: height 0.3s ease-in-out;
}

.l-navigation-company__inner {
  opacity: 0;
  transition: opacity 0.6s ease;
  display: grid;
  grid-column: 2/3;
  padding-block: 40px 60px;
}
@media screen and (width >= 768px) {
  .l-navigation-company__inner {
    align-items: flex-start;
    grid-template-columns: 1fr auto auto;
  }
}

.l-navigation-company__inner .l-header__menu {
  margin-inline-end: clamp(2rem, -0.857rem + 5.95vw, 4.5rem);
}

.l-navigation-company__wrapper.is-show .l-navigation-company__inner {
  opacity: 1;
}

.l-navigation-company__wrapper.is-hide .l-navigation-company__inner {
  opacity: 0;
}

.l-navigation-company__item .l-navigation-company__link::after {
  content: none;
}

.l-navigation-company__title {
  align-items: center;
  display: flex;
  font-weight: var(--FONT_SEMI_BOLD);
  flex-direction: row-reverse;
  gap: 8px;
  justify-content: space-between;
  line-height: 24px;
  position: relative;
  transition: opacity 0.3s ease;
}
.l-navigation-company__title::before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3756 1.0592L6.71875 6.71605L1.0619 1.0592' stroke='%23009CE5' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: cover;
  border-bottom: none;
  content: "";
  display: inline-block;
  line-height: 24px;
  height: 8px;
  min-width: 14px;
  width: 14px;
}
.l-navigation-company__title::after {
  background-color: #48BBF3;
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  opacity: 0;
  right: 0;
  transition: opacity 0.3s ease;
  width: 100%;
}
.l-navigation-company__title[aria-expanded=true] {
  color: var(--COLOR_BLUE_50);
}
.l-navigation-company__title[aria-expanded=true]::after {
  opacity: 1;
}
@media (any-hover: hover) {
  .l-navigation-company__title:hover {
    opacity: 0.5;
  }
}
@media screen and (width >= 768px) {
  .l-navigation-company__title {
    padding-block: 16px;
  }
}
@media screen and (width >= 1280px) {
  .l-navigation-company__title {
    line-height: 49px;
  }
}

.l-navigation-company__link {
  align-items: center;
  display: flex;
  font-weight: var(--FONT_SEMI_BOLD);
  gap: 8px;
  justify-content: space-between;
  line-height: 24px;
  transition: opacity 0.3s ease;
}
.l-navigation-company__link::after {
  background-color: #003C7C;
  mask-image: url("data:image/svg+xml,%3Csvg width='22' height='19' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.16667' y1='9.01888' x2='18.8333' y2='9.01888' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square'/%3E%3Cpath d='M12.855 16.7349L20.3974 9.19238L12.855 1.64991' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: cover;
  content: "";
  display: block;
  height: 19px;
  min-width: 22px;
}
@media (any-hover: hover) {
  .l-navigation-company__link:hover {
    opacity: 0.5;
  }
}
@media screen and (width >= 768px) {
  .l-navigation-company__link {
    padding-block: 16px;
  }
}
@media screen and (width >= 1280px) {
  .l-navigation-company__link {
    line-height: 49px;
  }
}

.l-navigation-company__subList .l-navigation-company__link {
  border-color: #C3C8CE;
  padding: 8px 0 8px 32px;
}
@media screen and (width >= 768px) {
  .l-navigation-company__subList .l-navigation-company__link {
    border-bottom: 1px solid #0047A1;
  }
}

.l-navigation-company__subList-item:first-child .l-navigation-company__link {
  padding: 16px 0 8px 0;
}
@media screen and (width >= 768px) {
  .l-navigation-company__subList-item:first-child .l-navigation-company__link {
    border-bottom: 3px solid #0047A1;
  }
}

.footer__nav > ul > li > a[href] {
  font-size: 0.875rem;
}

/* ----------------------------------------------------------------
    Footer
----------------------------------------------------------------- */
/* .footer
----------------------------------------------- */
.footer {
  padding: 16px 48px 28px;
  position: relative;
  z-index: 1;
  background-color: #002656;
}
.footer__nav {
  border-bottom: 1px solid #9babc0;
  padding-bottom: 16px;
}
.footer__nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav > ul > li {
  position: relative;
}
.footer__nav > ul > li > a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  padding-right: 24px;
  padding-left: 24px;
  border-right: 1px solid #fff;
}
@media (any-hover: hover) {
  .footer__nav > ul > li > a:hover {
    text-decoration: underline;
  }
}
.footer__nav > ul > li > a:focus-visible {
  text-decoration: underline;
}
.footer__nav > ul > li > a:active {
  text-decoration: underline;
}
.footer__nav > ul > li:first-child a {
  padding-left: 0;
}
.footer__nav > ul > li:last-child a {
  padding-right: 0;
  border: none;
}
.footer__content-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__nav + .footer__content > .footer__content-inner {
  padding-top: 28px;
}
.footer__body {
  text-align: right;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.footer__copy {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (width <= 767px) {
  .footer {
    padding: 24px 24px 32px;
  }
  .footer.is-static {
    padding-top: 65px;
  }
  .footer__nav {
    padding-bottom: 24px;
  }
  .footer__nav > ul {
    row-gap: 16px;
  }
  .footer__nav > ul > li > a {
    padding-right: 16px;
    padding-left: 16px;
    font-size: 1.4rem;
  }
  .footer__content {
    position: relative;
  }
  .footer__content-inner {
    padding-top: 22px;
    flex-direction: column;
    row-gap: 16px;
  }
  .footer__nav + .footer__content > .footer__content-inner {
    padding-top: 32px;
  }
  .footer__head {
    order: 2;
  }
  .footer__logo {
    display: flex;
    justify-content: center;
  }
  .footer__body {
    padding: 0;
    display: contents;
  }
  .footer__copy-img {
    order: 1;
  }
  .footer__copy {
    order: 3;
    text-align: center;
    margin-top: 12px;
  }
}

/* .footer--popup
----------------------------------------------- */
@media screen and (width >= 768px) {
  .footer--popup {
    margin-top: 70px;
  }
}

/* 全ページのコピーライトのフォントサイズを統一させるための記述 */
.footer-copyright-text {
  font-size: 14px !important;
  font-weight: normal !important;
}

.l-footer-navigation {
  background-color: var(--COLOR_WHITE);
  padding: 40px 30px 60px;
}
@media screen and (width >= 768px) {
  .l-footer-navigation {
    background-color: var(--COLOR_WHITE);
  }
}
@media screen and (width >= 1280px) {
  .l-footer-navigation {
    padding: 80px;
  }
}

@media screen and (width >= 1280px) {
  .l-footer-navigation__inner {
    max-width: var(--CONTENT_WIDTH_MAX);
    margin-inline: auto;
  }
}

.l-footer-navigation__head {
  grid-template-areas: "customer" "company" "contact" "about";
}
@media screen and (width >= 1280px) {
  .l-footer-navigation__head {
    border-bottom: 1px solid var(--COLOR_GRAY_30);
    display: grid;
    gap: 67px;
    grid-template-areas: "customer company contact about";
    grid-template-columns: repeat(4, 1fr);
    padding-block-end: 48px;
  }
}

.l-footer-navigation__body {
  padding-block-start: 24px;
}
@media screen and (width >= 1280px) {
  .l-footer-navigation__body {
    padding-block-start: 48px;
  }
}

.l-footer-navigation__head-item {
  border-bottom: 1px solid var(--COLOR_GRAY_30);
  padding-block: 24px;
}
.l-footer-navigation__head-item:first-child {
  padding-block-start: 0;
}
.l-footer-navigation__head-item > :last-child {
  border-bottom: none;
  padding-block-end: 0;
}
@media screen and (width >= 1280px) {
  .l-footer-navigation__head-item {
    border-bottom: none;
    padding-block: 0;
  }
}

.l-footer-navigation__disclosure {
  border-bottom: 1px solid var(--COLOR_GRAY_30);
}
@media screen and (width >= 1280px) {
  .l-footer-navigation__disclosure {
    border-bottom: none;
  }
}

.l-footer-navigation__disclosure:not(:first-child) .l-footer-navigation__disclosure-title {
  padding-block-start: 24px;
}
@media screen and (width >= 1280px) {
  .l-footer-navigation__disclosure:not(:first-child) .l-footer-navigation__disclosure-title {
    padding-block-start: 0;
  }
}

.l-footer-navigation__disclosure-title {
  align-items: center;
  display: flex;
  font-size: 0.9375rem;
  font-weight: var(--FONT_BOLD);
  justify-content: space-between;
  padding-block-end: 24px;
}
.l-footer-navigation__disclosure-title::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3756 1.0592L6.71875 6.71605L1.0619 1.0592' stroke='%23009CE5' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: cover;
  content: "";
  display: inline-block;
  height: 8px;
  min-width: 14px;
  width: 14px;
}
@media screen and (width >= 1280px) {
  .l-footer-navigation__disclosure-title {
    border-bottom: none;
    font-size: 1rem;
    display: none;
    padding-block: 0;
  }
  .l-footer-navigation__disclosure-title::after {
    content: none;
  }
}
.l-footer-navigation__disclosure-title[aria-expanded=true]::after {
  rotate: 180deg;
}

.l-footer-navigation__disclosure-title--pc-wide {
  display: none;
}
@media screen and (width >= 1280px) {
  .l-footer-navigation__disclosure-title--pc-wide {
    display: block;
  }
}

.l-footer-navigation__disclosure-body {
  display: none;
  overflow: hidden;
  transition: height 0.3s ease;
}
@media screen and (width >= 1280px) {
  .l-footer-navigation__disclosure-body {
    display: block;
  }
}

.l-footer-navigation__disclosure-body.is-show {
  display: block;
}

.l-footer-navigation__disclosure-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-block-end: 24px;
}
@media screen and (width >= 1280px) {
  .l-footer-navigation__disclosure-list {
    gap: 8px;
    margin-block: 24px 0px;
  }
}

@media screen and (width >= 1280px) {
  .l-footer-navigation__disclosure-list.l-footer-navigation__disclosure-list--auto {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

.l-footer-navigation__disclosure-link {
  font-size: 0.875rem;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer-navigation__disclosure-link:hover {
    opacity: 0.5;
  }
}

.l-footer-navigation__disclosure-note {
  font-size: 0.75rem;
  margin-inline-start: 4px;
}

.l-footer-navigation__sns {
  display: flex;
  gap: 24px;
  margin-block: 24px;
}
@media screen and (width >= 1280px) {
  .l-footer-navigation__sns {
    margin-block-end: 0;
  }
}

.l-footer-navigation__links {
  margin-block: 16px 24px;
}
@media screen and (width >= 1280px) {
  .l-footer-navigation__links {
    margin-block: 72px 0;
  }
}

.l-header {
  position: sticky;
  top: 0;
  z-index: var(--LAYER_TOP);
}

.l-header__outer {
  align-items: center;
  background-color: var(--COLOR_WHITE);
  border-bottom: 1px solid var(--COLOR_GRAY_10);
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  position: relative;
  z-index: var(--LAYER_TOP);
}
@media screen and (width >= 768px) {
  .l-header__outer {
    padding: 8px 24px 8px;
  }
}
@media screen and (width >= 1280px) {
  .l-header__outer {
    padding: 13px 40px 11px;
  }
}

.l-header__img {
  display: block;
  object-fit: contain;
  width: 136px;
}
@media screen and (width >= 768px) {
  .l-header__img {
    height: 37px;
    width: 198px;
  }
}

@media screen and (width >= 1280px) {
  .l-header__img--company {
    width: 317px;
  }
}

.l-header__inner {
  align-items: center;
  display: flex;
  gap: 24px;
}
@media screen and (width >= 768px) {
  .l-header__inner {
    gap: clamp(1.5rem, -0.754rem + 4.7vw, 3rem);
  }
}
@media screen and (width >= 1280px) {
  .l-header__inner {
    gap: 40px;
  }
}

.l-header__meta {
  display: none;
}
@media screen and (width >= 768px) {
  .l-header__meta {
    display: flex;
  }
}

.l-header__meta-item--holdings {
  display: none;
  align-items: center;
  line-height: 1;
}
@media screen and (width >= 1280px) {
  .l-header__meta-item--holdings {
    display: flex;
  }
}

.l-header__meta-item--customer .l-header__meta-link {
  border-right: 2px solid #D9D9D9;
  padding-inline-end: 12px;
}
@media screen and (width >= 1280px) {
  .l-header__meta-item--customer .l-header__meta-link {
    padding-inline-end: 24px;
  }
}

.l-header__meta-item--about .l-header__meta-link {
  padding-inline-start: 12px;
}
@media screen and (width >= 1280px) {
  .l-header__meta-item--about .l-header__meta-link {
    border-right: 2px solid #D9D9D9;
    padding-inline: 24px;
  }
}

.l-header__meta-item--holdings .l-header__meta-link {
  padding-inline-start: 24px;
}

.l-header__meta-link {
  color: var(--COLOR_GRAY_70);
  font-weight: var(--FONT_MEDIUM);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__meta-link:hover {
    opacity: 0.5;
  }
}
@media screen and (width >= 768px) {
  .l-header__meta-link {
    font-size: 0.75rem;
  }
}
@media screen and (width >= 1280px) {
  .l-header__meta-link {
    font-size: 0.875rem;
  }
}
.l-header__meta-link .m-icon {
  margin-inline-start: 0;
  top: 0;
}

.l-header__utilities {
  display: flex;
}
@media screen and (width >= 768px) {
  .l-header__utilities {
    gap: clamp(0.25rem, -0.877rem + 2.35vw, 1rem);
  }
}

.l-header__utility-button {
  align-items: center;
  color: #003C7C;
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  font-weight: var(--FONT_MEDIUM);
  justify-content: center;
  gap: 4px;
  padding: 5px;
  min-height: 55px;
  min-width: 64px;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__utility-button:hover {
    opacity: 0.5;
  }
}

.l-header__utility-button--login {
  display: none;
}
@media screen and (width >= 768px) {
  .l-header__utility-button--login {
    display: flex;
  }
}

.l-header__utility-button--search .l-header__utility-button-lines::before, .l-header__utility-button--search .l-header__utility-button-lines::after {
  inset: 0;
  opacity: 0;
}
.l-header__utility-button--search .l-header__utility-button-lines::before {
  rotate: 45deg;
}
.l-header__utility-button--search .l-header__utility-button-lines::after {
  rotate: -45deg;
}

.l-header__utility-button--search[aria-expanded=true] .l-header__utility-button-lines::before, .l-header__utility-button--search[aria-expanded=true] .l-header__utility-button-lines::after {
  background: #0075CB;
  opacity: 1;
}
.l-header__utility-button--search[aria-expanded=true] .l-header__utility-icon {
  opacity: 0;
}

.l-header__utility-button--menu[aria-expanded=true] .l-header__utility-button-lines::before {
  background: #0075CB;
  rotate: 45deg;
  top: 0;
}
.l-header__utility-button--menu[aria-expanded=true] .l-header__utility-button-lines::after {
  rotate: -45deg;
  top: 0;
}
.l-header__utility-button--menu[aria-expanded=true] .l-header__utility-button-line {
  opacity: 0;
}

.l-header__utility-button-lines {
  display: block;
  height: 24px;
  position: relative;
  width: 24px;
}
.l-header__utility-button-lines::before, .l-header__utility-button-lines::after {
  content: "";
  display: block;
  height: 2px;
  inset: 0;
  margin: auto;
  position: absolute;
  transition: opacity 0.3s, top 0.3s, rotate 0.3s;
  width: 20px;
}
.l-header__utility-button-lines::before {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='2' viewBox='0 0 22 2' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M.875 1h16.5' stroke='%230075CB' stroke-width='1.75' stroke-linecap='square' stroke-linejoin='round'/%3E%3Ccircle cx='20.875' cy='1' r='1' fill='%230075CB'/%3E%3C/svg%3E%0A");
  background-size: cover;
  background-repeat: no-repeat;
  top: -14px;
}
.l-header__utility-button-lines::after {
  background-color: #0075CB;
  top: 13px;
}
@media screen and (width >= 768px) {
  .l-header__utility-button-lines::before, .l-header__utility-button-lines::after {
    width: clamp(1rem, 0.249rem + 1.57vw, 1.5rem);
  }
  .l-header__utility-button-lines::before {
    top: -14px;
  }
  .l-header__utility-button-lines::after {
    background-color: #0075CB;
    top: 13px;
  }
}

.l-header__utility-button-line {
  background-color: #0075CB;
  content: "";
  display: block;
  height: 1.75px;
  inset: 0;
  margin: auto;
  position: absolute;
  transition: rotate 0.3s;
  width: 20px;
}
@media screen and (width >= 768px) {
  .l-header__utility-button-line {
    width: clamp(1rem, 0.249rem + 1.57vw, 1.5rem);
  }
}

.l-header__utility-icon {
  transition: opacity 0.3s ease;
}

@media screen and (width >= 768px) {
  .l-header__utility-button-text {
    font-size: clamp(0.625rem, 0.437rem + 0.39vw, 0.75rem);
  }
}

.l-header__navigation {
  left: 0;
  overflow: auto;
  max-height: calc(100svh - 71px);
  position: absolute;
  top: var(--header-height);
  visibility: hidden;
  width: 100%;
  z-index: var(--LAYER_TOP);
}
@media screen and (width >= 768px) {
  .l-header__navigation {
    max-height: calc(100svh - 79px);
  }
}

.l-header__navigation:has(.l-header__navigation-wrapper.is-show) {
  visibility: visible;
}

.l-header__navigation:has(.l-header__navigation-wrapper.is-hidden) {
  visibility: hidden;
}

.l-header__navigation-wrapper {
  background-color: var(--COLOR_WHITE);
  display: grid;
  gap: 0 var(--OUTSIDE_GUTTER_SP);
  grid-template-columns: 1fr minmax(var(--CONTENT_WIDTH_MIN), var(--CONTENT_WIDTH_MAX)) 1fr;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
@media screen and (width >= 768px) {
  .l-header__navigation-wrapper {
    --CONTENT_WIDTH_MAX: 746px;
  }
}
@media screen and (width >= 1280px) {
  .l-header__navigation-wrapper {
    --CONTENT_WIDTH_MAX: 1184px;
  }
}

.l-header__navigation-inner {
  grid-column: 2/3;
  opacity: 0;
  padding-block: 32px;
  transition: opacity 0.6s ease;
}
.l-header__navigation-inner > :first-child {
  margin-block-start: 0;
}
@media screen and (width >= 768px) {
  .l-header__navigation-inner {
    padding-block: 48px 60px;
  }
}

.l-header__navigation-wrapper.is-show .l-header__navigation-inner {
  opacity: 1;
}

.l-header__navigation-wrapper.is-hide .l-header__navigation-inner {
  opacity: 0;
}

.l-header__navigation-inner--search {
  --CONTENT_WIDTH_MAX: 622px;
}

.l-header__navigation-inner--menu {
  grid-template-areas: "heading-first" "conductor" "box-first" "panels" "heading-second" "support" "box-second" "box-third";
}
@media screen and (width >= 1280px) {
  .l-header__navigation-inner--menu {
    display: grid;
    column-gap: 54px;
    grid-template-areas: "heading-first panels" "conductor panels" "box-first box-third" "heading-second box-third" "support box-third" "box-second box-third";
    grid-template-columns: 2fr 1fr;
  }
}

.l-header__heading {
  border-bottom: 1px solid var(--COLOR_GRAY_30);
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-block-start: 32px;
  padding-block-end: 8px;
}

.l-header__heading.l-header__heading--first {
  grid-area: heading-first;
}

.l-header__heading.l-header__heading--second {
  grid-area: heading-second;
}

.l-header__heading-text {
  font-size: 1.25rem;
}

.l-header__heading-link {
  color: var(--COLOR_BLUE_50);
  display: none;
  font-feature-settings: "palt" on;
  font-weight: var(--FONT_SEMI_BOLD);
  transition: opacity 0.3s ease;
}
.l-header__heading-link::after {
  background-color: var(--COLOR_BLUE_50);
  content: "";
  display: inline-block;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='17' height='14' viewBox='0 0 17 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.875' y1='6.76367' x2='14.125' y2='6.76367' stroke='%23009CE5' stroke-width='1.75' stroke-linecap='square'/%3E%3Cpath d='M9.64123 12.5514L15.2981 6.89453L9.64123 1.23768' stroke='%23009CE5' stroke-width='1.75' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='17' height='14' viewBox='0 0 17 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.875' y1='6.76367' x2='14.125' y2='6.76367' stroke='%23009CE5' stroke-width='1.75' stroke-linecap='square'/%3E%3Cpath d='M9.64123 12.5514L15.2981 6.89453L9.64123 1.23768' stroke='%23009CE5' stroke-width='1.75' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-inline-start: 8px;
  height: 13px;
  width: 16px;
}
@media (any-hover: hover) {
  .l-header__heading-link:hover {
    opacity: 0.5;
  }
  .l-header__heading-link:hover::after {
    animation: arrowAnimation 0.3s both;
  }
}
@media screen and (width >= 768px) {
  .l-header__heading-link {
    display: block;
    font-size: 1rem;
    font-feature-settings: "palt" on;
    line-height: 20px;
  }
}

.l-header__support {
  display: grid;
  gap: 16px 8px;
  grid-area: support;
  grid-template-areas: "login support" "contact contact";
  margin-block-start: 16px;
}
@media screen and (width >= 768px) {
  .l-header__support {
    gap: 16px;
    grid-template-areas: "login support contact";
  }
}

.l-header__support-item--login {
  grid-area: login;
}
.l-header__support-item--login .l-header__support-link::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.64141 16.2384C4.90008 17.497 6.50373 18.3542 8.24956 18.7015C9.99539 19.0487 11.805 18.8705 13.4495 18.1893C15.0941 17.5081 16.4997 16.3546 17.4886 14.8745C18.4775 13.3945 19.0054 11.6544 19.0054 9.87441C19.0054 8.09437 18.4775 6.35432 17.4886 4.87427C16.4997 3.39423 15.0941 2.24068 13.4495 1.55949C11.805 0.878302 9.99539 0.700072 8.24956 1.04734C6.50373 1.39461 4.90008 2.25177 3.64141 3.51045' stroke='%230047A1' stroke-width='1.75'/%3E%3Cpath d='M7.3501 5.42578L11.6445 9.72022C11.7304 9.80613 11.7304 9.94543 11.6445 10.0313L7.3501 14.3258' stroke='%230047A1' stroke-width='1.75'/%3E%3Cpath d='M0 9.875H11.25' stroke='%230047A1' stroke-width='1.75'/%3E%3C/svg%3E%0A");
}

.l-header__support-item--support {
  grid-area: support;
}
.l-header__support-item--support .l-header__support-link::before {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.875 20.875C16.3978 20.875 20.875 16.3978 20.875 10.875C20.875 5.35215 16.3978 0.875 10.875 0.875C5.35215 0.875 0.875 5.35215 0.875 10.875C0.875 16.3978 5.35215 20.875 10.875 20.875Z' stroke='%230047A1' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='10.875' cy='16.875' r='1' fill='%230047A1'/%3E%3Cpath d='M7.875 8.375C7.875 6.71815 9.21815 5.375 10.875 5.375C12.5319 5.375 13.875 6.71815 13.875 8.375C13.875 9.68797 13.0315 10.8039 11.8569 11.2106C11.335 11.3913 10.875 11.8227 10.875 12.375V13.875' stroke='%230047A1' stroke-width='1.75'/%3E%3C/svg%3E%0A");
}

.l-header__support-item--contact {
  grid-area: contact;
}
.l-header__support-item--contact .l-header__support-link::before {
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='20' viewBox='0 0 22 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.52079 1.40625C10.0981 0.406249 11.5415 0.40625 12.1189 1.40625L20.7791 16.4063C21.3565 17.4063 20.6348 18.6562 19.4801 18.6562H2.15957C1.00487 18.6562 0.283182 17.4063 0.860532 16.4063L9.52079 1.40625Z' stroke='%230047A1' stroke-width='1.3125'/%3E%3Ccircle cx='10.8198' cy='15.1562' r='1' fill='%230047A1'/%3E%3Cline x1='11.0635' y1='12.1562' x2='11.0635' y2='6.15625' stroke='%230047A1' stroke-width='1.3125'/%3E%3C/svg%3E%0A");
  position: relative;
  top: 2px;
}
.l-header__support-item--contact .l-header__support-main {
  font-size: 1rem;
}

.l-header__support-link {
  align-items: center;
  border: 1px solid var(--COLOR_BLUE_90);
  border-radius: 20px;
  color: var(--COLOR_BLUE_90);
  font-weight: var(--FONT_BOLD);
  display: flex;
  justify-content: center;
  gap: 8px;
  line-height: 1.5;
  height: 100%;
  padding: 13px;
  transition: background-color 0.3s ease;
}
.l-header__support-link::before {
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 24px;
  min-width: 24px;
}
@media (any-hover: hover) {
  .l-header__support-link:hover {
    background-color: #F5F5F5;
  }
}
@media screen and (width >= 768px) {
  .l-header__support-link {
    padding: 16px 24px;
  }
}

.l-header__support-main {
  display: block;
  font-size: 0.9375rem;
}

.l-header__support-sub {
  display: block;
  font-size: 0.875rem;
}

.l-header__conductor {
  display: grid;
  gap: 16px 5px;
  grid-area: conductor;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  margin-block-start: 16px;
}
@media screen and (width >= 768px) {
  .l-header__conductor {
    gap: 16px 32px;
  }
}

.l-header__conductor-link {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-weight: var(--FONT_BOLD);
  gap: 4px;
  text-align: center;
  transition: color 0.3s ease, opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__conductor-link:hover {
    color: #009CE5;
  }
  .l-header__conductor-link:hover .l-header__conductor-icon {
    opacity: 0.7;
  }
}
.l-header__conductor-link:focus-visible {
  color: #009CE5;
}
.l-header__conductor-link:focus-visible .l-header__conductor-icon {
  opacity: 0.7;
}
.l-header__conductor-link:active {
  color: #009CE5;
}
.l-header__conductor-link:active .l-header__conductor-icon {
  opacity: 0.7;
}
@media screen and (width >= 768px) {
  .l-header__conductor-link {
    min-width: 80px;
  }
}

.l-header__conductor-icon {
  transition: opacity 0.3s ease;
}

.l-header__conductor-main {
  font-size: 0.875rem;
  line-height: 16px;
}
@media screen and (width >= 768px) {
  .l-header__conductor-main {
    line-height: 22px;
  }
}

.l-header__conductor-sub {
  font-size: 0.6875rem;
  font-weight: var(--FONT_BOLD);
  line-height: 16px;
}

.l-header__conductor-link.l-header__conductor-link--cta::before {
  background-color: #0256BE;
  border-radius: 100rem;
  content: "";
  display: block;
  height: 32px;
  margin: 16px;
  min-width: 32px;
}
.l-header__conductor-link.l-header__conductor-link--cta::after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='4.875' y1='11.875' x2='18.125' y2='11.875' stroke='white' stroke-width='1.75' stroke-linecap='square'/%3E%3Cpath d='M13.6412 17.6622L19.2981 12.0054L13.6412 6.34852' stroke='white' stroke-width='1.75' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  height: 24px;
  margin-block-start: 20px;
  min-width: 24px;
}
@media screen and (width >= 768px) {
  .l-header__conductor-link.l-header__conductor-link--cta {
    font-size: 0.75rem;
  }
}

.l-header__box {
  background-color: #F0FBFF;
  border-radius: 16px;
  margin-block-start: 32px;
  height: fit-content;
  padding: 24px;
}
.l-header__box + .l-header__box {
  margin-block-start: 16px;
}
.l-header__box > :first-child {
  margin-block-start: 0;
}

.l-header__box.l-header__box--first {
  grid-area: box-first;
}

.l-header__box.l-header__box--second {
  grid-area: box-second;
}

.l-header__box.l-header__box--third {
  grid-area: box-third;
}

.l-header__box-list {
  display: flex;
  flex-direction: column;
  gap: 16px 32px;
}
@media screen and (width >= 768px) {
  .l-header__box-list {
    column-gap: 48px;
    flex-direction: row;
  }
}

.l-header__box-list.l-header__box-list--column {
  flex-direction: column;
}

.l-header__box-link {
  align-items: center;
  display: inline-flex;
  font-weight: var(--FONT_SEMI_BOLD);
  gap: 12px;
  transition: opacity 0.3s ease;
}
.l-header__box-link::before {
  background-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 1L1 0L7 6L1 12L0 11L5 6L0 1Z' fill='%230075CB'/%3E%3C/svg%3E%0A");
  background-size: cover;
  content: "";
  display: block;
  height: 12px;
  min-width: 7px;
}
@media (any-hover: hover) {
  .l-header__box-link:hover {
    opacity: 0.5;
  }
}

.l-header__panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  grid-area: panels;
  margin-block-start: 32px;
}
@media screen and (width >= 768px) {
  .l-header__panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width >= 1280px) {
  .l-header__panel {
    display: flex;
    height: fit-content;
  }
}

.l-header__panel-link {
  border-radius: 20px;
  display: grid;
  grid-template-columns: 65% 1fr;
  overflow: hidden;
}
.l-header__panel-link:focus-visible {
  outline: 4.944px solid #ABE9FF;
  box-shadow: 0 0 0 4.944px #ABE9FF;
}

.l-header__panel-content {
  background-color: var(--COLOR_BLUE_60);
  display: grid;
  padding: 24px 20px;
}
@media screen and (width >= 768px) {
  .l-header__panel-content {
    place-content: center;
  }
}

.l-header__panel-text {
  color: var(--COLOR_WHITE);
  font-size: 0.875rem;
  font-weight: var(--FONT_SEMI_BOLD);
  min-width: 155px;
  margin-inline: auto;
  width: fit-content;
}
@media screen and (width >= 768px) {
  .l-header__panel-text {
    min-width: none;
  }
}
@media screen and (width >= 1280px) {
  .l-header__panel-text {
    font-size: 1rem;
    min-width: 175px;
  }
}

.l-header__panel-media {
  background-color: var(--COLOR_BLUE_20);
  position: relative;
}

.l-header__panel-img {
  inset: 0;
  margin: auto;
  position: absolute;
  object-fit: cover;
  width: 100%;
}

.l-header__sns {
  display: flex;
  gap: 16px;
  margin-block-start: 24px;
}
.l-header__sns:has(.l-header__sns-content) {
  flex-direction: column;
}

.l-header__sns-lead {
  font-weight: var(--FONT_BOLD);
}

.l-header__sns-content > :first-child {
  margin-block-start: 0;
}

.l-header__sns-list {
  display: flex;
  gap: 16px;
  margin-block-start: 24px;
}

.l-header__form-container {
  display: flex;
  gap: 10px;
}

.l-header__form-input {
  border: 2px solid #0047A1;
  border-radius: 10px;
  padding: 15px 20px;
  width: 100%;
}

.l-header__form-search {
  background-color: #0256BE;
  border-radius: 10px;
  color: var(--COLOR_WHITE);
  font-weight: var(--FONT_MEDIUM);
  min-width: 84px;
  padding: 15px;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__form-search:hover {
    background-color: #0047A1;
  }
}

.l-header__description {
  margin-block-start: 24px;
}

.l-header__description-term {
  font-weight: var(--FONT_SEMI_BOLD);
}

.l-header__description-definition {
  margin-block-start: 24px;
}

.l-header__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.l-header__tags-link {
  border: 1px solid #0047A1;
  border-radius: 100rem;
  font-size: 0.75rem;
  display: block;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__tags-link:hover {
    background-color: #F5F5F5;
  }
}

.l-header__disclosure-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.l-header__disclosure-body {
  display: none;
}

.l-header__disclosure-body:has(.l-header__disclosure-wrapper.is-show) {
  display: block;
}

.l-header__disclosure-wrapper {
  background-color: var(--COLOR_WHITE);
  overflow: hidden;
  max-height: calc(100svh - 79px);
  transition: height 0.3s ease-in-out;
}

.l-header__disclosure-title {
  align-items: center;
  border-bottom: 1px solid #0047A1;
  display: flex;
  font-weight: var(--FONT_SEMI_BOLD);
  gap: 8px;
  justify-content: space-between;
  line-height: 49px;
}
.l-header__disclosure-title[aria-expanded=true] {
  color: var(--COLOR_BLUE_50);
}
.l-header__disclosure-title[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.l-header__disclosure-title::after {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3756 1.0592L6.71875 6.71605L1.0619 1.0592' stroke='%23009CE5' stroke-width='1.5' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: cover;
  content: "";
  display: inline-block;
  height: 8px;
  min-width: 14px;
  width: 14px;
}
@media screen and (width >= 768px) {
  .l-header__disclosure-title {
    border-bottom: none;
    line-height: 24px;
  }
}
@media screen and (width >= 1280px) {
  .l-header__disclosure-title {
    line-height: 49px;
  }
}

.l-header__disclosure-link,
.l-header__menu-link {
  align-items: center;
  border-bottom: 1px solid #0047A1;
  display: flex;
  font-weight: var(--FONT_SEMI_BOLD);
  gap: 8px;
  justify-content: space-between;
  line-height: 49px;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.l-header__disclosure-link::after,
.l-header__menu-link::after {
  background-color: #003C7C;
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='4.875' y1='11.875' x2='18.125' y2='11.875' stroke='%23003C7C' stroke-width='1.75' stroke-linecap='square'/%3E%3Cpath d='M13.6412 17.6622L19.2981 12.0054L13.6412 6.34852' stroke='%23003C7C' stroke-width='1.75' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  mask-repeat: no-repeat;
  mask-size: cover;
  content: "";
  display: block;
  height: 24px;
  min-width: 24px;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__disclosure-link:hover,
  .l-header__menu-link:hover {
    color: rgb(from var(--COLOR_BLUE_90) r g b/0.5);
  }
  .l-header__disclosure-link:hover::after,
  .l-header__menu-link:hover::after {
    animation: arrowAnimation 0.3s both;
    opacity: 0.5;
  }
}
@media screen and (width >= 768px) {
  .l-header__disclosure-link,
  .l-header__menu-link {
    border-bottom: none;
  }
  .l-header__disclosure-link::after,
  .l-header__menu-link::after {
    height: 19px;
    min-width: 22px;
  }
}

.l-header__menu-list {
  margin-block-start: 8px;
}

.l-header__menu-item:first-child .l-header__menu-link {
  padding: 8px 0;
}
@media screen and (width >= 768px) {
  .l-header__menu-item:first-child .l-header__menu-link {
    border-bottom: 3px solid #0047A1;
  }
}

.l-header__menu-link {
  border-color: #C3C8CE;
  padding: 8px 0 8px 32px;
}
@media screen and (width >= 768px) {
  .l-header__menu-link {
    border-bottom: 1px solid #0047A1;
  }
}

.l-header__menu + .l-header__box {
  margin-block-start: 0;
}
@media screen and (width >= 768px) {
  .l-header__menu + .l-header__box {
    margin-inline-end: clamp(1.438rem, -0.535rem + 4.11vw, 2.75rem);
  }
}

.l-header__closeButton {
  position: relative;
  display: block;
  height: 44px;
  transition: opacity 0.3s ease;
  width: 44px;
}
.l-header__closeButton::before, .l-header__closeButton::after {
  background-color: #545D66;
  content: "";
  display: block;
  inset: 0;
  height: 2px;
  margin: auto;
  position: absolute;
  width: 22px;
}
.l-header__closeButton::before {
  transform: rotate(45deg);
}
.l-header__closeButton::after {
  transform: rotate(-45deg);
}
@media (any-hover: hover) {
  .l-header__closeButton:hover {
    opacity: 0.5;
  }
}
@media screen and (width >= 1280px) {
  .l-header__closeButton::before, .l-header__closeButton::after {
    width: 30px;
  }
}

.l-header__closeButton-text {
  clip-path: inset(1px 1px 1px 1px);
  overflow: hidden;
  position: absolute;
  width: 0;
}

.l-overlay {
  background-color: rgb(from #000 r g b/0.6);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  visibility: hidden;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.6, 1) 80ms, visibility 0.32s step-end 80ms;
  width: 100%;
  z-index: 98;
}

@keyframes topArrowAnimation {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-20px);
    opacity: 0;
  }
  51% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.l-navigation-top {
  bottom: 10px;
  opacity: 0;
  margin-block-start: -62px;
  margin-inline-start: auto;
  padding: 15px 20px;
  position: sticky;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
  width: fit-content;
  z-index: var(--LAYER_FRONT_SECOND);
}
.l-navigation-top.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (width >= 1280px) {
  .l-navigation-top {
    padding: 32px;
    margin-block-start: -136px;
  }
}

.l-navigation-top__link {
  background-color: var(--COLOR_WHITE);
  border: 1px solid var(--COLOR_BLUE_80);
  border-radius: 100rem;
  display: block;
  height: 32px;
  padding: 8px;
  position: relative;
  width: 32px;
}
.l-navigation-top__link::after {
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='11' viewBox='0 0 9 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='4.4238' y1='10.08' x2='4.4238' y2='1.18498' stroke='%230047A1' stroke-width='0.988341' stroke-linecap='square'/%3E%3Cpath d='M8.15305 4.22195L4.42578 0.494685L0.698514 4.22195' stroke='%230047A1' stroke-width='0.988341' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  inset: 0;
  right: -1px;
  margin: auto;
  height: 15px;
  position: absolute;
  width: 12px;
}
@media (any-hover: hover) {
  .l-navigation-top__link:hover::after {
    animation: topArrowAnimation 0.3s both;
  }
}
@media screen and (width >= 1280px) {
  .l-navigation-top__link {
    height: 72px;
    width: 72px;
  }
  .l-navigation-top__link::after {
    background-size: cover;
    height: 20px;
    width: 20px;
  }
}

.l-navigation-top__text {
  clip-path: inset(1px 1px 1px 1px);
  overflow: hidden;
  position: absolute;
  width: 0;
}

.l-svg {
  display: none;
}

.m-icon {
  display: inline-block;
  fill: transparent;
  height: 16px;
  margin-inline-start: 0.4em;
  position: relative;
  top: 0.2em;
  width: 16px;
}

.block {
  display: block !important;
}

.flex {
  display: flex !important;
}

.grid {
  display: grid !important;
}

.contents {
  display: contents !important;
}

.hidden {
  display: none !important;
}

@media screen and (width >= 768px) {
  .md\:block {
    display: block !important;
  }
  .md\:flex {
    display: flex !important;
  }
  .md\:grid {
    display: grid !important;
  }
  .md\:contents {
    display: contents !important;
  }
  .md\:hidden {
    display: none !important;
  }
}
@media screen and (width >= 1280px) {
  .lg\:block {
    display: block !important;
  }
  .lg\:flex {
    display: flex !important;
  }
  .lg\:grid {
    display: grid !important;
  }
  .lg\:contents {
    display: contents !important;
  }
  .lg\:hidden {
    display: none !important;
  }
}
.mt-16 {
  margin-block-start: 16px !important;
}

.mt-24 {
  margin-block-start: 24px !important;
}

.mt-32 {
  margin-block-start: 32px !important;
}

.mt-40 {
  margin-block-start: 40px !important;
}

.mt-48 {
  margin-block-start: 48px !important;
}

.mt-56 {
  margin-block-start: 56px !important;
}

.mt-64 {
  margin-block-start: 64px !important;
}

.mt-72 {
  margin-block-start: 72px !important;
}

.mt-80 {
  margin-block-start: 80px !important;
}

@media screen and (width >= 768px) {
  .md\:mt-16 {
    margin-block-start: 16px !important;
  }
}
@media screen and (width >= 768px) {
  .md\:mt-24 {
    margin-block-start: 24px !important;
  }
}
@media screen and (width >= 768px) {
  .md\:mt-32 {
    margin-block-start: 32px !important;
  }
}
@media screen and (width >= 768px) {
  .md\:mt-40 {
    margin-block-start: 40px !important;
  }
}
@media screen and (width >= 768px) {
  .md\:mt-48 {
    margin-block-start: 48px !important;
  }
}
@media screen and (width >= 768px) {
  .md\:mt-56 {
    margin-block-start: 56px !important;
  }
}
@media screen and (width >= 768px) {
  .md\:mt-64 {
    margin-block-start: 64px !important;
  }
}
@media screen and (width >= 768px) {
  .md\:mt-72 {
    margin-block-start: 72px !important;
  }
}
@media screen and (width >= 768px) {
  .md\:mt-80 {
    margin-block-start: 80px !important;
  }
}
@media screen and (width >= 1280px) {
  .lg\:mt-16 {
    margin-block-start: 16px !important;
  }
}
@media screen and (width >= 1280px) {
  .lg\:mt-24 {
    margin-block-start: 24px !important;
  }
}
@media screen and (width >= 1280px) {
  .lg\:mt-32 {
    margin-block-start: 32px !important;
  }
}
@media screen and (width >= 1280px) {
  .lg\:mt-40 {
    margin-block-start: 40px !important;
  }
}
@media screen and (width >= 1280px) {
  .lg\:mt-48 {
    margin-block-start: 48px !important;
  }
}
@media screen and (width >= 1280px) {
  .lg\:mt-56 {
    margin-block-start: 56px !important;
  }
}
@media screen and (width >= 1280px) {
  .lg\:mt-64 {
    margin-block-start: 64px !important;
  }
}
@media screen and (width >= 1280px) {
  .lg\:mt-72 {
    margin-block-start: 72px !important;
  }
}
@media screen and (width >= 1280px) {
  .lg\:mt-80 {
    margin-block-start: 80px !important;
  }
}
.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.py-16 {
  padding-block: 16px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.py-24 {
  padding-block: 24px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.py-32 {
  padding-block: 32px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.py-40 {
  padding-block: 40px;
}

.pt-48 {
  padding-top: 48px;
}

.pb-48 {
  padding-bottom: 48px;
}

.py-48 {
  padding-block: 48px;
}

.pt-56 {
  padding-top: 56px;
}

.pb-56 {
  padding-bottom: 56px;
}

.py-56 {
  padding-block: 56px;
}

.pt-64 {
  padding-top: 64px;
}

.pb-64 {
  padding-bottom: 64px;
}

.py-64 {
  padding-block: 64px;
}

.pt-72 {
  padding-top: 72px;
}

.pb-72 {
  padding-bottom: 72px;
}

.py-72 {
  padding-block: 72px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.py-80 {
  padding-block: 80px;
}

.pt-88 {
  padding-top: 88px;
}

.pb-88 {
  padding-bottom: 88px;
}

.py-88 {
  padding-block: 88px;
}

.pt-96 {
  padding-top: 96px;
}

.pb-96 {
  padding-bottom: 96px;
}

.py-96 {
  padding-block: 96px;
}

@media screen and (width >= 768px) {
  .md\:pt-16 {
    padding-top: 16px;
  }
  .md\:pb-16 {
    padding-bottom: 16px;
  }
  .md\:py-16 {
    padding-block: 16px;
  }
}
@media screen and (width >= 768px) {
  .md\:pt-24 {
    padding-top: 24px;
  }
  .md\:pb-24 {
    padding-bottom: 24px;
  }
  .md\:py-24 {
    padding-block: 24px;
  }
}
@media screen and (width >= 768px) {
  .md\:pt-32 {
    padding-top: 32px;
  }
  .md\:pb-32 {
    padding-bottom: 32px;
  }
  .md\:py-32 {
    padding-block: 32px;
  }
}
@media screen and (width >= 768px) {
  .md\:pt-40 {
    padding-top: 40px;
  }
  .md\:pb-40 {
    padding-bottom: 40px;
  }
  .md\:py-40 {
    padding-block: 40px;
  }
}
@media screen and (width >= 768px) {
  .md\:pt-48 {
    padding-top: 48px;
  }
  .md\:pb-48 {
    padding-bottom: 48px;
  }
  .md\:py-48 {
    padding-block: 48px;
  }
}
@media screen and (width >= 768px) {
  .md\:pt-56 {
    padding-top: 56px;
  }
  .md\:pb-56 {
    padding-bottom: 56px;
  }
  .md\:py-56 {
    padding-block: 56px;
  }
}
@media screen and (width >= 768px) {
  .md\:pt-64 {
    padding-top: 64px;
  }
  .md\:pb-64 {
    padding-bottom: 64px;
  }
  .md\:py-64 {
    padding-block: 64px;
  }
}
@media screen and (width >= 768px) {
  .md\:pt-72 {
    padding-top: 72px;
  }
  .md\:pb-72 {
    padding-bottom: 72px;
  }
  .md\:py-72 {
    padding-block: 72px;
  }
}
@media screen and (width >= 768px) {
  .md\:pt-80 {
    padding-top: 80px;
  }
  .md\:pb-80 {
    padding-bottom: 80px;
  }
  .md\:py-80 {
    padding-block: 80px;
  }
}
@media screen and (width >= 768px) {
  .md\:pt-88 {
    padding-top: 88px;
  }
  .md\:pb-88 {
    padding-bottom: 88px;
  }
  .md\:py-88 {
    padding-block: 88px;
  }
}
@media screen and (width >= 768px) {
  .md\:pt-96 {
    padding-top: 96px;
  }
  .md\:pb-96 {
    padding-bottom: 96px;
  }
  .md\:py-96 {
    padding-block: 96px;
  }
}
@media screen and (width >= 1280px) {
  .lg\:pt-16 {
    padding-top: 16px;
  }
  .lg\:pb-16 {
    padding-bottom: 16px;
  }
  .lg\:py-16 {
    padding-block: 16px;
  }
}
@media screen and (width >= 1280px) {
  .lg\:pt-24 {
    padding-top: 24px;
  }
  .lg\:pb-24 {
    padding-bottom: 24px;
  }
  .lg\:py-24 {
    padding-block: 24px;
  }
}
@media screen and (width >= 1280px) {
  .lg\:pt-32 {
    padding-top: 32px;
  }
  .lg\:pb-32 {
    padding-bottom: 32px;
  }
  .lg\:py-32 {
    padding-block: 32px;
  }
}
@media screen and (width >= 1280px) {
  .lg\:pt-40 {
    padding-top: 40px;
  }
  .lg\:pb-40 {
    padding-bottom: 40px;
  }
  .lg\:py-40 {
    padding-block: 40px;
  }
}
@media screen and (width >= 1280px) {
  .lg\:pt-48 {
    padding-top: 48px;
  }
  .lg\:pb-48 {
    padding-bottom: 48px;
  }
  .lg\:py-48 {
    padding-block: 48px;
  }
}
@media screen and (width >= 1280px) {
  .lg\:pt-56 {
    padding-top: 56px;
  }
  .lg\:pb-56 {
    padding-bottom: 56px;
  }
  .lg\:py-56 {
    padding-block: 56px;
  }
}
@media screen and (width >= 1280px) {
  .lg\:pt-64 {
    padding-top: 64px;
  }
  .lg\:pb-64 {
    padding-bottom: 64px;
  }
  .lg\:py-64 {
    padding-block: 64px;
  }
}
@media screen and (width >= 1280px) {
  .lg\:pt-72 {
    padding-top: 72px;
  }
  .lg\:pb-72 {
    padding-bottom: 72px;
  }
  .lg\:py-72 {
    padding-block: 72px;
  }
}
@media screen and (width >= 1280px) {
  .lg\:pt-80 {
    padding-top: 80px;
  }
  .lg\:pb-80 {
    padding-bottom: 80px;
  }
  .lg\:py-80 {
    padding-block: 80px;
  }
}
@media screen and (width >= 1280px) {
  .lg\:pt-88 {
    padding-top: 88px;
  }
  .lg\:pb-88 {
    padding-bottom: 88px;
  }
  .lg\:py-88 {
    padding-block: 88px;
  }
}
@media screen and (width >= 1280px) {
  .lg\:pt-96 {
    padding-top: 96px;
  }
  .lg\:pb-96 {
    padding-bottom: 96px;
  }
  .lg\:py-96 {
    padding-block: 96px;
  }
}
.text-left {
  text-align: left;
}

/* PC Viewport */
@media print, screen and (width >= 768px) {
  .md\:text-left {
    text-align: left;
  }
}
.text-center {
  text-align: center;
}

/* PC Viewport */
@media print, screen and (width >= 768px) {
  .md\:text-center {
    text-align: center;
  }
}
.text-right {
  text-align: right;
}

/* PC Viewport */
@media print, screen and (width >= 768px) {
  .md\:text-right {
    text-align: right;
  }
}
.text-justify {
  text-align: justify;
}

/* PC Viewport */
@media print, screen and (width >= 768px) {
  .md\:text-justify {
    text-align: justify;
  }
}
.text-start {
  text-align: start;
}

/* PC Viewport */
@media print, screen and (width >= 768px) {
  .md\:text-start {
    text-align: start;
  }
}
.text-end {
  text-align: end;
}

/* PC Viewport */
@media print, screen and (width >= 768px) {
  .md\:text-end {
    text-align: end;
  }
}
.w-5 {
  width: 5%;
}

.w-10 {
  width: 10%;
}

.w-15 {
  width: 15%;
}

.w-20 {
  width: 20%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-40 {
  width: 40%;
}

.w-45 {
  width: 45%;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-60 {
  width: 60%;
}

.w-65 {
  width: 65%;
}

.w-70 {
  width: 70%;
}

.w-75 {
  width: 75%;
}

.w-80 {
  width: 80%;
}

.w-85 {
  width: 85%;
}

.w-90 {
  width: 90%;
}

.w-95 {
  width: 95%;
}

.w-100 {
  width: 100%;
}

@media screen and (width >= 768px) {
  .md\:w-5 {
    width: 5%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-10 {
    width: 10%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-15 {
    width: 15%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-20 {
    width: 20%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-25 {
    width: 25%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-30 {
    width: 30%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-35 {
    width: 35%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-40 {
    width: 40%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-45 {
    width: 45%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-50 {
    width: 50%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-55 {
    width: 55%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-60 {
    width: 60%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-65 {
    width: 65%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-70 {
    width: 70%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-75 {
    width: 75%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-80 {
    width: 80%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-85 {
    width: 85%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-90 {
    width: 90%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-95 {
    width: 95%;
  }
}
@media screen and (width >= 768px) {
  .md\:w-100 {
    width: 100%;
  }
}
@keyframes arrowAnimation {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(20px);
    opacity: 0;
  }
  51% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes moreArrowAnimation {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0;
  }
  51% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.l-mv {
  position: relative;
}

.l-mv__carousel {
  --CONTENT_WIDTH_MAX: 330px;
  display: grid;
  gap: 0 var(--OUTSIDE_GUTTER_SP);
  grid-template-columns: 1fr minmax(var(--CONTENT_WIDTH_MIN), var(--CONTENT_WIDTH_MAX)) 1fr;
}
@media screen and (width >= 768px) {
  .l-mv__carousel {
    --CONTENT_WIDTH_MAX: 710px;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__carousel {
    --CONTENT_WIDTH_MAX: 1184px;
  }
}

.l-mv__carousel-track {
  grid-column: 1/4;
}

.l-mv__carousel-thumbnail {
  display: block;
}

.l-mv__controller {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 100rem;
  display: flex;
  gap: 12px;
  grid-column: 2/3;
  padding: 6px 10px;
  position: absolute;
  z-index: var(--LAYER_FRONT);
}
@media screen and (width >= 768px) {
  .l-mv__controller {
    gap: 8px;
    padding: 8px;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__controller {
    gap: 16px;
    padding: 8px 16px;
  }
}

@media screen and (width >= 768px) {
  .l-mv__arrows {
    display: contents;
  }
}

.l-mv__arrows .l-mv__arrow {
  display: none;
  height: 16px;
  position: relative;
  top: 4px;
  width: 16px;
}
.l-mv__arrows .l-mv__arrow::after {
  background-color: var(--COLOR_WHITE);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
}
@media screen and (width >= 768px) {
  .l-mv__arrows .l-mv__arrow {
    display: block;
    height: 24px;
    top: 1px;
    width: 24px;
  }
  .l-mv__arrows .l-mv__arrow::after {
    height: 18px;
    width: 18px;
  }
}

.l-mv__arrows .l-mv__arrow-text {
  clip-path: inset(1px 1px 1px 1px);
  overflow: hidden;
  position: absolute;
  width: 0;
}

.l-mv__arrows .splide__arrow--prev {
  order: 1;
}
.l-mv__arrows .splide__arrow--prev::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.84033 0.396484L0.597508 5.63931C0.547521 5.6893 0.547521 5.77034 0.597508 5.82033L5.84033 11.0632' stroke='%230047A1' stroke-width='1.12'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.84033 0.396484L0.597508 5.63931C0.547521 5.6893 0.547521 5.77034 0.597508 5.82033L5.84033 11.0632' stroke='%230047A1' stroke-width='1.12'/%3E%3C/svg%3E%0A");
}

.l-mv__arrows .splide__arrow--next {
  order: 3;
}
.l-mv__arrows .splide__arrow--next::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.395996 0.396484L5.63882 5.63931C5.68881 5.6893 5.68881 5.77034 5.63882 5.82033L0.395996 11.0632' stroke='%230047A1' stroke-width='1.12'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='7' height='12' viewBox='0 0 7 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.395996 0.396484L5.63882 5.63931C5.68881 5.6893 5.68881 5.77034 5.63882 5.82033L0.395996 11.0632' stroke='%230047A1' stroke-width='1.12'/%3E%3C/svg%3E%0A");
}

.l-mv__pagination {
  gap: 15px;
  order: 2;
}

.l-mv__pagination .splide__pagination__page {
  background-color: var(--COLOR_WHITE);
  border-radius: 100rem;
  height: 12px;
  width: 12px;
}
@media screen and (width >= 1280px) {
  .l-mv__pagination .splide__pagination__page {
    height: 14px;
    width: 14px;
  }
}

.l-mv__pagination .splide__pagination__page.is-active {
  background-color: #0256BE;
  width: 28px;
}

.l-mv__toggle {
  background-color: #0256BE;
  border-radius: 100rem;
  order: 4;
  position: relative;
  height: 20px;
  width: 20px;
}
.l-mv__toggle::after {
  background-color: var(--COLOR_WHITE);
  -webkit-mask-image: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 15.1166V0.906255C1.5 0.512668 1.93369 0.273394 2.26664 0.483284L13.8126 7.76176C14.1277 7.96044 14.1227 8.42164 13.8033 8.61341L2.25737 15.5453C1.92411 15.7454 1.5 15.5053 1.5 15.1166Z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 15.1166V0.906255C1.5 0.512668 1.93369 0.273394 2.26664 0.483284L13.8126 7.76176C14.1277 7.96044 14.1227 8.42164 13.8033 8.61341L2.25737 15.5453C1.92411 15.7454 1.5 15.5053 1.5 15.1166Z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  display: inline-block;
  inset: 0;
  left: 1px;
  height: 8px;
  position: absolute;
  margin: auto;
  width: 7px;
}
@media screen and (width >= 1280px) {
  .l-mv__toggle {
    height: 24px;
    width: 24px;
  }
}

.l-mv__toggle.is-active::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1.45833' height='9.16667' fill='white'/%3E%3Crect x='5' width='1.45833' height='9.16667' fill='white'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1.45833' height='9.16667' fill='white'/%3E%3Crect x='5' width='1.45833' height='9.16667' fill='white'/%3E%3C/svg%3E%0A");
}

.l-mv__toggle-text {
  clip-path: inset(1px 1px 1px 1px);
  overflow: hidden;
  position: absolute;
  width: 0;
}

.l-mv__navigation {
  --CONTENT_WIDTH_MAX: 420px;
  display: grid;
  gap: 0 var(--OUTSIDE_GUTTER_SP);
  grid-template-columns: 1fr minmax(var(--CONTENT_WIDTH_MIN), var(--CONTENT_WIDTH_MAX)) 1fr;
  margin-block-start: -104px;
  position: relative;
  z-index: var(--LAYER_FRONT_SECOND);
}
@media screen and (width >= 768px) {
  .l-mv__navigation {
    --CONTENT_WIDTH_MAX: 864px;
    margin-block-start: -42px;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__navigation {
    --CONTENT_WIDTH_MAX: 1184px;
    margin-block-start: -75px;
  }
}

.l-mv__navigation-wrapper {
  background-color: var(--COLOR_WHITE);
  border-radius: 24px;
  box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.09);
  grid-column: 2/3;
  padding: 20px 30px;
}
@media screen and (width >= 768px) {
  .l-mv__navigation-wrapper {
    border-radius: 100rem;
    padding: 16px clamp(2.5rem, -1.809rem + 8.51vw, 5rem);
  }
}
@media screen and (width >= 1280px) {
  .l-mv__navigation-wrapper {
    padding: 16px 110px 24px 90px;
  }
}

.l-mv__navigation-inner {
  transition: max-height 0.3s ease;
}

.l-mv__navigation-inner .u-media-banner__content {
  margin-block-start: 0;
}
@media screen and (width >= 768px) {
  .l-mv__navigation-inner .u-media-banner__content {
    display: none !important;
  }
}

.l-mv__navigation-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
  padding-block-end: 16px;
}
@media screen and (max-width: 767px) {
  .l-mv__navigation-list.isOpen .l-mv__navigation-item {
    display: block;
  }
}
@media screen and (width >= 768px) {
  .l-mv__navigation-list {
    gap: 8px;
    display: flex;
    justify-content: center;
    padding-block-end: 0;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__navigation-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
}

.l-mv__navigation-item--cta .l-mv__navigation-link::before {
  background-color: #0256BE;
  border-radius: 100rem;
  content: "";
  display: block;
  height: 32px;
  margin: 19px 16px 16px;
  min-width: 32px;
}
.l-mv__navigation-item--cta .l-mv__navigation-link::after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='4.875' y1='11.875' x2='18.125' y2='11.875' stroke='white' stroke-width='1.75' stroke-linecap='square'/%3E%3Cpath d='M13.6412 17.6622L19.2981 12.0054L13.6412 6.34852' stroke='white' stroke-width='1.75' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  height: 24px;
  margin-block-start: 23px;
  min-width: 24px;
}
@media (any-hover: hover) {
  .l-mv__navigation-item--cta .l-mv__navigation-link:hover::after {
    animation: arrowAnimation 0.3s both;
  }
}
@media screen and (width >= 768px) {
  .l-mv__navigation-item--cta .l-mv__navigation-link {
    font-size: clamp(0.75rem, 0.375rem + 0.78vw, 1rem);
    margin-inline-start: clamp(0rem, -1.5rem + 3.13vw, 1rem);
  }
  .l-mv__navigation-item--cta .l-mv__navigation-link::before {
    height: 24px;
    margin: 12px;
    min-width: 24px;
  }
  .l-mv__navigation-item--cta .l-mv__navigation-link::after {
    background-size: contain;
    height: 18px;
    margin-block-start: 16px;
    min-width: 18px;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__navigation-item--cta .l-mv__navigation-link {
    margin-inline-start: 70px;
  }
  .l-mv__navigation-item--cta .l-mv__navigation-link::before {
    height: 32px;
    margin: 19px 16px 16px;
    min-width: 32px;
  }
  .l-mv__navigation-item--cta .l-mv__navigation-link::after {
    height: 24px;
    margin-block-start: 23px;
    min-width: 24px;
  }
}

@media screen and (width >= 768px) {
  .l-mv__navigation-item--cta .l-mv__navigation-main {
    font-size: clamp(0.75rem, 0.563rem + 0.39vw, 0.875rem);
  }
}
@media screen and (width >= 1280px) {
  .l-mv__navigation-item--cta .l-mv__navigation-main {
    font-size: 1rem;
  }
}

.l-mv__navigation-link {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 4px;
  text-align: center;
  transition: color 0.3s ease, opacity 0.3s ease;
}
@media screen and (width >= 768px) {
  .l-mv__navigation-link {
    min-width: 80px;
  }
}
@media (any-hover: hover) {
  .l-mv__navigation-link:hover {
    color: #009CE5;
  }
  .l-mv__navigation-link:hover .l-mv__navigation-icon, .l-mv__navigation-link:hover::before {
    opacity: 0.7;
  }
}

@media screen and (width >= 768px) {
  .l-mv__navigation-icon {
    width: 40px;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__navigation-icon {
    width: 64px;
  }
}

.l-mv__navigation-main {
  display: block;
  font-size: 0.875rem;
  margin-block: calc((1em - 1lh) / 2);
}
@media screen and (width >= 1280px) {
  .l-mv__navigation-main {
    font-size: 1rem;
  }
}

.l-mv__navigation-sub {
  font-size: 0.6875rem;
  margin-block: calc((1em - 1lh) / 2);
}
@media screen and (width >= 768px) {
  .l-mv__navigation-sub {
    font-size: 0.75rem;
    margin-block-start: 2px;
  }
}

.l-mv__navigation-button {
  border-top: 1px solid var(--COLOR_GRAY_10);
  color: transparent;
  display: block;
  margin-top: 16px;
  position: relative;
  width: 100%;
  z-index: 5;
}
.l-mv__navigation-button::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  background: url(/shared/img/icon-read-more.svg) no-repeat center/cover;
}
.l-mv__navigation-button[aria-expanded=true]::after {
  transform: rotate(180deg);
}
@media screen and (width >= 768px) {
  .l-mv__navigation-button {
    display: none;
  }
}

.l-mv__utility {
  display: none;
  gap: 0 var(--OUTSIDE_GUTTER_SP);
  grid-template-columns: 1fr minmax(var(--CONTENT_WIDTH_MIN), var(--CONTENT_WIDTH_MAX)) 1fr;
  margin-block: 32px;
  pointer-events: none;
}
.l-mv__utility:last-child {
  display: grid;
}
@media screen and (width >= 1280px) {
  .l-mv__utility {
    display: grid;
    position: absolute;
    right: 0;
    top: 0;
    margin-block: 49px;
    width: 100%;
  }
  .l-mv__utility:last-child {
    display: none;
  }
}

.l-mv__utility-inner {
  display: grid;
  gap: 20px;
  grid-column: 2/3;
  margin-inline: auto;
  max-width: 420px;
  pointer-events: auto;
  width: 100%;
}
@media screen and (width >= 768px) {
  .l-mv__utility-inner {
    gap: 16px 14px;
    grid-template-areas: "conversion emphasis" "login support";
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__utility-inner {
    background-color: var(--COLOR_BLUE_70);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-inline-start: auto;
    margin-inline-end: initial;
    max-width: 358px;
    padding: 35px 24px 40px;
  }
}

.l-mv__utility-inner .u-button-conversion {
  justify-content: center;
  gap: clamp(1rem, -2.817rem + 16.28vw, 5rem);
  max-width: unset;
  padding: 14px 24px;
  width: 100%;
}
@media screen and (width >= 768px) {
  .l-mv__utility-inner .u-button-conversion {
    grid-area: conversion;
    justify-content: normal;
    gap: 24px;
    padding-inline: 40px !important;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__utility-inner .u-button-conversion {
    grid-area: unset;
    padding-inline: 24px !important;
  }
}

.l-mv__utility-inner .u-button-icon {
  padding: 12px 24px;
}
@media screen and (width >= 768px) {
  .l-mv__utility-inner .u-button-icon {
    padding: 24px;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__utility-inner .u-button-icon {
    padding: 12px 24px;
  }
}

@media screen and (width >= 768px) {
  .l-mv__utility-inner .u-button-icon--login {
    grid-area: login;
  }
}

@media screen and (width >= 768px) {
  .l-mv__utility-inner .u-button-icon--support {
    grid-area: support;
  }
}

@media screen and (width >= 1280px) {
  .l-mv__utility-inner .u-button-icon--login,
  .l-mv__utility-inner .u-button-icon--support {
    border-radius: 16px;
    font-size: 0.875rem;
    font-feature-settings: "palt" on;
    grid-area: unset;
    gap: 4px;
    line-height: var(--LINE_HEIGHT_MIDDLE);
    padding: 12px 24px;
  }
}

.l-mv__utility-inner .u-button-icon--emphasis {
  gap: 16px;
  justify-content: center;
  padding: 16px 24px;
}
@media screen and (width >= 768px) {
  .l-mv__utility-inner .u-button-icon--emphasis {
    grid-area: emphasis;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__utility-inner .u-button-icon--emphasis {
    color: #003C7C;
    background-color: var(--COLOR_WHITE);
    font-feature-settings: "palt" on;
    grid-area: unset;
    justify-content: flex-start;
    padding: 15px 24px 15px 20px;
  }
  .l-mv__utility-inner .u-button-icon--emphasis::before {
    background-color: var(--COLOR_BLUE_80);
  }
}
@media screen and (width >= 1280px) and (any-hover: hover) {
  .l-mv__utility-inner .u-button-icon--emphasis:hover {
    background-color: #F5F5F5;
  }
}

@media screen and (width >= 768px) {
  .l-mv__utility-head,
  .l-mv__utility-body {
    display: contents;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__utility-head,
  .l-mv__utility-body {
    display: block;
  }
}

@media screen and (width >= 1280px) {
  .l-mv__utility-head {
    padding-block-end: 24px;
  }
}

@media screen and (width >= 1280px) {
  .l-mv__utility-body {
    border-top: 1px solid var(--COLOR_BLUE_80);
    padding-block-start: 16px;
  }
}

.l-mv__utility-title {
  display: none;
}
@media screen and (width >= 1280px) {
  .l-mv__utility-title {
    color: var(--COLOR_WHITE);
    display: block;
    font-size: 1rem;
    text-align: center;
  }
  .l-mv__utility-title + * {
    margin-block-start: 18px;
  }
}

.l-mv__utility-buttons {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  margin-block-start: 20px;
}
@media screen and (width >= 768px) {
  .l-mv__utility-buttons {
    display: contents;
  }
}
@media screen and (width >= 1280px) {
  .l-mv__utility-buttons {
    display: grid;
  }
}

.l-mv__info {
  background: url("/img/renewal/bg-index-info.png") no-repeat center/cover;
  display: grid;
  gap: 0 var(--OUTSIDE_GUTTER_SP);
  grid-template-columns: 1fr minmax(var(--CONTENT_WIDTH_MIN), var(--CONTENT_WIDTH_MAX)) 1fr;
  padding-block: 92px 168px;
}

.l-mv__info-inner {
  grid-column: 2/3;
}

.l-mv__info-title,
.l-mv__info-lead,
.l-mv__info-text {
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.l-mv__info-title {
  font-weight: var(--FONT_BOLD);
}
@media screen and (width >= 768px) {
  .l-mv__info-title {
    font-size: 2.5rem;
  }
}

.l-mv__info-lead {
  font-weight: var(--FONT_SEMI_BOLD);
  margin-block-start: 16px;
}
@media screen and (width >= 768px) {
  .l-mv__info-lead {
    font-size: 1.5rem;
    margin-block-start: 32px;
  }
}

.l-mv__info-text {
  font-size: 0.875rem;
  font-weight: var(--FONT_SEMI_BOLD);
  margin-block-start: 12px;
}
@media screen and (width >= 768px) {
  .l-mv__info-text {
    font-size: 1rem;
    margin-block-start: 24px;
  }
}

.l-mv__info-button {
  display: flex;
  justify-content: center;
  margin-block-start: 24px;
}
@media screen and (width >= 768px) {
  .l-mv__info-button {
    margin-block-start: 48px;
  }
}

.l-mv.l-mv--top .l-mv__controller {
  bottom: 135px;
}
@media screen and (width >= 768px) {
  .l-mv.l-mv--top .l-mv__controller {
    bottom: 20%;
    left: 0;
  }
}
@media screen and (width >= 1280px) {
  .l-mv.l-mv--top .l-mv__controller {
    bottom: 130px;
    left: 8px;
  }
}

@media screen and (width >= 390px) {
  .l-mv.l-mv--top .l-mv__carousel-thumbnail,
  .l-mv.l-mv--top .l-mv__carousel-link {
    display: block;
    min-width: fit-content;
    object-fit: cover;
    height: 432px;
    transform: translateX(-50%);
    right: -50%;
    position: relative;
    max-width: 1920px;
    width: 100%;
  }
}
@media screen and (width >= 768px) {
  .l-mv.l-mv--top .l-mv__carousel-thumbnail,
  .l-mv.l-mv--top .l-mv__carousel-link {
    height: 378px;
  }
}
@media screen and (width >= 1280px) {
  .l-mv.l-mv--top .l-mv__carousel-thumbnail,
  .l-mv.l-mv--top .l-mv__carousel-link {
    height: 615px;
  }
}

.l-mv.l-mv--company .l-mv__carousel {
  --CONTENT_WIDTH_MAX: 682px;
}
@media screen and (width >= 1280px) {
  .l-mv.l-mv--company .l-mv__carousel {
    --CONTENT_WIDTH_MAX: 1184px;
  }
}

.l-mv.l-mv--company .l-mv__carousel-thumbnail,
.l-mv.l-mv--company .l-mv__carousel-link {
  width: 100%;
}
@media screen and (width >= 768px) {
  .l-mv.l-mv--company .l-mv__carousel-thumbnail,
  .l-mv.l-mv--company .l-mv__carousel-link {
    width: auto;
  }
}
@media screen and (width >= 1280px) {
  .l-mv.l-mv--company .l-mv__carousel-thumbnail,
  .l-mv.l-mv--company .l-mv__carousel-link {
    display: block;
    min-width: fit-content;
    object-fit: cover;
    height: 615px;
    transform: translateX(-50%);
    right: -50%;
    position: relative;
    max-width: 1920px;
  }
}

.l-mv.l-mv--company .l-mv__controller {
  bottom: 60px;
  left: 0;
}

.l-section-top {
  display: grid;
  gap: 0 var(--OUTSIDE_GUTTER_SP);
  grid-template-columns: 1fr minmax(var(--CONTENT_WIDTH_MIN), var(--CONTENT_WIDTH_MAX)) 1fr;
}

.l-section-top--blue {
  color: var(--COLOR_WHITE);
  background-color: var(--COLOR_BLUE_50);
}

.l-section-top--blue-light {
  background-color: #D6F4FF;
}

.l-section-top--reason {
  --CONTENT_WIDTH_MAX: 722px;
  position: relative;
}
@media screen and (width >= 1280px) {
  .l-section-top--reason {
    --CONTENT_WIDTH_MAX: 1184px;
  }
}

.l-section-top--reason__bg {
  border-radius: 100rem;
  background-color: #D6F4FF;
  content: "";
  height: 610px;
  opacity: 0.3;
  position: absolute;
  transition: transform 0s cubic-bezier(0, 0, 0.19, 1.02) 0s;
  transition-duration: 1s;
  width: 1109px;
  z-index: var(--LAYER_BEHIND);
}
.l-section-top--reason__bg:first-child {
  top: 11%;
  right: 42%;
}
.l-section-top--reason__bg:last-child {
  top: 40%;
  left: 20%;
}
@media screen and (width >= 768px) {
  .l-section-top--reason__bg {
    height: 1090px;
    width: 1770px;
  }
  .l-section-top--reason__bg:first-child {
    top: 1%;
    right: 16%;
  }
  .l-section-top--reason__bg:last-child {
    top: unset;
    bottom: 0%;
    left: 5%;
  }
}
@media screen and (width >= 1280px) {
  .l-section-top--reason__bg {
    height: 1090.098px;
    width: 1770.737px;
  }
  .l-section-top--reason__bg:first-child {
    top: 3%;
    right: 31vw;
  }
  .l-section-top--reason__bg:last-child {
    bottom: 14%;
    left: 23vw;
  }
}

.l-section-top--search {
  --CONTENT_WIDTH_MAX: 730px;
}
@media screen and (width >= 1280px) {
  .l-section-top--search {
    --CONTENT_WIDTH_MAX: 1184px;
  }
}

.l-section-top--cta {
  --CONTENT_WIDTH_MAX: 722px;
}
@media screen and (width >= 1280px) {
  .l-section-top--cta {
    --CONTENT_WIDTH_MAX: 1184px;
  }
}

.l-section-top--terms {
  --CONTENT_WIDTH_MAX: 1184px;
  background: rgba(237, 237, 237, 0.5);
}

.l-section-top--bg-img {
  background: url("/company/img/renewal/bg-index-01.png") no-repeat center/cover;
}

.l-section-top--bg-img .l-section-top__inner {
  background-color: var(--COLOR_WHITE);
  border-radius: 24px;
  padding: 40px 16px;
}
@media screen and (width >= 768px) {
  .l-section-top--bg-img .l-section-top__inner {
    padding: 40px 80px;
  }
}
@media screen and (width >= 1280px) {
  .l-section-top--bg-img .l-section-top__inner {
    padding: 64px;
  }
}

.l-section-top--wide .l-section-top__inner {
  grid-column: 1/4;
}

.l-section-top__inner {
  grid-column: 2/3;
}
.l-section-top__inner > :first-child {
  margin-block-start: 0 !important;
}
.l-section-top__inner > :last-child {
  margin-block-end: 0 !important;
}

.u-tabPanel-news__list {
  border-bottom: 1px solid var(--COLOR_GRAY_10);
  display: flex;
  gap: 16px;
}

.u-tabPanel-news__item {
  flex: 1 0 0;
}

.u-tabPanel-news__tab {
  display: block;
  flex: 1 0 0;
  padding-block: 12px;
  position: relative;
  text-align: center;
}
.u-tabPanel-news__tab::after {
  background-color: var(--COLOR_BLUE_50);
  bottom: 0;
  display: block;
  height: 3px;
  position: absolute;
  width: 100%;
}
.u-tabPanel-news__tab[aria-selected=true] {
  cursor: default;
}
.u-tabPanel-news__tab[aria-selected=true]::after {
  content: "";
}
@media (any-hover: hover) {
  .u-tabPanel-news__tab:not([aria-selected=true]):hover .u-tabPanel-news__title {
    opacity: 0.5;
  }
}
@media screen and (width >= 768px) {
  .u-tabPanel-news__tab {
    font-size: 1rem;
    padding-block: 12px 19px;
  }
}
@media screen and (width >= 1280px) {
  .u-tabPanel-news__tab {
    font-size: 1.5rem;
  }
}

.u-tabPanel-news__title {
  color: var(--COLOR_BLUE_90);
  font-size: 1rem;
  font-weight: var(--FONT_BOLD);
  transition: opacity 0.3s ease;
}
@media screen and (width >= 1280px) {
  .u-tabPanel-news__title {
    font-size: 1.25rem;
  }
}

.u-tabPanel-news__title--pc-wide {
  display: none;
  font-size: 1.25rem;
  padding-block: 0;
  padding-inline-start: 30px;
  position: relative;
  text-align: left;
}
.u-tabPanel-news__title--pc-wide::after {
  background-color: var(--COLOR_BLUE_50);
  border-radius: 100rem;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  height: 32px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 6px;
}
@media screen and (width >= 1280px) {
  .u-tabPanel-news__title--pc-wide {
    display: block;
  }
}

.u-tabPanel-news__container {
  margin-block-start: 40px;
}
.u-tabPanel-news__container > :first-child {
  margin-block-start: 0;
}
.u-tabPanel-news__container > :last-child {
  margin-block-end: 0;
}
@media screen and (width >= 768px) {
  .u-tabPanel-news__container {
    margin-block-start: 32px;
  }
}
@media screen and (width >= 1280px) {
  .u-tabPanel-news__container {
    margin-block-start: 48px;
  }
}

@media screen and (width >= 1280px) {
  .u-tabPanel-news.u-tabPanel--to-columns {
    column-gap: 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
  }
}

@media screen and (width >= 1280px) {
  .u-tabPanel-news.u-tabPanel--to-columns :is(.u-tabPanel-news__control, .u-tabPanel-news__list, .u-tabPanel-news__item) {
    display: contents;
  }
}

@media screen and (width >= 1280px) {
  .u-tabPanel-news.u-tabPanel--to-columns .u-tabPanel-news__tab {
    display: none;
  }
}

.u-tabPanel-news.u-tabPanel--to-columns .u-tabPanel-news__container {
  margin-block-start: 24px;
}
@media screen and (width >= 768px) {
  .u-tabPanel-news.u-tabPanel--to-columns .u-tabPanel-news__container {
    margin-block-start: 32px;
  }
}

@media screen and (width >= 1280px) {
  .u-tabPanel-news .u-list-news {
    gap: 40px;
  }
}

.u-tabPanel-news .u-list-news__item {
  border-bottom: 0;
  padding-block-end: 0;
}

@media screen and (width >= 1280px) {
  .u-tabPanel-news.u-tabPanel--to-columns .u-list-news {
    gap: 16px;
  }
}

@media screen and (width >= 1280px) {
  .u-tabPanel-news.u-tabPanel--to-columns .u-list-news__item {
    border-bottom: 1px solid var(--COLOR_GRAY_20);
    padding-block-end: 16px;
  }
}
.u-tabPanel-news.u-tabPanel--to-columns .u-list-news__item:last-child {
  border-bottom: 0;
}

@media screen and (width >= 1280px) {
  .u-tabPanel-news.u-tabPanel--to-columns .u-list-news__text {
    font-size: 0.875rem;
  }
}

.u-tabPanel-news.u-tabPanel--to-columns + .u-link-list {
  margin-block-start: 40px;
}
@media screen and (width >= 768px) {
  .u-tabPanel-news.u-tabPanel--to-columns + .u-link-list {
    margin-block-start: 32px;
  }
}

.u-panel-box {
  display: grid;
  gap: 16px;
  grid-template-areas: "first" "second" "third";
}
@media screen and (width <= 767px) {
  .u-panel-box {
    justify-content: center;
  }
}
@media screen and (width >= 768px) {
  .u-panel-box {
    grid-template-areas: "first first" "second third";
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (width >= 1280px) {
  .u-panel-box {
    grid-template-areas: "first second" "first third";
  }
}

.u-panel-box__item {
  border: 1px solid var(--COLOR_GRAY_30);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 36px 30px 17px;
}
.u-panel-box__item:first-child {
  grid-area: first;
}
.u-panel-box__item:nth-child(2) {
  grid-area: second;
}
.u-panel-box__item:last-child {
  grid-area: third;
}
@media screen and (width <= 767px) {
  .u-panel-box__item {
    max-width: 420px;
  }
}
@media screen and (width >= 768px) {
  .u-panel-box__item {
    gap: 16px;
    padding: 16px 40px;
  }
  .u-panel-box__item:is(:nth-child(2), :last-child) .u-panel-box__link {
    font-size: 0.875rem;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-box__item {
    border: none;
    box-shadow: 0 4px 20px 0 #DDE0E3;
    gap: 44px;
    padding: 30px 40px;
  }
  .u-panel-box__item:first-child {
    padding: 32px 54px 32px;
  }
  .u-panel-box__item:is(:nth-child(2), :last-child) .u-panel-box__link {
    font-size: 1.125rem;
  }
}

.u-panel-box__item.u-panel-box__item--narrow {
  padding: 0;
}

.u-panel-box__link {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  transition: opacity 0.3s ease;
}
.u-panel-box__link::before {
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='14' viewBox='0 0 17 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.875' y1='6.76367' x2='14.125' y2='6.76367' stroke='white' stroke-width='1.75' stroke-linecap='square'/%3E%3Cpath d='M9.64123 12.5514L15.2981 6.89453L9.64123 1.23768' stroke='white' stroke-width='1.75' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  right: 5px;
  height: 24px;
  margin-block-start: 2px;
  min-width: 24px;
}
.u-panel-box__link::after {
  background-color: var(--COLOR_BLUE_50);
  border-radius: 100rem;
  content: "";
  display: block;
  max-width: 36px;
  height: 36px;
  width: 100%;
}
@media (any-hover: hover) {
  .u-panel-box__link:hover {
    opacity: 0.5;
  }
  .u-panel-box__link:hover::before {
    animation: arrowAnimation 0.3s both;
  }
}
@media screen and (width >= 768px) {
  .u-panel-box__link {
    font-size: 1.125rem;
  }
  .u-panel-box__link::before {
    right: 3px;
  }
  .u-panel-box__link::after {
    height: 32px;
    max-width: 32px;
  }
}

.u-panel-box__item.u-panel-box__item--narrow .u-panel-box__link {
  flex: 1;
  padding: 16px 40px;
}
.u-panel-box__item.u-panel-box__item--narrow .u-panel-box__link::before {
  right: 43px;
}

.u-panel-box__content {
  margin-block-start: 16px;
}

.u-panel-box__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.u-panel-box__links-item {
  border-bottom: 1px solid var(--COLOR_GRAY_20);
  padding-block-end: 16px;
}
.u-panel-box__links-item:last-child {
  border-bottom: none;
}

.u-panel-box__links-link {
  align-items: center;
  display: flex;
  gap: 16px;
  line-height: 24px;
  transition: opacity 0.3s ease;
}
.u-panel-box__links-link::before {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='18' viewBox='0 0 10 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.618652 0.619141L8.47723 8.47772C8.55534 8.55582 8.55534 8.68246 8.47723 8.76056L0.618652 16.6191' stroke='%23009CE5' stroke-width='1.75'/%3E%3C/svg%3E%0A");
  background-size: cover;
  content: "";
  display: block;
  height: 12px;
  min-width: 7px;
}
@media (any-hover: hover) {
  .u-panel-box__links-link:hover {
    opacity: 0.5;
  }
}
@media screen and (width >= 768px) {
  .u-panel-box__links-link::before {
    height: 16px;
    width: 8px;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-box__links-link {
    font-size: 1rem;
  }
}

.u-company-layout {
  display: grid;
  gap: 64px;
}
@media screen and (width >= 1280px) {
  .u-company-layout {
    gap: 32px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto repeat(3, auto) auto;
  }
}

@media screen and (width >= 1280px) {
  .u-company-layout__item {
    display: grid;
    grid-row: 1/-1;
    grid-template-rows: subgrid;
    gap: 0;
  }
}

@media screen and (width >= 1280px) {
  .u-company-layout .u-list-news {
    margin-block-start: 48px;
    grid-row: 2/5;
    grid-template-rows: subgrid;
    row-gap: 0;
  }
}

@media screen and (width >= 1280px) {
  .u-company-layout .u-list-news__item {
    padding-block: 16px;
  }
  .u-company-layout .u-list-news__item:first-child {
    padding-block-start: 0;
  }
}

@media screen and (width >= 1280px) {
  .u-company-layout .u-list-news__link {
    height: 100%;
  }
}

.u-company-layout .u-button-layout {
  align-self: start;
  grid-row: 5;
}

.u-list-news {
  display: grid;
  row-gap: 24px;
  margin-block-start: 24px;
}
@media screen and (width >= 768px) {
  .u-list-news {
    row-gap: 20px;
  }
}
@media screen and (width >= 1280px) {
  .u-list-news {
    row-gap: 16px;
    margin-block-start: 48px;
  }
}

@media screen and (width >= 1280px) {
  .u-list-news:not(:has(.u-list-news__head)) {
    row-gap: 16px;
  }
}

.u-list-news__item {
  border-bottom: 1px solid var(--COLOR_GRAY_20);
  padding-block-end: 16px;
  overflow: hidden;
}

.u-list-news__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.u-list-news__link:focus-visible {
  outline: 0px !important;
  border: 2px solid #ABE9FF;
}
@media (any-hover: hover) {
  .u-list-news__link:hover .u-list-news__text {
    opacity: 0.5;
  }
}
@media screen and (width >= 1280px) {
  .u-list-news__link {
    gap: 14px;
  }
}

.u-list-news__head {
  align-items: center;
  display: flex;
  gap: 12px;
}
@media screen and (width >= 768px) {
  .u-list-news__head {
    gap: 16px;
  }
}

.u-list-news__body {
  align-items: center;
  display: flex;
}

@media screen and (width >= 1280px) {
  .u-list-news__body .m-icon {
    height: auto;
    min-width: 24px;
    top: 0.3em;
    width: 24px;
  }
}

.u-list-news__date {
  color: var(--COLOR_GRAY_80);
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (width >= 1280px) {
  .u-list-news__date {
    font-size: 1rem;
  }
}

.u-list-news__tag {
  border: 1px solid var(--COLOR_BLUE_50);
  border-radius: 100rem;
  color: #0062C0;
  font-size: 0.75rem;
  line-height: 1;
  min-width: 128px;
  padding: 8px;
  text-align: center;
}

.u-list-news__text {
  color: var(--COLOR_BLUE_90);
  font-size: 0.875rem;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}
@media screen and (width >= 768px) {
  .u-list-news__text {
    line-height: 26px;
  }
}
@media screen and (width >= 1280px) {
  .u-list-news__text {
    font-size: 1rem;
  }
}

.u-list-news:not(:has(.u-list-news__head)) .u-list-news__body > .m-icon {
  display: none;
}
@media screen and (width >= 1280px) {
  .u-list-news:not(:has(.u-list-news__head)) .u-list-news__body > .m-icon {
    display: inline-block;
    top: 0;
  }
}

@media screen and (width >= 1280px) {
  .u-list-news:not(:has(.u-list-news__head)) .u-list-news__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .u-list-news:not(:has(.u-list-news__head)) .u-list-news__text > .m-icon {
    display: none;
  }
}

.u-button-layout {
  display: grid;
  gap: 24px;
  margin-block-start: 40px;
}
@media screen and (width >= 768px) {
  .u-button-layout {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-block-start: 32px;
  }
}
@media screen and (width >= 1280px) {
  .u-button-layout {
    margin-block-start: 48px;
  }
}

.u-button-layout__item {
  flex: 1;
}

@media screen and (width >= 768px) {
  .u-button-layout--column {
    display: grid;
    grid-template-columns: repeat(2, max-content);
  }
}

.l-section-top--wide .u-button-layout {
  margin-inline: 24px;
}
@media screen and (width >= 768px) {
  .l-section-top--wide .u-button-layout {
    margin-block-start: 40px;
  }
}

.u-button {
  align-items: center;
  background-color: var(--COLOR_WHITE);
  border: 2px solid var(--COLOR_BLUE_50);
  border-radius: 20px;
  color: #0062C0;
  display: flex;
  font-size: 1rem;
  font-feature-settings: "palt" on;
  font-weight: var(--FONT_SEMI_BOLD);
  gap: 4px;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 300px;
  min-width: 246px;
  padding: 20px 24px;
  transition: background-color 0.3s ease;
  width: 100%;
}
.u-button::after {
  background-color: #0062C0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='22' height='19' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.16667' y1='9.01888' x2='18.8333' y2='9.01888' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square'/%3E%3Cpath d='M12.855 16.7349L20.3974 9.19238L12.855 1.64991' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='22' height='19' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.16667' y1='9.01888' x2='18.8333' y2='9.01888' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square'/%3E%3Cpath d='M12.855 16.7349L20.3974 9.19238L12.855 1.64991' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  display: block;
  height: 16px;
  min-width: 18px;
}
@media (any-hover: hover) {
  .u-button:hover {
    background-color: #F5F5F5;
  }
  .u-button:hover::after {
    animation: arrowAnimation 0.3s both;
  }
}
@media screen and (width >= 768px) {
  .u-button {
    font-size: 1.125rem;
    gap: 24px;
    max-width: fit-content;
    padding: 16px 32px;
  }
}
@media screen and (width >= 1280px) {
  .u-button {
    font-size: 1.125rem;
    padding: 16px 32px;
  }
}

.u-button--fit {
  max-width: fit-content;
}

.u-button.u-button--emphasis {
  background-color: var(--COLOR_BLUE_70);
  border-color: var(--COLOR_BLUE_80);
  color: var(--COLOR_WHITE);
  font-feature-settings: "palt" on;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.64px;
  margin-inline: auto;
  padding: 16px 24px;
}
@media (any-hover: hover) {
  .u-button.u-button--emphasis:hover {
    background-color: var(--COLOR_BLUE_80);
  }
}
.u-button.u-button--emphasis:focus-visible {
  background-color: var(--COLOR_BLUE_80);
}
.u-button.u-button--emphasis:active {
  background-color: var(--COLOR_BLUE_80);
}
.u-button.u-button--emphasis::after {
  background-color: var(--COLOR_WHITE);
}
@media screen and (width >= 768px) {
  .u-button.u-button--emphasis {
    font-size: 1rem;
    margin-inline: 0;
    padding: 18px 24px;
  }
}

.u-button.u-button--more {
  font-size: 1.125rem;
  font-feature-settings: normal;
  gap: 24px;
  margin-block-start: 16px;
  min-width: unset;
  padding: 16px 32px;
  width: fit-content;
}
.u-button.u-button--more::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.4856 0.353516L5.00011 4.83901C4.95553 4.88359 4.88325 4.88359 4.83867 4.83901L0.353175 0.353516' stroke='white' stroke-width='0.998859'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.4856 0.353516L5.00011 4.83901C4.95553 4.88359 4.88325 4.88359 4.83867 4.83901L0.353175 0.353516' stroke='white' stroke-width='0.998859'/%3E%3C/svg%3E%0A");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  height: 11px;
  min-width: 20px;
}
.u-button.u-button--more[aria-expanded=true]::after {
  rotate: 180deg;
}
@media (any-hover: hover) {
  .u-button.u-button--more:hover::after {
    animation: moreArrowAnimation 0.3s both;
  }
}
.u-button.u-button--more:focus-visible::after {
  animation: moreArrowAnimation 0.3s both;
}
.u-button.u-button--more:active::after {
  animation: moreArrowAnimation 0.3s both;
}

.u-button-conversion {
  align-items: center;
  background-color: var(--COLOR_ACCENT);
  border: 2px solid #FFC737;
  border-radius: 20px;
  color: #1C1200;
  display: grid;
  font-weight: var(--FONT_SEMI_BOLD);
  font-feature-settings: "palt" on;
  justify-content: space-between;
  line-height: var(--LINE_HEIGHT_MIDDLE);
  grid-template-areas: "text icon";
  grid-template-columns: auto 40px;
  max-width: 300px;
  margin-inline: auto;
  padding: 10px 24px;
  position: relative;
  transition: background 0.3s ease;
}
.u-button-conversion::before, .u-button-conversion::after {
  content: "";
  display: block;
  grid-area: icon;
  height: 40px;
  min-width: 40px;
  width: 40px;
}
.u-button-conversion::before {
  background-color: #0075CB;
  border-radius: 100rem;
}
.u-button-conversion::after {
  background-color: var(--COLOR_WHITE);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cline x1='6.49992' y1='15.8333' x2='24.1666' y2='15.8333' stroke='white' stroke-width='2.33333' stroke-linecap='square'/%3E%3Cpath d='M18.1882 23.5498L25.7307 16.0073L18.1882 8.46485' stroke='white' stroke-width='2.33333' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: cover;
  mask-repeat: no-repeat;
  position: absolute;
  scale: 0.7;
}
@media (any-hover: hover) {
  .u-button-conversion:hover {
    background: #FEE4A0;
  }
  .u-button-conversion:hover::after {
    animation: arrowAnimation 0.3s both;
  }
}
@media screen and (width >= 768px) {
  .u-button-conversion {
    gap: 24px;
    max-width: fit-content;
  }
}

.u-button-conversion:has(.u-button-conversion__sub) {
  padding: 12px 24px;
}
@media screen and (width >= 768px) {
  .u-button-conversion:has(.u-button-conversion__sub) .u-button-conversion__main {
    font-size: clamp(0.875rem, 0.688rem + 0.39vw, 1rem);
  }
}

.u-button-conversion__inner {
  grid-area: text;
}

.u-button-conversion__main {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.64px;
}

.u-button-conversion__sub {
  font-size: 0.875rem;
  letter-spacing: 0.56px;
}

.u-button-icon {
  align-items: center;
  background-color: var(--COLOR_WHITE);
  border: 1px solid var(--COLOR_BLUE_80);
  border-radius: 20px;
  color: #003C7C;
  display: flex;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: var(--FONT_SEMI_BOLD);
  line-height: var(--LINE_HEIGHT_MIDDLE);
  justify-content: center;
  max-width: 420px;
  padding: 16px 24px;
  transition: background-color 0.3s ease;
}
.u-button-icon::before {
  background-color: var(--COLOR_BLUE_80);
  content: "";
  height: 24px;
  mask-size: cover;
  mask-repeat: no-repeat;
  min-width: 24px;
}
.u-button-icon:focus-visible {
  outline: 2.944px solid #ABE9FF;
  box-shadow: 0 0 0 2.944px #ABE9FF;
  border: 1px solid #ABE9FF;
}
@media (any-hover: hover) {
  .u-button-icon:hover {
    background-color: #F5F5F5;
  }
}
@media screen and (width >= 768px) {
  .u-button-icon {
    justify-content: center;
    padding: 23px;
  }
}
@media screen and (width >= 1280px) {
  .u-button-icon {
    padding: 12px 21px;
  }
}

.u-button-icon--emphasis {
  background-color: var(--COLOR_BLUE_70);
  border: 2px solid var(--COLOR_BLUE_80);
  color: var(--COLOR_WHITE);
  font-size: 0.875rem;
  justify-content: flex-start;
  gap: 40px;
}
.u-button-icon--emphasis::before {
  background-color: var(--COLOR_WHITE);
  content: "";
  height: 32px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4301_125894)'%3E%3Cpath d='M10.2679 4C11.0377 2.66667 12.9623 2.66667 13.7321 4L21.5263 17.5C22.2961 18.8333 21.3338 20.5 19.7942 20.5H4.20577C2.66617 20.5 1.70392 18.8333 2.47372 17.5L10.2679 4Z' stroke='%230047A1' stroke-width='1.75'/%3E%3Ccircle cx='12' cy='17' r='1' fill='%230047A1'/%3E%3Cline x1='12.0254' y1='14' x2='12.0254' y2='8' stroke='%230047A1' stroke-width='1.75'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4301_125894'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4301_125894)'%3E%3Cpath d='M10.2679 4C11.0377 2.66667 12.9623 2.66667 13.7321 4L21.5263 17.5C22.2961 18.8333 21.3338 20.5 19.7942 20.5H4.20577C2.66617 20.5 1.70392 18.8333 2.47372 17.5L10.2679 4Z' stroke='%230047A1' stroke-width='1.75'/%3E%3Ccircle cx='12' cy='17' r='1' fill='%230047A1'/%3E%3Cline x1='12.0254' y1='14' x2='12.0254' y2='8' stroke='%230047A1' stroke-width='1.75'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4301_125894'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  min-width: 32px;
}
@media (any-hover: hover) {
  .u-button-icon--emphasis:hover {
    background-color: #0047A1;
  }
}
@media screen and (width >= 768px) {
  .u-button-icon--emphasis {
    padding: 12px 24px;
    gap: 16px;
  }
}

.u-button-icon--emphasis .u-button-icon__main {
  display: block;
  font-size: 1rem;
}
@media screen and (width >= 768px) {
  .u-button-icon--emphasis .u-button-icon__main {
    font-size: clamp(0.875rem, 0.688rem + 0.39vw, 1rem);
  }
}

.u-button-icon--emphasis .u-button-icon__sub {
  font-size: 0.875rem;
}

.u-button-icon--login::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4301_125886)'%3E%3Cpath d='M5.6419 18.3639C6.90057 19.6225 8.50422 20.4797 10.25 20.827C11.9959 21.1742 13.8055 20.996 15.45 20.3148C17.0945 19.6336 18.5002 18.4801 19.4891 17C20.478 15.52 21.0059 13.7799 21.0059 11.9999C21.0059 10.2199 20.478 8.4798 19.4891 6.99976C18.5002 5.51972 17.0945 4.36617 15.45 3.68498C13.8055 3.00379 11.9959 2.82556 10.25 3.17283C8.50422 3.52009 6.90057 4.37726 5.6419 5.63593' stroke='%230047A1' stroke-width='1.75'/%3E%3Cpath d='M9.35059 7.55005L13.645 11.8445C13.7309 11.9304 13.7309 12.0697 13.645 12.1556L9.35059 16.45' stroke='%230047A1' stroke-width='1.75'/%3E%3Cpath d='M2.00049 12H13.2505' stroke='%230047A1' stroke-width='1.75'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4301_125886'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4301_125886)'%3E%3Cpath d='M5.6419 18.3639C6.90057 19.6225 8.50422 20.4797 10.25 20.827C11.9959 21.1742 13.8055 20.996 15.45 20.3148C17.0945 19.6336 18.5002 18.4801 19.4891 17C20.478 15.52 21.0059 13.7799 21.0059 11.9999C21.0059 10.2199 20.478 8.4798 19.4891 6.99976C18.5002 5.51972 17.0945 4.36617 15.45 3.68498C13.8055 3.00379 11.9959 2.82556 10.25 3.17283C8.50422 3.52009 6.90057 4.37726 5.6419 5.63593' stroke='%230047A1' stroke-width='1.75'/%3E%3Cpath d='M9.35059 7.55005L13.645 11.8445C13.7309 11.9304 13.7309 12.0697 13.645 12.1556L9.35059 16.45' stroke='%230047A1' stroke-width='1.75'/%3E%3Cpath d='M2.00049 12H13.2505' stroke='%230047A1' stroke-width='1.75'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4301_125886'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.u-button-icon--support::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%230047A1' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='18' r='1' fill='%230047A1'/%3E%3Cpath d='M9 9.5C9 7.84315 10.3431 6.5 12 6.5C13.6569 6.5 15 7.84315 15 9.5C15 10.813 14.1565 11.9289 12.9819 12.3356C12.46 12.5163 12 12.9477 12 13.5V15' stroke='%230047A1' stroke-width='1.75'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z' stroke='%230047A1' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='18' r='1' fill='%230047A1'/%3E%3Cpath d='M9 9.5C9 7.84315 10.3431 6.5 12 6.5C13.6569 6.5 15 7.84315 15 9.5C15 10.813 14.1565 11.9289 12.9819 12.3356C12.46 12.5163 12 12.9477 12 13.5V15' stroke='%230047A1' stroke-width='1.75'/%3E%3C/svg%3E%0A");
}

.u-tabPanel-insurance {
  margin-block-start: 24px;
}
@media screen and (width >= 768px) {
  .u-tabPanel-insurance {
    margin-block-start: 32px;
  }
}
@media screen and (width >= 1280px) {
  .u-tabPanel-insurance {
    margin-block-start: 48px;
  }
}

.u-tabPanel-insurance__list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(6, 1fr);
  overflow-x: auto;
  margin-inline: calc(var(--OUTSIDE_GUTTER_SP) * -1);
  padding-block: 4px 25px;
  padding-inline: var(--OUTSIDE_GUTTER_SP);
  scroll-margin-top: 285px;
  scrollbar-color: #7AD3F8 #48BBF3;
}
@media screen and (width >= 768px) {
  .u-tabPanel-insurance__list {
    gap: 8px 12px;
    grid-template-columns: repeat(3, 1fr);
    overflow: unset;
    max-width: fit-content;
    margin-inline: auto;
    padding-inline: 0;
    scroll-margin-top: 250px;
  }
}
@media screen and (width >= 1280px) {
  .u-tabPanel-insurance__list {
    gap: 16px;
    grid-template-columns: repeat(6, 1fr);
    max-width: none;
  }
}

.u-tabPanel-insurance__link {
  align-items: baseline;
  background-color: var(--COLOR_WHITE);
  border-radius: 16px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 12px;
  min-width: 190px;
  padding: 16px 14px 60px;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.u-tabPanel-insurance__link::before {
  background-color: var(--COLOR_BLUE_50);
  border-radius: 100rem;
  content: "";
  display: inline-block;
  margin-inline: auto;
  height: 28px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 28px;
}
.u-tabPanel-insurance__link::after {
  background-color: var(--COLOR_WHITE);
  content: "";
  display: inline-block;
  margin-inline: auto;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M13.3333 5.33325L8.0942 10.5723C8.04213 10.6244 7.95771 10.6244 7.90564 10.5723L2.66658 5.33325' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  mask-size: cover;
  mask-repeat: no-repeat;
  height: 10px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 31px;
  width: 13px;
}
@media (any-hover: hover) {
  .u-tabPanel-insurance__link:hover {
    box-shadow: 0px 2px 8px rgba(72, 187, 243, 0.05), 0px 8px 24px rgba(0, 60, 124, 0.1);
    transform: scale(1.03);
  }
}
.u-tabPanel-insurance__link:focus-visible {
  box-shadow: 0px 2px 8px rgba(72, 187, 243, 0.05), 0px 8px 24px rgba(0, 60, 124, 0.1);
  transform: scale(1.03);
}
.u-tabPanel-insurance__link:active {
  box-shadow: 0px 2px 8px rgba(72, 187, 243, 0.05), 0px 8px 24px rgba(0, 60, 124, 0.1);
  transform: scale(1.03);
}
@media screen and (width >= 768px) {
  .u-tabPanel-insurance__link {
    min-width: 160px;
  }
}

.u-tabPanel-insurance__img {
  display: block;
  object-fit: contain;
  height: 84px;
  margin: auto;
  width: 110px;
}

.u-tabPanel-insurance__link[aria-selected=true] {
  outline: 3px solid var(--COLOR_BLUE_80);
}
.u-tabPanel-insurance__link[aria-selected=true]::before {
  background-color: #0256BE;
}
.u-tabPanel-insurance__link[aria-selected=true]::after {
  transform: rotate(180deg);
  bottom: 28px;
}

.u-tabPanel-insurance__title {
  font-size: 0.875rem;
  font-weight: var(--FONT_BOLD);
}
@media screen and (width >= 768px) {
  .u-tabPanel-insurance__title {
    font-size: 0.75rem;
  }
}
@media screen and (width >= 1280px) {
  .u-tabPanel-insurance__title {
    font-size: 0.875rem;
  }
}

.u-tabPanel-insurance__content-wrap {
  scroll-margin-top: 85px;
}

.u-tabPanel-insurance__container {
  background-color: var(--COLOR_WHITE);
  border-radius: 30px;
  margin-block-start: 32px;
  padding: 50px 16px;
}
@media screen and (width >= 768px) {
  .u-tabPanel-insurance__container {
    padding: 56px 90px;
  }
}

.u-tabPanel-insurance__button {
  color: var(--COLOR_BLUE_50);
  display: block;
  font-size: 1rem;
  font-weight: var(--FONT_MEDIUM);
  margin-block-start: 32px;
  margin-inline: auto;
  transition: opacity 0.3s ease;
  width: fit-content;
}
@media (any-hover: hover) {
  .u-tabPanel-insurance__button:hover {
    opacity: 0.5;
  }
}
@media screen and (width >= 768px) {
  .u-tabPanel-insurance__button {
    display: none;
  }
}

.u-text-lead {
  font-size: 1.25rem;
  font-weight: var(--FONT_BOLD);
}
@media screen and (width >= 768px) {
  .u-text-lead {
    font-size: 1.5rem;
  }
}

@media screen and (width >= 768px) {
  .u-text-lead + .u-text {
    margin-block-start: 32px;
  }
}
@media screen and (width >= 1280px) {
  .u-text-lead + .u-text {
    margin-block-start: 24px;
  }
}

.u-text {
  margin-block-start: 32px;
}
@media screen and (width >= 768px) {
  .u-text {
    margin-block-start: 48px;
  }
}
@media screen and (width >= 1280px) {
  .u-text {
    font-size: 1.0625rem;
  }
}

.u-text.u-text--bold {
  font-weight: var(--FONT_SEMI_BOLD);
}

.u-text-application {
  font-weight: var(--FONT_SEMI_BOLD);
  margin-block-start: 40px;
}

.u-text-note {
  font-size: 0.75rem;
  margin-block-start: 40px;
}

.u-table {
  border: 1px solid var(--COLOR_BLUE_90);
  border-radius: 20px;
  overflow: hidden;
  margin-block-start: 32px;
}

.u-table__caption {
  font-weight: var(--FONT_SEMI_BOLD);
}
@media screen and (width >= 1280px) {
  .u-table__caption {
    font-size: 1.0625rem;
  }
}

.u-table__table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.u-table__body > :last-child {
  border-bottom: none;
}

.u-table__row {
  border-bottom: 1px solid var(--COLOR_BLUE_90);
}
.u-table__row > :last-child {
  border-right: none;
}

.u-table__cell {
  border-right: 1px solid var(--COLOR_BLUE_90);
  padding: 12px 16px;
}
.u-table__cell > :first-child {
  margin-block-start: 0;
}
@media screen and (width >= 768px) {
  .u-table__cell {
    padding: 24px;
  }
}

@media screen and (width >= 768px) {
  th.u-table__cell {
    font-size: 1.125rem;
  }
}

.u-table__cell-inner {
  margin: auto;
  width: fit-content;
}

.u-table__head .u-table__cell,
.u-table__body th.u-table__cell {
  background-color: #F5F5F5;
}

.u-table.u-table--coverage .u-table__cell {
  font-size: 0.8125rem;
  padding: 4px;
}
@media screen and (width >= 768px) {
  .u-table.u-table--coverage .u-table__cell {
    font-size: 1rem;
    font-weight: var(--FONT_BOLD);
    padding: 20px 10px;
  }
}

.u-table.u-table--coverage .u-table__body td.u-table__cell {
  font-size: 1.375rem;
  padding: 18px;
}

.u-table.u-table--vertical {
  border-color: var(--COLOR_GRAY_30);
}

.u-table.u-table--vertical .u-table__table {
  display: grid;
}

.u-table.u-table--vertical .u-table__row {
  border-color: var(--COLOR_GRAY_30);
  display: grid;
}

.u-table.u-table--vertical .u-table__cell {
  display: block;
  padding: 32px 16px;
}
@media screen and (width >= 1280px) {
  .u-table.u-table--vertical .u-table__cell {
    padding-block: 40px;
  }
}

.u-table.u-table--vertical th.u-table__cell {
  border-bottom: 1px solid var(--COLOR_GRAY_30);
  border-right: none;
  padding: 16px;
}

.u-table__text-lead {
  font-weight: var(--FONT_BOLD);
}

.u-table__text-description {
  font-size: 0.75rem;
}
@media screen and (width >= 768px) {
  .u-table__text-description {
    font-size: 0.875rem;
  }
}

.u-list-coverage {
  font-size: 0.625rem;
  font-weight: var(--FONT_MEDIUM);
  display: flex;
  flex-wrap: wrap;
  gap: 2px 16px;
  margin-block-start: 16px;
}
@media screen and (width >= 768px) {
  .u-list-coverage {
    font-size: 0.75rem;
    justify-content: flex-end;
  }
}

.u-list-coverage__item {
  display: grid;
  grid-template-columns: auto 1fr;
}

.u-list-coverage__dt::after {
  content: "：";
}

.u-list-terms {
  margin-block-start: 24px;
}

.u-list-terms__item {
  display: flex;
}

.u-card-insurance {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-block-start: 36px;
  margin-inline: 25px;
}
@media screen and (width >= 768px) {
  .u-card-insurance {
    margin-block-start: 48px;
  }
}

.u-card-insurance__item {
  display: flex;
}

.u-card-insurance__panel {
  border-radius: 16px;
  box-shadow: 0px 2px 8px rgba(72, 187, 243, 0.05), 0px 8px 24px rgba(0, 60, 124, 0.1);
  display: flex;
  overflow: hidden;
  flex-direction: column-reverse;
  max-width: 260px;
  height: 100%;
}
.u-card-insurance__panel:focus-visible {
  outline: 4px solid #ABE9FF;
  box-shadow: 0 0 0 4px #ABE9FF;
}
@media (any-hover: hover) {
  .u-card-insurance__panel:hover .u-card-insurance__body::after {
    animation: arrowAnimation 0.3s both;
  }
}
.u-card-insurance__panel:focus-visible .u-card-insurance__body::after {
  animation: arrowAnimation 0.3s both;
}
.u-card-insurance__panel:active .u-card-insurance__body::after {
  animation: arrowAnimation 0.3s both;
}

.u-card-insurance__media {
  overflow: hidden;
  position: relative;
}

.u-card-insurance__tag {
  background-color: var(--COLOR_BLUE_70);
  border-bottom-right-radius: 10px;
  color: var(--COLOR_WHITE);
  font-size: 0.75rem;
  left: 0;
  padding: 8px 10px;
  position: absolute;
  top: 0;
}

.u-card-insurance__img {
  aspect-ratio: 3/2;
  display: block;
  object-fit: cover;
  width: 100%;
}

.u-card-insurance__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 16px 24px 72px;
  position: relative;
}
.u-card-insurance__body::before {
  background-color: var(--COLOR_BLUE_60);
  border-radius: 100rem;
  bottom: 16px;
  content: "";
  display: block;
  height: 32px;
  position: absolute;
  right: 24px;
  width: 32px;
}
.u-card-insurance__body::after {
  background: url("data:image/svg+xml,%3Csvg width='17' height='14' viewBox='0 0 17 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.875' y1='6.76367' x2='14.125' y2='6.76367' stroke='white' stroke-width='1.75' stroke-linecap='square'/%3E%3Cpath d='M9.64123 12.5514L15.2981 6.89453L9.64123 1.23768' stroke='white' stroke-width='1.75' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat;
  background-size: cover;
  bottom: 25px;
  content: "";
  position: absolute;
  height: 13px;
  right: 31px;
  width: 16px;
}

.u-card-insurance__label {
  color: var(--COLOR_BLUE_50);
  font-size: 0.75rem;
}

.u-card-insurance__title {
  font-size: 1rem;
  font-weight: var(--FONT_BOLD);
}

.u-card-insurance__description {
  font-size: 0.75rem;
}

.u-link-list {
  display: flex;
  flex-direction: column;
  margin-block-start: 36px;
}
@media screen and (width >= 768px) {
  .u-link-list {
    margin-block-start: 48px;
  }
}

.u-link-list.u-link-list--center {
  align-items: center;
}

@media screen and (width >= 1280px) {
  .u-link-list.u-link-list--right-pc {
    align-items: flex-end;
  }
}

.u-link-list__link {
  color: var(--COLOR_BLUE_50);
  font-weight: var(--FONT_SEMI_BOLD);
  transition: opacity 0.3s ease;
}
.u-link-list__link::after {
  background-color: var(--COLOR_BLUE_50);
  content: "";
  display: inline-block;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='17' height='14' viewBox='0 0 17 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.875' y1='6.76367' x2='14.125' y2='6.76367' stroke='%23009CE5' stroke-width='1.75' stroke-linecap='square'/%3E%3Cpath d='M9.64123 12.5514L15.2981 6.89453L9.64123 1.23768' stroke='%23009CE5' stroke-width='1.75' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='17' height='14' viewBox='0 0 17 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='0.875' y1='6.76367' x2='14.125' y2='6.76367' stroke='%23009CE5' stroke-width='1.75' stroke-linecap='square'/%3E%3Cpath d='M9.64123 12.5514L15.2981 6.89453L9.64123 1.23768' stroke='%23009CE5' stroke-width='1.75' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  margin-inline-start: 8px;
  height: 13px;
  width: 16px;
}
@media (any-hover: hover) {
  .u-link-list__link:hover {
    opacity: 0.5;
  }
  .u-link-list__link:hover::after {
    animation: arrowAnimation 0.3s both;
  }
}
@media screen and (width >= 768px) {
  .u-link-list__link {
    font-size: clamp(0.75rem, 0.375rem + 0.78vw, 1rem);
    font-feature-settings: "palt" on;
    line-height: 1.5;
    letter-spacing: 0.48px;
  }
}

.u-button-layout + .u-link-list {
  margin-block-start: 24px;
}
@media screen and (width >= 768px) {
  .u-button-layout + .u-link-list {
    margin-block-start: 32px;
  }
}

.u-media__wrap {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  vertical-align: top;
  gap: 8px;
}

.u-media__item {
  display: block;
}
@media screen and (width <= 767px) {
  .u-media__item {
    width: 100%;
  }
}

.u-media__caption {
  caption-side: bottom;
  display: table-caption;
  font-size: 0.875rem;
  margin-block-start: 8px;
}

.u-box-check {
  border: 1px solid var(--COLOR_GRAY_30);
  border-radius: 20px;
  margin-block-start: 32px;
  padding: 24px 16px;
}
@media screen and (width >= 768px) {
  .u-box-check {
    padding: 24px 70px;
  }
}
@media screen and (width >= 1280px) {
  .u-box-check {
    align-items: center;
    display: grid;
    gap: 50px;
    grid-template-columns: auto 1fr;
  }
}

.u-box-check__head > :first-child {
  margin-block-start: 0;
}

.u-box-check__title {
  display: grid;
  gap: 16px;
  place-items: center;
}
@media screen and (width >= 768px) {
  .u-box-check__title {
    grid-template-columns: auto 1fr;
  }
}

.u-box-check__title-text {
  font-weight: var(--FONT_BOLD);
}
@media screen and (width >= 768px) {
  .u-box-check__title-text {
    font-size: 1.125rem;
    width: 100%;
  }
}

.u-box-check__body {
  margin-block-start: 24px;
}
.u-box-check__body > :first-child {
  margin-block-start: 0;
}
@media screen and (width >= 1280px) {
  .u-box-check__body {
    margin-block-start: 0;
  }
}

.u-box-check__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (width >= 768px) {
  .u-box-check__list {
    gap: 16px;
  }
}

.u-box-check__item {
  align-items: baseline;
  display: flex;
  font-weight: var(--FONT_MEDIUM);
  gap: 4px;
}
.u-box-check__item::before {
  background: url("data:image/svg+xml,%3Csvg width='20' height='14' viewBox='0 0 20 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.23755 6.82421L6.82348 12.4101L17.9953 1.23828' stroke='%23009CE5' stroke-width='1.75' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 11px;
  width: 17px;
}

.u-box-coverage {
  border: 1px solid var(--COLOR_GRAY_30);
  border-radius: 20px;
  margin-block-start: 32px;
  padding: 24px 16px;
}
@media screen and (width >= 768px) {
  .u-box-coverage {
    padding: 48px 40px;
  }
}

.u-box-coverage__head {
  display: grid;
  gap: 16px;
  place-items: center;
}
@media screen and (width >= 768px) {
  .u-box-coverage__head {
    gap: 40px;
  }
}

.u-box-coverage__logo {
  display: block;
}
@media screen and (width >= 768px) {
  .u-box-coverage__logo {
    width: 280px;
  }
}

.u-box-coverage__thumbnail {
  border-radius: 15px;
  overflow: hidden;
  max-width: 422px;
}

.u-box-coverage__thumbnail-img {
  display: block;
  width: 100%;
}

.u-box-coverage__body {
  margin-block-start: 24px;
}
.u-box-coverage__body > :first-child {
  margin-block-start: 0;
}
@media screen and (width >= 768px) {
  .u-box-coverage__body {
    margin-block-start: 40px;
  }
}

.u-layout-reason {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
  justify-content: center;
  opacity: 0;
  margin-block-start: 48px;
  margin-inline: auto;
  transform: translateY(30px);
  max-width: 470px;
}
@media screen and (width >= 768px) {
  .u-layout-reason {
    gap: 32px;
  }
}
@media screen and (width >= 1280px) {
  .u-layout-reason {
    display: grid;
    direction: rtl;
    gap: 90px;
    grid-template-columns: 1fr fit-content(50%);
    margin-block-start: 120px;
    max-width: none;
  }
}

.u-layout-reason + .u-layout-reason {
  margin-block-start: 54px;
}
@media screen and (width >= 768px) {
  .u-layout-reason + .u-layout-reason {
    margin-block-start: 40px;
  }
}
@media screen and (width >= 1280px) {
  .u-layout-reason + .u-layout-reason {
    margin-block-start: 120px;
  }
}

.u-layout-reason__media {
  border-radius: 12px;
  overflow: hidden;
  margin-inline: auto;
}
@media screen and (width >= 1280px) {
  .u-layout-reason__media {
    max-width: 540px;
  }
}

.u-layout-reason__media-img {
  display: block;
  width: 100%;
}

@media screen and (width >= 1280px) {
  .u-layout-reason__content {
    direction: ltr;
    padding-block: 64px;
  }
}

.u-layout-reason__heading {
  display: flex;
  flex-direction: column;
}

.u-layout-reason__heading-description {
  font-weight: var(--FONT_SEMI_BOLD);
  line-height: 135.2%;
  line-height: 185.2%;
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--COLOR_BLUE_20);
  text-underline-offset: 4.8px;
  text-decoration-skip-ink: none;
}
@media screen and (width >= 768px) {
  .u-layout-reason__heading-description {
    font-size: 0.875rem;
  }
}
@media screen and (width >= 1280px) {
  .u-layout-reason__heading-description {
    font-size: 1.25rem;
    line-height: 135.2%;
  }
}

.u-layout-reason__heading-title {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.48px;
  margin-block-start: 24px;
}
@media screen and (width >= 768px) {
  .u-layout-reason__heading-title {
    margin-block-start: 14px;
  }
}
@media screen and (width >= 1280px) {
  .u-layout-reason__heading-title {
    font-size: 2rem;
    margin-block-start: 26px;
  }
}

.u-layout-reason__description {
  line-height: 2;
  letter-spacing: 0.32px;
  margin-block-start: 24px;
}
@media screen and (width >= 768px) {
  .u-layout-reason__description {
    font-size: 0.875rem;
    margin-block-start: 16px;
  }
}
@media screen and (width >= 1280px) {
  .u-layout-reason__description {
    font-size: 1.1875rem;
    line-height: 2;
    letter-spacing: 0.8px;
    margin-block-start: 32px;
  }
}

@media screen and (width >= 1280px) {
  .u-layout-reason.u-layout-reason--reverse-pc {
    direction: ltr;
    grid-template-columns: fit-content(50%) 1fr;
  }
}

.is-show.u-layout-reason {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.u-panel-step {
  display: flex;
  gap: 10px;
  overflow: auto;
  margin-inline: calc(var(--OUTSIDE_GUTTER_SP) * -1);
  margin-block-start: 32px;
  padding-inline: var(--OUTSIDE_GUTTER_SP);
  scrollbar-width: none;
}
@media screen and (width >= 1280px) {
  .u-panel-step {
    gap: 114px;
    margin-block-start: 48px;
    margin-inline: auto;
    max-width: fit-content;
    padding-inline: 0;
  }
}

.u-panel-step__item {
  flex: 1 1 0;
  gap: 32px;
  min-width: 275px;
}
@media screen and (width >= 768px) {
  .u-panel-step__item {
    min-width: unset;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-step__item {
    min-width: 285px;
    position: relative;
  }
  .u-panel-step__item:not(:last-child):after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='40' viewBox='0 0 35 40' fill='none'%3E%3Cpath d='M33.4429 17.1165C35.4429 18.2712 35.4429 21.158 33.4429 22.3127L4.50012 39.0228C2.50012 40.1775 0.000120133 38.7341 0.000120234 36.4247L0.000121695 3.0045C0.000121796 0.695095 2.50012 -0.748282 4.50012 0.406419L33.4429 17.1165Z' fill='%230256BE'/%3E%3C/svg%3E") no-repeat center;
    content: "";
    display: block;
    height: 50px;
    right: -84px;
    position: absolute;
    top: 25%;
    width: 50px;
  }
}

.u-panel-step__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-end;
}

.u-panel-step__media {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.u-panel-step__media-img {
  aspect-ratio: 3/2;
  display: block;
  object-fit: cover;
  width: 100%;
}

.u-panel-step__number {
  background-color: #0256BE;
  border-radius: 0 0 22px 0;
  color: var(--COLOR_WHITE);
  display: grid;
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 0.686px;
  place-items: center;
  left: 0;
  height: 41px;
  position: absolute;
  top: 0;
  width: 40px;
}
@media screen and (width >= 1280px) {
  .u-panel-step__number {
    opacity: 0;
  }
}

.u-panel-step__title {
  font-size: 1.125rem;
}
@media screen and (width >= 1280px) {
  .u-panel-step__title {
    font-size: 1.25rem;
  }
}

.u-panel-step__description {
  font-size: 0.875rem;
  margin-block-start: 4px;
}
@media screen and (width >= 768px) {
  .u-panel-step__description {
    font-size: 0.875rem;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-step__description {
    font-size: 1rem;
    margin-block-start: 16px;
  }
}

.u-panel-entry {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-block-start: 40px;
}
@media screen and (width <= 767px) {
  .u-panel-entry {
    align-items: center;
  }
}
@media screen and (width >= 768px) {
  .u-panel-entry {
    border-top: 1px solid var(--COLOR_GRAY_30);
    flex-direction: row;
    gap: 15px;
    padding-block-start: 32px;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-entry {
    gap: 24px;
    margin-block-start: 60px;
    padding-block-start: 48px;
  }
}

.u-panel-entry__item {
  align-items: center;
  background: var(--COLOR_WHITE);
  box-shadow: 0px 4px 20px #DDE0E3;
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
  text-align: center;
}
@media screen and (width <= 767px) {
  .u-panel-entry__item {
    max-width: 420px;
    width: 100%;
  }
}
@media screen and (width >= 768px) {
  .u-panel-entry__item {
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: start;
  }
  .u-panel-entry__item:last-child {
    flex: 1;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-entry__item {
    flex: 1;
    gap: 36px;
    padding: 32px 50px;
  }
}

.u-panel-entry__content {
  width: 100%;
}

.u-panel-entry__title {
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (width >= 768px) {
  .u-panel-entry__title {
    font-size: 0.875rem;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-entry__title {
    font-size: 1.25rem;
  }
}

.u-panel-entry__description {
  font-size: 1rem;
  line-height: 1.8;
  margin-block-start: 8px;
}
@media screen and (width >= 768px) {
  .u-panel-entry__description {
    font-size: 0.75rem;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-entry__description {
    font-size: 1rem;
    margin-block-start: 10px;
  }
}

.u-panel-entry__button {
  margin-block-start: 24px;
}

.u-panel-entry__button .u-button {
  font-weight: var(--FONT_MEDIUM);
  gap: 16px;
  max-width: 300px;
}
@media screen and (width >= 768px) {
  .u-panel-entry__button .u-button {
    border-radius: 12px;
    font-size: 0.75rem;
    min-width: unset;
    margin-inline: 0;
    padding: 10px 24px;
    width: fit-content;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-entry__button .u-button {
    border-radius: 20px;
    font-size: 1rem;
    padding: 16px 32px;
  }
}

@media screen and (width >= 768px) {
  .u-panel-entry__img {
    width: 68px;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-entry__img {
    width: 100px;
  }
}

.u-heading-person {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  text-align: center;
  line-height: var(--LINE_HEIGHT_MIDDLE);
}
@media screen and (width >= 768px) {
  .u-heading-person {
    align-items: center;
    display: grid;
    direction: rtl;
    gap: 16px;
    grid-template-columns: auto 1fr;
    margin-inline: auto;
    text-align: left;
    width: fit-content;
  }
}
@media screen and (width >= 1280px) {
  .u-heading-person {
    gap: 24px;
  }
}

@media screen and (width >= 768px) {
  .u-heading-person__group {
    direction: ltr;
  }
}

.u-heading-person__img {
  margin: auto;
}
@media screen and (width >= 768px) {
  .u-heading-person__img {
    width: 70px;
  }
}
@media screen and (width >= 1280px) {
  .u-heading-person__img {
    width: 80px;
  }
}

.u-heading-person__title {
  font-size: 1.375rem;
}
@media screen and (width >= 1280px) {
  .u-heading-person__title {
    font-size: 1.875rem;
  }
}

.u-heading-person__subTitle {
  margin-block-start: 16px;
}
@media screen and (width >= 768px) {
  .u-heading-person__subTitle {
    font-size: 0.875rem;
    margin-block-start: 12px;
  }
}
@media screen and (width >= 1280px) {
  .u-heading-person__subTitle {
    font-size: 1.125rem;
  }
}

.u-heading-marker {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  gap: 16px;
  text-align: center;
  margin-block-start: 104px;
}
@media screen and (width >= 768px) {
  .u-heading-marker {
    margin-block-start: clamp(2.5rem, -5rem + 15.63vw, 7.5rem);
  }
}

.u-heading-marker__content {
  width: 100%;
}

.u-heading-marker__main {
  font-size: 1.5rem;
  font-feature-settings: "palt" on;
  line-height: 1.6;
  letter-spacing: 0.96px;
  text-decoration: underline;
  /* 下線 */
  text-decoration-thickness: 0.5em;
  /* 線の太さ */
  text-decoration-color: var(--COLOR_BLUE_20);
  /* 線の色 */
  text-underline-offset: -0.2em;
  /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none;
  /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}
@media screen and (width >= 1280px) {
  .u-heading-marker__main {
    font-size: 2rem;
  }
}

.u-heading-marker__sub {
  font-size: 1rem;
  margin-block-start: 16px;
}
@media screen and (width >= 768px) {
  .u-heading-marker__sub {
    font-size: 0.875rem;
  }
}
@media screen and (width >= 1280px) {
  .u-heading-marker__sub {
    font-size: 1.25rem;
    margin-block-start: 24px;
  }
}

.u-heading-line {
  font-size: 1.25rem;
  padding-inline-start: 30px;
  position: relative;
  text-align: left;
}
.u-heading-line::after {
  background-color: var(--COLOR_BLUE_50);
  border-radius: 100rem;
  content: "";
  display: block;
  left: 0;
  height: 32px;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 6px;
}
@media screen and (width >= 1280px) {
  .u-heading-line {
    font-size: 1.5rem;
  }
}

.u-heading-level2 + [class^=u-] {
  margin-block-start: 48px;
}

.u-heading-level2__main {
  font-size: 1.5rem;
  font-feature-settings: "palt" on;
  line-height: 1.6;
  letter-spacing: 0.96px;
  text-align: center;
}
@media screen and (width >= 1280px) {
  .u-heading-level2__main {
    font-size: 2rem;
  }
}

.u-heading-level2__sub {
  font-size: 1rem;
  line-height: 1.6;
  margin-block-start: 8px;
  padding: 0 24px;
}
@media screen and (width >= 768px) {
  .u-heading-level2__sub {
    font-size: 0.875rem;
    margin-block-start: 16px;
    padding: 0;
    text-align: center;
  }
}
@media screen and (width >= 1280px) {
  .u-heading-level2__sub {
    font-size: 1rem;
  }
}

.u-carousel {
  display: flex;
  flex-direction: column;
  margin-block-start: 54px;
}

@media screen and (width >= 768px) {
  .u-carousel__track {
    margin-inline: -30px;
  }
}
@media screen and (width >= 1280px) {
  .u-carousel__track {
    margin-inline: 0;
  }
}

.u-carousel__list {
  display: flex;
}
@media (scripting: none) {
  .u-carousel__list {
    gap: 16px;
    flex-wrap: wrap;
  }
}

@media (scripting: none) {
  .u-carousel__slide {
    flex: 0 0 383px;
  }
}

.u-carousel__controller {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media screen and (width >= 1280px) {
  .u-carousel__controller {
    gap: 24px;
  }
}

@media screen and (width >= 768px) {
  .u-carousel__arrows {
    display: contents;
  }
}

.u-carousel .u-carousel__arrow {
  display: none;
  height: 16px;
  position: relative;
  width: 16px;
}
.u-carousel .u-carousel__arrow::after {
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  inset: 0;
  margin: auto;
  height: 16px;
  position: absolute;
  width: 16px;
}
@media screen and (width >= 768px) {
  .u-carousel .u-carousel__arrow {
    display: block;
  }
}
@media screen and (width >= 1280px) {
  .u-carousel .u-carousel__arrow {
    height: 24px;
    width: 24px;
  }
  .u-carousel .u-carousel__arrow::after {
    height: 20px;
    width: 12px;
  }
}

.u-carousel .u-carousel__arrow-text {
  clip-path: inset(1px 1px 1px 1px);
  overflow: hidden;
  position: absolute;
  width: 0;
}

.u-carousel .splide__arrow--prev {
  order: 1;
}
.u-carousel .splide__arrow--prev::after {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='19' viewBox='0 0 11 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.32031 1.03125L1.55601 8.79555C1.42584 8.92572 1.42584 9.13678 1.55601 9.26695L9.32031 17.0313' stroke='%230256BE' stroke-width='2.91667'/%3E%3C/svg%3E%0A");
}

.u-carousel .splide__arrow--next {
  order: 3;
}
.u-carousel .splide__arrow--next::after {
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='19' viewBox='0 0 11 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.03125 1.03125L8.79555 8.79555C8.92572 8.92572 8.92572 9.13678 8.79555 9.26695L1.03125 17.0313' stroke='%230256BE' stroke-width='2.91667'/%3E%3C/svg%3E%0A");
}

.u-carousel__pagination {
  gap: 20px;
  order: 2;
}
@media screen and (width >= 768px) {
  .u-carousel__pagination {
    gap: 10px;
  }
}
@media screen and (width >= 1280px) {
  .u-carousel__pagination {
    gap: 20px;
  }
}

.u-carousel .splide__pagination__page {
  background-color: var(--COLOR_WHITE);
  border-radius: 100rem;
  height: 12px;
  width: 12px;
}
.u-carousel .splide__pagination__page[aria-selected=true] {
  background-color: #0256BE;
  width: 24px;
}
@media screen and (width >= 768px) {
  .u-carousel .splide__pagination__page {
    height: 10px;
    width: 10px;
  }
}
@media screen and (width >= 1280px) {
  .u-carousel .splide__pagination__page {
    height: 14px;
    width: 14px;
  }
  .u-carousel .splide__pagination__page[aria-selected=true] {
    width: 28px;
  }
}

.u-carousel__toggle {
  background-color: #0256BE;
  border-radius: 100rem;
  order: 4;
  position: relative;
  height: 20px;
  width: 20px;
}
.u-carousel__toggle::after {
  background-color: var(--COLOR_WHITE);
  mask-image: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 15.1166V0.906255C1.5 0.512668 1.93369 0.273394 2.26664 0.483284L13.8126 7.76176C14.1277 7.96044 14.1227 8.42164 13.8033 8.61341L2.25737 15.5453C1.92411 15.7454 1.5 15.5053 1.5 15.1166Z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
  mask-size: cover;
  mask-repeat: no-repeat;
  content: "";
  display: inline-block;
  inset: 0;
  left: 1px;
  height: 8px;
  position: absolute;
  margin: auto;
  width: 7px;
}
@media screen and (width >= 1280px) {
  .u-carousel__toggle {
    height: 40px;
    width: 40px;
  }
  .u-carousel__toggle::after {
    height: 18px;
    width: 16px;
  }
}

.u-carousel__toggle.is-active::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1.45833' height='9.16667' fill='white'/%3E%3Crect x='5' width='1.45833' height='9.16667' fill='white'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml,%3Csvg width='7' height='10' viewBox='0 0 7 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1.45833' height='9.16667' fill='white'/%3E%3Crect x='5' width='1.45833' height='9.16667' fill='white'/%3E%3C/svg%3E%0A");
}
@media screen and (width >= 1280px) {
  .u-carousel__toggle.is-active::after {
    height: 18px;
    width: 13px;
  }
}

.u-carousel__toggle-text {
  clip-path: inset(1px 1px 1px 1px);
  overflow: hidden;
  position: absolute;
  width: 0;
}

.u-carousel--service .u-carousel__controller {
  margin-block-start: 40px;
}
@media screen and (width >= 1280px) {
  .u-carousel--service .u-carousel__controller {
    margin-block-start: 48px;
  }
}

.u-carousel--insurance .u-carousel__track {
  padding-block-end: 25px;
}

.u-carousel--insurance .u-carousel__controller {
  margin-block-start: 30px;
}

@media screen and (width >= 1280px) {
  .u-carousel.u-carousel--service .u-carousel__toggle {
    height: 24px;
    width: 24px;
  }
  .u-carousel.u-carousel--service .u-carousel__toggle::after {
    height: 10px;
    width: 8px;
  }
}

.u-carousel.u-carousel--service .splide__arrow {
  height: 24px;
  width: 24px;
}

.u-carousel.u-carousel--service .splide__arrow--prev::after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.75 4L7.9857 11.7643C7.85553 11.8945 7.85553 12.1055 7.9857 12.2357L15.75 20' stroke='white' stroke-width='2.91667'/%3E%3C/svg%3E%0A");
  height: 24px;
  width: 24px;
}

.u-carousel.u-carousel--service .splide__arrow--next::after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.25 4L16.0143 11.7643C16.1445 11.8945 16.1445 12.1055 16.0143 12.2357L8.25 20' stroke='white' stroke-width='2.91667'/%3E%3C/svg%3E%0A");
  height: 24px;
  width: 24px;
}

@media screen and (width >= 1280px) {
  .u-carousel.u-carousel--insurance .u-carousel__track {
    margin-inline: -30px;
  }
}

.u-panel-review {
  align-items: flex-start;
  background: var(--COLOR_WHITE);
  border-radius: 20px;
  box-shadow: 10px 10px 50px 3px rgba(39, 92, 141, 0.1);
  color: var(--COLOR_BLUE_90);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px 24px;
  max-width: 320px;
  width: 100%;
}
@media screen and (width >= 768px) {
  .u-panel-review {
    padding: 24px;
    max-width: 300px;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-review {
    padding: 32px 40px;
    max-width: 440px;
    min-width: 440px;
  }
}

.u-panel-review__title {
  font-size: 1.125rem;
  line-height: 28px;
  letter-spacing: -0.54px;
}
@media screen and (width >= 768px) {
  .u-panel-review__title {
    font-size: 0.875rem;
    line-height: 24px;
    letter-spacing: -0.42px;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-review__title {
    font-size: 1.25rem;
    line-height: 1.7;
    letter-spacing: -0.6px;
  }
}

.u-panel-review__text {
  color: var(--COLOR_BLUE_100);
  font-size: 0.875rem;
  flex: 1;
  line-height: 1.7;
  margin-block-start: 24px;
}
@media screen and (width >= 768px) {
  .u-panel-review__text {
    font-size: 0.6875rem;
    margin-block-start: 16px;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-review__text {
    font-size: 1rem;
    line-height: 29px;
    margin-block-start: 24px;
  }
}

.u-panel-review__author {
  align-items: center;
  display: flex;
  font-size: 0.875rem;
  gap: 20px;
  margin-block-start: 16px;
}
@media screen and (width >= 768px) {
  .u-panel-review__author {
    font-size: 0.625rem;
    margin-block-start: 32px;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-review__author {
    font-size: 0.875rem;
    margin-block-start: 47px;
  }
}

@media screen and (width >= 768px) {
  .u-panel-review__author-img {
    width: clamp(2.563rem, 0.781rem + 3.71vw, 3.75rem);
  }
}

.u-panel-review__product {
  line-height: 145.2%;
}

.u-panel-insurance {
  background: var(--COLOR_WHITE);
  border: 4px solid var(--COLOR_WHITE);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px 24px 80px;
  position: relative;
  max-width: 276px;
  transition: box-shadow 0.3s ease;
}
.u-panel-insurance::before {
  background-color: var(--COLOR_BLUE_50);
  border-radius: 100rem;
  bottom: 21px;
  content: "";
  display: block;
  right: 19px;
  height: 28px;
  position: absolute;
  width: 28px;
}
.u-panel-insurance::after {
  background-color: var(--COLOR_WHITE);
  bottom: 29px;
  content: "";
  display: block;
  right: 25px;
  height: 11px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='22' height='19' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.16667' y1='9.01888' x2='18.8333' y2='9.01888' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square'/%3E%3Cpath d='M12.855 16.7349L20.3974 9.19238L12.855 1.64991' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='22' height='19' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.16667' y1='9.01888' x2='18.8333' y2='9.01888' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square'/%3E%3Cpath d='M12.855 16.7349L20.3974 9.19238L12.855 1.64991' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: absolute;
  min-width: 14px;
}
@media screen and (width >= 1280px) {
  .u-panel-insurance {
    padding: 24px 32px 110px;
    max-width: 384px;
  }
  .u-panel-insurance::before {
    height: 40px;
    width: 40px;
  }
  .u-panel-insurance::after {
    bottom: 33px;
    right: 30px;
    height: 15px;
    width: 17px;
  }
}
@media (any-hover: hover) {
  .u-panel-insurance:hover {
    box-shadow: 0px 2px 8px rgba(72, 187, 243, 0.05), 0px 8px 24px rgba(0, 60, 124, 0.1);
  }
  .u-panel-insurance:hover::after {
    animation: arrowAnimation 0.3s both;
  }
}

.u-panel-insurance__title {
  font-size: 1rem;
  flex: 1;
  line-height: 26.001px;
  letter-spacing: -0.48px;
  margin-block-start: 6px;
}
@media screen and (width >= 1280px) {
  .u-panel-insurance__title {
    font-size: 1.125rem;
    line-height: 28px;
    letter-spacing: -0.54px;
    margin-block-start: 8px;
  }
}

@media screen and (width >= 1280px) {
  .u-panel-insurance__icon {
    height: 64px;
    width: 64px;
  }
}

.u-panel-insurance__description {
  font-size: 0.875rem;
  flex: 2;
  margin-block-start: 12px;
}
@media screen and (width >= 1280px) {
  .u-panel-insurance__description {
    font-size: 1rem;
    line-height: 1.7;
    margin-block-start: 16px;
  }
}

.u-media-banner[data-column="3"] .u-media-banner__list > .u-media-banner__item {
  max-width: min(100%, 300px);
}
@media screen and (width >= 768px) {
  .u-media-banner[data-column="3"] .u-media-banner__list > .u-media-banner__item {
    max-width: min(100%, 220px);
  }
}
@media screen and (width >= 1280px) {
  .u-media-banner[data-column="3"] .u-media-banner__list > .u-media-banner__item {
    max-width: min(100%, 385px);
  }
}

.u-media-banner__inner {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.u-media-banner__list {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px 11px;
  padding-block-end: 16px;
}
@media screen and (width >= 768px) {
  .u-media-banner__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (width >= 1280px) {
  .u-media-banner__list {
    gap: 16px 14px;
  }
}

.u-media-banner__link {
  border-radius: 16px;
  display: block;
  overflow: hidden;
}
@media (any-hover: hover) {
  .u-media-banner__link:hover {
    opacity: 0.9;
  }
}

.u-media-banner__img {
  display: block;
}

.u-media-banner__content {
  display: none;
  overflow: hidden;
  transition: height 0.3s ease;
}
.u-media-banner__content > :last-child {
  padding-block-end: 0;
}
@media (scripting: none) {
  .u-media-banner__content {
    display: block;
  }
}

.u-media-banner__content.is-show {
  display: block;
}

.u-media-banner__content.is-hidden {
  display: none;
}

.u-media-banner__button {
  display: flex;
  justify-content: center;
  margin-block-start: 32px;
}

.u-panel-consultation {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (width <= 767px) {
  .u-panel-consultation {
    margin-inline: auto;
    max-width: 420px;
  }
}
@media screen and (width >= 768px) {
  .u-panel-consultation {
    display: grid;
    grid-template-columns: 1fr fit-content(51%);
  }
}

.u-panel-consultation__body {
  background-color: var(--COLOR_BLUE_70);
  border-radius: 0 0 20px 20px;
  color: var(--COLOR_WHITE);
  padding: 24px;
}
@media screen and (width >= 768px) {
  .u-panel-consultation__body {
    border-radius: 20px 0 0 20px;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-consultation__body {
    padding: 41px 50px;
  }
}

.u-panel-consultation__title {
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (width >= 768px) {
  .u-panel-consultation__title {
    font-size: 0.8125rem;
    text-align: left;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-consultation__title {
    font-size: 1.5rem;
  }
}

.u-panel-consultation__description {
  font-size: 1rem;
  line-height: 1.8;
  margin-block-start: 4px;
}
@media screen and (width >= 768px) {
  .u-panel-consultation__description {
    font-size: 0.5625rem;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-consultation__description {
    font-size: 1rem;
    margin-block-start: 16px;
  }
}

.u-panel-consultation__button {
  margin-block-start: 16px;
}
@media screen and (width >= 768px) {
  .u-panel-consultation__button {
    margin-block-start: 12px;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-consultation__button {
    margin-block-start: 24px;
  }
}

@media screen and (width >= 768px) {
  .u-panel-consultation__button .u-button-conversion {
    margin-inline: 0;
    width: fit-content;
  }
}

@media screen and (width >= 768px) {
  .u-panel-consultation__button .u-button-conversion__main {
    font-size: 0.625rem;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-consultation__button .u-button-conversion__main {
    font-size: 1rem;
  }
}

.u-panel-consultation__media {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
@media screen and (width >= 768px) {
  .u-panel-consultation__media {
    border-radius: 0 20px 20px 0;
  }
}

.u-panel-consultation__img {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.u-panel-cta {
  display: grid;
  gap: 24px;
}
@media screen and (width >= 1280px) {
  .u-panel-cta {
    gap: 32px 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.u-panel-cta--column {
  gap: 16px;
}
@media screen and (width >= 768px) {
  .u-panel-cta--column {
    gap: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.u-panel-cta--column .u-panel-cta__body {
  min-height: 86px;
  padding: 20px 24px;
}
@media screen and (width >= 1280px) {
  .u-panel-cta--column .u-panel-cta__body {
    padding-inline: 33px;
  }
  .u-panel-cta--column .u-panel-cta__body::after {
    right: 40px;
  }
}

.u-panel-cta--icon {
  gap: 24px;
}
@media screen and (width >= 1280px) {
  .u-panel-cta--icon {
    grid-template-columns: repeat(2, 1fr);
  }
}

.u-panel-cta--icon .u-panel-cta__link {
  padding: 27px 40px;
}

.u-panel-cta--icon .u-panel-cta__body {
  padding-inline: 32px 0px;
}
.u-panel-cta--icon .u-panel-cta__body::after {
  right: 8px;
}

.u-panel-cta__link {
  align-items: center;
  background-color: var(--COLOR_WHITE);
  border: 1px solid #DDE0E3;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0, 98, 192, 0.24);
  display: grid;
  direction: rtl;
  grid-template-columns: 1fr auto;
  line-height: var(--LINE_HEIGHT_MIDDLE);
  justify-content: flex-end;
  overflow: hidden;
}
@media (any-hover: hover) {
  .u-panel-cta__link:hover .u-panel-cta__body::after {
    animation: arrowAnimation 0.3s both;
  }
  .u-panel-cta__link:hover .u-panel-cta__title {
    opacity: 0.5;
  }
}

.u-panel-cta__media {
  overflow: hidden;
  height: 100%;
}

.u-panel-cta__img {
  display: block;
  object-fit: cover;
  max-width: 98px;
  height: 100%;
}
@media screen and (width >= 1280px) {
  .u-panel-cta__img {
    max-width: none;
  }
}

.u-panel-cta__body {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: row-reverse;
  gap: 16px;
  direction: ltr;
  padding-inline: 24px;
  position: relative;
}
.u-panel-cta__body::before {
  background-color: var(--COLOR_BLUE_50);
  border-radius: 100rem;
  content: "";
  display: block;
  height: 32px;
  width: 32px;
}
.u-panel-cta__body::after {
  background-color: var(--COLOR_WHITE);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='22' height='19' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.16667' y1='9.01888' x2='18.8333' y2='9.01888' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square'/%3E%3Cpath d='M12.855 16.7349L20.3974 9.19238L12.855 1.64991' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='22' height='19' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='1.16667' y1='9.01888' x2='18.8333' y2='9.01888' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square'/%3E%3Cpath d='M12.855 16.7349L20.3974 9.19238L12.855 1.64991' stroke='%230256BE' stroke-width='2.33333' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  right: 31px;
  min-width: 17px;
}
@media screen and (width >= 1280px) {
  .u-panel-cta__body {
    padding-inline: 70px 24px;
  }
}

.u-panel-cta__title {
  color: #091018;
  font-weight: var(--FONT_BOLD);
  flex: 1;
  transition: opacity 0.3s ease;
}

.u-panel-company {
  display: grid;
  gap: 24px 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-block-start: 24px;
  margin-inline: auto;
}
.u-panel-company > :first-child {
  grid-column: 1/3;
}
.u-panel-company > :first-child .u-panel-company__link {
  flex-direction: row-reverse;
  gap: 0;
  padding: 0;
}
@media screen and (width >= 768px) {
  .u-panel-company {
    grid-template-columns: repeat(3, 1fr);
  }
  .u-panel-company > :first-child {
    grid-column: 1/4;
  }
}
@media screen and (width >= 1280px) {
  .u-panel-company {
    grid-template-columns: repeat(4, 1fr);
    max-width: 785px;
  }
  .u-panel-company > :first-child {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .u-panel-company > :first-child .u-panel-company__link {
    flex-direction: column-reverse;
    height: 100%;
  }
  .u-panel-company > :first-child .u-panel-company__media,
  .u-panel-company > :first-child .u-panel-company__thumbnail {
    width: 100%;
  }
  .u-panel-company > :first-child .u-panel-company__body {
    align-items: center;
    display: flex;
  }
}

.u-panel-company__link {
  align-items: center;
  background-color: var(--COLOR_WHITE);
  border: 1px solid #DDE0E3;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0, 98, 192, 0.24);
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  height: 100%;
  padding: 24px 8px;
}
@media (any-hover: hover) {
  .u-panel-company__link:hover .u-panel-company__title {
    opacity: 0.5;
  }
}

.u-panel-company__media {
  overflow: hidden;
}

.u-panel-company__body {
  flex: 1;
}

.u-panel-company__thumbnail {
  display: block;
}

.u-panel-company__title {
  color: #0256BE;
  font-weight: var(--FONT_SEMI_BOLD);
  text-align: center;
  transition: opacity 0.3s ease;
}

.u-panel-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin-inline: auto;
}
@media screen and (width >= 1280px) {
  .u-panel-media {
    flex-direction: row;
    max-width: unset;
  }
}

.u-panel-media__item {
  flex-basis: 100%;
}

.u-panel-media__link {
  background-color: var(--COLOR_WHITE);
  border: 1px solid #DDE0E3;
  border-radius: 16px;
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
@media (any-hover: hover) {
  .u-panel-media__link:hover {
    box-shadow: 0px 2px 8px rgba(72, 187, 243, 0.05), 0px 8px 24px rgba(0, 60, 124, 0.1);
  }
}

.u-panel-media__body {
  padding: 18px 24px 24px;
}

.u-panel-media__img {
  aspect-ratio: 382/144;
  display: block;
  object-fit: cover;
  width: 100%;
}

.u-panel-risk {
  display: grid;
  gap: 24px 16px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  margin-block-start: 24px;
}
@media screen and (width >= 768px) {
  .u-panel-risk {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-block-start: 40px;
  }
}

.u-panel-risk__item {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  vertical-align: top;
  gap: 8px;
}
@media screen and (width >= 768px) {
  .u-panel-risk__item {
    flex: 0 0 170px;
  }
}

.u-panel-risk__caption {
  font-size: 0.875rem;
  font-weight: var(--FONT_SEMI_BOLD);
  text-align: center;
}

.u-panel-risk__img {
  object-fit: contain;
  min-height: 120px;
  vertical-align: bottom;
}

@media screen and (width >= 768px) {
  .u-panel-risk.u-panel-risk--max-content {
    --max-content: 542px;
    margin-inline: auto;
    max-width: var(--max-content);
  }
}

.u-layout-media {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.u-layout-media__item {
  border-radius: 16px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .u-layout-media__item:hover {
    opacity: 0.9;
  }
}
@media screen and (width >= 768px) {
  .u-layout-media__item {
    flex: 0 0 min(247px, 100%);
  }
}
@media screen and (width >= 1280px) {
  .u-layout-media__item {
    flex: 0 0 min(433px, 100%);
  }
}

.u-layout-media__img {
  display: block;
}

.u-video__wrap {
  max-width: 790px;
  margin: auto;
  padding: 0 16px;
}
@media screen and (width >= 768px) {
  .u-video__wrap {
    padding: 0;
  }
}
.u-video__wrap .bc-iframe,
.u-video__wrap .bc-iframe body,
.u-video__wrap .bc-player-EQCiiiCfcr_default,
.u-video__wrap .bc-player-EQCiiiCfcr_default .vjs-poster {
  background-color: var(--COLOR_WHITE);
}

.u-video {
  position: relative;
  padding-bottom: 56.619%;
  width: 100%;
  border-radius: 16px;
}

.u-video__text {
  margin-top: 24px;
  color: #1A1C21;
  font-size: 1.125rem;
  font-weight: var(--FONT_MEDIUM);
  line-height: 2;
  text-align: center;
}
@media screen and (width >= 768px) {
  .u-video__text {
    margin-top: 32px;
    font-size: 1.5rem;
  }
}

.u-widget-terms + .u-widget-terms {
  margin-block-start: 40px;
}

.u-widget-terms[open] .u-widget-terms__title::after {
  rotate: -180deg;
}

.u-widget-terms__title {
  align-items: center;
  color: #0256BE;
  display: flex;
  font-size: 1rem;
  font-weight: var(--FONT_BOLD);
  flex-direction: row-reverse;
  gap: 8px;
  line-height: 26px;
  letter-spacing: 0.64px;
  transition: opacity 0.3s ease;
  width: fit-content;
}
.u-widget-terms__title::after {
  background: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 8C16 12.4183 12.4183 16 8 16C3.58172 16 3.13124e-07 12.4183 6.99382e-07 8C1.08564e-06 3.58172 3.58172 3.13124e-07 8 6.99382e-07C12.4183 1.08564e-06 16 3.58172 16 8Z' fill='%23009CE5'/%3E%3Cpath d='M11 6.5L8.05303 9.44697C8.02374 9.47626 7.97626 9.47626 7.94697 9.44697L5 6.5' stroke='white' stroke-width='1.125'/%3E%3C/svg%3E%0A") no-repeat center/cover;
  content: "";
  display: inline-block;
  height: 16px;
  transition: rotate 0.3s ease;
  width: 16px;
}
@media (any-hover: hover) {
  .u-widget-terms__title:hover {
    opacity: 0.5;
  }
}

.u-widget-terms__content {
  font-size: 0.9375rem;
  margin-block-start: 24px;
}
.u-widget-terms__content > :first-child {
  margin-block-start: 0;
}
@media screen and (width >= 768px) {
  .u-widget-terms__content {
    line-height: 1.8;
  }
}
