@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 1rem;
  grid-template-columns: repeat(3, minmax(calc((100% - 2rem) / 3), 1fr));
}
@media (max-width: 64rem) {
  .event .cmn-grid__content:has(.mdl-menu-item) {
    grid-template-columns: repeat(2, minmax(calc((100% - 1rem) / 2), 1fr));
  }
}
@media (max-width: 48rem) {
  .event .cmn-grid__content:has(.mdl-menu-item) {
    grid-template-columns: repeat(auto-fill, minmax(calc((100% - 1rem) / 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: fixed;
  z-index: 1000;
  box-shadow: 0px 4px 30px hsla(204, 73%, 36%, 0.18);
  height: var(--header-height);
  width: 100vw;
  top: 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__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.75rem;
  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 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;
  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;
}

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

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

.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) {
  .theta-item {
    padding: 1rem 1.5rem 1rem 1rem;
  }
}
.theta-item-img {
  max-width: 2.625rem;
}
.theta-item svg {
  width: 1.0625rem;
  height: 0.875rem;
}

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

.cmn-scroll-top {
  position: fixed;
  z-index: 1000;
  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;
  }
}

/* お問い合わせ レイアウト
--------------------------------------------------------------------*/
.form .cmn-page-head01 {
  margin-bottom: 6.5rem;
}
@media (max-width: 48rem) {
  .form .cmn-page-head01 {
    margin-bottom: 3rem;
  }
}
.form [hidden] {
  display: none !important;
}

.form-container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: flex-start;
}
@media (max-width: 48rem) {
  .form-container {
    flex-direction: column;
    align-items: center;
  }
}

.form-contents {
  max-width: calc(100% - 10.5rem);
  width: 57.6875rem;
}
@media (max-width: 48rem) {
  .form-contents {
    width: 100%;
    max-width: unset;
  }
}

/* サンクスページ、受付終了ページ
--------------------------------------------------------------------*/
.form-msg__head {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .form-msg__head {
    font-size: 1.375rem;
    text-align: center;
  }
}
.form-msg__desc {
  margin-top: 3rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.84;
}
@media (max-width: 48rem) {
  .form-msg__desc {
    margin-top: 2rem;
    line-height: 1.65;
  }
}

/* ステップリスト
--------------------------------------------------------------------*/
.step-list {
  flex-shrink: 0;
  position: sticky;
  top: 17.5rem;
}
@media (max-width: 48rem) {
  .step-list {
    position: static;
    top: unset;
    display: flex;
    gap: 2.875rem;
  }
}
.step-list__item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  line-height: 1.2;
  color: #ACB4BF;
  position: relative;
}
@media (max-width: 48rem) {
  .step-list__item {
    flex-direction: column;
    gap: 0.25rem;
    justify-content: flex-start;
    flex: 1;
  }
}
.step-list__item.is-colored .step-list__num {
  color: #0075c1;
}
.step-list__item.is-colored .step-list__num::before {
  background-color: #0075c1;
}
.step-list__item.is-colored .step-list__txt {
  color: #262A2E;
}
.step-list__item + .step-list__item {
  padding-top: 2.625rem;
}
@media (max-width: 48rem) {
  .step-list__item + .step-list__item {
    padding-top: unset;
  }
}
.step-list__item + .step-list__item::before {
  content: "";
  display: block;
  width: 1px;
  height: 2.625rem;
  background-color: #D2DBE6;
  position: absolute;
  left: 0.3125rem;
  top: 0;
}
@media (max-width: 48rem) {
  .step-list__item + .step-list__item::before {
    height: 1px;
    width: 3.5rem;
    top: 0.3125rem;
    left: -3.1875rem;
  }
}
.step-list__num {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  position: relative;
  display: flex;
  padding-left: 1.125rem;
  align-items: center;
}
@media (max-width: 48rem) {
  .step-list__num {
    justify-content: center;
    padding-left: unset;
    padding-top: 0.875rem;
    font-size: 0.75rem;
  }
}
.step-list__num::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  border-radius: 50%;
  background-color: #ACB4BF;
  width: 0.625rem;
  height: 0.625rem;
}
@media (max-width: 48rem) {
  .step-list__num::before {
    left: unset;
    top: 0;
  }
}
.step-list__txt {
  font-weight: 600;
  font-size: 1.125rem;
  display: block;
}
@media (max-width: 48rem) {
  .step-list__txt {
    font-size: 0.875rem;
  }
}

/* フォーム本体
--------------------------------------------------------------------*/
.form__block + .form__block {
  margin-top: 4.5rem;
}
@media (max-width: 48rem) {
  .form__block + .form__block {
    margin-top: 2.5rem;
  }
}

.form__data {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
@media (max-width: 64rem) {
  .form__data {
    gap: 2rem;
  }
}
@media (max-width: 48rem) {
  .form__data {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 0 0.5rem;
  }
}
.form__data.form__data--top-alignment {
  align-items: flex-start;
}
.form__data:not(.form__data.form__data--top-alignment) dt {
  margin-top: calc((3.625rem - 1lh) / 2);
}
@media (max-width: 48rem) {
  .form__data:not(.form__data.form__data--top-alignment) dt {
    margin-top: unset;
  }
}
.form__data dt {
  display: flex;
  gap: 0.75rem;
  width: 16.375rem;
}
@media (max-width: 48rem) {
  .form__data dt {
    flex-direction: row-reverse;
    width: auto;
    gap: 0.625rem;
  }
}
.form__data dt.is-agreement {
  width: 24rem;
}
@media (max-width: 48rem) {
  .form__data dt.is-agreement {
    width: auto;
  }
}
.form__data dd {
  width: 38.5rem;
  max-width: calc(100% - 2.5rem - 16.375rem);
}
@media (max-width: 64rem) {
  .form__data dd {
    max-width: calc(100% - 2rem - 16.375rem);
  }
}
@media (max-width: 48rem) {
  .form__data dd {
    width: 100%;
    max-width: unset;
  }
}

.header-comment,
.footer-comment {
  font-size: 0.875rem;
  font-size: 0.75rem;
  font-weight: 400;
}
.header-comment {
  margin-bottom: 0.75rem;
}
.footer-comment {
  margin-top: 0.75rem;
}
.form__required,
.form__any {
  flex-shrink: 0;
  display: inline-block;
  white-space: nowrap;
  border-radius: 3.125rem;
  line-height: 1.5625rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  height: fit-content;
  color: #ffffff;
}

.form__required {
  background-color: #E35C5C;
}

.form__any {
  background-color: #707c8a;
}

.form__input-ttl {
  font-size: 1rem;
  line-height: 1.84;
  margin-top: -0.125rem;
}
@media (max-width: 48rem) {
  .form__input-ttl {
    line-height: 1.65;
  }
}

.form__input-sub-ttl {
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.form__field + .form__field {
  margin-top: 0.75rem;
}
.form__field.form__field--multi {
  display: flex;
  gap: 1rem;
}
@media (max-width: 48rem) {
  .form__field.form__field--multi {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.form__field.form__field--multi > * {
  flex: 1;
}

.form__input-wrap .layout-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 48rem) {
  .form__input-wrap .layout-grid {
    gap: 1rem;
  }
}
.form__input-wrap .layout-grid label {
  width: fit-content;
}
.form__input-wrap .layout-grid > * {
  width: 100%;
}
.form__input-wrap .layout-grid.--2columns {
  gap: 2rem 1rem;
}
@media (max-width: 48rem) {
  .form__input-wrap .layout-grid.--2columns {
    gap: 1rem;
  }
}
.form__input-wrap .layout-grid.--2columns > * {
  width: calc((100% - 1rem) / 2);
}
.form__input-wrap .layout-grid.--2columns > *.--full-width {
  width: 100%;
}
@media (max-width: 48rem) {
  .form__input-wrap .layout-grid.--2columns > * {
    width: 100%;
  }
}
.form__input-wrap .layout-grid.--3columns {
  gap: 2rem 1rem;
}
@media (max-width: 48rem) {
  .form__input-wrap .layout-grid.--3columns {
    gap: 1rem;
  }
}
.form__input-wrap .layout-grid.--3columns > * {
  width: calc((100% - 2rem) / 3);
}
@media (max-width: 48rem) {
  .form__input-wrap .layout-grid.--3columns > * {
    width: 100%;
  }
}

.form__input-box {
  display: flex;
  align-items: center;
  position: relative;
}
.form__input-box.form__input-box--check {
  gap: 1rem;
  cursor: pointer;
}
@media (max-width: 48rem) {
  .form__input-box.form__input-box--check {
    gap: 0.75rem;
  }
}
.form__input-box.form__input-box--check .form__check-ttl {
  user-select: none;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.84;
}
@media (max-width: 48rem) {
  .form__input-box.form__input-box--check .form__check-ttl {
    line-height: 1.65;
  }
}
.form__input-box input,
.form__input-box select,
.form__input-box textarea {
  width: 100%;
  background-color: #ffffff;
  outline: 1px solid #D2DBE6;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.84;
  padding: 1rem 2.75rem 1rem 1.5rem;
}
@media (max-width: 48rem) {
  .form__input-box input,
  .form__input-box select,
  .form__input-box textarea {
    font-size: 1rem;
    line-height: 1.65;
    padding: 1rem 2.25rem 1rem 1rem;
  }
}
.form__input-box input::placeholder,
.form__input-box select::placeholder,
.form__input-box textarea::placeholder {
  color: #ACB4BF;
}
.form__input-box input:-webkit-autofill,
.form__input-box textarea:-webkit-autofill,
.form__input-box select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
  -webkit-text-fill-color: #262A2E;
}
.form__input-box input:-moz-autofill,
.form__input-box textarea:-moz-autofill,
.form__input-box select:-moz-autofill {
  box-shadow: 0 0 0px 1000px #ffffff inset;
  -moz-text-fill-color: #262A2E;
}
.form__input-box input,
.form__input-box select {
  height: 3.625rem;
}
.form__input-box select {
  cursor: pointer;
}
.form__input-box textarea {
  resize: vertical;
  min-height: 13.375rem;
}
@media (max-width: 48rem) {
  .form__input-box textarea {
    min-height: 11.75rem;
  }
}
.form__input-box input[type=checkbox] {
  outline: unset;
  border: 1px solid #D2DBE6;
  border-radius: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ffffff;
  padding: 0;
  flex-shrink: 0;
}
@media (max-width: 48rem) {
  .form__input-box input[type=checkbox] {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.form__input-box input[type=checkbox]:checked {
  border-color: #0075c1;
  background: #0075c1 url("/web/images/common/icon-check--white.svg") center center/12px 8px no-repeat;
}
@media (max-width: 48rem) {
  .form__input-box input[type=checkbox]:checked {
    background: #0075c1 url("/web/images/common/icon-check--white.svg") center center/9.9px 6.6px no-repeat;
  }
}
.form__input-box input[type=radio] {
  outline: unset;
  border: 1px solid #D2DBE6;
  border-radius: 50%;
  width: 1.375rem;
  height: 1.375rem;
  background-color: #ffffff;
  padding: 0;
  flex-shrink: 0;
}
.form__input-box input[type=radio]:checked {
  border-color: #0075c1;
  background: #0075c1 url("/web/images/common/icon-radio--white.svg") center center/6px 6px no-repeat;
}
.form__input-box input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  background: transparent;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.form__input-box.is-checked:not(.form__input-box--check)::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
  background: url("/web/images/common/icon-checked.svg") no-repeat;
  background-size: contain;
  z-index: 2;
}
.form__input-box.is-checked:not(.form__input-box--check) input,
.form__input-box.is-checked:not(.form__input-box--check) select,
.form__input-box.is-checked:not(.form__input-box--check) textarea {
  outline: 1.5px solid #88C417;
}
.form__input-box.is-error:not(.form__input-box--check)::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
  background: url("/web/images/common/icon-err.svg") no-repeat;
  background-size: contain;
  z-index: 2;
}
.form__input-box.is-error:not(.form__input-box--check) input,
.form__input-box.is-error:not(.form__input-box--check) select,
.form__input-box.is-error:not(.form__input-box--check) textarea {
  outline: 1.5px solid #E35C5C;
  background-color: #FAEEEE;
}
.form__input-box.is-error:not(.form__input-box--check) input option,
.form__input-box.is-error:not(.form__input-box--check) select option,
.form__input-box.is-error:not(.form__input-box--check) textarea option {
  background-color: #ffffff;
}
.form__input-box.is-error:not(.form__input-box--check) input:-webkit-autofill,
.form__input-box.is-error:not(.form__input-box--check) textarea:-webkit-autofill,
.form__input-box.is-error:not(.form__input-box--check) select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #FAEEEE inset;
}
.form__input-box.is-error:not(.form__input-box--check) input:-moz-autofill,
.form__input-box.is-error:not(.form__input-box--check) textarea:-moz-autofill,
.form__input-box.is-error:not(.form__input-box--check) select:-moz-autofill {
  box-shadow: 0 0 0px 1000px #FAEEEE inset;
}

@-moz-document url-prefix() {
  input[type=date] {
    padding-right: 1.5rem;
  }
  @media (max-width: 48rem) {
    input[type=date] {
      padding-right: 1rem;
    }
  }
  input[type=date] + .form__calendar {
    display: none;
  }
}
.form__input-detail {
  width: 100%;
}
.form__input-detail .form__input-box--check + .form__input-box {
  margin-top: 1rem;
}
@media (max-width: 48rem) {
  .form__input-detail .form__input-box--check + .form__input-box {
    margin-top: 0.5rem;
    margin-left: 2.125rem;
  }
}

.form__arrow {
  position: absolute;
  right: 1.5rem;
  display: inline-block;
  width: 0.75rem;
  height: 0.4375rem;
  object-fit: contain;
  pointer-events: none;
  fill: none;
}
.is-checked .form__arrow, .is-error .form__arrow {
  display: none;
}
.form__calendar {
  position: absolute;
  right: 1.5rem;
  display: inline-block;
  width: 1.0625rem;
  height: 1rem;
  object-fit: contain;
  pointer-events: none;
  fill: none;
}
.is-checked .form__calendar, .is-error .form__calendar {
  display: none;
}
.form__head {
  font-size: 1.875rem;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .form__head {
    font-size: 1.375rem;
    text-align: center;
    margin: 0 0.5rem;
  }
}

.form__attention {
  font-weight: 400;
  margin-top: 2.5rem;
  color: #E35C5C;
  font-size: 0.875rem;
  line-height: 1.84;
}
.form__attention strong {
  font-weight: 600;
}
@media (max-width: 48rem) {
  .form__attention {
    margin: 2rem 0.5rem 0;
    line-height: 1.65;
  }
}

.form__input-area {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 48rem) {
  .form__input-area {
    gap: 2.5rem;
  }
}

.form__prompt {
  border-radius: 0.25rem;
  font-weight: 600;
  background-color: #EDF1F7;
  padding: 0 2rem;
  font-size: 1.125rem;
  line-height: 4.625rem;
}
@media (max-width: 48rem) {
  .form__prompt {
    line-height: 3.625rem;
    font-size: 1rem;
    padding: 0 1rem;
    margin: 0 -0.5rem;
  }
}

.character-limit {
  font-size: 0.75rem;
  line-height: 1.84;
  text-align: right;
  margin-top: 0.25rem;
}
@media (max-width: 48rem) {
  .character-limit {
    margin-top: 0.125rem;
  }
}
.err-msg {
  display: none;
  color: #E35C5C;
  line-height: 1.84;
  font-size: 0.875rem;
  margin-top: 1rem;
}
.err-msg.is-visible {
  display: block;
}
@media (max-width: 48rem) {
  .err-msg {
    line-height: 1.65;
  }
}

/* 個人情報の取扱いについて
--------------------------------------------------------------------*/
.personal-info .msgArea {
  background-color: #EDF1F7;
  padding: 3rem 3.5rem;
  border-radius: 0.25rem;
}
@media (max-width: 48rem) {
  .personal-info .msgArea {
    padding: 2rem 1.5rem;
  }
}
.personal-info .msgArea-ttl {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 600;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ACB4BF;
}
@media (max-width: 48rem) {
  .personal-info .msgArea-ttl {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}
.personal-info .prvList dt {
  font-size: 1rem;
  line-height: 1.84;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
@media (max-width: 48rem) {
  .personal-info .prvList dt {
    line-height: 1.65;
  }
}
.personal-info .prvList dd {
  font-size: 0.875rem;
  line-height: 1.84;
  font-weight: 400;
}
.personal-info .prvList dd a {
  text-decoration: underline;
  color: #0075c1;
  text-underline-offset: 0.125rem;
}
.personal-info .prvList dd + dt {
  margin-top: 2rem;
}
@media (max-width: 48rem) {
  .personal-info .prvList dd + dt {
    margin-top: 1.5rem;
  }
}
@media (max-width: 48rem) {
  .personal-info .spNon {
    display: none !important;
  }
}

/* 追従ボタン
--------------------------------------------------------------------*/
.form__btn-area {
  background-color: #F4F6FA;
  position: fixed;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 48rem) {
  .form__btn-area {
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.75rem;
  }
}
.form__btn-area .incomplete {
  flex-shrink: 0;
}
.form__btn-area .required-fields {
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: 600;
}
.form__btn-area .required-fields.is-hidden {
  visibility: hidden;
  position: absolute;
  z-index: -1;
}
.form__btn-area .required-fields__txt {
  font-size: 1.125rem;
  letter-spacing: 0;
}
@media (max-width: 48rem) {
  .form__btn-area .required-fields__txt {
    font-size: 0.75rem;
  }
}
.form__btn-area .required-fields__txt--red {
  color: #E35C5C;
  letter-spacing: 0;
  font-size: 1.125rem;
  font-weight: 700;
}
@media (max-width: 48rem) {
  .form__btn-area .required-fields__txt--red {
    font-size: 0.75rem;
    font-weight: 600;
  }
}
.form__btn-area .required-fields__label {
  color: #ffffff;
  font-weight: 700;
  padding: 0 0.75rem;
  line-height: 1.5625rem;
  font-size: 0.75rem;
  background-color: #E35C5C;
  border-radius: 3.125rem;
  margin: 0 0.5rem;
}
@media (max-width: 48rem) {
  .form__btn-area .required-fields__label {
    margin: 0 0.25rem;
    padding: 0 0.5rem;
    line-height: 1.3125rem;
  }
}
.form__btn-area .required-fields__num {
  color: #E35C5C;
  margin: 0 0.125rem;
  font-size: 1.75rem;
}
@media (max-width: 48rem) {
  .form__btn-area .required-fields__num {
    font-size: 1.25rem;
  }
}
.form__btn-area .has-format-error-txt {
  display: flex;
  align-items: center;
  line-height: 1.4;
  position: relative;
  gap: 0.5rem;
  font-size: 1rem;
  color: #E35C5C;
  font-weight: bold;
  margin-top: 0.75rem;
}
.form__btn-area .has-format-error-txt.is-hidden {
  visibility: hidden;
  position: absolute;
  z-index: -1;
}
@media (max-width: 48rem) {
  .form__btn-area .has-format-error-txt {
    gap: 0.375rem;
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}
.form__btn-area .has-format-error-txt::before {
  margin-top: 0.046875rem;
  content: "";
  display: inline-block;
  width: 1.09375rem;
  height: 1.09375rem;
  background: url("/web/images/common/icon-err.svg") no-repeat;
  background-size: contain;
}
@media (max-width: 48rem) {
  .form__btn-area .has-format-error-txt::before {
    margin-top: 0.1875rem;
    width: 0.875rem;
    height: 0.875rem;
  }
}
.form__btn-area .completion {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  font-weight: 600;
}
.form__btn-area .completion.is-hidden {
  visibility: hidden;
  position: absolute;
  z-index: -1;
}
@media (max-width: 48rem) {
  .form__btn-area .completion {
    gap: 0.375rem;
  }
}
.form__btn-area .completion__txt {
  font-size: 1.125rem;
  letter-spacing: 0;
}
@media (max-width: 48rem) {
  .form__btn-area .completion__txt {
    font-size: 0.75rem;
  }
}
.form__btn-area .completion__icon {
  border-radius: 50%;
  display: block;
  width: 1.625rem;
  height: 1.625rem;
  background: #88C417 url("/web/images/common/icon-check--white.svg") center center/11.7px 7.8px no-repeat;
}
@media (max-width: 48rem) {
  .form__btn-area .completion__icon {
    width: 1.25rem;
    height: 1.25rem;
    background: #88C417 url("/web/images/common/icon-check--white.svg") center center/9px 6px no-repeat;
  }
}
.form__btn-area .form__btn {
  pointer-events: none;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  background-color: #D2DBE6;
  color: #707c8a;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  line-height: 1.8;
  border-radius: 3.125rem;
  position: relative;
  width: 22rem;
  max-width: 100%;
}
@media (max-width: 48rem) {
  .form__btn-area .form__btn {
    padding: 1rem 2rem;
    gap: 0.25rem;
  }
}
.form__btn-area .form__btn::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1.5rem;
  background-image: url("/web/images/common/btn-arrow--white02.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.form__btn-area .form__btn.is-active {
  cursor: pointer;
  background-color: #0075c1;
  color: #ffffff;
  pointer-events: auto;
}
.form__btn-area .form__btn.is-active::after {
  background-image: url("/web/images/common/btn-arrow--white.svg");
}

/*# sourceMappingURL=/assets/web/pages/form-0001e1b0.css.map */
