@charset "UTF-8";
/* カラーコード
--------------------------------------------------------------------*/
/* box-shadow
--------------------------------------------------------------------*/
/* ピクセルをremに置き換えて返す関数
--------------------------------------------------------------------*/
/* ブレイクポイント
--------------------------------------------------------------------*/
/* メディアクエリ
--------------------------------------------------------------------*/
/* half-leading
--------------------------------------------------------------------*/
/* フォントファミリー
--------------------------------------------------------------------*/
/* z-index
--------------------------------------------------------------------*/
/* イージング
--------------------------------------------------------------------*/
/* css カスタムプロパティー
--------------------------------------------------------------------*/
:root {
  --header-height: 7rem;
  --row-gap:3.5rem;
  --column-gap:2.5rem;
}
@media (max-width: 87.5rem) {
  :root {
    --header-height: 9rem;
  }
}
@media (max-width: 64rem) {
  :root {
    --header-height: 7rem;
  }
}
@media (max-width: 48rem) {
  :root {
    --header-height: 4rem;
  }
}
@media (max-width: 64rem) {
  :root {
    --row-gap:3rem;
    --column-gap:2rem;
  }
}
@media (max-width: 48rem) {
  :root {
    --row-gap:1.5rem;
    --column-gap:1.5rem;
  }
}

/* シェブロン
--------------------------------------------------------------------*/
/*
使用例:
@include chevron(
    $direction: 'down',     // 方向
    $size: 8,               // 全体の大きさpx (単位なしの数値)
    $thickness: 1.8,          // 線の太さpx (単位なしの数値)
    $color: $color-main       // 色
);
*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* dialog */
/* ============================================ */
:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

::selection {
  text-shadow: none;
}

body {
  width: 100%;
  background: #F4F6FA;
  color: #262A2E;
  font-family: "Noto Sans JP", -apple-system-body, blinkMacSystemFont, "Helvetica Neue", Arial, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.84;
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-east-asian: proportional-width;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-rendering: optimizelegibility;
}
@media (max-width: 48rem) {
  body {
    font-size: 0.875rem;
  }
}

body.is-scroll-locked {
  overflow: hidden;
}

main {
  padding-top: var(--header-height);
}

input, select, textarea {
  font-size: 1rem;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

dt {
  font-weight: inherit;
}

em {
  font-style: normal;
}

@media (pointer: fine) {
  ::-webkit-scrollbar, ::-webkit-scrollbar-corner {
    background: transparent;
    height: 12px;
    width: 12px;
  }
  ::-webkit-scrollbar-button {
    height: 0;
    width: 0;
  }
  ::-webkit-scrollbar-thumb {
    background: content-box #ACB4BF;
    border: 2px solid transparent;
    border-radius: 624.9375rem;
    min-height: 48px;
    min-width: 48px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: content-box #707c8a;
  }
}
/* cmn-container
--------------------------------------------------------------------*/
.cmn-container, .cmn-container--large {
  padding: 5rem 0;
  overflow-x: hidden;
  position: relative;
  background-color: #F4F6FA;
}
@media (max-width: 48rem) {
  .cmn-container, .cmn-container--large {
    padding: 3rem 0;
  }
}
@media (max-width: 48rem) {
  .cmn-container--narrow {
    padding: 2.75rem 0;
  }
}
@media (max-width: 48rem) {
  .cmn-container--narrow + .cmn-container:not(.cmn-container--narrow), .cmn-container--narrow + .cmn-container--large:not(.cmn-container--narrow) {
    padding-top: 3.25rem;
  }
}
.cmn-container--narrow + .cmn-container-colored {
  margin-top: 5rem;
}
@media (max-width: 48rem) {
  .cmn-container--narrow + .cmn-container-colored {
    margin-top: 2.75rem;
  }
}
@media (max-width: 48rem) {
  .cmn-container:not(.cmn-container--narrow) + .cmn-container--narrow, .cmn-container--large:not(.cmn-container--narrow) + .cmn-container--narrow {
    padding-top: 2.5rem;
  }
}
.cmn-container:not(.cmn-container--narrow) + .cmn-container-colored, .cmn-container--large:not(.cmn-container--narrow) + .cmn-container-colored {
  margin-top: 5rem;
}
@media (max-width: 48rem) {
  .cmn-container:not(.cmn-container--narrow) + .cmn-container-colored, .cmn-container--large:not(.cmn-container--narrow) + .cmn-container-colored {
    margin-top: 3rem;
  }
}
@media (max-width: 48rem) {
  .cmn-container:has(.calendar), .cmn-container--large:has(.calendar) {
    overflow-x: visible;
  }
}
.cmn-container--clip {
  overflow-x: clip;
}
.cmn-container--large {
  padding: 7.5rem 0;
}
@media (max-width: 64rem) {
  .cmn-container--large {
    padding: 5.5rem 0;
  }
}
@media (max-width: 48rem) {
  .cmn-container--large {
    padding: 3.75rem 0;
  }
}
.cmn-container .cmn-container + .cmn-container--large, .cmn-container--large .cmn-container + .cmn-container--large, .cmn-container .cmn-container--large + .cmn-container--large, .cmn-container--large .cmn-container--large + .cmn-container--large {
  padding-top: 5rem;
}
@media (max-width: 64rem) {
  .cmn-container .cmn-container + .cmn-container--large, .cmn-container--large .cmn-container + .cmn-container--large, .cmn-container .cmn-container--large + .cmn-container--large, .cmn-container--large .cmn-container--large + .cmn-container--large {
    padding-top: 4rem;
  }
}
@media (max-width: 48rem) {
  .cmn-container .cmn-container + .cmn-container--large, .cmn-container--large .cmn-container + .cmn-container--large, .cmn-container .cmn-container--large + .cmn-container--large, .cmn-container--large .cmn-container--large + .cmn-container--large {
    padding-top: 3rem;
  }
}

.cmn-page-head01 + .cmn-container, .cmn-page-head01 + .cmn-container--large {
  padding-top: 8rem;
}
@media (max-width: 48rem) {
  .cmn-page-head01 + .cmn-container, .cmn-page-head01 + .cmn-container--large {
    padding-top: 5.5rem;
  }
}

.cmn-page-head02 + .cmn-container, .cmn-page-head02 + .cmn-container--large {
  padding-top: 6.5rem;
}
@media (max-width: 48rem) {
  .cmn-page-head02 + .cmn-container, .cmn-page-head02 + .cmn-container--large {
    padding-top: 4rem;
  }
}

.cmn-page-head03 + .cmn-container, .cmn-page-head03 + .cmn-container--large {
  padding-top: 4.5rem;
}
@media (max-width: 48rem) {
  .cmn-page-head03 + .cmn-container, .cmn-page-head03 + .cmn-container--large {
    padding-top: 3rem;
  }
}

.cmn-container-colored {
  padding: 10rem 0;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 48rem) {
  .cmn-container-colored {
    padding: 5.5rem 0;
  }
}
.cmn-container-colored + .cmn-container, .cmn-container-colored + .cmn-container--large {
  padding-top: 10rem;
}
@media (max-width: 48rem) {
  .cmn-container-colored + .cmn-container, .cmn-container-colored + .cmn-container--large {
    padding-top: 6rem;
  }
}
.cmn-container-colored + .cmn-container--narrow {
  padding-top: 10rem;
}
@media (max-width: 48rem) {
  .cmn-container-colored + .cmn-container--narrow {
    padding-top: 5.5rem;
  }
}
.cmn-container-colored--white {
  background-color: #ffffff;
}
.cmn-container-colored--white + .cmn-container-colored--white {
  padding-top: unset;
}
.cmn-container-colored--gray {
  background-color: #EDF1F7;
}
.cmn-container-colored--gray + .cmn-container-colored--gray {
  padding-top: unset;
}

main > .cmn-container:last-child, main > .cmn-container--large:last-child,
main > .cmn-container-colored:last-child {
  padding-bottom: 10rem !important;
}
@media (max-width: 48rem) {
  main > .cmn-container:last-child, main > .cmn-container--large:last-child,
  main > .cmn-container-colored:last-child {
    padding-bottom: 5rem !important;
  }
}

/* cmn-inner
--------------------------------------------------------------------*/
.cmn-inner, .cmn-inner--narrow, .cmn-inner--medium {
  width: calc(100% - 2rem);
  max-width: 75rem;
  margin: 0 auto;
  position: relative;
}
.cmn-inner--medium {
  max-width: 62.5rem;
}
/* cmn-sheet
--------------------------------------------------------------------*/
@media (max-width: 48rem) {
  .cmn-sheet {
    width: 100%;
    box-sizing: content-box;
    border-radius: 0.25rem;
  }
}
.cmn-sheet__inner {
  background-color: #ffffff;
  border-radius: 0.25rem;
  padding: 4rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 48rem) {
  .cmn-sheet__inner {
    overflow: hidden;
    padding: 1.5rem 1.5rem 3rem 1.5rem;
  }
}
.cmn-sheet .cmn-button__wrap {
  margin-block-start: 4.5rem;
}

/* cmn-grid
--------------------------------------------------------------------*/
.cmn-grid {
  display: flex;
}
@media (max-width: 48rem) {
  .cmn-grid {
    flex-direction: column;
  }
}
.cmn-grid__container {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media (max-width: 48rem) {
  .cmn-grid__container {
    gap: 1rem;
  }
}
.cmn-grid__content {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(18.75rem, 1fr));
  gap: 3.5rem 2.5rem;
}
@media (max-width: 64rem) {
  .cmn-grid__content {
    grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  }
}
@media (max-width: 30rem) {
  .cmn-grid__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.cmn-grid__content:has(.mdl-card-image--horizontal, .mdl-card-image--horizontal02) {
  gap: 2.5rem;
}
@media (max-width: 64rem) {
  .cmn-grid__content:has(.mdl-card-image--horizontal, .mdl-card-image--horizontal02) {
    gap: 2rem;
  }
}
@media (max-width: 48rem) {
  .cmn-grid__content:has(.mdl-card-image--horizontal, .mdl-card-image--horizontal02) {
    gap: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .cmn-grid__content:has(.mdl-card-image--horizontal, .mdl-card-image--horizontal02) {
    gap: 1rem;
  }
}
.cmn-grid__content:has([class^=mdl-lineup-list__]) {
  gap: 4.5rem 2.5rem;
}
@media (max-width: 48rem) {
  .cmn-grid__content:has([class^=mdl-lineup-list__]) {
    gap: 3rem;
  }
}
.cmn-grid__content:has(.mdl-menu-item) {
  gap: 0 2.5rem;
  align-items: stretch;
}

.estate .cmn-grid__content:has(.mdl-menu-item) {
  grid-auto-rows: auto min-content min-content min-content 1fr auto;
  margin-block-start: -3.5rem;
}
@media (max-width: 48rem) {
  .estate .cmn-grid__content:has(.mdl-menu-item) {
    margin-block-start: 0;
    grid-auto-rows: auto;
  }
}

.tenji .cmn-grid__content:has(.mdl-menu-item) {
  grid-auto-rows: auto min-content min-content min-content 1fr auto;
  margin-block-start: -3.5rem;
}
@media (max-width: 48rem) {
  .tenji .cmn-grid__content:has(.mdl-menu-item) {
    margin-block-start: 0;
    grid-auto-rows: auto;
  }
}

.event .cmn-grid__content:has(.mdl-menu-item) {
  grid-auto-rows: auto min-content min-content 1fr auto;
  gap: 0 2.5rem;
  grid-template-columns: repeat(2, minmax(calc((100% - 5rem) / 2), 1fr));
}
@media (max-width: 48rem) {
  .event .cmn-grid__content:has(.mdl-menu-item) {
    grid-template-columns: repeat(auto-fill, minmax(calc((100% - 5rem) / 2), 1fr));
    grid-auto-rows: auto;
  }
}
@media (max-width: 30rem) {
  .event .cmn-grid__content:has(.mdl-menu-item) {
    grid-template-columns: 1fr;
  }
}

.reform-works .cmn-grid__content {
  gap: 4.5rem 2.5rem;
  grid-template-columns: repeat(4, minmax(calc((100% - 7.5rem) / 4), 1fr));
}
@media (max-width: 64rem) {
  .reform-works .cmn-grid__content {
    grid-template-columns: repeat(3, minmax(calc((100% - 5rem) / 3), 1fr));
  }
}
@media (max-width: 48rem) {
  .reform-works .cmn-grid__content {
    grid-template-columns: repeat(auto-fill, minmax(calc((100% - 2.5rem) / 2), 1fr));
    gap: 3rem;
  }
}

.voice .cmn-grid__content {
  align-items: stretch;
  margin-block-start: -3.5rem;
}
.voice .cmn-grid__content:has(.mdl-list__item--nobg) {
  grid-auto-rows: auto min-content 1fr;
  row-gap: 0;
}

@media (max-width: 48rem) {
  .afterservice .cmn-grid {
    padding-inline: 0.5rem;
  }
}

/* cmn-list
--------------------------------------------------------------------*/
.cmn-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--row-gap) var(--column-gap);
}
.cmn-list--4col > * {
  width: calc((100% - var(--column-gap) * 3) / 4);
}
@media (max-width: 80rem) {
  .cmn-list--4col > * {
    width: calc((100% - var(--column-gap) * 2) / 3);
  }
}
@media (max-width: 64rem) {
  .cmn-list--4col > * {
    width: calc((100% - var(--column-gap)) / 2);
  }
}
@media (max-width: 40rem) {
  .cmn-list--4col > * {
    width: 100%;
  }
}
.cmn-list--3col > * {
  width: calc((100% - var(--column-gap) * 2) / 3);
}
@media (max-width: 64rem) {
  .cmn-list--3col > * {
    width: calc((100% - var(--column-gap)) / 2);
  }
}
@media (max-width: 40rem) {
  .cmn-list--3col > * {
    width: 100%;
  }
}
.cmn-list--2col > * {
  width: calc((100% - var(--column-gap)) / 2);
}
@media (max-width: 40rem) {
  .cmn-list--2col > * {
    width: 100%;
  }
}

/* cmn-image-container
--------------------------------------------------------------------*/
.cmn-image-container {
  aspect-ratio: 1200/340;
}
@media (max-width: 48rem) {
  .cmn-image-container {
    aspect-ratio: 343/147;
  }
}
.cmn-image-container img {
  border-radius: 0.25rem;
  height: 100%;
  object-fit: cover;
}

/* cmn-triangle-down
--------------------------------------------------------------------*/
.cmn-triangle-down {
  position: relative;
}
.cmn-triangle-down::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  inset: 0;
  aspect-ratio: 1920/140;
  max-height: 5rem;
}
@media (max-width: 48rem) {
  .cmn-triangle-down::before {
    aspect-ratio: 375/71;
    max-height: 3.75rem;
  }
}
.cmn-triangle-down--white::before {
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.cmn-triangle-down--base::before {
  background: #F4F6FA;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

/* cmn-fv-local-nav
--------------------------------------------------------------------*/
.cmn-fv-local-nav {
  padding: 7rem 0 7.5rem;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 48rem) {
  .cmn-fv-local-nav {
    padding: 3.75rem 0;
  }
}

/* cmn-header
--------------------------------------------------------------------*/
.cmn-header {
  position: absolute;
  z-index: 1000;
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
  height: var(--header-height);
  width: 100vw;
  top: 0;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cmn-header.is-scrolled {
  transform: translateY(-100%);
}
.cmn-header.is-fixed {
  position: fixed;
  transform: translateY(0);
}
.cmn-header__inner {
  height: 100%;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding-inline: 2.5rem;
  padding-block: 1.5rem;
}
@media (max-width: 87.5rem) {
  .cmn-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 64rem) {
  .cmn-header__inner {
    flex-direction: row;
    align-items: center;
    padding-inline: 1.5rem;
    position: relative;
    z-index: 1030;
  }
}
@media (max-width: 48rem) {
  .cmn-header__inner {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
  }
}
.cmn-header__logo {
  aspect-ratio: 256/32;
  max-width: 16rem;
}
@media (max-width: 64rem) {
  .cmn-header__logo {
    aspect-ratio: 149/19;
    max-width: 9.3125rem;
    z-index: 1040;
  }
}
.cmn-header__logo-link {
  display: block;
}
.cmn-header__logo-link img {
  width: 100%;
  height: auto;
  fill: #0075c1;
}
@media (min-width: 48rem) {
  .cmn-header__logo-link img {
    max-width: 16rem;
  }
}
.cmn-header__nav-wrapper {
  display: flex;
  align-items: center;
  margin-inline-start: auto;
  gap: 2.5rem;
}
@media (max-width: 48rem) {
  .cmn-header__nav-wrapper {
    gap: 0.625rem;
  }
}
@media (max-width: 64rem) {
  .cmn-header__nav-wrapper {
    gap: 2.5rem;
  }
}
@media (max-width: 64rem) {
  .cmn-header__nav-wrapper {
    margin-inline-start: auto;
  }
}

/* cmn-header-accordion
--------------------------------------------------------------------*/
@media (min-width: 64rem) {
  .cmn-header-accordion {
    display: flex;
    align-items: flex-end;
    flex-direction: column-reverse;
    gap: 0.5rem;
  }
}
.cmn-header-accordion--secondary {
  overflow-x: auto;
  width: 100%;
}
@media (max-width: 64rem) {
  .cmn-header-accordion--secondary {
    padding: 0.375rem 0;
  }
}
.cmn-header-accordion--secondary-wrapper {
  position: relative;
  width: 100%;
}
.cmn-header-accordion--secondary-wrapper .cmn-header-accordion__list {
  display: flex;
}
.cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item {
  flex-shrink: 0;
}
@media (min-width: 64rem) {
  .cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item {
    position: static;
  }
}
.cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item:not(:last-child) {
  margin-inline-end: 0.5rem;
}
@media (max-width: 64rem) {
  .cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item:not(:last-child) {
    margin-inline-end: 0.25rem;
  }
}
.cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item .cmn-header-accordion__link {
  padding-inline: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 80rem) {
  .cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item .cmn-header-accordion__link {
    padding-inline: 0.5rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 48rem) {
  .cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item .cmn-header-accordion__link {
    padding-inline: 0.25rem;
    font-size: 0.75rem;
  }
}
.cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item .cmn-header-accordion__link:hover {
  color: #0075c1;
}
.cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item .cmn-header-accordion__link::after {
  content: "";
  margin-inline-start: 0.5rem;
  position: relative;
  top: -0.125rem;
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-style: solid;
  border-color: #0075c1;
  border-width: 0 0.09375rem 0.09375rem 0;
  transform-origin: center center;
  transform: rotate(45deg);
}
@media (max-width: 64rem) {
  .cmn-header-accordion--secondary-wrapper {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1010;
  }
  .cmn-header-accordion--secondary-wrapper .cmn-header-accordion__list {
    margin: 0;
    gap: 0.5rem;
  }
  .cmn-header-accordion--secondary-wrapper .cmn-header-accordion__list::before, .cmn-header-accordion--secondary-wrapper .cmn-header-accordion__list::after {
    content: "";
    display: block;
    flex: 0 0 0.5rem;
    width: 0.5rem;
    height: 1px;
  }
  .cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item {
    display: inline-block;
    flex-shrink: 0;
  }
  .cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item .cmn-header-accordion__link {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #ffffff;
    font-size: 0.75rem;
    padding: 0.625rem 2rem 0.625rem 1rem;
    border-radius: 0.25rem;
    text-decoration: none;
    box-shadow: 1px 1px 10px hsla(204, 99%, 38%, 0.2);
  }
  .cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item .cmn-header-accordion__link::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0.625rem;
    height: 0.1125rem;
    background-color: #0075c1;
    border-radius: 624.9375rem;
    transform: translateY(-50%);
  }
  .cmn-header-accordion--secondary-wrapper .cmn-header-accordion__item .cmn-header-accordion__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.25625rem;
    width: 0.1125rem;
    height: 0.625rem;
    background-color: #0075c1;
    border-radius: 624.9375rem;
    transform: translateY(-50%);
  }
}
@media (min-width: 64rem) {
  .cmn-header-accordion--primary {
    margin-inline-start: 2rem;
  }
  .cmn-header-accordion--primary .cmn-header-accordion__list {
    display: flex;
  }
  .cmn-header-accordion--primary .cmn-header-accordion__item {
    font-size: 0.75rem;
    color: #262A2E;
    padding-inline: 0.5rem;
  }
  .cmn-header-accordion--primary .cmn-header-accordion__item:not(:last-child) {
    margin-inline-end: 0.5rem;
  }
  .cmn-header-accordion--primary .cmn-header-accordion__item .cmn-header-accordion__link {
    color: inherit;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  .cmn-header-accordion--primary .cmn-header-accordion__item .cmn-header-accordion__link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 64rem) {
  .cmn-header-accordion--primary {
    display: none;
    margin-block-end: 1.875rem;
  }
  .cmn-header-accordion--primary .cmn-header-accordion__item {
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
  }
  .cmn-header-accordion--primary .cmn-header-accordion__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .cmn-header-accordion--primary .cmn-header-accordion__item a {
    color: inherit;
    text-decoration: none;
    display: block;
  }
}
.cmn-header-accordion__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cmn-header-accordion__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0075c1;
  border: none;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  position: relative;
  z-index: 1030;
  border-radius: 0.5rem;
  padding: 1.5rem 1.125rem;
  transition: background-color 0.3s ease;
}
.cmn-header-accordion__toggle .cmn-header-accordion__line {
  display: block;
  width: 1.75rem;
  height: 0.0625rem;
  background-color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, margin-block-end 0.3s ease, background-color 0.3s ease;
  transform-origin: center center;
}
.cmn-header-accordion__toggle .cmn-header-accordion__line:not(:last-child) {
  margin-block-end: 0.375rem;
}
.cmn-header-accordion__toggle .cmn-header-accordion__line--bottom {
  align-self: flex-end;
  width: 0.875rem;
}
.cmn-header-accordion__toggle.is-open {
  padding: 1.125rem;
  justify-content: center;
  background-color: #e1e7f1;
}
.cmn-header-accordion__toggle.is-open .cmn-header-accordion__line {
  background-color: #707c8a;
}
.cmn-header-accordion__toggle.is-open .cmn-header-accordion__line--top {
  margin-block-end: 0;
  transform: translateY(0.28rem) rotate(45deg);
}
.cmn-header-accordion__toggle.is-open .cmn-header-accordion__line--middle {
  opacity: 0;
  transform: scaleX(0);
}
.cmn-header-accordion__toggle.is-open .cmn-header-accordion__line--bottom {
  align-self: center;
  width: 1.75rem;
  transform: translateY(-0.2rem) rotate(-45deg);
}
@media (max-width: 48rem) {
  .cmn-header-accordion__toggle {
    width: 3rem;
    height: 3rem;
    border-radius: 0.375rem;
    padding: 1.125rem 0.875rem;
  }
  .cmn-header-accordion__toggle .cmn-header-accordion__line {
    width: 1.25rem;
  }
  .cmn-header-accordion__toggle .cmn-header-accordion__line--bottom {
    width: 0.625rem;
  }
  .cmn-header-accordion__toggle .cmn-header-accordion__line:not(:last-child) {
    margin-block-end: 0.25rem;
  }
  .cmn-header-accordion__toggle.is-open {
    padding: 0.875rem;
  }
  .cmn-header-accordion__toggle.is-open .cmn-header-accordion__line--top {
    margin-block-end: 0;
    transform: translateY(0.15rem) rotate(45deg);
  }
  .cmn-header-accordion__toggle.is-open .cmn-header-accordion__line--bottom {
    width: 1.25rem;
    transform: translateY(-0.2rem) rotate(-45deg);
  }
}

body.is-menu-open .cmn-header__inner {
  background-color: #F4F6FA;
}
@media (max-width: 64rem) {
  body.is-menu-open .cmn-header-accordion--secondary-wrapper {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* cmn-header-sub
--------------------------------------------------------------------*/
.cmn-header-sub {
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
  border-radius: 0.5rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  position: absolute;
  box-sizing: border-box;
}
.cmn-header-sub.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}
@media (min-width: 65rem) {
  .cmn-header-sub.is-open {
    max-height: calc(100dvh - var(--header-height) - 3rem);
  }
}
@media (max-width: 64rem) {
  .cmn-header-sub.is-open {
    max-height: calc(100dvh - var(--header-height) - 4.125rem - 3rem);
  }
}
@media (min-width: 64rem) {
  .cmn-header-sub {
    top: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100vw - 32px);
    max-width: 93.75rem;
    margin-inline: auto;
    margin-block-start: 1.5rem;
  }
}
@media (max-width: 64rem) {
  .cmn-header-sub {
    top: calc(100% + 3.375rem);
    left: 0;
    right: 0;
    transform: none;
    width: auto;
    max-width: none;
    margin-inline: 16px;
    margin-block-start: 1.5rem;
  }
}
.cmn-header-sub__inner {
  display: flex;
  justify-content: space-between;
}
.cmn-header-sub__img {
  aspect-ratio: 478/421;
  width: clamp(19rem, 31.201044vw, 29.875rem);
  flex-shrink: 0;
}
.cmn-header-sub__img img {
  object-fit: cover;
  height: 100%;
}
@media (max-width: 64rem) {
  .cmn-header-sub__img {
    display: none;
  }
}
.cmn-header-sub__menu {
  display: flex;
  flex-direction: column;
  padding: 4rem 5.5rem;
  width: 100%;
}
@media (max-width: 80rem) {
  .cmn-header-sub__menu {
    padding: 3.5rem 4rem;
  }
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu {
    padding: 2rem 1.5rem;
  }
}
.cmn-header-sub__menu .cmn-header-sub__ttl {
  display: flex;
  flex-direction: column;
}
.cmn-header-sub__menu .cmn-header-sub__ttl .en {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  line-height: 1.75;
  color: #ACB4BF;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__ttl .en {
    font-size: 0.625rem;
  }
}
.cmn-header-sub__menu .cmn-header-sub__ttl .ja {
  font-size: 1.625rem;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 87.5rem) {
  .cmn-header-sub__menu .cmn-header-sub__ttl .ja {
    font-size: 1.25rem;
  }
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__ttl .ja {
    font-size: 1.25rem;
  }
}
.cmn-header-sub__menu .cmn-header-sub__ttl-inner {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.cmn-header-sub__menu .cmn-header-sub__ttl-link {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
  position: relative;
  height: 100%;
  width: fit-content;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cmn-header-sub__menu .cmn-header-sub__ttl-link:hover {
  opacity: 0.7;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__ttl-link {
    align-items: center;
  }
}
.cmn-header-sub__menu .cmn-header-sub__ttl-link::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 2.5rem;
  height: 1.5rem;
  margin-block-end: 0.46875rem;
  background-image: url("/web/images/common/btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__ttl-link::after {
    margin-block-end: 0;
  }
}
.cmn-header-sub__menu .cmn-header-sub__nav {
  max-width: 24.4375rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  height: fit-content;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav {
    gap: 0.5rem;
    max-width: unset;
  }
}
.cmn-header-sub__menu .cmn-header-sub__nav-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-block-start: 3.5rem;
}
@media (max-width: 80rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav-wrapper {
    margin-block-start: 3rem;
  }
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav-wrapper {
    flex-direction: column;
    margin-block-start: 2rem;
  }
}
.cmn-header-sub__menu .cmn-header-sub__nav .cmn-header-sub__nav-item {
  border-bottom: 1px solid #D2DBE6;
  width: 100%;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav .cmn-header-sub__nav-item {
    width: calc((100% - 0.5rem) / 2);
    border-bottom: none;
    background-color: #ffffff;
    box-shadow: 2px 2px 10px hsla(204, 99%, 38%, 0.16);
    border-radius: 0.5rem;
  }
}
@media (max-width: 40rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav .cmn-header-sub__nav-item {
    width: 100%;
  }
}
.cmn-header-sub__menu .cmn-header-sub__nav.cmn-header-sub__nav--3col {
  max-width: unset;
  width: 100%;
}
.cmn-header-sub__menu .cmn-header-sub__nav.cmn-header-sub__nav--3col .cmn-header-sub__nav-item {
  width: calc((100% - 4rem) / 3);
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav.cmn-header-sub__nav--3col .cmn-header-sub__nav-item {
    width: calc((100% - 0.5rem) / 2);
    border-bottom: none;
    background-color: #ffffff;
    box-shadow: 2px 2px 10px hsla(204, 99%, 38%, 0.16);
    border-radius: 0.5rem;
  }
}
@media (max-width: 40rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav.cmn-header-sub__nav--3col .cmn-header-sub__nav-item {
    width: 100%;
  }
}
.cmn-header-sub__menu .cmn-header-sub__nav-ttl {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-size: 1rem;
  padding: 0rem 0.5rem 1.5rem;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav-ttl {
    font-size: 0.875rem;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
  }
}
.cmn-header-sub__menu .cmn-header-sub__nav-ttl--link {
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cmn-header-sub__menu .cmn-header-sub__nav-ttl--link:hover {
  opacity: 0.7;
}
.cmn-header-sub__menu .cmn-header-sub__nav-ttl--link::after {
  content: "";
  display: block;
  width: 1rem;
  height: 0.3125rem;
  background-image: url("/web/images/common/icon-arrow--blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.cmn-header-sub__menu .cmn-header-sub__nav-list-area {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  max-width: 24.4375rem;
  min-width: 18.5rem;
  max-height: fit-content;
  border-bottom: 0.0625rem solid #D2DBE6;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav-list-area {
    min-width: unset;
    max-width: 100%;
    gap: 0.5rem;
  }
}
.cmn-header-sub__menu .cmn-header-sub__nav-list-wrapper {
  width: 100%;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav-list-wrapper {
    min-width: unset;
    border-bottom: none;
    background-color: #ffffff;
    box-shadow: 2px 2px 10px hsla(204, 99%, 38%, 0.16);
    border-radius: 0.5rem;
  }
}
.cmn-header-sub__menu .cmn-header-sub__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0rem 1.5rem 1.5rem;
}
@media (max-width: 80rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav-list {
    padding: 0rem 1rem 1.5rem;
  }
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav-list {
    gap: 0.375rem 0rem;
    padding: 1.5rem 1.25rem;
  }
}
.cmn-header-sub__menu .cmn-header-sub__nav-list .cmn-header-sub__nav-list-item {
  width: 100%;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cmn-header-sub__menu .cmn-header-sub__nav-list .cmn-header-sub__nav-list-item:hover {
  opacity: 0.7;
}
.cmn-header-sub__menu .cmn-header-sub__nav-list .cmn-header-sub__nav-list-item.cmn-header-sub__nav-list-item--half {
  width: calc((100% - 0.5rem) / 2);
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__nav-list .cmn-header-sub__nav-list-item.cmn-header-sub__nav-list-item--half {
    width: calc((100% - 0.375rem) / 2);
  }
}
.cmn-header-sub__menu .cmn-header-sub__nav-list .cmn-header-sub__nav-list-item .cmn-header-sub__nav-list-link {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  width: 100%;
  padding-inline: 0.125rem;
  justify-content: space-between;
  padding-block-end: 0.5rem;
  border-bottom: 1px solid #D2DBE6;
}
.cmn-header-sub__menu .cmn-header-sub__nav-list .cmn-header-sub__nav-list-item .cmn-header-sub__nav-list-link::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("/web/images/common/icon-arrow--blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-inline-start: auto;
}
.cmn-header-sub__menu .cmn-header-sub__nav-list .cmn-header-sub__nav-list-item .cmn-header-sub__nav-list-link.cmn-header-sub__nav-list-link--gray {
  color: #707c8a;
  justify-content: flex-start;
  padding-block-end: unset;
  border-bottom: unset;
}
.cmn-header-sub__menu .cmn-header-sub__nav-list .cmn-header-sub__nav-list-item .cmn-header-sub__nav-list-link.cmn-header-sub__nav-list-link--gray::before {
  content: "";
  border: 1px solid #707c8a;
  width: 0.4375rem;
  border-radius: 9999px;
  margin-inline-end: 0.5rem;
}
.cmn-header-sub__menu .cmn-header-sub__nav-list .cmn-header-sub__nav-list-item .cmn-header-sub__nav-list-link.cmn-header-sub__nav-list-link--gray::after {
  display: none;
}
.cmn-header-sub__menu .cmn-header-sub__extras {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 21.5rem;
  min-width: 16rem;
}
@media (max-width: 80rem) {
  .cmn-header-sub__menu .cmn-header-sub__extras {
    gap: 2.5rem;
  }
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__extras {
    gap: 2rem;
    width: 100%;
    min-width: unset;
  }
}
.cmn-header-sub__menu .cmn-header-sub__extras-ttl {
  padding-block-end: 1.5rem;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__extras-ttl {
    font-size: 0.875rem;
    font-weight: 600;
  }
}
.cmn-header-sub__menu .cmn-header-sub__bnr-inner-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__bnr-inner-wrap {
    flex-direction: row;
  }
}
@media (max-width: 40rem) {
  .cmn-header-sub__menu .cmn-header-sub__bnr-inner-wrap {
    flex-direction: column;
  }
}
.cmn-header-sub__menu .cmn-header-sub__bnr-inner {
  aspect-ratio: 294/118;
  max-width: 18.375rem;
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
}
.cmn-header-sub__menu .cmn-header-sub__bnr-inner img {
  border-radius: 0.25rem;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__bnr-inner {
    max-width: calc((100% - 1rem) / 2);
  }
}
@media (max-width: 40rem) {
  .cmn-header-sub__menu .cmn-header-sub__bnr-inner {
    max-width: 100%;
  }
}
.cmn-header-sub__menu .cmn-header-sub__feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-block-start: 0.5625rem;
}
.cmn-header-sub__menu .cmn-header-sub__feature-list-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  box-shadow: 2px 2px 10px hsla(204, 99%, 38%, 0.16);
  font-size: 0.875rem;
  max-width: 21.4375rem;
  width: 100%;
  margin-inline-start: 0.5rem;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cmn-header-sub__menu .cmn-header-sub__feature-list-item:hover {
  opacity: 0.7;
}
.cmn-header-sub__menu .cmn-header-sub__feature-list-item::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1.5rem;
  background-image: url("/web/images/common/btn-arrow--white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__feature-list-item {
    max-width: 100%;
  }
}
.cmn-header-sub__menu .cmn-header-sub__feature-list-item.new::before {
  content: "NEW";
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.03;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: #88C417;
  color: #ffffff;
}
.cmn-header-sub__menu .cmn-header-sub__feature-list-item.pricedown::before {
  content: "PRICE DOWN";
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.03;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: #ffffff;
  border: 1px solid #F07D31;
  color: #F07D31;
}
.cmn-header-sub__menu .cmn-header-sub__close {
  display: none;
}
@media (max-width: 64rem) {
  .cmn-header-sub__menu .cmn-header-sub__close {
    display: flex;
    align-items: center;
    width: fit-content;
    margin-inline: auto;
    color: #707c8a;
    font-size: 0.75rem;
    line-height: 1.29;
    cursor: pointer;
  }
  .cmn-header-sub__menu .cmn-header-sub__close::after {
    content: "";
    display: block;
    width: 1.75rem;
    height: 1rem;
    background-image: url("/web/images/common/icon-close.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-inline-start: 0.25rem;
  }
}

/* cmn-header-mega
--------------------------------------------------------------------*/
.cmn-header-mega {
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  background-color: #F4F6FA;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1029;
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
  /* cmn-header-sub megaメニュー内のsubメニューのスタイル
  ----------------------------------------------------*/
}
.cmn-header-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  height: 100dvh;
}
.cmn-header-mega br.show-tab {
  display: none;
}
@media (max-width: 64rem) {
  .cmn-header-mega br.show-tab {
    display: flex;
  }
}
.cmn-header-mega .cmn-header-sub__menu {
  justify-content: space-between;
}
.cmn-header-mega__inner {
  width: calc(100% - 3rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  max-width: 93.75rem;
  gap: 4rem;
  padding: calc(var(--header-height) + 2.625rem) 0 9.75rem;
}
@media (max-width: 87.5rem) {
  .cmn-header-mega__inner {
    gap: 2rem;
  }
}
@media (max-width: 64rem) {
  .cmn-header-mega__inner {
    flex-direction: column;
    align-items: center;
    padding: calc(var(--header-height) + 2.625rem) 0 6.25rem;
    gap: 0;
  }
  .cmn-header-mega__inner .cmn-header-mega__content {
    order: 1;
  }
  .cmn-header-mega__inner .cmn-header-mega__menu-list {
    order: 2;
  }
  .cmn-header-mega__inner .cmn-header-mega__info {
    order: 3;
  }
}
@media (max-width: 48rem) {
  .cmn-header-mega__inner {
    padding: calc(var(--header-height) + 2.5rem) 0 6.25rem;
  }
}
.cmn-header-mega__info {
  max-width: 19rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 64rem) {
  .cmn-header-mega__info {
    max-width: 100%;
    align-items: center;
    gap: 0;
  }
  .cmn-header-mega__info .cmn-header-mega__actions {
    order: 1;
  }
  .cmn-header-mega__info .cmn-header-mega__logo {
    order: 2;
  }
  .cmn-header-mega__info .cmn-header-mega__info-block {
    order: 3;
  }
  .cmn-header-mega__info .cmn-header-mega__close {
    order: 4;
  }
}
.cmn-header-mega__logo {
  aspect-ratio: 255/32;
  max-width: 15.9375rem;
}
@media (max-width: 64rem) {
  .cmn-header-mega__logo {
    margin-block-start: 8rem;
  }
}
.cmn-header-mega__info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 64rem) {
  .cmn-header-mega__info-block {
    align-items: center;
    gap: 2rem;
    margin-block-start: 3.5rem;
  }
}
.cmn-header-mega__info-address-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 64rem) {
  .cmn-header-mega__info-address-block {
    align-items: center;
    gap: 0.75rem;
  }
}
.cmn-header-mega__info-sns-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 64rem) {
  .cmn-header-mega__info-sns-block {
    align-items: center;
  }
}
.cmn-header-mega__info-ttl {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.6;
}
.cmn-header-mega__info-address {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 64rem) {
  .cmn-header-mega__info-address {
    text-align: center;
  }
}
.cmn-header-mega__sns-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 64rem) {
  .cmn-header-mega__sns-list {
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
  }
}
.cmn-header-mega__sns-item {
  display: flex;
  align-items: center;
}
@media (max-width: 64rem) {
  .cmn-header-mega__sns-item {
    justify-content: center;
  }
}
.cmn-header-mega__sns-item img {
  display: block;
  width: 1rem;
  height: auto;
}
@media (max-width: 64rem) {
  .cmn-header-mega__sns-item img {
    width: 2rem;
  }
}
.cmn-header-mega__sns-item .ig, .cmn-header-mega__sns-item .fb, .cmn-header-mega__sns-item .yt {
  display: flex;
  align-items: center;
}
.cmn-header-mega__sns-text {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  margin-inline-start: 0.5rem;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  vertical-align: middle;
}
.cmn-header-mega__sns-text::after {
  content: "";
  display: inline-block;
  width: 0.6875rem;
  height: 0.6875rem;
  background: url("/web/images/common/icon-blank.svg") no-repeat center/contain;
  margin-inline-start: 0.375rem;
  vertical-align: middle;
}
@media (max-width: 64rem) {
  .cmn-header-mega__sns-text {
    display: none;
  }
}
.cmn-header-mega__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 64rem) {
  .cmn-header-mega__actions {
    flex-direction: row;
    gap: 2rem;
    margin-block-start: 3rem;
  }
}
.cmn-header-mega__action-item {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
.cmn-header-mega__action-item::before {
  content: "";
  display: block;
  width: 0.375rem;
  border: 1px solid #262A2E;
  border-radius: 9999px;
  margin-inline-end: 0.375rem;
}
.cmn-header-mega__contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.cmn-header-mega__contact .cmn-show-button {
  min-width: unset;
  max-width: 16.4375rem;
  width: 100%;
}
@media (max-width: 64rem) {
  .cmn-header-mega__contact {
    display: none;
  }
}
.cmn-header-mega__contact.show-tab {
  display: none;
}
@media (max-width: 64rem) {
  .cmn-header-mega__contact.show-tab {
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    margin-block-end: 3rem;
  }
}
.cmn-header-mega__tel-block {
  display: flex;
  flex-direction: column;
}
.cmn-header-mega__tel {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6875rem;
  font-weight: 400;
  line-height: 1.8;
  display: flex;
  align-items: baseline;
  color: #0075c1;
}
.cmn-header-mega__tel .fs {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.8;
}
.cmn-header-mega__note {
  font-size: 0.75rem;
  color: #707c8a;
}
.cmn-header-mega__menu-ttl {
  display: none;
  color: #707c8a;
  background-color: #EDF1F7;
  width: 100vw;
  padding: 0.40625rem 1.5rem;
}
@media (max-width: 64rem) {
  .cmn-header-mega__menu-ttl {
    display: block;
  }
}
.cmn-header-mega__menu {
  display: flex;
  flex-direction: column;
  width: calc(100% - 4rem - 19rem);
}
@media (max-width: 87.5rem) {
  .cmn-header-mega__menu {
    width: calc(100% - 2rem - 19rem);
  }
}
@media (max-width: 64rem) {
  .cmn-header-mega__menu {
    width: 100%;
  }
}
.cmn-header-mega__menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6.5rem 3.5rem;
  width: 100%;
}
@media (max-width: 87.5rem) {
  .cmn-header-mega__menu-list {
    gap: 6.5rem 1.5rem;
  }
}
@media (max-width: 64rem) {
  .cmn-header-mega__menu-list {
    flex-direction: column;
    align-items: center;
    gap: 0rem;
  }
}
.cmn-header-mega__menu-item {
  width: calc((100% - 7rem) / 3);
}
@media (max-width: 87.5rem) {
  .cmn-header-mega__menu-item {
    width: calc((100% - 3rem) / 3);
  }
}
@media (max-width: 64rem) {
  .cmn-header-mega__menu-item {
    width: 100%;
    margin-block-start: 2rem;
    padding-block-end: 2rem;
    border-bottom: 1px solid #D2DBE6;
  }
}
.cmn-header-mega__close {
  display: none;
}
@media (max-width: 64rem) {
  .cmn-header-mega__close {
    display: block;
    margin-block-start: 8rem;
  }
}
@media (max-width: 64rem) {
  .cmn-header-mega__close-link {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}
.cmn-header-mega__close-icon {
  display: block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: #D2DBE6;
  z-index: 1;
}
.cmn-header-mega__close-icon::before, .cmn-header-mega__close-icon::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.75rem;
  height: 0.0625rem;
  background: #707c8a;
  content: "";
  display: block;
}
.cmn-header-mega__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cmn-header-mega__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cmn-header-mega__close-text {
  color: #707c8a;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.cmn-header-mega .cmn-header-sub__inner {
  padding: 0;
  flex-direction: column;
  overflow-y: hidden;
}
.cmn-header-mega .cmn-header-sub__inner.type-a .cmn-header-sub__nav .cmn-header-sub__nav-item {
  width: 100%;
}
.cmn-header-mega .cmn-header-sub__menu {
  padding: 0;
}
.cmn-header-mega .cmn-header-sub__img {
  aspect-ratio: 332/198;
  max-width: 20.75rem;
  width: 100%;
  margin-block-end: 1.5rem;
}
.cmn-header-mega .cmn-header-sub__img img {
  border-radius: 0.5rem;
}
@media (max-width: 64rem) {
  .cmn-header-mega .cmn-header-sub__img {
    display: none;
  }
}
.cmn-header-mega .cmn-header-sub__nav-wrapper {
  padding: 0;
  flex-direction: column;
}
@media (max-width: 64rem) {
  .cmn-header-mega .cmn-header-sub__nav-wrapper {
    margin-inline-start: 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-block-start 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-block-start: 0;
  }
}
.cmn-header-mega .cmn-header-sub__nav-wrapper.is-open {
  margin-block-start: 2rem;
}
.cmn-header-mega .cmn-header-sub__nav .cmn-header-sub__nav-item {
  width: 100%;
}
.cmn-header-mega .cmn-header-sub__nav .cmn-header-sub__nav-item.show-tab {
  display: none;
}
@media (max-width: 64rem) {
  .cmn-header-mega .cmn-header-sub__nav .cmn-header-sub__nav-item.show-tab {
    display: block;
  }
}
.cmn-header-mega .cmn-header-sub__extras {
  display: none;
}
@media (max-width: 64rem) {
  .cmn-header-mega .cmn-header-sub__extras {
    display: flex;
  }
}
@media (max-width: 64rem) {
  .cmn-header-mega .cmn-header-sub__ttl-link {
    justify-content: space-between;
    width: 100%;
  }
  .cmn-header-mega .cmn-header-sub__ttl-link::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 1.5rem;
    background-image: url("/web/images/common/icon-open.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media (max-width: 64rem) {
  .cmn-header-mega .cmn-header-sub__ttl-link.is-open::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 1.5rem;
    background-image: url("/web/images/common/icon-close.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.cmn-header-mega .cmn-header-sub__close {
  position: relative;
}

.cmn-footer {
  background-color: #EDF1F7;
  position: relative;
  z-index: 2;
}
.cmn-footer__container {
  padding: 5rem 0 1.5rem;
}
.cmn-footer__inner {
  margin: auto;
  width: calc(100% - 4rem);
  max-width: 93.75rem;
}
.cmn-footer__wrap {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 48rem) {
  .cmn-footer__wrap {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.cmn-footer__info .company-info {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 48rem) {
  .cmn-footer__info .company-info {
    margin-top: 3.5rem;
    font-size: 0.75rem;
    font-weight: 500;
  }
}
.cmn-footer__info .company--address {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}
.cmn-footer__info .company--tel {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 48rem) {
  .cmn-footer__info .company--tel {
    margin-top: 0.5rem;
  }
}
.cmn-footer__info .company--permission {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.cmn-footer__logo {
  width: 28.316875rem;
  max-width: 100%;
  height: auto;
}
@media (max-width: 48rem) {
  .cmn-footer__logo {
    width: 18.548125rem;
  }
}
.cmn-footer__access {
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  gap: 8rem;
}
@media (max-width: 64rem) {
  .cmn-footer__access {
    gap: 2.5rem;
  }
}
.cmn-footer__access-link {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 48rem) {
  .cmn-footer__access-link {
    gap: 1rem;
  }
}
.cmn-footer__access-link li a {
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.84;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  position: relative;
  padding-left: 0.8125rem;
}
@media (max-width: 48rem) {
  .cmn-footer__access-link li a {
    letter-spacing: 0.05em;
  }
}
.cmn-footer__access-link li a::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.4375rem;
  height: 0.0625rem;
  background-color: #262A2E;
  border-radius: 50%;
  left: 0;
}
.cmn-footer__sns {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 48rem) {
  .cmn-footer__sns {
    margin-top: 2.5rem;
    gap: 1rem;
  }
}
.cmn-footer__sns li {
  width: 1.5rem;
}
.cmn-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 0.0625rem solid #D2DBE6;
}
@media (max-width: 48rem) {
  .cmn-footer__nav {
    align-items: flex-start;
    margin-top: 4rem;
    padding-top: 2rem;
  }
}
.cmn-footer__nav .copy {
  font-size: 0.75rem;
  color: #ACB4BF;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 3rem;
}
@media (max-width: 48rem) {
  .cmn-footer__nav .copy {
    margin-top: 2.5rem;
    line-height: 2.75rem;
    font-size: 0.5rem;
  }
}
.cmn-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
}
@media (max-width: 48rem) {
  .cmn-footer__nav-list {
    gap: 1rem 1.25rem;
  }
}
.cmn-footer__nav-list li a {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 400;
  color: #707c8a;
}
@media (max-width: 48rem) {
  .cmn-footer__nav-list li a {
    font-size: 0.625rem;
  }
}

/* cmn-breadcrumb パンくず
--------------------------------------------------------------------*/
.cmn-breadcrumb {
  font-size: 0.75rem;
  padding: 0.375rem 1.5rem;
  background-color: #ffffff;
  border-radius: 0.25rem;
  display: inline-block;
}
@media (max-width: 30rem) {
  .cmn-breadcrumb {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
.cmn-breadcrumb__list {
  line-height: 1;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.cmn-breadcrumb__list li {
  color: #707c8a;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}
.cmn-breadcrumb__list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-style: solid;
  border-color: #707c8a;
  border-width: 0 0.09375rem 0.09375rem 0;
  transform: rotate(-45deg);
  margin-inline: 1rem;
  position: relative;
  bottom: 0.1rem;
}
@media (max-width: 48rem) {
  .cmn-breadcrumb__list li:not(:last-child)::after {
    margin-inline: 0.5rem;
  }
}
.cmn-breadcrumb__list li:last-child {
  color: #ACB4BF;
  pointer-events: none;
}
.cmn-breadcrumb__list li a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.cmn-breadcrumb__list li a:hover {
  color: #0075c1;
  text-decoration: underline;
}

/* cmn-headline01
--------------------------------------------------------------------*/
.cmn-headline01, .cmn-headline01--sp-start, .cmn-headline01--sp-center, .cmn-headline01--center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
  gap: 0.75rem;
  margin-bottom: 5rem;
}
@media (max-width: 48rem) {
  .cmn-headline01, .cmn-headline01--sp-start, .cmn-headline01--sp-center, .cmn-headline01--center {
    gap: 0.625rem;
    margin: 0 0.5rem 3rem;
  }
}
.cmn-headline01--center {
  align-items: center;
  text-align: center;
}
@media (max-width: 48rem) {
  .cmn-headline01--sp-center {
    align-items: center;
  }
}
.cmn-headline01--sp-start {
  align-items: center;
  text-align: center;
}
@media (max-width: 48rem) {
  .cmn-headline01--sp-start {
    align-items: flex-start;
    text-align: start;
  }
}
.cmn-headline01 .ja, .cmn-headline01--center .ja, .cmn-headline01--sp-center .ja, .cmn-headline01--sp-start .ja {
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .cmn-headline01 .ja, .cmn-headline01--center .ja, .cmn-headline01--sp-center .ja, .cmn-headline01--sp-start .ja {
    font-size: 1.375rem;
  }
}
.cmn-headline01 .en, .cmn-headline01--center .en, .cmn-headline01--sp-center .en, .cmn-headline01--sp-start .en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ACB4BF;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (max-width: 48rem) {
  .cmn-headline01 .en, .cmn-headline01--center .en, .cmn-headline01--sp-center .en, .cmn-headline01--sp-start .en {
    font-size: 0.75rem;
  }
}

.cmn-headline01-wrap {
  margin-block-end: 5rem;
}
.cmn-headline01-wrap > * {
  margin-block-end: 0;
}
@media (max-width: 48rem) {
  .cmn-headline01-wrap {
    margin: 0 0.5rem 3rem;
  }
  .cmn-headline01-wrap > * {
    margin-block-end: 0;
  }
}

/* cmn-headline02
--------------------------------------------------------------------*/
.cmn-headline02, .cmn-headline02--right, .cmn-headline02--center {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
@media (max-width: 48rem) {
  .cmn-headline02, .cmn-headline02--right, .cmn-headline02--center {
    margin: 0 0.5rem;
  }
}
.cmn-headline02--center {
  flex-direction: column;
  align-items: center;
  margin-bottom: 4.5rem;
  gap: 0.5rem;
}
@media (max-width: 48rem) {
  .cmn-headline02--center {
    flex-direction: row;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
}
.cmn-headline02--right {
  gap: 1.5rem;
}
@media (max-width: 48rem) {
  .cmn-headline02--right {
    gap: 0.5rem 1rem;
    display: flex;
    flex-wrap: wrap;
  }
}
.cmn-headline02 .ja, .cmn-headline02--center .ja, .cmn-headline02--right .ja {
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0.05em;
}
@media (max-width: 48rem) {
  .cmn-headline02 .ja, .cmn-headline02--center .ja, .cmn-headline02--right .ja {
    font-size: 1.25rem;
    line-height: 1.45;
    letter-spacing: 0.04em;
  }
}
.cmn-headline02 .en, .cmn-headline02--center .en, .cmn-headline02--right .en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #ACB4BF;
  font-size: 0.875rem;
  line-height: 1.75;
}
@media (max-width: 48rem) {
  .cmn-headline02 .en, .cmn-headline02--center .en, .cmn-headline02--right .en {
    font-size: 0.625rem;
  }
}

/* cmn-headline03
--------------------------------------------------------------------*/
.cmn-headline03 {
  font-size: 1.5rem;
  line-height: 1.6;
  padding-block-end: 2rem;
  border-bottom: 1px solid #D2DBE6;
  position: relative;
}
.cmn-headline03::after {
  content: "";
  position: absolute;
  top: 100%;
  display: flex;
  max-width: 4.5rem;
  width: 100%;
  height: 1px;
  background-color: #0075c1;
}
@media (max-width: 48rem) {
  .cmn-headline03 {
    font-size: 1.125rem;
    padding-block-end: 1.25rem;
    margin: 0 0.5rem;
  }
}

.cmn-headline03--bar {
  font-size: 1.5rem;
  line-height: 1.6;
  position: relative;
  padding-inline-start: 1rem;
  margin-block-end: 2.5rem;
}
.cmn-headline03--bar::before {
  content: "";
  position: absolute;
  inset-block-start: 0.25rem;
  inset-block-end: 0.25rem;
  inset-inline-start: 0;
  width: 3px;
  background-color: #0075c1;
}
@media (max-width: 48rem) {
  .cmn-headline03--bar {
    font-size: 1.125rem;
    padding-inline-start: 0.5rem;
    margin-block-end: 2rem;
  }
}

.cmn-headline03-wrap {
  display: flex;
  flex-direction: column;
  padding-block-end: 2.5rem;
  gap: 2.5rem;
}
.cmn-headline03-wrap > * {
  margin-block-end: 0;
}
@media (max-width: 48rem) {
  .cmn-headline03-wrap {
    padding-block-end: 2rem;
    gap: 2rem;
  }
  .cmn-headline03-wrap > * {
    margin-block-end: 0;
  }
}

/* cmn-headline04
--------------------------------------------------------------------*/
.cmn-headline04 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-block-end: 5rem;
}
@media (max-width: 48rem) {
  .cmn-headline04 {
    margin: 0 0.5rem 3.5rem;
  }
}
.cmn-headline04 .ja {
  font-size: 1.125rem;
  line-height: 1.5;
  padding-block-end: 0.375rem;
}
@media (max-width: 48rem) {
  .cmn-headline04 .ja {
    font-size: 1.5rem;
    padding-block-end: 0.625rem;
  }
}
.cmn-headline04 .en {
  font-family: "Montserrat", sans-serif;
  color: #ACB4BF;
  font-size: 0.75rem;
  line-height: 1.75;
}

/* cmn-headline05
--------------------------------------------------------------------*/
.cmn-headline05 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-block: calc((1em - 1lh) / 2);
}
@supports not (top: 1lh) {
  .cmn-headline05 {
    margin-block: 0;
  }
}
.cmn-headline05 .ja {
  font-size: 2.25rem;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 48rem) {
  .cmn-headline05 .ja {
    font-size: 1.5rem;
    font-weight: 500;
  }
}
.cmn-headline05 .en {
  font-family: "Montserrat", sans-serif;
  color: #0075c1;
  font-size: 0.875rem;
  line-height: 1.75;
  padding-block-end: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 48rem) {
  .cmn-headline05 .en {
    padding-block-end: 1rem;
  }
}
.cmn-headline05 .en::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.125rem;
  border-radius: 624.9375rem;
  background-color: #0075c1;
}
@media (max-width: 48rem) {
  .cmn-headline05 .en::before {
    height: 0.0625rem;
  }
}
.cmn-headline05__description {
  font-size: 0.875rem;
  font-weight: 400;
}
@media (max-width: 48rem) {
  .cmn-headline05__description {
    line-height: 1.65;
  }
}

.cmn-headline05-wrap {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-block-end: 6rem;
}
@media (max-width: 48rem) {
  .cmn-headline05-wrap {
    gap: 2rem;
    margin: 0 0.5rem 3.5rem;
  }
}

/* cmn-headline-wrap
--------------------------------------------------------------------*/
.cmn-headline-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.5rem;
}
.cmn-headline-wrap > * {
  margin-block-end: 0;
}
@media (max-width: 48rem) {
  .cmn-headline-wrap {
    display: block;
    margin: 0 0.5rem 2.5rem;
  }
  .cmn-headline-wrap > * {
    margin-block-end: 0;
  }
}

/* cmn-headline-border
--------------------------------------------------------------------*/
.cmn-headline-border {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  position: relative;
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (max-width: 48rem) {
  .cmn-headline-border {
    font-size: 1.125rem;
    line-height: 1.5;
    gap: 1.25rem;
    margin: 0 0.5rem 2rem;
  }
}
.cmn-headline-border::after {
  content: "";
  display: block;
  background-color: #0075c1;
  height: 1px;
  width: 4.375rem;
}
@media (max-width: 48rem) {
  .cmn-headline-border::after {
    width: 3rem;
  }
}

/* cmn-headline__description
--------------------------------------------------------------------*/
.cmn-headline__description {
  font-weight: 400;
  font-size: 0.875rem;
}
@media (max-width: 48rem) {
  .cmn-headline__description {
    line-height: 1.65;
    padding-inline: 0.5rem;
  }
}

/* cmn-blue-header
--------------------------------------------------------------------*/
.cmn-blue-header {
  background-color: #0075c1;
  color: #ffffff;
  padding: 1.875rem 0;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 48rem) {
  .cmn-blue-header {
    line-height: 1.6;
  }
}
.cmn-blue-header__top {
  display: block;
  font-size: 1.875rem;
}
@media (max-width: 48rem) {
  .cmn-blue-header__top {
    font-size: 1.25rem;
  }
}
.cmn-blue-header__bottom {
  display: block;
  font-size: 2.25rem;
}
@media (max-width: 48rem) {
  .cmn-blue-header__bottom {
    font-size: 1.5rem;
  }
}

/* cmn-page-head01 第一階層見出し
--------------------------------------------------------------------*/
@keyframes loop-ticker1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-ticker2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.cmn-page-head01 {
  overflow-x: hidden;
  padding-top: 7.125rem;
}
@media (max-width: 48rem) {
  .cmn-page-head01 {
    padding-top: 5.9375rem;
  }
}
.cmn-page-head01__wrap {
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 48rem) {
  .cmn-page-head01__wrap {
    padding-bottom: 3.5rem;
  }
}
.cmn-page-head01__ttl {
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: 2.5rem;
  font-size: 2.75rem;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .cmn-page-head01__ttl {
    margin-bottom: 2rem;
    font-size: 1.75rem;
    line-height: 1.45;
  }
}
.cmn-page-head01__img {
  display: block;
  aspect-ratio: 1920/432;
  object-fit: cover;
}
@media (max-width: 48rem) {
  .cmn-page-head01__img {
    aspect-ratio: 375/220;
  }
}
.search .cmn-page-head01__img {
  object-position: center 65%;
}
@media (max-width: 48rem) {
  .search .cmn-page-head01__img {
    object-position: center;
  }
}
.cmn-page-head01__ticker {
  position: absolute;
  bottom: 0;
  z-index: -1;
  display: flex;
  white-space: nowrap;
}
.cmn-page-head01__ticker-txt {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  letter-spacing: -0.08em;
  color: #44638B;
  opacity: 4%;
  line-height: 1.2;
  font-size: 13.75rem;
  padding-left: 3rem;
}
@media (max-width: 48rem) {
  .cmn-page-head01__ticker-txt {
    font-size: 7.5rem;
    padding-left: 2rem;
  }
}
.cmn-page-head01__ticker-txt:first-child {
  animation: loop-ticker1 240s -120s linear infinite;
}
.cmn-page-head01__ticker-txt:last-child {
  animation: loop-ticker2 240s linear infinite;
}

/* cmn-page-head
--------------------------------------------------------------------*/
.cmn-page-head {
  /* cmn-page-head02 第二階層見出し
  --------------------------------------------------------------------*/
  /* cmn-page-head03 第三階層見出し
  --------------------------------------------------------------------*/
}
.cmn-page-head__inner, .cmn-page-head__breadcrumb {
  width: calc(100% - 3rem);
  max-width: 87.5rem;
  margin: 0 auto;
}
.cmn-page-head__description {
  font-weight: 400;
  margin-bottom: 3rem;
  font-size: 1rem;
  line-height: 2.08;
}
@media (max-width: 48rem) {
  .cmn-page-head__description {
    line-height: 1.8;
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
}
.cmn-page-head__breadcrumb {
  width: calc(100% - 1.5rem);
}
@media (max-width: 48rem) {
  .cmn-page-head__breadcrumb {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
}
.cmn-page-head02 {
  text-align: left;
  padding-block-end: 5rem;
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
}
@media (max-width: 64rem) {
  .cmn-page-head02 {
    padding-block-end: 3rem;
  }
}
@media (max-width: 48rem) {
  .cmn-page-head02 {
    margin-top: 5.5rem;
  }
}
.cmn-page-head02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: #D2DBE6;
}
.cmn-page-head02 .cmn-page-head__subtitle {
  line-height: 1.75;
  font-size: 1.125rem;
  color: #ACB4BF;
  margin-block-end: 0.5rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 48rem) {
  .cmn-page-head02 .cmn-page-head__subtitle {
    font-size: 0.875rem;
    margin-block-end: 1rem;
  }
}
.cmn-page-head02 .cmn-page-head__title {
  line-height: 1.5;
  font-size: 2.5rem;
  font-weight: 400;
  margin-block-end: 3rem;
  color: #262A2E;
}
@media (max-width: 48rem) {
  .cmn-page-head02 .cmn-page-head__title {
    font-size: 1.5rem;
    margin-block-end: 2rem;
  }
}
.cmn-page-head02 .cmn-page-head__description {
  font-weight: 400;
  margin-bottom: 3rem;
  font-size: 0.875rem;
}
@media (max-width: 48rem) {
  .cmn-page-head02 .cmn-page-head__description {
    line-height: 1.65;
    margin-bottom: 2rem;
  }
}
.cmn-page-head03 {
  text-align: left;
  padding-block-end: 4.5rem;
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--header-height) - 2.625rem);
}
@media (max-width: 64rem) {
  .cmn-page-head03 {
    margin-top: calc(var(--header-height) + 1.125rem);
    padding-block-end: 3rem;
  }
}
.cmn-page-head03::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: #D2DBE6;
}
.cmn-page-head03 .cmn-page-head__category {
  line-height: 2.08;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #0075c1;
  font-weight: bold;
  margin-block-end: 1rem;
  gap: 0.5rem;
}
@media (max-width: 48rem) {
  .cmn-page-head03 .cmn-page-head__category {
    font-size: 0.75rem;
    margin-block-end: 0.75rem;
    gap: 0.375rem;
  }
}
.cmn-page-head03 .cmn-page-head__category::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.125rem;
  border-radius: 624.9375rem;
  background-color: #0075c1;
}
@media (max-width: 48rem) {
  .cmn-page-head03 .cmn-page-head__category::before {
    width: 0.375rem;
    height: 0.09375rem;
  }
}
.cmn-page-head03 .cmn-page-head__title {
  line-height: 1.5;
  font-size: 1.875rem;
  margin-block-end: 2.5rem;
}
@media (max-width: 48rem) {
  .cmn-page-head03 .cmn-page-head__title {
    font-size: 1.25rem;
    margin-block-end: 1.75rem;
  }
}

.mdl-bnr-slider__wrap + .cmn-page-head01__wrap {
  padding-top: 10rem;
}
@media (max-width: 48rem) {
  .mdl-bnr-slider__wrap + .cmn-page-head01__wrap {
    padding-top: 4.5rem;
  }
}

.mdl-bnr-slider__wrap + .cmn-page-head02 {
  margin-top: 10rem;
}
@media (max-width: 48rem) {
  .mdl-bnr-slider__wrap + .cmn-page-head02 {
    margin-top: 3.5rem;
  }
}

/* cmn-txt-link
--------------------------------------------------------------------*/
.cmn-txt-link {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.28;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 48rem) {
  .cmn-txt-link {
    gap: 0.5rem;
  }
}
.cmn-txt-link:after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1.5rem;
  background-image: url("/web/images/common/btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.cmn-txt-link__arrow {
  display: flex;
  align-items: center;
  color: #0075c1;
  text-decoration: solid underline;
  text-underline-offset: 0.125rem;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cmn-txt-link__arrow:hover {
  opacity: 0.7;
}
.cmn-txt-link__arrow::after {
  content: "";
  margin-inline-start: 0.125rem;
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  border-style: solid;
  border-color: #0075c1;
  border-width: 0 0.0625rem 0.0625rem 0;
  transform-origin: center center;
  transform: rotate(-45deg);
}

.cmn-txt-link-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

/* cmn-button
--------------------------------------------------------------------*/
.cmn-button, .cmn-button--icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid #0075c1;
  background-color: #0075c1;
  color: #ffffff;
  text-decoration: none;
  border-radius: 624.9375rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  line-height: 1.28;
  transition: box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 48rem) {
  .cmn-button, .cmn-button--icon {
    box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
  }
}
.cmn-button:hover, .cmn-button--icon:hover {
  z-index: 1;
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
}
.cmn-button--white {
  background-color: #ffffff;
  color: #0075c1;
  border-color: #D2DBE6;
}
.cmn-button__promo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.1875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 624.9375rem;
  line-height: 1.28;
  background-color: #F9AF3F;
  color: #262A2E;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 1.25rem;
  filter: drop-shadow(1px 0 0 #ffffff) drop-shadow(-1px 0 0 #ffffff) drop-shadow(0 1px 0 #ffffff) drop-shadow(0 -1px 0 #ffffff);
}
.cmn-button__promo::after {
  width: 0.4375rem;
  aspect-ratio: 7/6;
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  background-color: #F9AF3F;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.cmn-button__txt {
  font-size: 1rem;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .cmn-button__txt {
    font-size: 0.875rem;
    line-height: 1.28;
  }
}
.cmn-button__plus, .cmn-button .cmn-button__plus--wt, .cmn-button__plus--wt {
  border-radius: 50px;
  background-color: #0075c1;
  width: 2.5rem;
  height: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 48rem) {
  .cmn-button__plus, .cmn-button .cmn-button__plus--wt, .cmn-button__plus--wt {
    width: 1.75rem;
    height: 1rem;
  }
}
.cmn-button__plus::before, .cmn-button__plus::after, .cmn-button .cmn-button__plus--wt::before, .cmn-button .cmn-button__plus--wt::after, .cmn-button__plus--wt::before, .cmn-button__plus--wt::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #ffffff;
  width: 0.8125rem;
  height: 0.125rem;
  transition: all 0.3s;
  border-radius: 50px;
}
@media (max-width: 48rem) {
  .cmn-button__plus::before, .cmn-button__plus::after, .cmn-button .cmn-button__plus--wt::before, .cmn-button .cmn-button__plus--wt::after, .cmn-button__plus--wt::before, .cmn-button__plus--wt::after {
    width: 0.625rem;
  }
}
.cmn-button__plus::before, .cmn-button .cmn-button__plus--wt::before, .cmn-button__plus--wt::before {
  transform: rotate(90deg);
}
.cmn-button__plus--wt {
  background-color: #ffffff;
}
.cmn-button__plus--wt::before, .cmn-button__plus--wt::after {
  background-color: #0075c1;
}
.cmn-button--icon {
  flex-direction: row;
  background-color: #ffffff;
  gap: 0.75rem;
  inline-size: 100%;
}
.cmn-button--icon .icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
}
.cmn-button--icon .icon img {
  height: 100%;
}
.cmn-button__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cmn-button__wrap:has(> [class^=cmn-button]:nth-child(2):last-child) {
  gap: 32px;
}
@media (max-width: 48rem) {
  .cmn-button__wrap {
    flex-direction: column;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

/* cmn-show-button 
--------------------------------------------------------------------*/
.cmn-show-button {
  display: inline-flex;
  min-width: 22rem;
  max-width: 100%;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-radius: 3.125rem;
  transition: box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  position: relative;
  font-size: 1rem;
}
@media (max-width: 48rem) {
  .cmn-show-button {
    max-width: unset;
    min-width: unset;
    padding: 1.25rem 2rem;
    box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
  }
}
@media (max-width: 30rem) {
  .cmn-show-button {
    width: 100%;
  }
}
.cmn-show-button:hover {
  z-index: 1;
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
}
.cmn-show-button:after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: contain;
}
.cmn-show-button--white {
  background-color: #ffffff;
}
.cmn-show-button--white:after {
  background-image: url("/web/images/common/btn-arrow.svg");
}
.cmn-show-button--blue {
  color: #ffffff;
  background-color: #0075c1;
}
.cmn-show-button--blue:after {
  background-image: url("/web/images/common/btn-arrow--white.svg");
}
.cmn-show-button--blur-wh {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(32px);
  color: #ffffff;
}
.cmn-show-button--blur-wh:after {
  background-image: url("/web/images/common/btn-arrow--white.svg");
}
.cmn-show-button--with-promo {
  position: relative;
}
.cmn-show-button__promo {
  position: absolute;
  top: -1.1875rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3.125rem;
  background-color: #F9AF3F;
  color: #262A2E;
  font-size: 0.75rem;
  line-height: 1.28;
  font-weight: 700;
  padding: 0.25rem 1.25rem;
  height: 1.4375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  filter: drop-shadow(1px 0 0 #ffffff) drop-shadow(-1px 0 0 #ffffff) drop-shadow(0 1px 0 #ffffff) drop-shadow(0 -1px 0 #ffffff);
}
.cmn-show-button__promo::after {
  width: 0.4375rem;
  aspect-ratio: 7/6;
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  background-color: #F9AF3F;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media (max-width: 48rem) {
  .cmn-show-button__promo {
    top: -0.71875rem;
  }
}
.cmn-show-button__supp {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3.125rem;
  border: 1px solid #D2DBE6;
  background-color: #ffffff;
  color: #0075c1;
  font-size: 0.875rem;
  line-height: 1.28;
  font-weight: 700;
  padding: 0.25rem 1rem;
  height: 1.4375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
@media (max-width: 48rem) {
  .cmn-show-button__supp {
    font-size: 0.75rem;
  }
}

.cmn-show-button-wrap {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 48rem) {
  .cmn-show-button-wrap {
    margin-top: 3rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.mdl-event-info .cmn-show-button-wrap {
  margin-top: 4rem;
}
@media (max-width: 48rem) {
  .mdl-event-info .cmn-show-button-wrap {
    margin-top: 2rem;
  }
}

.mdl-news-list + .cmn-show-button-wrap {
  margin-top: 4rem;
}
@media (max-width: 48rem) {
  .mdl-news-list + .cmn-show-button-wrap {
    margin-top: 2rem;
  }
}

/* cmn-map-button
--------------------------------------------------------------------*/
.cmn-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: 624.9375rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  line-height: 1.28;
  flex-direction: row;
  background-color: #ffffff;
  gap: 0.75rem;
  width: 100%;
  max-width: 17.875rem;
  transition: box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cmn-map-button:hover {
  z-index: 1;
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
}
@media (max-width: 48rem) {
  .cmn-map-button {
    box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
  }
}
.cmn-map-button__txt {
  color: #0075c1;
  font-size: 1rem;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .cmn-map-button__txt {
    font-size: 0.875rem;
    line-height: 1.28;
  }
}
.cmn-map-button .icon {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
}
.cmn-map-button .icon img {
  height: 100%;
}
.cmn-map-button--blue {
  background-color: #0075c1;
}
.cmn-map-button--blue .cmn-map-button__txt {
  color: #ffffff;
}

/* cmn-splide-ctrl スライダー見出し横のページネーションと矢印
--------------------------------------------------------------------*/
.cmn-splide-ctrl {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.cmn-splide-ctrl .splide__arrows {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.cmn-splide-ctrl .splide__arrows .splide__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  box-shadow: 0px 4px 30px rgba(25, 104, 158, 0.18);
  background-color: #ffffff;
  border-radius: 100px;
  position: static;
  transform: unset;
}
.cmn-splide-ctrl .splide__arrows .splide__arrow svg {
  display: block;
  width: 0.5rem;
  height: 0.75rem;
}
.cmn-splide-ctrl .splide__arrows .splide__arrow--prev svg {
  transform: unset;
}
@media (max-width: 48rem) {
  .cmn-splide-ctrl .cmn-custom-pagination,
  .cmn-splide-ctrl .cmn-custom-pagination__dots {
    display: none;
  }
}

.cmn-custom-pagination {
  overflow: hidden;
  position: relative;
  width: 5.3125rem;
  height: 0.875rem;
  display: flex;
  align-items: center;
}
@media (max-width: 48rem) {
  .cmn-custom-pagination {
    width: 3.6875rem;
    height: 0.625rem;
  }
}
.cmn-custom-pagination.is-simple {
  width: auto;
}
.cmn-custom-pagination.is-simple .cmn-custom-pagination__dots {
  position: static;
}
.cmn-custom-pagination__dots {
  position: absolute;
  left: 0.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
  will-change: transform;
}
@media (max-width: 48rem) {
  .cmn-custom-pagination__dots {
    gap: 0.5rem;
  }
}
.cmn-custom-pagination .dot {
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: #D2DBE6;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
}
@media (max-width: 48rem) {
  .cmn-custom-pagination .dot {
    width: 0.3125rem;
    height: 0.3125rem;
  }
}
.cmn-custom-pagination .dot.is-hidden {
  opacity: 0;
}
.cmn-custom-pagination .dot.is-active {
  background-color: #707c8a;
}
.cmn-custom-pagination .dot.is-small {
  transform: scale(0.5714);
}
@media (max-width: 48rem) {
  .cmn-custom-pagination .dot.is-small {
    transform: scale(0.6);
  }
}

/* cmn-simple-button
--------------------------------------------------------------------*/
.cmn-simple-button {
  display: block;
  width: 100%;
  max-width: 17.5rem;
  padding: 0.5078125rem 0;
  border-radius: 6.25rem;
  background-color: #0075c1;
  color: #ffffff;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.84;
  letter-spacing: 0.078125rem;
  transition: box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cmn-simple-button:hover {
  z-index: 1;
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
}
@media (max-width: 48rem) {
  .cmn-simple-button {
    max-width: 18.4375rem;
    padding: 0.875rem 0;
    box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
  }
}

/* cmn-square-button
--------------------------------------------------------------------*/
.cmn-square-button-wrap {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
@media (max-width: 48rem) {
  .cmn-square-button-wrap {
    flex-direction: column;
    align-items: center;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    gap: 2rem;
  }
}

.cmn-square-button {
  border-radius: 0.5rem;
  max-width: 31.5rem;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
}
.cmn-square-button.is-disabled {
  background-color: #707c8a;
  pointer-events: none;
}
.cmn-square-button.is-disabled .cmn-square-button__inner::after {
  background-color: #ffffff;
}
.cmn-square-button.is-disabled .cmn-square-button__txt p,
.cmn-square-button.is-disabled .cmn-square-button__txt .fs {
  color: #ffffff;
}
.cmn-square-button__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 3rem 4.5rem;
  width: 100%;
}
@media (max-width: 48rem) {
  .cmn-square-button__inner {
    padding: 1rem 1.5rem;
  }
}
.cmn-square-button__inner::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  bottom: 0.1rem;
  background-color: #0075c1;
  mask-image: url("/web/images/common/icon-arrow2.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  transform: rotate(90deg);
  flex-shrink: 0;
}
.cmn-square-button__inner--ex::after {
  transform: unset;
  background-color: unset;
  mask-image: unset;
  background-image: url("/web/images/common/icon-blank.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.cmn-square-button__txt {
  display: flex;
  flex-direction: column;
}
.cmn-square-button__txt p {
  line-height: 1.8;
  display: flex;
  align-items: center;
}
@media (max-width: 48rem) {
  .cmn-square-button__txt p {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}
.cmn-square-button__txt .fs {
  color: #707c8a;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (max-width: 48rem) {
  .cmn-square-button__txt .fs {
    font-size: 0.75rem;
  }
}

/* cmn-theta
--------------------------------------------------------------------*/
.cmn-theta-block {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 4rem;
  padding-block-end: 0;
}
@media (max-width: 48rem) {
  .cmn-theta-block {
    flex-direction: column;
    padding-inline: 0;
    padding-block-start: 3rem;
    padding-block-end: 1.5rem;
    gap: 0.75rem;
  }
}

.cmn-theta-inner {
  display: flex;
  gap: 1rem;
}

.cmn-theta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-inline-size: 22rem;
  inline-size: 100%;
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
}
@media (max-width: 48rem) {
  .cmn-theta-item {
    padding: 1rem 1.5rem 1rem 1rem;
  }
}
.cmn-theta-item svg {
  width: 1.0625rem;
  height: 0.875rem;
}

.cmn-theta-item-img {
  max-width: 2.625rem;
}

.cmn-theta-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}
@media (max-width: 48rem) {
  .cmn-theta-txt {
    font-size: 0.875rem;
  }
}
.cmn-theta-txt .fs {
  font-weight: 600;
  font-size: 0.875rem;
  color: #707c8a;
  padding-block-end: 0.125rem;
}
@media (max-width: 48rem) {
  .cmn-theta-txt .fs {
    font-size: 0.75rem;
  }
}

.cmn-theta-list {
  display: flex;
  justify-content: center;
}
@media (max-width: 48rem) {
  .cmn-theta-list {
    display: block;
  }
}
.cmn-theta-list a:visited {
  color: #262A2E;
}
.cmn-theta-list li {
  margin: 20px;
}
@media (max-width: 48rem) {
  .cmn-theta-list li {
    margin: 20px 0px;
    font-size: 14px;
  }
}
.cmn-theta-list li span {
  font-size: 1.3125rem;
}
@media (max-width: 48rem) {
  .cmn-theta-list li span {
    font-size: 1.125rem;
  }
}
.cmn-theta-list span {
  font-weight: bold;
}

.cmn-theta-Btn {
  display: block;
  line-height: 28px;
  text-align: left;
  font-weight: normal;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  box-sizing: border-box;
  border: 1px solid transparent;
  position: relative;
  text-decoration: none;
  color: #262A2E;
  background: #fff;
  padding: 20px 0px 16px 20px;
  width: 430px;
}
@media (max-width: 48rem) {
  .cmn-theta-Btn {
    padding: 16px 0px 10px 16px;
  }
}
.cmn-theta-Btn svg {
  width: 50px;
  height: 40px;
  margin-left: 8px;
  fill: #0778a4;
  color: #0778a4;
}
.cmn-theta-Btn svg:last-child {
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 60%;
  left: 88%;
  fill: #707070;
}
.cmn-theta-Btn:hover {
  background: #fff;
  border: 1px solid #3073BB;
  text-decoration: none;
}

.cmn-scroll-top {
  position: fixed;
  z-index: 999;
  right: 2rem;
  bottom: 2rem;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cmn-scroll-top.is-hidden {
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 48rem) {
  .cmn-scroll-top {
    bottom: 1.5rem;
  }
}
.cmn-scroll-top a {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #0075c1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 48rem) {
  .cmn-scroll-top a {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.cmn-scroll-top img {
  width: 0.84375rem;
  height: 0.421875rem;
}
@media (max-width: 48rem) {
  .cmn-scroll-top img {
    width: 0.6875rem;
    height: 0.375rem;
  }
}

@media (max-width: 80rem) {
  .mdl-fixed-bottom-banner + .cmn-scroll-top {
    bottom: 8rem;
    right: 1.5rem;
  }
}
@media (max-width: 64rem) {
  .mdl-fixed-bottom-banner + .cmn-scroll-top {
    bottom: 4.625rem;
  }
}

/* cmn-loop-ticker
--------------------------------------------------------------------*/
@keyframes loop-ticker1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-ticker2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.cmn-loop-ticker {
  pointer-events: none;
  position: absolute;
  display: flex;
  white-space: nowrap;
  pointer-events: none;
}
.cmn-loop-ticker__txt {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  letter-spacing: -0.08em;
  color: #44638B;
  opacity: 4%;
  line-height: 1.2;
  font-size: 13.75rem;
  padding-left: 3rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
@media (max-width: 48rem) {
  .cmn-loop-ticker__txt {
    font-size: 7.5rem;
    padding-left: 2rem;
  }
}
.cmn-loop-ticker__txt:first-child {
  animation: loop-ticker1 240s -120s linear infinite;
}
.cmn-loop-ticker__txt:last-child {
  animation: loop-ticker2 240s linear infinite;
}

/* 表示 / 非表示
--------------------------------------------------------------------*/
@media (max-width: 48rem) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 48.0625rem) {
  .u-sp-only {
    display: none !important;
  }
}

@media (max-width: 64rem) {
  .u-pc-only--lg {
    display: none !important;
  }
}

@media (min-width: 64.0625rem) {
  .u-sp-only--lg {
    display: none !important;
  }
}

@media (max-width: 30rem) {
  .u-pc-only--xs {
    display: none !important;
  }
}

@media (min-width: 30.0625rem) {
  .u-sp-only--xs {
    display: none !important;
  }
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* SVG fill stroke
--------------------------------------------------------------------*/
.u-fill-black {
  fill: #262A2E;
}

.u-fill-white {
  fill: #ffffff;
}

.u-fill-light-gray {
  fill: #e1e7f1;
}

.u-fill-middle-gray {
  fill: #D2DBE6;
}

.u-fill-text-gray {
  fill: #707c8a;
}

.u-fill-main {
  fill: #0075c1;
}

.u-fill-dark-blue {
  fill: #44638B;
}

.u-fill-accent {
  fill: #88C417;
}

.u-stroke-black {
  stroke: #262A2E;
}

.u-stroke-white {
  stroke: #ffffff;
}

.u-stroke-light-gray {
  stroke: #e1e7f1;
}

.u-stroke-middle-gray {
  stroke: #D2DBE6;
}

.u-stroke-text-gray {
  stroke: #707c8a;
}

.u-stroke-text-gray-lighter {
  stroke: #ACB4BF;
}

.u-stroke-text-gray-darker {
  stroke: #495667;
}

.u-stroke-main {
  stroke: #0075c1;
}

.u-stroke-dark-blue {
  stroke: #44638B;
}

.u-stroke-accent {
  stroke: #88C417;
}

.u-fill-current {
  fill: currentColor;
}

.u-stroke-current {
  stroke: currentColor;
}

/* font
--------------------------------------------------------------------*/
.u-txt-en {
  font-family: "Montserrat", sans-serif;
}

.u-gradient-txt {
  background: linear-gradient(63.77deg, #0174C2 28.45%, #419E85 60.37%, #72BE57 74.09%, #9FDC2C 83.33%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.u-txt-center {
  text-align: center;
}

.u-txt-main {
  color: #0075c1;
}

/* リンク関連
--------------------------------------------------------------------*/
.u-ex-link::after {
  content: "";
  display: inline-block;
  width: 0.6875rem;
  height: 0.6875rem;
  background: url("/web/images/common/icon-blank.svg") no-repeat center/contain;
  margin-inline-start: 0.375rem;
  vertical-align: middle;
}
.u-ex-link--blue::after {
  background: url("/web/images/common/icon-blank-blue.svg") no-repeat center/contain;
}

.u-anchor-adjust {
  position: relative;
  top: calc(var(--header-height) * -1);
}
/* hover
--------------------------------------------------------------------*/
.u-hover-1 {
  transition: box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.u-hover-1:hover {
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
}
@media (max-width: 48rem) {
  .u-hover-1 {
    box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
  }
}

.u-hover-2 {
  transition: box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.u-hover-2:hover {
  box-shadow: 0px 2px 30px rgba(25, 104, 158, 0.25);
}
@media (max-width: 48rem) {
  .u-hover-2 {
    box-shadow: 0px 2px 30px rgba(25, 104, 158, 0.25);
  }
}

.u-hover-3 {
  transition: box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.u-hover-3:hover {
  box-shadow: 2px 2px 8px rgba(10, 69, 125, 0.24);
}
@media (max-width: 48rem) {
  .u-hover-3 {
    box-shadow: 2px 2px 8px rgba(10, 69, 125, 0.24);
  }
}

.u-hover-4 {
  transition: box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.u-hover-4:hover {
  box-shadow: 1px 1px 10px hsla(204, 99%, 38%, 0.2);
}
@media (max-width: 48rem) {
  .u-hover-4 {
    box-shadow: 1px 1px 10px hsla(204, 99%, 38%, 0.2);
  }
}

.u-hover-5 {
  transition: box-shadow 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.u-hover-5:hover {
  box-shadow: 2px 2px 10px hsla(204, 99%, 38%, 0.16);
}
@media (max-width: 48rem) {
  .u-hover-5 {
    box-shadow: 2px 2px 10px hsla(204, 99%, 38%, 0.16);
  }
}

.u-hover-none:hover {
  box-shadow: none;
}

.u-hover-opacity70 {
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.u-hover-opacity70:hover {
  opacity: 0.7;
}

.u-hover-color {
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.u-hover-color:hover {
  color: #0075c1;
}

.u-hover-underline {
  transition: color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.u-hover-underline:hover {
  color: #0075c1;
  text-decoration: underline;
}

/* 余白
--------------------------------------------------------------------*/
.u-pt00 {
  padding-top: 0 !important;
}

.u-pb00 {
  padding-bottom: 0 !important;
}

.u-mt00 {
  margin-top: 0 !important;
}

.u-mb00 {
  margin-bottom: 0 !important;
}

/* cmn-category-links カテゴリリンク
--------------------------------------------------------------------*/
.cmn-category-links {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.cmn-category-links:has(.cmn-category-links__item02) {
  margin-block-start: 4.5rem;
  gap: 3rem 3.5rem;
}
@media (max-width: 48rem) {
  .cmn-category-links:has(.cmn-category-links__item02) {
    margin-block-start: 2.5rem;
    gap: 1.5rem;
  }
}
@media (max-width: 48rem) {
  .cmn-category-links {
    flex-direction: column;
    gap: 0;
  }
}
.cmn-category-links__item, .cmn-category-links__item02 {
  width: calc((100% - 7rem) / 3);
  border-top: 1px solid #D2DBE6;
  border-bottom: 1px solid #D2DBE6;
}
@media (max-width: 48rem) {
  .cmn-category-links__item, .cmn-category-links__item02 {
    width: 100%;
  }
  .cmn-category-links__item + .cmn-category-links__item, .cmn-category-links__item02 + .cmn-category-links__item, .cmn-category-links__item + .cmn-category-links__item02, .cmn-category-links__item02 + .cmn-category-links__item02 {
    border-top: unset;
  }
}
.cmn-category-links__item a, .cmn-category-links__item02 a {
  padding: 0.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  height: 7.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .cmn-category-links__item a, .cmn-category-links__item02 a {
    height: unset;
    padding: 1.5rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.28;
    letter-spacing: 0;
    gap: 0.5rem;
  }
}
.cmn-category-links__item a::after, .cmn-category-links__item02 a::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1.5rem;
  background-image: url("/web/images/common/btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.25s ease;
}
.cmn-category-links__item a:hover::after, .cmn-category-links__item02 a:hover::after {
  transform: translateX(0.5rem);
}
.cmn-category-links__item02 {
  border-top: unset;
}
.cmn-category-links__item02 a {
  height: auto;
  padding: 0 0.5rem 1.5rem 0.5rem;
}
@media (max-width: 48rem) {
  .cmn-category-links__item02 a {
    padding: 0 0.5rem 1rem 0.5rem;
  }
}

/* renovationheim LP
--------------------------------------------------------------------*/
html:has(.renovationheim) {
  background-color: #ffffff;
}

body:has(.renovationheim) {
  background-color: #E8ECF5;
  color: #2E2E30;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.renovationheim {
  overflow-x: clip;
}

/* アンカーリンク: 固定ヘッダー分のオフセット
--------------------------------------------------------------------*/
.renovationheim [id] {
  scroll-margin-top: 6.25rem;
}

/* header
--------------------------------------------------------------------*/
.rnv-header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2.5rem);
  -webkit-backdrop-filter: blur(2.5rem);
  border-radius: 0.5rem;
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
}
@media (max-width: 48rem) {
  .rnv-header {
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
  }
}
.rnv-header__logo {
  flex-shrink: 0;
}
.rnv-header__logo .logo-mask {
  display: block;
  width: 9.8125rem;
  height: 1.125rem;
  mask-image: url("/web/images/lp/renovationheim/site-logo.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("/web/images/lp/renovationheim/site-logo.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #2E2E30;
}
.rnv-header__nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 2rem;
}
.rnv-header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.rnv-header__nav a {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .rnv-header__nav a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 48rem) {
  .rnv-header__nav {
    display: none;
  }
}
.rnv-header__cta {
  position: relative;
  background: #2E39FF;
  color: #ffffff;
  border-radius: 624.9375rem;
  border: 0.0625rem solid transparent;
  padding: 0.75rem 1.5rem;
  max-width: 15.125rem;
  width: 100%;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
  transition: opacity 0.2s ease;
}
@media (max-width: 64rem) {
  .rnv-header__cta {
    border-color: #ffffff;
  }
}
@media (any-hover: hover) {
  .rnv-header__cta:hover {
    opacity: 0.8;
  }
}
.rnv-header__cta .cta-pre {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.375rem;
  filter: drop-shadow(1px 0 0 #ffffff) drop-shadow(-1px 0 0 #ffffff) drop-shadow(0 1px 0 #ffffff) drop-shadow(0 -1px 0 #ffffff);
  background: #EB6F3C;
  color: #ffffff;
  font-size: 0.625rem;
  line-height: 1;
  padding: 0.375rem 0.625rem;
}
.rnv-header__cta .cta-pre::after {
  width: 0.4375rem;
  aspect-ratio: 7/6;
  content: "";
  position: absolute;
  bottom: -0.3125rem;
  left: 1.5rem;
  background-color: #EB6F3C;
  clip-path: polygon(80% 100%, 0 0, 80% 0);
}
.rnv-header__hamburger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  background: #2E39FF;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex-shrink: 0;
}
.rnv-header__hamburger span {
  display: block;
  width: 1.375rem;
  height: 0.0625rem;
  background: #ffffff;
  border-radius: 0.0625rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.rnv-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}
.rnv-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.rnv-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}
@media (max-width: 64rem) {
  .rnv-header__hamburger {
    display: flex;
  }
}

/* drawer
--------------------------------------------------------------------*/
.rnv-drawer {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: #212ADE;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.35s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1), visibility 0s linear 0.35s;
}
.rnv-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.35s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.35s cubic-bezier(0.215, 0.61, 0.355, 1), visibility 0s linear 0s;
}
.rnv-drawer__inner {
  padding: 1rem 1.25rem 3rem;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.rnv-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rnv-drawer__logo .logo-mask {
  display: block;
  width: 9.8125rem;
  height: 1.125rem;
  mask-image: url("/web/images/lp/renovationheim/site-logo.svg");
  mask-repeat: no-repeat;
  mask-position: left center;
  mask-size: contain;
  -webkit-mask-image: url("/web/images/lp/renovationheim/site-logo.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  -webkit-mask-size: contain;
  background-color: #ffffff;
}
.rnv-drawer__close {
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border: 0.0625rem solid #2E39FF;
  border-radius: 0.375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition: opacity 0.2s ease;
}
@media (any-hover: hover) {
  .rnv-drawer__close:hover {
    opacity: 0.7;
  }
}
.rnv-drawer__nav {
  display: flex;
  flex-direction: column;
}
.rnv-drawer__nav a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.09375rem dashed #B4B5CD;
  color: #ffffff;
}
.rnv-drawer__nav a + a {
  margin-top: 1rem;
}
.rnv-drawer__nav-ja {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.rnv-drawer__nav-en {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.rnv-drawer__cta-wrap {
  position: relative;
  padding-top: 1.875rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 64rem) {
  .rnv-drawer__cta-wrap .rnv-header__cta {
    max-width: 100%;
    color: #2E39FF;
    background-color: #ffffff;
  }
}

/* SP 固定CTA
--------------------------------------------------------------------*/
.rnv-sp-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 64rem) {
  .rnv-sp-cta .rnv-header__cta {
    max-width: 100%;
    margin-inline: 2.5rem;
  }
}

/* hero
--------------------------------------------------------------------*/
.rnv-hero {
  position: relative;
  height: 56.9375rem;
  overflow: hidden;
}
@media (max-width: 87.5rem) {
  .rnv-hero {
    aspect-ratio: 1366/768;
    height: auto;
  }
}
@media (max-width: 48rem) {
  .rnv-hero {
    height: 33.4375rem;
  }
}
.rnv-hero__bg {
  position: absolute;
  inset: 0;
}
.rnv-hero__bg picture,
.rnv-hero__bg img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rnv-hero__overlay {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: linear-gradient(180deg, rgba(5, 3, 2, 0.3) 0%, rgba(5, 3, 2, 0) 100%), linear-gradient(90deg, #050302 20.31%, rgba(107, 68, 44, 0) 42.88%);
}
@media (max-width: 64rem) {
  .rnv-hero__overlay {
    background: linear-gradient(0deg, #050302 48.29%, rgba(107, 68, 44, 0) 77.18%);
  }
}
.rnv-hero__txt {
  position: absolute;
  left: 6.25rem;
  bottom: 15.625rem;
  z-index: 1;
}
@media (max-width: 48rem) {
  .rnv-hero__txt {
    left: 1rem;
    bottom: 2.5rem;
  }
}
.rnv-hero__copy {
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0 0 1.5rem;
  text-shadow: 0 0.25rem 5rem rgba(15, 7, 3, 0.16);
}
.rnv-hero__copy-lg {
  font-size: 5.0625rem;
}
@media (max-width: 48rem) {
  .rnv-hero__copy-lg {
    font-size: 2.8125rem;
  }
}
.rnv-hero__copy-sm {
  font-size: 4rem;
}
@media (max-width: 48rem) {
  .rnv-hero__copy-sm {
    font-size: 2rem;
  }
}
.rnv-hero__sub {
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 0.25rem 5rem rgba(15, 7, 3, 0.16);
}
@media (max-width: 48rem) {
  .rnv-hero__sub {
    font-size: 0.875rem;
  }
}
.rnv-hero__campaign {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 21.4375rem;
  z-index: 100;
}
@media (max-width: 64rem) {
  .rnv-hero__campaign {
    position: static;
    width: calc(100% - 2rem);
    margin: 0 auto;
    padding-block: 3rem 0.875rem;
  }
}

/* campaign banner
--------------------------------------------------------------------*/
.rnv-campaign-banner-wrap {
  cursor: pointer;
}
@media (max-width: 64rem) {
  .rnv-campaign-banner-wrap {
    cursor: default;
    pointer-events: none;
    max-width: 21.4375rem;
    width: 100%;
    margin: 0 auto;
  }
}
@media (any-hover: hover) {
  .rnv-campaign-banner-wrap:hover {
    opacity: 0.9;
  }
}

.rnv-campaign-banner {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(1.5rem);
  -webkit-backdrop-filter: blur(1.5rem);
  border-radius: 1rem;
  box-shadow: 0 0.25rem 1.5rem rgba(180, 181, 205, 0.32);
  padding: 0.25rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 64rem) {
  .rnv-campaign-banner {
    box-shadow: 0 0.25rem 1.5rem rgba(180, 181, 205, 0.4);
  }
}
.rnv-campaign-banner::before, .rnv-campaign-banner::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 2;
}
.rnv-campaign-banner::before {
  width: 5.625rem;
  aspect-ratio: 1;
  background-image: url("/web/images/lp/renovationheim/banner-deco.png");
  background-size: 21.4375rem auto;
  background-position: top left;
  top: 0;
  left: 0;
}
.rnv-campaign-banner::after {
  width: 6.5625rem;
  aspect-ratio: 1;
  background-image: url("/web/images/lp/renovationheim/banner-deco.png");
  background-size: 21.4375rem auto;
  background-position: bottom right;
  bottom: 0;
  right: 0;
}
.rnv-campaign-banner__inner {
  border: 0.125rem solid #ffffff;
  border-radius: 0.75rem;
  padding: 1.25rem 1.875rem 1.75rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 64rem) {
  .rnv-campaign-banner__inner {
    border-color: #EEEDEE;
    padding: 1rem;
  }
}
.rnv-campaign-banner__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 1.3125rem;
  height: 1.3125rem;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
}
.rnv-campaign-banner__close::before, .rnv-campaign-banner__close::after {
  content: "";
  grid-area: 1/1;
  width: 0.5625rem;
  height: 0.09375rem;
  background: #B4B5CD;
  border-radius: 0.0625rem;
}
.rnv-campaign-banner__close::before {
  transform: rotate(45deg);
}
.rnv-campaign-banner__close::after {
  transform: rotate(-45deg);
}
@media (max-width: 64rem) {
  .rnv-campaign-banner__close {
    display: none;
  }
}
.rnv-campaign-banner__pre {
  font-size: 0.875rem;
  font-weight: 700;
  color: #4C4C4C;
  line-height: 1.4;
  margin: 0 0 0.75rem;
  text-align: center;
}
.rnv-campaign-banner__pre u {
  color: #EB6F3C;
  font-size: 1.0625rem;
  text-decoration: underline;
  text-decoration-color: #EB6F3C;
  text-underline-offset: 0.125rem;
}
.rnv-campaign-banner__tag {
  display: block;
  width: 100%;
  text-align: center;
  background: #EB6F3C;
  color: #ffffff;
  border-radius: 0.375rem;
  padding: 0.1875rem 1rem 0.3125rem;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  margin-bottom: 0;
}
.rnv-campaign-banner__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.5rem auto 0;
  position: relative;
  width: fit-content;
}
.rnv-campaign-banner__amount::before {
  content: "";
  position: absolute;
  bottom: 0.125rem;
  left: 0;
  right: 0;
  height: 0.375rem;
  background: #EB6F3C;
  opacity: 0.32;
  border-radius: 0.125rem;
  pointer-events: none;
  z-index: -1;
}
.rnv-campaign-banner__amount-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2.4375rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.rnv-campaign-banner__amount-unit {
  font-weight: 900;
  font-size: 1.3125rem;
  line-height: 1;
  letter-spacing: 0;
}
.rnv-campaign-banner__detail-wrap {
  display: flex;
  justify-content: center;
  margin-top: -0.875rem;
  position: relative;
  z-index: 2;
}
.rnv-campaign-banner__detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #ffffff;
  border: 0.125rem solid #2E39FF;
  border-radius: 6.25rem;
  color: #2E39FF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 0.125rem 0.75rem 0.1875rem;
}
.rnv-campaign-banner__note-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
  padding-inline: 0.5rem;
}
.rnv-campaign-banner__note-list > li {
  font-size: 0.625rem;
  line-height: 1.4;
  color: #898989;
}

/* icon
--------------------------------------------------------------------*/
.rnv-icon-plus {
  display: grid;
  place-items: center;
  width: 0.625rem;
  height: 0.625rem;
  flex-shrink: 0;
}
.rnv-icon-plus::before, .rnv-icon-plus::after {
  content: "";
  grid-area: 1/1;
  background: #2E39FF;
}
.rnv-icon-plus::before {
  width: 100%;
  height: 0.125rem;
}
.rnv-icon-plus::after {
  width: 0.125rem;
  height: 100%;
}

/* contact
--------------------------------------------------------------------*/
.rnv-contact {
  padding-block: 6.25rem 4.25rem;
}
@media (max-width: 48rem) {
  .rnv-contact {
    padding-block: 2.75rem;
  }
}
.rnv-contact:last-child {
  padding-block: 4.25rem 2rem;
}
@media (max-width: 48rem) {
  .rnv-contact:last-child {
    padding-block: 2.75rem;
  }
}
.rnv-contact__inner {
  background: #212ADE;
  border-radius: 1rem;
  max-width: 97.0625rem;
  margin: 0 auto;
  padding: 9rem 8rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media (max-width: 80rem) {
  .rnv-contact__inner {
    padding: 4.5rem 2rem;
    gap: 3rem;
  }
}
@media (max-width: 48rem) {
  .rnv-contact__inner {
    max-width: 100%;
    padding: 4.5rem 1.5rem;
    gap: 2rem;
  }
}
.rnv-contact__heading {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 48rem) {
  .rnv-contact__heading {
    gap: 2.5rem;
  }
}
.rnv-contact__ttl {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
@media (max-width: 64rem) {
  .rnv-contact__ttl {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.rnv-contact__ttl span {
  display: block;
}
.rnv-contact__en {
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media (max-width: 64rem) {
  .rnv-contact__en {
    font-size: 3.5rem;
  }
}
.rnv-contact__ja {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 64rem) {
  .rnv-contact__ja {
    font-size: 0.75rem;
    color: #E6E6EF;
  }
}
.rnv-contact__content {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 64rem) {
  .rnv-contact__content {
    flex-direction: column;
    gap: 2rem;
  }
}
.rnv-contact__block {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 3.5rem;
  padding-left: 3.5rem;
  padding-bottom: 1.5rem;
}
@media (max-width: 80rem) {
  .rnv-contact__block {
    padding-left: 2rem;
    padding-bottom: 1rem;
    gap: 2rem;
  }
}
@media (max-width: 64rem) {
  .rnv-contact__block {
    padding-left: 0;
    padding-bottom: 0;
    gap: 1.5rem;
  }
}
.rnv-contact__block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.0625rem;
  height: 100%;
  background-image: repeating-linear-gradient(to bottom, #B4B5CD 0, #B4B5CD 0.1875rem, transparent 0.1875rem, transparent 0.375rem);
}
@media (max-width: 64rem) {
  .rnv-contact__block::before {
    display: none;
  }
}
.rnv-contact__block-ttl {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 64rem) {
  .rnv-contact__block-ttl {
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
.rnv-contact__block-ttl::before {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.1875rem;
  background: #ffffff;
}
.rnv-contact__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 34.5rem;
  width: 100%;
  min-height: 7rem;
  gap: 0.375rem;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 624.9375rem;
  color: #2E39FF;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 1rem 1rem 1rem 3.5rem;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 75rem) {
  .rnv-contact__btn {
    padding-left: 2.5rem;
  }
}
@media (max-width: 64rem) {
  .rnv-contact__btn {
    font-size: 1rem;
    min-height: 3.875rem;
    max-width: 100%;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  }
}
@media (any-hover: hover) {
  .rnv-contact__btn:hover {
    opacity: 0.8;
  }
  .rnv-contact__btn:hover .rnv-contact__btn-icon {
    transform: translateX(0.375rem);
  }
}
.rnv-contact__btn-highlight {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  padding: 0.5rem 1rem;
  background: #EB6F3C;
  color: #ffffff;
  border-radius: 0.5rem;
  z-index: 1;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.3;
}
@media (max-width: 64rem) {
  .rnv-contact__btn-highlight {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    top: -0.75rem;
    left: 1rem;
  }
}
.rnv-contact__btn-highlight::after {
  width: 1rem;
  aspect-ratio: 7/6;
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 2rem;
  background-color: #EB6F3C;
  clip-path: polygon(80% 100%, 0 0, 80% 0);
}
@media (max-width: 48rem) {
  .rnv-contact__btn-highlight::after {
    width: 0.75rem;
    bottom: -0.375rem;
    left: 1rem;
  }
}
.rnv-contact__btn-text--tel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
}
.rnv-contact__btn-text--tel::before {
  content: "";
  display: block;
  width: 1rem;
  height: 1.25rem;
  background: #2E39FF;
  -webkit-mask-image: url("/web/images/lp/renovationheim/icon-tel.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/web/images/lp/renovationheim/icon-tel.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.rnv-contact__btn-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 5rem;
  width: 100%;
  aspect-ratio: 1/1;
  background: #2E39FF;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 64rem) {
  .rnv-contact__btn-icon {
    max-width: 2.875rem;
  }
}
.rnv-contact__btn-icon::before {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  background: #ffffff;
  -webkit-mask-image: url("/web/images/lp/renovationheim/icon-arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/web/images/lp/renovationheim/icon-arrow.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
@media (max-width: 64rem) {
  .rnv-contact__btn-icon::before {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.rnv-contact__tel-sp-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.rnv-contact__hours {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.8;
  color: #C4D1ED;
  text-align: center;
}
@media (max-width: 48rem) {
  .rnv-contact__hours {
    line-height: 1.4;
    text-align: left;
  }
}
.rnv-contact__tel {
  border: 0.125rem solid #ffffff;
  max-width: 34.5rem;
  width: 100%;
  min-height: 7rem;
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  transition: background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 80rem) {
  .rnv-contact__tel {
    padding: 1rem 1.5rem;
  }
}
@media (any-hover: hover) {
  .rnv-contact__tel:hover {
    background-color: rgba(255, 255, 255, 0.12);
  }
}
.rnv-contact__tel-num {
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.rnv-contact__tel-num::before {
  content: "";
  display: block;
  width: 1.75rem;
  height: 2.125rem;
  background: #ffffff;
  -webkit-mask-image: url("/web/images/lp/renovationheim/icon-tel.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/web/images/lp/renovationheim/icon-tel.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

/* brand-lead
--------------------------------------------------------------------*/
.rnv-brand-lead {
  padding-block: 13.75rem 8rem;
  text-align: center;
  position: relative;
}
@media (max-width: 48rem) {
  .rnv-brand-lead {
    padding: 4.625rem 1rem 4.25rem;
    overflow: hidden;
  }
}
.rnv-brand-lead__content {
  position: relative;
  isolation: isolate;
  overflow: visible;
  max-width: 60rem;
  margin: 0 auto;
}
.rnv-brand-lead__content::after {
  content: "";
  position: absolute;
  aspect-ratio: 945/905;
  max-width: 59.0625rem;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("/web/images/lp/renovationheim/brand-lead-bg.svg") no-repeat center/contain;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 48rem) {
  .rnv-brand-lead__content::after {
    width: 37.1875rem;
  }
}
.rnv-brand-lead__logo {
  margin: 0 auto 5.5rem;
  width: 22rem;
}
@media (max-width: 48rem) {
  .rnv-brand-lead__logo {
    width: 14.8125rem;
    margin-bottom: 2.5rem;
  }
}
.rnv-brand-lead__text-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 56.25rem;
  margin: 0 auto;
}
@media (max-width: 48rem) {
  .rnv-brand-lead__text-group {
    gap: 1rem;
  }
}
.rnv-brand-lead__text {
  font-size: 1.125rem;
  line-height: 2.3;
  margin: 0;
}
@media (max-width: 48rem) {
  .rnv-brand-lead__text {
    font-size: 0.875rem;
    line-height: 2.2;
  }
}

/* section heading (shared)
--------------------------------------------------------------------*/
.rnv-section-head {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}
@media (max-width: 48rem) {
  .rnv-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.rnv-section-head__en {
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}
@media (max-width: 48rem) {
  .rnv-section-head__en {
    margin-bottom: 0;
    font-size: 3.5rem;
  }
}
.rnv-section-head__ja {
  font-size: 1rem;
  font-weight: 700;
  color: #2E39FF;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 48rem) {
  .rnv-section-head__ja {
    font-size: 0.75rem;
  }
}

/* section hr
--------------------------------------------------------------------*/
.rnv-section-hr {
  width: 100%;
  height: 0.0625rem;
  color: #ffffff;
}

/* subhead accent bar
--------------------------------------------------------------------*/
.rnv-subhead {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 48rem) {
  .rnv-subhead {
    align-items: flex-start;
  }
}
.rnv-subhead__bar {
  display: block;
  width: 0.625rem;
  height: 0.1875rem;
  background: #2E39FF;
  flex-shrink: 0;
}
@media (max-width: 48rem) {
  .rnv-subhead__bar {
    margin-top: 0.875rem;
  }
}
.rnv-subhead__text {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}
@media (max-width: 48rem) {
  .rnv-subhead__text {
    font-size: 1.125rem;
  }
}
.rnv-subhead__text--sm {
  font-size: 1rem;
}
@media (max-width: 48rem) {
  .rnv-subhead__text--sm {
    font-size: 0.75rem;
  }
}

/* feature
--------------------------------------------------------------------*/
.rnv-feature {
  position: relative;
  isolation: isolate;
  padding-block: 11.5rem 6.25rem;
}
@media (max-width: 64rem) {
  .rnv-feature {
    padding-block: 1.25rem 2.75rem;
  }
}
.rnv-feature .rnv-section-head {
  position: relative;
  z-index: 1;
  margin-bottom: 5.75rem;
}
@media (max-width: 48rem) {
  .rnv-feature .rnv-section-head {
    margin-bottom: 3rem;
  }
}
.rnv-feature__inner {
  max-width: 87.5rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
}
.rnv-feature__layout {
  display: flex;
  gap: 4.875rem;
  align-items: flex-start;
}
@media (max-width: 64rem) {
  .rnv-feature__layout {
    flex-direction: column;
  }
}
.rnv-feature__nav-wrap {
  flex-shrink: 0;
  width: 20.125rem;
  margin-bottom: 29.375rem;
  position: sticky;
  top: calc(50vh - 6.875rem);
  align-self: flex-start;
}
@media (max-width: 64rem) {
  .rnv-feature__nav-wrap {
    display: none;
  }
}
.rnv-feature__nav-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translateY(-50%);
  width: 81.25rem;
  aspect-ratio: 1/1;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}
.rnv-feature__content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
.rnv-feature__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.rnv-feature__nav-list > li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}
@media (any-hover: hover) {
  .rnv-feature__nav-list > li a:hover {
    opacity: 0.7;
  }
}
.rnv-feature__nav-list > li a .rnv-feature__nav-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  color: #2E39FF;
}
.rnv-feature__nav-list > li a .rnv-feature__nav-text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
}
.rnv-feature__nav-list > li a.is-active {
  opacity: 1;
  gap: 1.25rem;
}
.rnv-feature__nav-list > li a.is-active .rnv-feature__nav-number {
  font-size: 3.5rem;
}
.rnv-feature__nav-list > li a.is-active .rnv-feature__nav-text {
  font-size: 1.25rem;
}
.rnv-feature__item {
  margin-bottom: 6.5rem;
}
.rnv-feature__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 48rem) {
  .rnv-feature__item {
    margin-bottom: 3rem;
  }
}
.rnv-feature__head {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin: 0 0 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1.5px dashed #B4B5CD;
}
@media (max-width: 48rem) {
  .rnv-feature__head {
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
}
.rnv-feature__number {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #2E39FF;
  margin: 0.5rem 0 0;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@media (max-width: 48rem) {
  .rnv-feature__number {
    margin-top: 0.25rem;
    font-weight: 700;
    font-size: 0.75rem;
  }
}
.rnv-feature__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 48rem) {
  .rnv-feature__title {
    font-size: 1.5rem;
  }
}
.rnv-feature__lead {
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0 0 2rem;
}
@media (max-width: 48rem) {
  .rnv-feature__lead {
    margin-bottom: 1.5rem;
  }
}
.rnv-feature__box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 64rem) {
  .rnv-feature__box {
    gap: 2rem;
  }
}
.rnv-feature__box + .rnv-feature__box {
  margin-top: 2rem;
}
@media (max-width: 64rem) {
  .rnv-feature__box + .rnv-feature__box {
    margin-top: 1.5rem;
  }
}
@media (max-width: 48rem) {
  .rnv-feature__box {
    padding: 2rem 1.5rem;
  }
}
.rnv-feature__box-head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 48rem) {
  .rnv-feature__box-head {
    gap: 1rem;
  }
}
.rnv-feature__box-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media (max-width: 48rem) {
  .rnv-feature__box-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}
.rnv-feature__grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 48rem) {
  .rnv-feature__grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.rnv-feature__grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 48rem) {
  .rnv-feature__grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.rnv-feature__img-item img {
  aspect-ratio: 276/180;
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media (max-width: 48rem) {
  .rnv-feature__img-item img {
    aspect-ratio: 295/193;
  }
}
.rnv-feature__img-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  margin-inline: 0.5rem;
}
.rnv-feature__img-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.8;
}
.rnv-feature__img-text {
  font-size: 0.75rem;
  line-height: 1.8;
  margin: 0;
}
.rnv-feature__row {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (max-width: 48rem) {
  .rnv-feature__row {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.rnv-feature__row-img {
  flex-shrink: 0;
  aspect-ratio: 452/220;
  width: 28.25rem;
}
@media (max-width: 48rem) {
  .rnv-feature__row-img {
    aspect-ratio: 263/673;
    width: 100%;
  }
}
.rnv-feature__body-text {
  font-size: 0.875rem;
  line-height: 1.8;
}
.rnv-feature__note {
  font-size: 0.625rem;
  color: #898989;
  text-align: right;
  margin: 1rem 0 0;
}
.rnv-feature__menu-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 48rem) {
  .rnv-feature__menu-list {
    grid-template-columns: 1fr;
    gap: 0.375rem;
  }
}
.rnv-feature__menu-list > li {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #E8ECF5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 5.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 48rem) {
  .rnv-feature__menu-list > li {
    min-height: 4.25rem;
    font-size: 0.75rem;
  }
}
.rnv-feature__menu-note {
  font-size: 0.625rem;
  color: #898989;
  margin: 1.5rem 0 0;
  text-align: right;
}
.rnv-feature__partition {
  border: none;
  border-top: 1.5px dashed #B4B5CD;
  margin: 2.5rem 0;
}
.rnv-feature__gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.rnv-feature__support-img {
  margin-bottom: 2rem;
}
.rnv-feature__support-img img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

/* case
--------------------------------------------------------------------*/
.rnv-case {
  position: relative;
  isolation: isolate;
  padding-block: 4.25rem 8.5rem;
}
@media (max-width: 48rem) {
  .rnv-case {
    padding-block: 2.75rem 5.5rem;
  }
}
.rnv-case .rnv-section-head {
  margin-bottom: 3.5rem;
}
@media (max-width: 48rem) {
  .rnv-case .rnv-section-head {
    margin-bottom: 3rem;
  }
}
.rnv-case__inner {
  max-width: 87.5rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
}
.rnv-case__layout {
  display: flex;
  gap: 6.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 64rem) {
  .rnv-case__layout {
    flex-direction: column;
    gap: 2rem;
  }
}
.rnv-case__image {
  flex-shrink: 0;
  width: 43.75rem;
  aspect-ratio: 700/424;
}
@media (max-width: 64rem) {
  .rnv-case__image {
    width: 100%;
    aspect-ratio: 343/208;
  }
}
.rnv-case__image img {
  width: 100%;
  height: 26.5rem;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media (max-width: 48rem) {
  .rnv-case__image img {
    height: 13rem;
  }
}
.rnv-case__content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 64rem) {
  .rnv-case__content {
    width: 100%;
  }
}
.rnv-case__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  margin: 0 0 2rem;
}
@media (max-width: 48rem) {
  .rnv-case__title {
    font-size: 1.5rem;
  }
}
.rnv-case__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 48rem) {
  .rnv-case__meta {
    gap: 1rem;
  }
}
.rnv-case__area {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.rnv-case__meta-label {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
}
.rnv-case__area-text {
  font-size: 0.75rem;
  line-height: 1.8;
  color: #5D5E6C;
}
.rnv-case__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 48rem) {
  .rnv-case__points {
    gap: 0.75rem;
  }
}
.rnv-case__points-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (max-width: 48rem) {
  .rnv-case__points-box {
    gap: 0.375rem;
  }
}
.rnv-case__point-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.5rem;
}
@media (max-width: 48rem) {
  .rnv-case__point-row {
    align-items: flex-start;
  }
}
.rnv-case__point-num {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #2E39FF;
  flex-shrink: 0;
}
.rnv-case__point-text {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.8;
}
@media (max-width: 48rem) {
  .rnv-case__point-text {
    line-height: 1.4;
  }
}
.rnv-case__tab-section {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 6rem;
}
@media (max-width: 48rem) {
  .rnv-case__tab-section {
    margin-top: 3.5rem;
    gap: 1.5rem;
  }
}
.rnv-case__tab-area {
  display: flex;
  flex-direction: column;
}
.rnv-case__tabs {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}
@media (max-width: 48rem) {
  .rnv-case__tabs {
    gap: 0.25rem;
  }
}
.rnv-case__tab-btn {
  background: transparent;
  border-width: 0.125rem 0.125rem 0 0.125rem;
  border-style: solid;
  border-color: #2E39FF;
  color: #2E39FF;
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.5rem 1.5rem 0.375rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  line-height: 1.8;
}
@media (max-width: 48rem) {
  .rnv-case__tab-btn#tab-btn-terrace {
    font-size: 0.625rem;
  }
}
.rnv-case__tab-btn[aria-selected=true] {
  font-size: 1.125rem;
  background: #ffffff;
  color: #2E2E30;
  border: none;
  padding: 0.625rem 2rem 0.5rem;
}
@media (any-hover: hover) {
  .rnv-case__tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media (max-width: 48rem) {
  .rnv-case__tab-btn {
    font-size: 0.75rem;
    line-height: 1.14;
    padding: 0.375rem 0.625rem 0.3125rem;
    min-height: 2.0625rem;
  }
  .rnv-case__tab-btn[aria-selected=true] {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem 0.3125rem;
  }
}
.rnv-case__tab-panel {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 1rem 1rem 1rem;
  padding: 3rem;
}
@media (max-width: 48rem) {
  .rnv-case__tab-panel {
    padding: 2rem 1.5rem;
  }
}
.rnv-case__before-after {
  display: flex;
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 48rem) {
  .rnv-case__before-after {
    flex-direction: column;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
  }
}
.rnv-case__ba-item {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
.rnv-case__ba-item img {
  width: 100%;
  height: 25.0625rem;
  object-fit: cover;
  display: block;
  transform: scale(1.2);
}
@media (max-width: 48rem) {
  .rnv-case__ba-item img {
    height: 11.3125rem;
  }
}
.rnv-case__ba-item--before::before, .rnv-case__ba-item--after::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 0.625rem 1.25rem 0.625rem;
  border-radius: 0.125rem;
  background: rgba(50, 50, 50, 0.72);
  color: #ffffff;
  pointer-events: none;
  max-width: 6.75rem;
  width: 100%;
}
@media (max-width: 48rem) {
  .rnv-case__ba-item--before::before, .rnv-case__ba-item--after::before {
    font-size: 0.75rem;
    top: 0.625rem;
    left: 0.75rem;
    padding: 0.25rem 0.5rem 0.3125rem;
    max-width: 5rem;
  }
}
.rnv-case__ba-item--before::before {
  content: "BEFORE";
}
.rnv-case__ba-item--after::before {
  content: "AFTER";
}
.rnv-case__terrace-grid {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 48rem) {
  .rnv-case__terrace-grid {
    flex-direction: column;
    gap: 2rem;
  }
}
.rnv-case__terrace-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2rem;
}
@media (max-width: 48rem) {
  .rnv-case__terrace-card {
    gap: 1rem;
  }
}
.rnv-case__terrace-img {
  width: 100%;
  aspect-ratio: 628/389;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
}
.rnv-case__terrace-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rnv-case__terrace-title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
}
.rnv-case__tab-text {
  font-size: 0.875rem;
  line-height: 1.8;
}

/* voice
--------------------------------------------------------------------*/
.rnv-voice {
  padding-block: 4rem 8.5rem;
}
@media (max-width: 48rem) {
  .rnv-voice {
    padding-block: 2.5rem 5.5rem;
  }
}
.rnv-voice__inner {
  max-width: 87.5rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
}
.rnv-voice .rnv-section-head {
  margin-bottom: 4rem;
}
@media (max-width: 48rem) {
  .rnv-voice .rnv-section-head {
    margin-bottom: 3rem;
  }
}
.rnv-voice__cards {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 3.5rem;
}
@media (max-width: 64rem) {
  .rnv-voice__cards {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* voice card
--------------------------------------------------------------------*/
.rnv-voice-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 2rem 2.5rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 48rem) {
  .rnv-voice-card {
    padding: 1.5rem 1.5rem 2rem;
  }
}
.rnv-voice-card__user-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 48rem) {
  .rnv-voice-card__user-row {
    gap: 1.25rem;
  }
}
.rnv-voice-card__icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
}
@media (max-width: 48rem) {
  .rnv-voice-card__icon {
    width: 3.375rem;
    height: 3.375rem;
  }
}
.rnv-voice-card__user-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rnv-voice-card__name-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1.5rem;
}
@media (max-width: 48rem) {
  .rnv-voice-card__name-row {
    gap: 0.75rem;
  }
}
.rnv-voice-card__name {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .rnv-voice-card__name {
    font-size: 1.25rem;
  }
}
.rnv-voice-card__location-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.375rem;
}
@media (max-width: 48rem) {
  .rnv-voice-card__location-wrap {
    gap: 0.25rem;
  }
}
.rnv-voice-card__pin-icon {
  flex-shrink: 0;
  width: 0.75rem;
  height: 1.5625rem;
}
@media (max-width: 48rem) {
  .rnv-voice-card__pin-icon {
    width: 0.625rem;
    height: 1.375rem;
  }
}
.rnv-voice-card__location {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #5D5E6C;
}
@media (max-width: 48rem) {
  .rnv-voice-card__location {
    font-size: 0.75rem;
  }
}
.rnv-voice-card__tag {
  background: #E8ECF5;
  color: #5D5E6C;
  border-radius: 0.375rem;
  padding: 0.125rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.8;
  align-self: flex-start;
}
@media (max-width: 48rem) {
  .rnv-voice-card__tag {
    font-size: 0.75rem;
    padding: 0.0625rem 0.375rem;
  }
}
.rnv-voice-card__divider {
  border: none;
  border-top: 0.09375rem dashed #B4B5CD;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 48rem) {
  .rnv-voice-card__divider {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
}
.rnv-voice-card__body-wrap {
  overflow: hidden;
  max-height: 9em;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.rnv-voice-card__body {
  font-size: 0.875rem;
  line-height: 1.8;
}
.rnv-voice-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 1rem;
  border-radius: 6.25rem;
  border: 0.125rem solid #2E39FF;
  background: #ffffff;
  color: #2E39FF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
  align-self: center;
  margin-top: auto;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.rnv-voice-card__btn::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  background: linear-gradient(currentColor, currentColor) center/0.09375rem 100% no-repeat, linear-gradient(currentColor, currentColor) center/100% 0.09375rem no-repeat;
  transition: background 0.2s ease;
}
@media (any-hover: hover) {
  .rnv-voice-card__btn:hover {
    opacity: 0.75;
  }
}
@media (max-width: 48rem) {
  .rnv-voice-card.is-open {
    margin-bottom: 0.875rem;
  }
}
.rnv-voice-card.is-open .rnv-voice-card__body-wrap {
  max-height: none;
  mask-image: none;
  -webkit-mask-image: none;
}
.rnv-voice-card.is-open .rnv-voice-card__btn {
  background: #B4B5CD;
  border-color: transparent;
  color: #ffffff;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}
.rnv-voice-card.is-open .rnv-voice-card__btn::after {
  background: linear-gradient(currentColor, currentColor) center/100% 0.09375rem no-repeat;
}

/* flow
--------------------------------------------------------------------*/
.rnv-flow {
  padding-block: 4rem 8.5rem;
}
@media (max-width: 48rem) {
  .rnv-flow {
    padding-block: 2.625rem 5.5rem;
  }
}
.rnv-flow__inner {
  max-width: 87.5rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 64rem) {
  .rnv-flow__inner {
    flex-direction: column;
    gap: 3rem;
  }
}
.rnv-flow__lead {
  flex-shrink: 0;
  width: 29.625rem;
}
@media (max-width: 64rem) {
  .rnv-flow__lead {
    width: 100%;
  }
}
.rnv-flow__lead-text {
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 3rem 0 0;
}
.rnv-flow__steps {
  flex: 1;
  position: relative;
  padding-left: 5.5rem;
  display: flex;
  width: 100%;
  flex-direction: column;
}
@media (max-width: 48rem) {
  .rnv-flow__steps {
    padding-left: 3.125rem;
  }
}
.rnv-flow__step {
  position: relative;
  margin-bottom: 1rem;
}
@media (max-width: 48rem) {
  .rnv-flow__step {
    margin-bottom: 1.5rem;
  }
}
.rnv-flow__step:last-child {
  margin-bottom: 0;
}
.rnv-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.6875rem;
  left: -3.796875rem;
  width: 0.09375rem;
  height: calc(100% + 1rem);
  background: repeating-linear-gradient(to bottom, #B4B5CD 0, #B4B5CD 0.1875rem, transparent 0.1875rem, transparent 0.375rem);
  z-index: 0;
}
@media (max-width: 48rem) {
  .rnv-flow__step:not(:last-child)::after {
    top: 2.375rem;
    left: -2.296875rem;
    height: calc(100% + 1.5rem);
  }
}
.rnv-flow__step-num {
  position: absolute;
  left: -5.5rem;
  top: 2.6875rem;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #2E39FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  color: #ffffff;
  z-index: 1;
}
@media (max-width: 48rem) {
  .rnv-flow__step-num {
    width: 2.375rem;
    height: 2.375rem;
    font-size: 0.875rem;
    left: -3.4375rem;
    top: 2.375rem;
  }
}
.rnv-flow__step-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
}
@media (max-width: 48rem) {
  .rnv-flow__step-card {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
  }
  .rnv-flow__step-card:has(.rnv-flow__step-toggle[aria-expanded=true]) {
    padding-bottom: 3.25rem;
  }
}
.rnv-flow__step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rnv-flow__step-bar {
  display: block;
  flex-shrink: 0;
  width: 0.625rem;
  height: 0.1875rem;
  background: #2E39FF;
  border-radius: 0.125rem;
}
.rnv-flow__step-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  flex: 1;
}
@media (max-width: 48rem) {
  .rnv-flow__step-title {
    font-size: 1.125rem;
  }
}
.rnv-flow__step-toggle {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 0.09375rem solid #2E39FF;
  background: #ffffff;
  cursor: pointer;
  color: #2E39FF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.rnv-flow__step-toggle::after {
  content: "";
  display: block;
  width: 0.6875rem;
  height: 0.6875rem;
  background: linear-gradient(currentColor, currentColor) center/0.0625rem 100% no-repeat, linear-gradient(currentColor, currentColor) center/100% 0.0625rem no-repeat;
  transition: background 0.2s ease;
}
.rnv-flow__step-toggle[aria-expanded=true] {
  border-color: #B4B5CD;
  color: #B4B5CD;
}
.rnv-flow__step-toggle[aria-expanded=true]::after {
  background: linear-gradient(currentColor, currentColor) center/100% 0.0625rem no-repeat;
}
@media (max-width: 48rem) {
  .rnv-flow__step-toggle[aria-expanded=true] {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    border-radius: 624.9375rem;
    background: #B4B5CD;
    border-color: transparent;
    color: #ffffff;
    padding: 0.125rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.8;
    white-space: nowrap;
    gap: 0.375rem;
  }
  .rnv-flow__step-toggle[aria-expanded=true]::after {
    width: 0.625rem;
    height: 0.625rem;
  }
  .rnv-flow__step-toggle[aria-expanded=true] .rnv-flow__step-toggle__label {
    display: inline;
  }
}
.rnv-flow__step-toggle .rnv-flow__step-toggle__label {
  display: none;
}
@media (any-hover: hover) {
  .rnv-flow__step-toggle:hover {
    opacity: 0.75;
  }
}
.rnv-flow__step-body {
  margin-top: 0.75rem;
  padding-top: 0;
  padding-bottom: 0.5rem;
  padding-left: 0;
  padding-right: 0;
}
.rnv-flow__step-text {
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
}
.rnv-flow__step-text + .rnv-flow__step-text {
  margin-top: 0.75rem;
}

/* event
--------------------------------------------------------------------*/
.rnv-event {
  padding-block: 3.5rem 4.25rem;
}
@media (max-width: 48rem) {
  .rnv-event {
    padding-block: 2.5rem 2.75rem;
  }
}
.rnv-event__inner {
  max-width: 87.5rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
}
.rnv-event .rnv-section-head {
  margin-bottom: 3rem;
}
@media (max-width: 48rem) {
  .rnv-event .rnv-section-head {
    margin-bottom: 2rem;
  }
}
.rnv-event__slider-outer {
  padding-left: max(1rem, (100% - 87.5rem) / 2);
  padding-right: max(1rem, (100% - 87.5rem) / 2);
  margin-bottom: 3.5rem;
}
@media (max-width: 48rem) {
  .rnv-event__slider-outer {
    padding-left: 1rem;
    padding-right: 0;
    margin-bottom: 2rem;
  }
}
@media (max-width: 48rem) {
  .rnv-event__slider-outer.is-not-slider-outer--sp {
    padding-right: 1rem;
  }
}
.rnv-event__splide .splide__track {
  overflow: visible;
}
.rnv-event__splide.is-not-slider {
  visibility: visible;
}
.rnv-event__splide.is-not-slider .splide__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.rnv-event__splide.is-not-slider .splide__slide {
  width: 27.125rem;
}
.rnv-event__splide.is-not-slider--sp {
  visibility: visible;
}
.rnv-event__splide.is-not-slider--sp .splide__list {
  display: flex;
  justify-content: center;
}
.rnv-event__splide.is-not-slider--sp .splide__slide {
  width: 100%;
}
.rnv-event__seekbar-inner {
  margin-top: 3.5rem;
}
@media (max-width: 48rem) {
  .rnv-event__seekbar-inner {
    margin-top: 2rem;
  }
}
.rnv-event__seekbar {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 0.1875rem;
  background: linear-gradient(to right, #2E39FF var(--fill, 0%), rgba(180, 181, 205, 0.35) var(--fill, 0%));
  border-radius: 0.0625rem;
  cursor: pointer;
  outline-offset: 0.25rem;
}
.rnv-event__seekbar::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 0.1875rem;
  border-radius: 0.0625rem;
  background: linear-gradient(to right, #2E39FF var(--fill, 0%), rgba(180, 181, 205, 0.35) var(--fill, 0%));
}
.rnv-event__seekbar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  margin-top: -0.53125rem;
}
.rnv-event__seekbar::-moz-range-track {
  height: 0.1875rem;
  background: rgba(180, 181, 205, 0.35);
  border-radius: 0.0625rem;
}
.rnv-event__seekbar::-moz-range-progress {
  height: 0.1875rem;
  background: #2E39FF;
  border-radius: 0.0625rem 0 0 0.0625rem;
}
.rnv-event__seekbar::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* event card
--------------------------------------------------------------------*/
.rnv-event-card {
  display: block;
  position: relative;
}
.rnv-event-card__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.rnv-event-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.rnv-event-card__img-wrap {
  aspect-ratio: 434/271;
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 48rem) {
  .rnv-event-card__img-wrap {
    aspect-ratio: 287/179;
  }
}
.rnv-event-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.rnv-event-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rnv-event-card__tag {
  display: inline-flex;
  align-items: center;
  background: #B4B5CD;
  color: #ffffff;
  border-radius: 624.9375rem;
  padding: 0.125rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  align-self: flex-start;
}
.rnv-event-card__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}
.rnv-event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.rnv-event-card__meta-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.rnv-event-card__meta-icon {
  flex-shrink: 0;
  color: #5D5E6C;
  stroke: currentColor;
}
.rnv-event-card__meta-text {
  font-size: 0.75rem;
  color: #5D5E6C;
  line-height: 1.8;
}
@media (any-hover: hover) {
  .rnv-event-card:hover .rnv-event-card__img {
    transform: scale(1.04);
  }
}

/* footer
--------------------------------------------------------------------*/
.rnv-footer {
  background: #ffffff;
  padding: 0.75rem 0;
  text-align: center;
}
@media (max-width: 64rem) {
  .rnv-footer {
    padding-bottom: 6rem;
  }
}
.rnv-footer__copy {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.05em;
  color: #707C8A;
  margin: 0;
}

/* SP campaign wrapper
--------------------------------------------------------------------*/
.rnv-sp-campaign {
  padding: 0 1rem 1rem;
}

/* campaign modal
--------------------------------------------------------------------*/
.rnv-campaign-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.rnv-campaign-modal[data-active=true] {
  opacity: 1;
  visibility: visible;
}
.rnv-campaign-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.rnv-campaign-modal__panel {
  position: relative;
  z-index: 1;
  background: #FAFBFD;
  border-radius: 1rem;
  padding: 2.5rem 3rem 3rem;
  width: 38rem;
  max-width: calc(100vw - 2rem);
  max-height: 90vh;
}
@media (max-width: 48rem) {
  .rnv-campaign-modal__panel {
    padding: 2rem 1.5rem 2.25rem;
  }
}
.rnv-campaign-modal__title {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1.5rem;
  line-height: 1.8;
}
.rnv-campaign-modal__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}
.rnv-campaign-modal__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.rnv-campaign-modal__item::before {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: #B4B5CD;
  flex-shrink: 0;
  margin-top: 0.625rem;
}
.rnv-campaign-modal__item p {
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 0;
}
.rnv-campaign-modal__close {
  position: absolute;
  bottom: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: #B4B5CD;
  color: #ffffff;
  border: none;
  border-radius: 624.9375rem;
  padding: 0.125rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
  cursor: pointer;
}
.rnv-campaign-modal__close::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.0625rem;
  border-radius: 624.9375rem;
  background: #ffffff;
}
@media (any-hover: hover) {
  .rnv-campaign-modal__close:hover {
    opacity: 0.8;
  }
}

/*# sourceMappingURL=/assets/web/extras/lp/renovationheim-f4a35cc8.css.map */
