/* ============================================================
   custom properties
   ============================================================ */
:root {
  font-size: 10px;

  /* surface */
  --color-white: #fff;
  --color-surface-soft: #f2f3f7;
  --color-surface-mute: #dedfe8;
  --color-surface-dark: #3e3736;

  /* text */
  --color-text: #222;
  --color-text-muted: #4d4d4d;

  /* brand */
  --color-primary: #004977;
  --color-primary-light: #0086b1;

  /* accent */
  --color-accent: #ea0437;
  --color-accent-hover: #de0435;

  /* border */
  --color-border: #b6b9d6;
  --color-border-light: #ccc;

  /* utility text colors*/
  --color-u-red: #BE493C;
  --color-u-blue: #1F6DAD;
  --color-u-green: #107A00;
  --color-u-orange: #C26B00;
}


/* ============================================================
   reset
   ============================================================ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
*::before, *::after {
  box-sizing: border-box;
}

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

.theme-KJ {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}
.theme-KJ body {
  min-width: 320px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 1.6rem;
  font-family: source-han-sans-japanese, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: anywhere;
}

main {
  display: block;
}

ul,
ol {
  list-style: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-size: 1em;
  font-family: monospace;
}

a {
  background-color: transparent;
  text-decoration: underline;
}

a:hover,
a:active,
a:focus {
  text-decoration: none;
}

abbr[title] {
  border-bottom: 0;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

em {
  font-style: normal;
  font-weight: bold;
}

dfn,
cite {
  font-style: normal;
}

code,
kbd,
samp {
  font-size: 1em;
  font-family: monospace;
}

small {
  font-size: 100%;
}

i {
  font-style: italic;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  max-width: 100%;
  border-style: none;
  vertical-align: bottom;
}

table {
  width: 100%;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  border-radius: 0;
  font-size: 100%;
  line-height: inherit;
  font-family: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  border: 0;
  background: none;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: none;
}

legend {
  display: table;
  max-width: 100%;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* ------------------------------------------------------------
   utility
   ------------------------------------------------------------ */
.u-nowrap {
  white-space: nowrap;
}

.u-red {
  color: var(--color-u-red);
}

.u-blue {
  color: var(--color-u-blue);
}

.u-green {
  color: var(--color-u-green);
}

.u-orange {
  color: var(--color-u-orange);
}

.u-emphasis-blue {
  color: var(--color-primary);
}

.u-sp-only {
  display: none;
}

@media (max-width: 1024px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: none;
}

@media (max-width: 1024px) {
  .u-pc-only {
    display: block;
  }
}

/* ============================================================
   layout
   ============================================================ */

/* header */
.l-header {
  background-color: var(--color-white);
}

.l-header__content {
  max-width: 1440px;
  margin-inline: auto;
  padding: 12px 30px;
}

.l-header__logo {
  display: block;
  max-width: 110px;

  & img {
    width: 100%;
  }
}

/* jumbotron */
.l-jumbotron {
  background: linear-gradient(104deg, var(--color-white) 29.47%, var(--color-surface-mute) 70.53%);
}

.l-jumbotron__inner {
  position: relative;
  max-width: 1440px;
  margin-inline: auto;
  padding: 64px 12px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (max-width: 1024px) {
  .l-jumbotron__inner {
    max-width: 600px;
    padding: 40px 25px;
    gap: 24px;
  }
}

.l-jumbotron__body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  z-index: 2;
}

@media (max-width: 1024px) {
  .l-jumbotron__body {
    gap: 32px;
  }
}

.l-jumbotron__heading {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 1024px) {
  .l-jumbotron__heading {
    gap: 16px;
  }
}

.l-jumbotron__subtitle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-white);
  font-family: source-han-serif-japanese, "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "MS PMincho", serif;
  font-size: clamp(40px, 0.615px + 3.846vw, 56px);
  font-weight: 700;
  line-height: 1;
}

.l-jumbotron__subtitle-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(48px, -11.077px + 5.769vw, 72px);;
  height: clamp(48px, -11.077px + 5.769vw, 72px);;
  background-color: var(--color-surface-dark);
}

.l-jumbotron__subtitle-item--emphasis {
  background-color: var(--color-primary);
}

.l-jumbotron__title {
  font-size: clamp(40px, -19.077px + 5.769vw, 64px);
  font-weight: 700;
  line-height: 1.2;
}

.l-jumbotron__title--emphasis {
  color: var(--color-primary);
}

.l-jumbotron__description-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1024px) {
  .l-jumbotron__description-wrapper {
    gap: 16px;
  }
} 

.l-jumbotron__description {
  font-size: clamp(18px, 3.231px + 1.442vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  margin-bottom: 0;
}

.l-jumbotron__description--emphasis {
  font-weight: 700;
}

.l-jumbotron__image {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  max-width: clamp(520px, -354.874px + 85.437vw, 696px);
  z-index: 1;

  & img {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .l-jumbotron__image {
    position: relative;
    right: 0;
    top: 0;
    transform: translateY(0);
    max-width: 100%;
    margin-top: 8px;
  }
}

/* container */
.l-container {
  padding-top: 24px;
  background-color: var(--color-white);
}

@media (max-width: 1024px) {
  .l-container {
    padding-top: 8px;
  }
}

.l-container__inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 0 12px;
}

@media (max-width: 1024px) {
  .l-container__inner {
    max-width: 600px;
    padding: 0 25px;
  }
}

/* section */
.l-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 64px 0 32px;
}

@media (max-width: 1024px) {
  .l-section {
    padding: 24px 0 16px;
    gap: 32px;
  }
}

.l-section__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* grid */
.l-grid {
  display: grid;
  gap: 24px;
}

.l-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1024px) {
  .l-grid--2 {
    grid-template-columns: 1fr;
  }
}

.l-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .l-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* flex-column */
.l-flex-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1024px) {
  .l-flex-column {
    gap: 0;
  }
}

/* media */
.l-media {
  padding: 32px;
  background-color: var(--color-surface-soft);
}

@media (max-width: 1024px) {
  .l-media {
    padding: 24px;
  }
}

.l-media__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1024px) {
  .l-media__inner {
    gap: 16px;
  }
}

.l-media__inner--gap-wide {
  gap: 32px;
}

@media (max-width: 1024px) {
  .l-media__inner--gap-wide {
    gap: 16px;
  }
}

.l-media__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1024px) {
  .l-media__content {
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .l-media__content--sp-white {
    padding: 16px;
    background-color: var(--color-white);
  }
}

.l-media__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.l-media__image {
  max-width: 498px;

  & img {
    width: 100%;
  }
}

.l-media__image--full {
  max-width: 100%;
}

.l-media__text {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: clamp(18px, 13.077px + 0.481vw, 20px);
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .l-media__text {
    flex-direction: column;
    align-items: flex-start;
  }
}

.l-media__text-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 24px;
  background-color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  flex-shrink: 0;
}

.l-media__description {
  padding-left: 48px;
}

.l-media__row {
  display: flex;
  gap: 24px;
}

@media (max-width: 1024px) {
  .l-media__row {
    flex-direction: column;
  }
}

.l-media__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.l-media__col-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.l-media__col-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;

  &::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
  }
}

.l-media__col-description {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.l-media__col-description-note {
  display: flex;
  gap: 4px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-muted);

  &::before {
    content: "※";
    display: inline-block;
  }
}

.l-media__col-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  & img {
    width: 100%;
    max-width: 380px;
  }
}

@media (max-width: 1024px) {
  .l-media__col-image {
    & img {
      max-width: 100%;
    }
  }
}

.l-media__col-image--top-auto {
  margin-top: auto;
}

.l-media__col-image--wide {
  & img {
    max-width: clamp(440px, 277.714px + 15.848vw, 582px);
  }
}

@media (max-width: 1024px) {
  .l-media__col-image--wide {
    & img {
      max-width: 100%;
    }
  }
}

.l-media__col-image--full {
  & img {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .l-media__col-image--full {
    & img {
      max-width: 100%;
    }
  }
}

.l-media__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  background-color: var(--color-white);
  padding: 32px;
}

.l-media__body--offset {
  padding: 0;
  background-color: transparent;
}

.l-media__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  counter-reset: media-list;
}

.l-media__list-item {
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  counter-increment: media-list;

  &::before {
    content: counter(media-list);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 24px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
  }
}

@media (max-width: 1024px) {
  .l-media__list-item {
    flex-direction: column;
  }
}

.l-media__list-item--bold {
  font-weight: 700;
}

.l-media__list--check .l-media__list-item {
  counter-increment: none;

  &::before {
    content: "";
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'><path d='M0.745911 3.46602L4.49591 7.66602L10.7459 0.666016' stroke='%23f2f3f7' stroke-width='2'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
  }
}
 
@media (max-width: 1024px) {
  .l-media__list--sp-row .l-media__list-item {
    flex-direction: row;
  }
}

/* intro */
.l-intro {
  border: 1px solid var(--color-surface-mute);
}

.l-intro__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  background: var(--color-surface-soft);
}

.l-intro__title {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-primary);
  font-size: clamp(18px, 3.231px + 1.442vw, 24px);
  font-weight: 700;
  line-height: 1.2;
}

.l-intro__title-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.6rem;
  line-height: 1;
}

.l-intro__body {
  padding: 16px;
}

.l-intro__text {
  text-align: center;
  font-size: clamp(18px, 3.231px + 1.442vw, 24px);
  font-weight: 700;
  line-height: 1.2;
}

/* catch */
.l-catch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 32px;
  background: linear-gradient(90deg, transparent 0%, var(--color-primary) 10%, var(--color-primary) 90%, transparent 100%);

  &::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-inline: 32px solid transparent;
    border-top: 16px solid var(--color-white);
  }
}

@media (max-width: 1024px) {
  .l-catch {
    padding: 32px 24px 24px;
  }
}

.l-catch__title {
  font-size: clamp(18px, -6.615px + 2.404vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}

@media (max-width: 1024px) {
  .l-catch__title {
    text-align: center;
    max-width: 95%;
  }
}

.l-catch__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

@media (max-width: 1024px) {
  .l-catch__list {
    flex-direction: column;
  }
}

.l-catch__list-item {
  flex: 1;
  max-width: 440px;
  padding: 16px 0;
  text-align: center;
  background-color: var(--color-white);
  color: var(--color-primary);
  font-size: clamp(18px, 3.231px + 1.442vw, 24px);
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 1024px) {
  .l-catch__list-item {
    width: 100%;
  }
}

/* cta */
.l-cta {
  background: linear-gradient(104deg, var(--color-white) 29.47%, var(--color-surface-mute) 70.53%);
}

.l-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1440px;
  margin-inline: auto;
  padding: 64px 12px;
}

@media (max-width: 1024px) {
  .l-cta__inner {
    flex-direction: column;
    gap: 32px;
    padding: 32px 25px;
  }
}

.l-cta__image {
  max-width: 386px;

  & img {
    width: 100%;
  }
}

.l-cta__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 1024px) {
  .l-cta__body {
    align-items: center;
    gap: 24px;
  }
}

.l-cta__group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 1024px) {
  .l-cta__group {
    gap: 24px;
    width: 100%;
  }
}

.l-cta__group + .l-cta__group {
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.l-cta__heading {
  font-size: clamp(30px, 18.571px + 1.116vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .l-cta__heading {
    text-align: center;
  }
}

.l-cta__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.l-cta__contact-label {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .l-cta__contact-label {
    text-align: center;
  }
}

/* footer */
.l-footer {
  background-color: var(--color-text);
}

.l-footer__content {
  max-width: 1440px;
  margin-inline: auto;
  padding: 16px 30px;
}

.l-footer__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;

  & li {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  & li + li::before {
    display: inline-block;
    content: "";
    width: 1px;
    height: 16px;
    background-color: var(--color-white);
  }

  & a {
    color: var(--color-white);
    text-decoration: none;
  }

  @media (hover: hover) {
    & a:hover {
      text-decoration: underline;
    }
  }
}

@media (max-width: 1024px) {

  .l-footer__list {
    & li + .l-footer__copyright::before {
      display: none;
    }
  }

  .l-footer__copyright {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* button */
.l-button-wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 1024px) {
  .l-button-wrapper {
    justify-content: center;
  }
}

.l-button-wrapper--center {
  justify-content: center;
}

.l-button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 10px 10px 20px;
  background-color: var(--color-accent);
  text-decoration: none;
  line-height: 1;
  transition: background-color 0.3s ease;
}

@media (hover: hover) {
  .l-button:hover {
    background-color: var(--color-accent-hover);
  }
}

.l-button__text {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.l-button__icon {
  width: 32px;
  fill: var(--color-white);
  flex-shrink: 0;
}

.l-button__image {
  margin: -22px 0;
  margin-left: 4px;
  border: 1px solid var(--color-border-light);

  & img {
    min-width: 46px;
    max-width: 60px;
  }
}


/* ============================================================
   components
   ============================================================ */

/* title */
.c-title-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 24px;

  &::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    border-bottom: 2px solid var(--color-border);
  }
}

@media (max-width: 1024px) {
  .c-title-wrapper {
    margin-bottom: 16px;
  }

  .c-title-wrapper:has(.c-spec) {
    &::after {
      display: none;
    }
  }
}

.c-title-wrapper__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .c-title-wrapper__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.c-title {
  position: relative;
  max-width: max-content;
  padding-bottom: 24px;
  font-size: clamp(32px, 12.308px + 1.923vw, 40px);
  font-weight: 700;
  line-height: 1.2;

  &::after {
    position: absolute;
    z-index: 5;
    bottom: -2px;
    left: 0;
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    border-bottom: 2px solid var(--color-primary);
  }
}

/* content-heading */
.c-content-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(24px, 4.308px + 1.923vw, 32px);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .c-content-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

.c-content-heading__subtitle {
  padding: 16px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: clamp(18px, 13.077px + 0.481vw, 20px);
  font-weight: 700;
  line-height: 1;
}

/* heading */
.c-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-primary);
}

.c-heading__subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.c-heading__title {
  font-size: clamp(32px, 12.308px + 1.923vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}

/* sub-heading */
.c-sub-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(18px, 3.231px + 1.442vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  
  &::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    flex-shrink: 0;
  }
}

/* label */
.c-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(18px, 15.714px + 0.223vw, 20px);
  font-weight: 700;
  line-height: 1;

  &::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: var(--color-primary);
  }
}

@media (max-width: 1024px) {
  .c-label {
    &::after {
      display: none;
    }
  }
}

/* description */
.c-description {
  display: flex;
  gap: 8px;
  color: var(--color-primary);
  font-size: clamp(18px, 13.077px + 0.481vw, 20px);
  font-weight: 700;
  line-height: 1.3;

  &::before {
    content: "";
    display: inline-block;
    margin-top: 4px;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'><path d='M2 0V10H12V12H0V0H2Z' fill='%23004977'/></svg>");
    background-repeat: no-repeat;
    flex-shrink: 0;
  }
}

@media (max-width: 1024px) {
  .c-description {
    padding-left: 0;
  }
}

/* text */
.c-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.c-text--emphasis {
  color: var(--color-primary);
  font-weight: 700;
}

/* arrow */
.c-arrow-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1024px) {
  .c-arrow-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.c-arrow-icon {
  display: inline-block;
  width: 18px;
  height: 14px;
  margin-right: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'><path d='M18 7L10 14V10H0V4H10V0L18 7Z' fill='%23004977'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

/* spec */
.c-spec {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
}

@media (max-width: 1024px) {
  .c-spec {
    position: relative;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 0;
  }

  .c-title-wrapper .c-spec {
    &::before {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      content: "";
      display: block;
      width: 100%;
      height: 2px;
      border-bottom: 2px solid var(--color-border);
    }
  }

}

.c-spec__label {
  font-size: 1.6rem;
  line-height: 1;
}

.c-spec__body {
  display: flex;
  gap: 10px;
}

.c-spec__range {
  display: flex;
  align-items: center;
  gap: 4px;
}

.c-spec__value {
  display: flex;
  align-items: flex-end;
}

.c-spec__number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 40px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: clamp(18px, 13.077px + 0.481vw, 20px);
  font-weight: 700;
  line-height: 32px;
}

.c-spec__unit {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.c-spec__arrow svg {
  width: 18px;
  fill: var(--color-primary);
}

.c-spec__note {
  max-width: 120px;
  font-size: 1.2rem;
  font-weight: 400;

  &::before {
    content: "※";
    display: inline-block;
    margin-right: 4px;
  }
}

/* tel */
.c-tel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: currentColor;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .c-tel {
    flex-direction: column;
  }
}

.c-tel__number {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
}

.c-tel__icon {
  width: 54px;
  fill: var(--color-primary-light);
}

.c-tel__text {
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.c-tel__hours {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
