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

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

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

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

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

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

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

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

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

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

select:disabled {
  opacity: inherit;
}

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

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

legend {
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

caption {
  text-align: left;
}

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

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

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

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

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

::selection {
  text-shadow: none;
}

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

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

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

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

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

dt {
  font-weight: inherit;
}

em {
  font-style: normal;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cmn-footer {
  background-color: #EDF1F7;
  position: relative;
  z-index: 2;
}
.cmn-footer__container {
  padding: 5rem 0 1.5rem;
}
.cmn-footer__inner {
  margin: auto;
  width: calc(100% - 4rem);
  max-width: 93.75rem;
}
.cmn-footer__wrap {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 48rem) {
  .cmn-footer__wrap {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.cmn-footer__info .company-info {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 48rem) {
  .cmn-footer__info .company-info {
    margin-top: 3.5rem;
    font-size: 0.75rem;
    font-weight: 500;
  }
}
.cmn-footer__info .company--address {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}
.cmn-footer__info .company--tel {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 48rem) {
  .cmn-footer__info .company--tel {
    margin-top: 0.5rem;
  }
}
.cmn-footer__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 a:visited {
  color: #262A2E;
}
.cmn-theta-list li {
  margin: 20px;
}
@media (max-width: 48rem) {
  .cmn-theta-list li {
    margin: 20px 0px;
    font-size: 14px;
  }
}
.cmn-theta-list li span {
  font-size: 1.3125rem;
}
@media (max-width: 48rem) {
  .cmn-theta-list li span {
    font-size: 1.125rem;
  }
}
.cmn-theta-list span {
  font-weight: bold;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* mdl-campaign
--------------------------------------------------------------------*/
.mdl-campaign-header {
  width: 37.75rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 auto 3rem;
}
@media (max-width: 48rem) {
  .mdl-campaign-header {
    margin: 0 auto 1.5625rem;
    gap: 1rem;
  }
}
.mdl-campaign-header__ttl {
  text-align: center;
  font-size: 1.625rem;
  line-height: 2;
  font-weight: 400;
}
@media (max-width: 48rem) {
  .mdl-campaign-header__ttl {
    font-size: 0.875rem;
  }
}
.mdl-campaign-header__ttl strong {
  font-weight: 600;
  font-size: 2rem;
  color: #0075c1;
}
@media (max-width: 48rem) {
  .mdl-campaign-header__ttl strong {
    font-size: 1.25rem;
  }
}
.mdl-campaign-banner {
  box-shadow: 0px 4px 30px rgba(25, 104, 158, 0.18);
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 3.5rem;
  overflow: hidden;
  position: relative;
  max-width: 57.5rem;
  margin: auto;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner {
    padding: 2rem 1.5rem;
  }
}
.mdl-campaign-banner::before, .mdl-campaign-banner::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
.mdl-campaign-banner::before {
  width: clamp(3.385625rem, 18.18vw, 10.814375rem);
  aspect-ratio: 1/1;
  background-image: url("/web/images/common/campaign-band01.svg");
  top: 0;
  left: 0;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner::before {
    width: clamp(3.385625rem, 15.8vw, 10.814375rem);
  }
}
.mdl-campaign-banner::after {
  width: clamp(3.38625rem, 18.88vw, 11.2325rem);
  aspect-ratio: 179.72/166.04;
  background-image: url("/web/images/common/campaign-band02.svg");
  right: 0;
  bottom: 0;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner::after {
    width: clamp(3.38625rem, 15.8vw, 11.2325rem);
  }
}
.mdl-campaign-banner__inner {
  margin: auto;
  max-width: 33.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mdl-campaign-banner__ttl {
  font-size: 2.3125rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 0.0625rem solid #D2DBE6;
  width: 100%;
  text-align: center;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}
.mdl-campaign-banner__card-list {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.625rem;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__card-list {
    gap: 1.5rem;
  }
}
.mdl-campaign-banner__card {
  box-shadow: 2px 2px 15px rgba(25, 104, 158, 0.3);
  border-radius: 0.25rem;
  border: 0.0625rem solid #D2DBE6;
  background-color: #ffffff;
  max-width: 13.6875rem;
  width: calc((100% - 1.625rem) / 2);
  flex: 1;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__card {
    width: calc((100% - 1.5rem) / 2);
  }
}
.mdl-campaign-banner__card.mdl-campaign-banner__card--limited {
  border: 0.0625rem solid #88C417;
  position: relative;
}
.mdl-campaign-banner__card.mdl-campaign-banner__card--limited::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-image: url("/web/images/common/campaign-plus.svg");
  width: 1.875rem;
  height: 1.875rem;
  background-size: contain;
  background-repeat: no-repeat;
  left: -1.125rem;
  top: calc(50% - 0.9375rem);
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__card.mdl-campaign-banner__card--limited::before {
    width: 1.625rem;
    height: 1.625rem;
    left: -1rem;
    top: calc(50% - 0.8125rem);
  }
}
.mdl-campaign-banner__card-ttl {
  background-color: #D2DBE6;
  text-align: center;
  padding: 0 0.625rem;
  line-height: 2rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__card-ttl {
    font-size: 0.875rem;
    line-height: 1.875rem;
  }
}
.mdl-campaign-banner__card--limited .mdl-campaign-banner__card-ttl {
  background-color: #88C417;
  color: #ffffff;
}
.mdl-campaign-banner__card-txt {
  padding: 1.25rem;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__card-txt {
    padding: 0.75rem;
  }
}
.mdl-campaign-banner__card-txt .price {
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.mdl-campaign-banner__card-txt .price .num-wrap {
  position: relative;
  margin-right: 0.125rem;
}
.mdl-campaign-banner__card-txt .price .num-wrap::before, .mdl-campaign-banner__card-txt .price .num-wrap::after {
  content: "";
  display: block;
  background-color: #88C417;
  height: 0.125rem;
  width: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}
.mdl-campaign-banner__card-txt .price .num-wrap::before {
  bottom: 0.125rem;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__card-txt .price .num-wrap::before {
    bottom: 0.125rem;
  }
}
.mdl-campaign-banner__card-txt .price .num-wrap::after {
  bottom: 0.375rem;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__card-txt .price .num-wrap::after {
    bottom: 0.375rem;
  }
}
.mdl-campaign-banner__card-txt .price .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 2.375rem;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__card-txt .price .num {
    font-size: 1.5rem;
  }
}
.mdl-campaign-banner__card-txt .price .yen {
  font-weight: 600;
  font-size: 1.1875rem;
  line-height: 1.1;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__card-txt .price .yen {
    font-size: 0.75rem;
  }
}
.mdl-campaign-banner__card-txt .txt-present {
  text-align: center;
  font-weight: 700;
  font-size: 0.875rem;
  margin-top: 0.625rem;
  line-height: 1.2;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__card-txt .txt-present {
    margin-top: 0.25rem;
    font-size: 0.75rem;
  }
}
.mdl-campaign-banner__appeal {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.mdl-campaign-banner__card-list + .mdl-campaign-banner__appeal {
  margin-top: 2rem;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__card-list + .mdl-campaign-banner__appeal {
    margin-top: 1rem;
  }
}

.mdl-campaign-banner__appeal .sum {
  font-size: 1.4375rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #0075c1;
  border-radius: 50%;
  width: 5.125rem;
  height: 5.125rem;
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__appeal .sum {
    font-size: 0.8125rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
.mdl-campaign-banner__appeal .num-wrap {
  position: relative;
  margin-right: 0.1875rem;
}
.mdl-campaign-banner__appeal .num-wrap::before, .mdl-campaign-banner__appeal .num-wrap::after {
  content: "";
  display: block;
  background-color: #88C417;
  height: 0.125rem;
  width: 100%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}
.mdl-campaign-banner__appeal .num-wrap::before {
  bottom: 0.125rem;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__appeal .num-wrap::before {
    bottom: -0.0625rem;
  }
}
.mdl-campaign-banner__appeal .num-wrap::after {
  bottom: 0.4375rem;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__appeal .num-wrap::after {
    bottom: 0.25rem;
  }
}
.mdl-campaign-banner__appeal .num {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #0075c1;
  font-size: 6.75rem;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__appeal .num {
    font-size: 3.9375rem;
    letter-spacing: -0.05em;
  }
}
.mdl-campaign-banner__appeal .txt-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mdl-campaign-banner__appeal .yen {
  color: #0075c1;
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.1;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__appeal .yen {
    font-size: 1.5rem;
  }
}
.mdl-campaign-banner__appeal .txt {
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 1.5;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__appeal .txt {
    font-size: 0.875rem;
  }
}
.mdl-campaign-banner__caption {
  display: flex;
  align-items: baseline;
  margin-top: 2rem;
  line-height: 1.4;
  color: #707c8a;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__caption {
    margin-top: 1rem;
  }
}
.mdl-campaign-banner__caption-ttl {
  position: relative;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 0.75rem;
  width: 100%;
  max-width: fit-content;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__caption-ttl {
    gap: 0.625rem;
    margin-right: 0.625rem;
    font-size: 0.75rem;
    justify-content: flex-end;
    max-width: none;
  }
}
.mdl-campaign-banner__caption-ttl::after {
  content: "";
  display: block;
  height: 1.125rem;
  width: 0.0625rem;
  background-color: #707c8a;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__caption-ttl::after {
    height: 1rem;
  }
}
.mdl-campaign-banner__caption-txt {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  flex-wrap: wrap;
  width: 100%;
}
.mdl-campaign-banner__caption-txt .from,
.mdl-campaign-banner__caption-txt .to {
  font-size: 1.125rem;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__caption-txt .from,
  .mdl-campaign-banner__caption-txt .to {
    font-size: 0.875rem;
  }
}
.mdl-campaign-banner__caption-txt .day-of-week {
  font-weight: 600;
  font-size: 0.875rem;
}
@media (max-width: 48rem) {
  .mdl-campaign-banner__caption-txt .day-of-week {
    font-size: 0.75rem;
  }
}

.mdl-campaign-bottom {
  max-width: 57.5rem;
  width: 100%;
  margin: 2rem auto 0;
}
@media (max-width: 48rem) {
  .mdl-campaign-bottom {
    margin: 1.5rem auto 0;
    padding-inline: 0.5rem;
  }
}
.mdl-campaign-bottom .note {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  color: #707c8a;
}
@media (max-width: 48rem) {
  .mdl-campaign-bottom .note {
    font-size: 0.625rem;
    padding-inline: 0.5rem;
  }
}

/* 共通
--------------------------------------------------------------------*/
/* kv
--------------------------------------------------------------------*/
.kv {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 12.3125rem;
}
@media (max-width: 30rem) {
  .kv {
    margin-bottom: 16.25rem;
  }
}

.kv-img {
  width: 100%;
}
.kv-img img {
  min-height: 27rem;
  object-fit: cover;
}
@media (max-width: 48rem) {
  .kv-img img {
    min-height: unset;
    object-fit: unset;
  }
}

.kv-msg {
  border-radius: 0.5rem;
  background-color: #ffffff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 41.4375rem;
  max-width: calc(100% - 3rem);
  position: absolute;
  bottom: -12.3125rem;
  margin: 0 1.5rem;
}
@media (max-width: 40rem) {
  .kv-msg {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 30rem) {
  .kv-msg {
    bottom: -16.25rem;
  }
}
.kv-msg__ribbon {
  position: absolute;
  top: -1.5rem;
  width: 35.875rem;
  max-width: calc(100% - 3rem);
}
@media (max-width: 48rem) {
  .kv-msg__ribbon {
    top: unset;
    bottom: calc(100% - 1.5rem);
  }
}
@media (max-width: 30rem) {
  .kv-msg__ribbon {
    width: 18.6875rem;
    max-width: calc(100% - 1.75rem);
  }
}
.kv-msg__ribbon img {
  display: block;
}
.kv-msg__label {
  text-align: center;
  display: block;
  font-weight: 600;
  font-size: 1.375rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  line-height: 1.5;
  width: 27.1875rem;
  max-width: 100%;
  border-bottom: 1px solid #D2DBE6;
}
@media (max-width: 30rem) {
  .kv-msg__label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.625rem;
  }
}
.kv-msg__ttl {
  margin-bottom: 1rem;
  color: #F07D31;
  line-height: 1.5;
  font-weight: 600;
  font-size: 2.75rem;
}
@media (max-width: 30rem) {
  .kv-msg__ttl {
    margin-bottom: 0.5rem;
    font-size: 1.8125rem;
  }
}
.kv-msg__tag-list {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 30rem) {
  .kv-msg__tag-list {
    margin-bottom: 1.25rem;
  }
}
.kv-msg__tag-list li {
  color: #F07D31;
  border-radius: 3.125rem;
  border: 1px solid #F07D31;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 8.25rem;
  height: 2.3125rem;
  max-width: calc((100% - 0.5rem) / 2);
}
@media (max-width: 30rem) {
  .kv-msg__tag-list li {
    font-size: 0.75rem;
    width: 6.5rem;
    height: 1.8125rem;
  }
}
.kv-msg__desc {
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 48rem) {
  .kv-msg__desc {
    line-height: 1.65;
  }
}

/* campaign
--------------------------------------------------------------------*/
.campaign-container {
  padding-top: 8rem;
}
@media (max-width: 48rem) {
  .campaign-container {
    padding-top: 4rem;
  }
}

/* product-list
--------------------------------------------------------------------*/
@media (max-width: 48rem) {
  .product-container {
    padding-top: 1.5rem;
  }
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
@media (max-width: 48rem) {
  .product-list {
    gap: 2.5rem;
  }
}

.product-item {
  box-shadow: 0px 4px 30px rgba(25, 104, 158, 0.18);
  border-radius: 0 0.5rem 0 0;
  position: relative;
  border-top: 0.25rem solid #0075c1;
  margin-top: 2.375rem;
}
@media (max-width: 48rem) {
  .product-item {
    margin-top: 1.5rem;
  }
}
.product-item__header {
  position: absolute;
  top: -2.625rem;
  left: 0;
  height: 2.625rem;
  white-space: nowrap;
  background-color: #0075c1;
  color: #ffffff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem 0.25rem 0 0;
  font-size: 1.125rem;
  line-height: 1.45;
}
@media (max-width: 48rem) {
  .product-item__header {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    height: 1.75rem;
    top: -1.75rem;
  }
}
.product-item__card {
  background-color: #ffffff;
  padding: 1.5rem 3rem 2rem;
}
@media (max-width: 48rem) {
  .product-item__card {
    padding: 1.5rem;
  }
}
.product-item__grid {
  display: grid;
  grid-template-columns: 43.8405797101% 1fr 34.8731884058%;
  grid-template-rows: auto auto auto;
  justify-content: space-between;
}
@media (max-width: 48rem) {
  .product-item__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
}
.product-item__grid > *:nth-child(1) {
  grid-column: 1;
  grid-row: 1/span 3;
}
@media (max-width: 80rem) {
  .product-item__grid > *:nth-child(1) {
    grid-row: 1/span 4;
  }
}
@media (max-width: 48rem) {
  .product-item__grid > *:nth-child(1) {
    order: 2;
  }
}
.product-item__grid > *:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  margin: 0 1.875rem 0 3rem;
}
@media (max-width: 80rem) {
  .product-item__grid > *:nth-child(2) {
    grid-column: 2/span 2;
    margin: 0 0 1rem 2rem;
  }
}
@media (max-width: 48rem) {
  .product-item__grid > *:nth-child(2) {
    order: 3;
  }
}
.product-item__grid > *:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}
@media (max-width: 80rem) {
  .product-item__grid > *:nth-child(3) {
    grid-column: 2/span 2;
    grid-row: 2;
    margin-left: 2rem;
  }
}
@media (max-width: 48rem) {
  .product-item__grid > *:nth-child(3) {
    order: 1;
  }
}
.product-item__grid > *:nth-child(4) {
  grid-column: 2/span 2;
  grid-row: 2;
  margin-left: 3rem;
}
@media (max-width: 80rem) {
  .product-item__grid > *:nth-child(4) {
    grid-row: 3;
    margin-left: 2rem;
  }
}
@media (max-width: 48rem) {
  .product-item__grid > *:nth-child(4) {
    order: 4;
  }
}
.product-item__grid > *:nth-child(5) {
  grid-column: 2/span 2;
  grid-row: 3;
  margin-left: 3rem;
}
@media (max-width: 80rem) {
  .product-item__grid > *:nth-child(5) {
    grid-row: 4;
    margin-left: 2rem;
  }
}
@media (max-width: 48rem) {
  .product-item__grid > *:nth-child(5) {
    order: 5;
  }
}
@media (max-width: 48rem) {
  .product-item__grid > *:nth-child(1), .product-item__grid > *:nth-child(2), .product-item__grid > *:nth-child(3), .product-item__grid > *:nth-child(4), .product-item__grid > *:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
    margin: unset;
  }
}
.product-item__ttl {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.45;
  padding-bottom: 1.5rem;
  margin-bottom: 2.296875rem;
  border-bottom: 0.0625rem #D2DBE6 solid;
}
@media (max-width: 48rem) {
  .product-item__ttl {
    font-size: 1.125rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
  }
}

.product-photo img {
  border-radius: 0.25rem;
  aspect-ratio: 484/408;
  object-fit: contain;
}

.product-floor {
  white-space: nowrap;
}
@media (max-width: 80rem) {
  .product-floor {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
  }
}
@media (max-width: 48rem) {
  .product-floor {
    display: block;
  }
}
.product-floor__plan {
  font-size: 2.125rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0.4375rem;
}
@media (max-width: 80rem) {
  .product-floor__plan {
    margin-bottom: unset;
  }
}
@media (max-width: 48rem) {
  .product-floor__plan {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 80rem) {
  .product-floor__detail {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
  }
}
@media (max-width: 48rem) {
  .product-floor__detail {
    display: block;
  }
}
@media (max-width: 48rem) {
  .product-floor__detail div {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
}
.product-floor__detail div + div {
  margin-top: 0.75rem;
}
@media (max-width: 80rem) {
  .product-floor__detail div + div {
    margin-top: unset;
  }
}
@media (max-width: 48rem) {
  .product-floor__detail div + div {
    margin-top: 0.375rem;
  }
}
.product-floor__detail dt {
  color: #707c8a;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.7;
  margin-bottom: 0.375rem;
}
@media (max-width: 48rem) {
  .product-floor__detail dt {
    line-height: 1.45;
    margin-bottom: unset;
  }
}
.product-floor__detail dd {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 48rem) {
  .product-floor__detail dd {
    line-height: 1.45;
    font-weight: 500;
  }
}
.product-floor__detail dd span {
  font-size: 1.125rem;
  font-weight: 500;
}
@media (max-width: 48rem) {
  .product-floor__detail dd span {
    font-size: 0.875rem;
    line-height: 1.45;
  }
}

.product-price__card {
  padding: 1rem 1.5rem;
  box-shadow: 0px 4px 30px rgba(25, 104, 158, 0.18);
  border-left: 0.125rem solid #F07D31;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}
@media (max-width: 48rem) {
  .product-price__card {
    padding: 1rem;
    gap: 0.125rem;
  }
}
.product-price__old {
  color: #707c8a;
  display: inline-block;
  position: relative;
}
.product-price__old::before, .product-price__old::after {
  content: "";
  display: block;
  height: 0.09375rem;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  background-color: #F07D31;
}
@media (max-width: 48rem) {
  .product-price__old::before, .product-price__old::after {
    height: 0.0625rem;
  }
}
.product-price__old::before {
  top: calc(50% - 0.046875rem - 0.09375rem);
}
@media (max-width: 48rem) {
  .product-price__old::before {
    top: calc(50% - 0.03125rem - 0.0625rem);
  }
}
.product-price__old::after {
  top: calc(50% + 0.046875rem);
}
@media (max-width: 48rem) {
  .product-price__old::after {
    top: calc(50% + 0.03125rem);
  }
}
.product-price__old .num {
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media (max-width: 48rem) {
  .product-price__old .num {
    font-size: 1.125rem;
  }
}
.product-price__old .yen {
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 700;
}
@media (max-width: 48rem) {
  .product-price__old .yen {
    font-size: 0.75rem;
  }
}
.product-price__old .tax {
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 400;
}
@media (max-width: 48rem) {
  .product-price__old .tax {
    font-size: 0.75rem;
  }
}
.product-price__now {
  position: relative;
  padding-left: 2.09125rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.product-price__now::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url("/web/images/lp/shinkakaku/product-price-arrow.svg");
  width: 1.52875rem;
  height: 0.53125rem;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
}
.product-price__now .num {
  color: #F07D31;
  font-size: 3.125rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media (max-width: 64rem) {
  .product-price__now .num {
    font-size: 2.5rem;
  }
}
.product-price__now .unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-left: 0.25rem;
}
@media (max-width: 64rem) {
  .product-price__now .unit {
    margin-left: 0.125rem;
  }
}
.product-price__now .tax {
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 400;
}
@media (max-width: 64rem) {
  .product-price__now .tax {
    font-size: 0.625rem;
  }
}
.product-price__now .yen {
  color: #F07D31;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}
@media (max-width: 64rem) {
  .product-price__now .yen {
    font-size: 1.125rem;
  }
}
.product-price__down {
  color: #ffffff;
  background-color: #F07D31;
  position: relative;
  margin: 0 0.8125rem 1.375rem;
  width: 4.875rem;
  padding: 0.8125rem 0.5625rem 0.1875rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 64rem) {
  .product-price__down {
    padding: 0.625rem 0.4375rem 0.0625rem;
    margin: 0 0.5rem 1.0625rem;
    width: 4rem;
  }
}
.product-price__down::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1.3125rem;
  width: 0;
  height: 0;
  border-left: 3.5rem solid transparent;
  border-right: 3.5rem solid transparent;
  border-top: 1.375rem solid #F07D31;
}
@media (max-width: 64rem) {
  .product-price__down::after {
    bottom: -1rem;
    border-left: 2.78125rem solid transparent;
    border-right: 2.78125rem solid transparent;
    border-top: 1.0625rem solid #F07D31;
  }
}
.product-price__down .price-down {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0;
  line-height: 1;
}
@media (max-width: 64rem) {
  .product-price__down .price-down {
    font-size: 0.625rem;
  }
}
.product-price__down .price-wrap {
  display: flex;
  align-items: center;
}
.product-price__down .num {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
  font-size: 1.8125rem;
  font-weight: 600;
}
@media (max-width: 64rem) {
  .product-price__down .num {
    font-size: 1.5625rem;
  }
}
.product-price__down .yen {
  line-height: 1.13;
  font-size: 0.625rem;
  font-weight: 700;
  writing-mode: vertical-rl;
}
@media (max-width: 64rem) {
  .product-price__down .yen {
    line-height: 1.05;
  }
}
.product-price__caption {
  font-weight: 400;
  text-align: right;
  margin-top: 0.6875rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #707c8a;
}
@media (max-width: 48rem) {
  .product-price__caption {
    margin-top: 0.5rem;
    font-size: 0.625rem;
  }
}

.product-point {
  margin-top: 1rem;
}
@media (max-width: 48rem) {
  .product-point {
    margin: unset;
  }
}

.product-point-item {
  padding: 1.25rem 1.5rem;
  background-color: #EDF1F7;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 48rem) {
  .product-point-item {
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
.product-point-item__head {
  background-color: #44638B;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 2rem;
  height: 2rem;
  padding: 0 1rem;
  flex-shrink: 0;
}
@media (max-width: 48rem) {
  .product-point-item__head {
    line-height: 1.75rem;
  }
}
.product-point-item__detail {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 400;
}

.product-examlpe {
  margin-top: 0.75rem;
  border: 0.0625rem solid #D2DBE6;
  border-radius: 0.25rem;
  display: flex;
}
@media (max-width: 48rem) {
  .product-examlpe {
    flex-direction: column;
    margin: unset;
  }
}
.product-examlpe__ttl {
  width: 1.875rem;
  display: flex;
  font-size: 0.875rem;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  background-color: #D2DBE6;
  padding: 0.5rem;
}
@media (max-width: 48rem) {
  .product-examlpe__ttl {
    writing-mode: horizontal-tb;
    width: 100%;
    padding: 0.8125rem;
  }
}
.product-examlpe__body {
  width: calc(100% - 1.875rem);
  padding: 1.25rem 1.5rem 1rem;
}
@media (max-width: 48rem) {
  .product-examlpe__body {
    width: 100%;
    padding: 1rem;
  }
}
.product-examlpe__table {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 48rem) {
  .product-examlpe__table {
    flex-direction: column;
    gap: 1rem;
  }
}
.product-examlpe__table div {
  width: calc((100% - 0.5rem) / 2);
  border-bottom: 0.0625rem solid #44638B;
}
@media (max-width: 48rem) {
  .product-examlpe__table div {
    width: 100%;
  }
}
.product-examlpe__table dt {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDF1F7;
  color: #707c8a;
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 0.125rem;
}
.product-examlpe__table dd {
  color: #44638B;
  font-size: 0.875rem;
  text-align: right;
  line-height: 1.45;
  padding: 0.625rem 0.5rem;
}
@media (max-width: 48rem) {
  .product-examlpe__table dd {
    padding: 0.25rem 0.5rem;
  }
}
.product-examlpe__table dd span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-right: 0.375rem;
}
@media (max-width: 48rem) {
  .product-examlpe__table dd span {
    margin-right: 0.125rem;
  }
}
.product-examlpe__caption {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 400;
  color: #707c8a;
  text-align: right;
  width: 100%;
  margin-top: 0.5rem;
}
@media (max-width: 48rem) {
  .product-examlpe__caption {
    font-size: 0.625rem;
    margin-top: 1rem;
  }
}

.product-item__btn {
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 48rem) {
  .product-item__btn {
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }
}
.product-item__btn > .cmn-show-button {
  max-width: calc((100% - 3rem) / 3);
  width: 16.25rem;
  min-width: unset;
  line-height: 1.8;
  padding: 0.71875rem 1.5rem;
}
@media (max-width: 48rem) {
  .product-item__btn > .cmn-show-button {
    padding: 1.34375rem 1.25rem 1.34375rem 2rem;
    max-width: 100%;
    width: 18.4375rem;
    font-size: 0.875rem;
  }
}
.product-item__btn .cmn-show-button__promo {
  font-size: 0.625rem;
}

.product-caption {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #707c8a;
  margin-top: 3.5rem;
}
@media (max-width: 48rem) {
  .product-caption {
    margin-top: 1.5rem;
    font-size: 0.625rem;
  }
}

/*# sourceMappingURL=/assets/web/extras/lp/shinkakaku-38fe1caa.css.map */
