@charset "UTF-8";

:root[theme=dark] {
  --base-1: #121212;
  --base-2: #414141;
  --main-1: #E7E9EA;
  --main-2: #EFEFEF;
  --blue: #959595;
  --outline-white: #959595;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0 0 0.67em;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 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: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  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: 1em;
  /* 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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 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;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 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;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * 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. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* 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;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*****************************************************
  Foundation
*****************************************************/
/* -----------------------------------------------
  Base
----------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Noto Sans JP";
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 1280px) {
  html {
    scroll-padding-top: 50px;
  }
}

[theme=dark] body {
  background-color: #121212;
}

.copilot-wrapper {
  position: relative;
  min-width: 100%;
  font-size: clamp(16px, 14.096px + 0.51vw, 18px);
  font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  line-height: 1.5;
  color: #333;
  word-break: break-word;
  word-wrap: break-word;
  background: #fff;
  -webkit-animation: fadeIn 1.5s ease;
  animation: fadeIn 1.5s ease;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  /*
  overflow: visible;
  overflow-y: scroll;
*/
}

.copilot-wrapper.open-menu {
  left: 0;
  right: 0;
}

.copilot-wrapper.open-menu::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, .5);
}

@media screen and (min-width: 1281px) {
  .copilot-wrapper.open-menu::before {
    display: none;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 2dppx) {
  .copilot-wrapper {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.copilot-wrapper nav {
  white-space: nowrap;
}

.copilot-wrapper ul,
.copilot-wrapper ol,
.copilot-wrapper li,
.copilot-wrapper dl,
.copilot-wrapper dd {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.copilot-wrapper em {
  font-style: normal;
}

.copilot-wrapper p {
  margin: 0;
  letter-spacing: normal;
}

@media (prefers-color-scheme: dark) {
  .copilot-wrapper p {
    color: var(--dark-main-2);
  }
}

.copilot-wrapper sub {
  bottom: -0.1em;
}

.copilot-wrapper table {
  border-spacing: 0;
  border-collapse: collapse;
}

.copilot-wrapper b,
.copilot-wrapper strong {
  font-weight: 700;
}

.copilot-wrapper img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.copilot-wrapper input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.copilot-wrapper input[type=search]:focus {
  outline: none;
}

.copilot-wrapper button {
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.copilot-wrapper select {
  white-space: nowrap;
}

.copilot-wrapper input,
.copilot-wrapper textarea,
.copilot-wrapper select {
  background-color: transparent;
}

.copilot-wrapper a:not(.c-button) {
  color: #333;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.copilot-wrapper a img {
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.copilot-wrapper a:not(.c-button):hover {
  text-decoration: underline;
}

.copilot-wrapper a:not(.c-button):hover img {
  opacity: 0.7;
}

.js-linkGroup {
  cursor: pointer;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.js-linkGroup:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .copilot-wrapper a:hover {
    text-decoration: none;
  }
}

.container {
  max-width: 1218px;
  margin-inline: auto;
  width: 100%;
  position: relative;
  z-index: 5;
}

.copilot-wrapper button:focus-visible {
  outline: 2px solid #00498a;
  outline-offset: 2px;
}

.copilot-wrapper a:focus-visible {
  outline: 2px solid #00498a;
  outline-offset: 2px;
}

/*****************************************************
  Layout
*****************************************************/
/* =================================================
  l-header
================================================= */
/*****************************************************
  Component
*****************************************************/
/* -----------------------------------------------
  .pageTitle
----------------------------------------------- */
#copilot {
  /* ボタンのスタイル */
  /* ボタンの初期状態は「＋」 */
  /* 「＋」の縦線 */
  /* 「＋」の横線 */
  /* ボタンがクリックされた状態（「−」） */
}

#copilot .pageTitle {
  max-width: clamp(192px, 118.704px + 19.55vw, 494px);
  max-width: clamp(12rem, 7.419rem + 19.55vw, 30.875rem);
  width: 100%;
  margin-block: 0;
}

#copilot .sectionGradTitle {
  font-family: "Noto Sans JP";
  font-size: clamp(46px, 26.912px + 5.09vw, 66px);
  font-size: clamp(2.875rem, 1.682rem + 5.09vw, 4.125rem);
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1.2;
}

#copilot .sectionGradTitle .-small {
  font-family: "Segoe UI", "Helvetica Neue";
  font-size: clamp(14px, 10.176px + 1.02vw, 18px);
  font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
  font-weight: bold;
  display: block;
}

#copilot .sectionGradTitle .-gradation {
  background: -webkit-gradient(linear, right top, left top, from(#3d44dd), color-stop(32%, #6536bb), color-stop(97%, #f16c61));
  background: linear-gradient(270deg, #3d44dd 0%, #6536bb 32%, #f16c61 97%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  #copilot .sectionGradTitle {
    text-align: center;
  }
}

#copilot .sectionTitle {
  text-align: center;
  color: #141314;
  font-family: "Noto Sans JP";
  font-size: clamp(28px, 16.544px + 3.05vw, 40px);
  font-size: clamp(1.75rem, 1.034rem + 3.05vw, 2.5rem);
  font-weight: bold;
}

#copilot .sectionTitleSub {
  font-family: "Segoe UI", "Helvetica Neue";
  font-size: clamp(14px, 10.176px + 1.02vw, 18px);
  font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
  font-weight: bold;
  color: #4b6cb7;
  letter-spacing: 0.06em;
  display: block;
}

#copilot .titleLv03 {
  text-align: center;
  font-size: clamp(20px, 18.096px + 0.51vw, 22px);
  font-size: clamp(1.25rem, 1.131rem + 0.51vw, 1.375rem);
  font-weight: bold;
  color: #141314;
  letter-spacing: 0.06em;
  margin-top: clamp(35px, 28.32px + 1.78vw, 42px);
  margin-top: clamp(2.1875rem, 1.77rem + 1.78vw, 2.625rem);
  margin-bottom: clamp(20px, 10.464px + 2.54vw, 30px);
  margin-bottom: clamp(1.25rem, 0.654rem + 2.54vw, 1.875rem);
}

#copilot .read {
  margin-top: clamp(30px, 20.464px + 2.54vw, 40px);
  margin-top: clamp(1.875rem, 1.279rem + 2.54vw, 2.5rem);
  color: #141314;
  font-family: "Noto Sans JP";
  font-size: clamp(12px, 6.272px + 1.53vw, 18px);
  font-size: clamp(0.75rem, 0.392rem + 1.53vw, 1.125rem);
  font-weight: normal;
  line-height: 1.7777;
  letter-spacing: 0.06em;
  text-align: left !important;
}

#copilot .cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  /*          justify-content: space-between;*/
  gap: 30px;
  gap: 1.875rem;
}

@media screen and (max-width: 768px) {
  #copilot .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

#copilot .card {
  border-radius: 1.25rem;
  background-color: #fff;
  max-width: 360px;
  width: calc((100% - 1.875rem * 2) / 3);
  padding: 20px;
  padding: 1.25rem;
}

@media screen and (max-width: 768px) {
  #copilot .card {
    width: 100%;
  }
}

#copilot .card .c-button {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 100%;
}

#copilot .card_label {
  margin-inline: auto;
}

#copilot .card_text {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 14px;
  font-size: 0.875rem;
  color: #484848;
  letter-spacing: 0.06em;
}

#copilot .card_name {
  margin-top: 15px;
  margin-top: 0.9375rem;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  color: #484848;
  letter-spacing: 0.06em;
}

#copilot .label {
  font-family: "Noto Sans JP";
  font-weight: bold;
  text-align: center;
  max-width: 148px;
  max-width: 9.25rem;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 20px;
  color: #fff;
  letter-spacing: 0.06em;
  display: block;
  padding-block: 3px;
  padding-block: 0.1875rem;
  margin-inline: auto;
}

#copilot .-general {
  background-color: #4c82bd;
}

#copilot .-gaming {
  background-color: #8a87f8;
}

#copilot .-create {
  background-color: #ec8170;
  max-width: 175px;
  max-width: 10.9375rem;
}

#copilot .card_detailTable {
  margin-top: 10px;
  margin-top: 0.625rem;
}

#copilot .card_detailTable td,
#copilot .card_detailTable th {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  color: #484848;
  letter-spacing: 0.06em;
}

#copilot .card_detailTable th {
  padding-right: 10px;
  padding-right: 0.625rem;
  white-space: nowrap;
}

#copilot .card_priceWrap {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  #copilot .card_priceWrap {
    gap: 5px;
  }
}

#copilot .card_price {
  font-size: 28px;
  font-weight: bold;
  color: #e43344;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  #copilot .card_price {
    font-size: clamp(1.25rem, 0.773rem + 2.04vw, 1.75rem);
  }
}

#copilot .card_price .-small {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  #copilot .card_price .-small {
    font-size: clamp(0.625rem, 0.386rem + 1.02vw, 0.875rem);
  }
}

#copilot .card_priceLabel {
  font-size: 12px;
  font-weight: normal;
  color: #e43344;
  border: 1px solid #e43344;
  padding: 5px;
}

#copilot .slider {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  max-width: clamp(1307.008px, 638px + 46.46vw, 1530px);
  max-width: clamp(81.688rem, 39.875rem + 46.46vw, 95.625rem);
  margin-left: auto;
}

@media screen and (max-width: 1439px) {
  #copilot .slider {
    max-width: clamp(56.75rem, -4.783rem + 96.14vw, 81.688rem);
  }
}

@media screen and (max-width: 1023px) {
  #copilot .slider {
    max-width: clamp(40.875rem, -6.998rem + 99.61vw, 56.688rem);
  }
}

@media screen and (max-width: 768px) {
  #copilot .slider {
    padding-left: 1.5625rem;
  }
}

#copilot .splide {
  position: relative;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}

@media screen and (max-width: 1439px) {
  #copilot .splide {
    padding-bottom: 3.75rem;
  }
}

#copilot .splide__arrows {
  position: absolute;
  bottom: -10px;
  right: clamp(220px, -500px + 50vw, 460px);
  right: clamp(13.75rem, -31.25rem + 50vw, 28.75rem);
}

@media screen and (max-width: 1439px) {
  #copilot .splide__arrows {
    bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  #copilot .splide__arrows {
    right: clamp(3.75rem, 1.365rem + 10.18vw, 6.25rem);
  }
}

#copilot .splide__arrow:hover {
  background: #484848;
}

#copilot .splide__arrow.next {
  right: auto;
  left: 1em;
}

#copilot .splide__arrow.next span {
  position: relative;
  width: 100%;
  height: 100%;
}

#copilot .splide__arrow.next span::after {
  position: absolute;
  content: "";
  display: block;
  top: 35%;
  left: 28%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: #fff;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#copilot .splide__arrow.prev {
  left: auto;
  right: 1em;
}

#copilot .splide__arrow.prev span {
  position: relative;
  width: 100%;
  height: 100%;
}

#copilot .splide__arrow.prev span::after {
  position: absolute;
  content: "";
  display: block;
  top: 35%;
  left: 38%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: #fff;
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

#copilot .sliderItem {
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f9e0e0), to(#ece5ff));
  background-image: linear-gradient(180deg, #f9e0e0 0%, #ece5ff 100%);
  padding-top: clamp(20px, 10.464px + 2.54vw, 30px);
  padding-top: clamp(1.25rem, 0.654rem + 2.54vw, 1.875rem);
  border-radius: 20px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

#copilot .sliderItem_body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* 高さを調整する際に必要 */
  padding-inline: 20px;
  padding-inline: 1.25rem;
  padding-bottom: 20px;
}

#copilot .sliderItem_title {
  font-family: "Noto Sans JP";
  font-size: clamp(20px, 16.175px + 1.02vw, 24px);
  font-size: clamp(1.25rem, 1.011rem + 1.02vw, 1.5rem);
  font-weight: bold;
  color: #141314;
  line-height: 1.5;
  letter-spacing: 0.025em;
  padding-bottom: clamp(20px, 10.464px + 2.54vw, 30px);
  padding-bottom: clamp(1.25rem, 0.654rem + 2.54vw, 1.875rem);
}

#copilot .sliderItem_text {
  font-size: clamp(12px, 8.176px + 1.02vw, 16px);
  font-size: clamp(0.75rem, 0.511rem + 1.02vw, 1rem);
}

#copilot .sliderItem_img {
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
}

#copilot .caution {
  font-size: clamp(10px, 8.096px + 0.51vw, 12px);
  font-size: clamp(0.625rem, 0.506rem + 0.51vw, 0.75rem);
  font-weight: normal;
  line-height: 1.666666;
  letter-spacing: 0.06em;
  color: #484848;
}

#copilot .caution_link {
  display: inline-block;
  position: relative;
  color: #00a2e6;
  text-decoration: underline;
  text-underline-offset: 5px;
}

#copilot .caution_link:hover {
  text-decoration: none;
}

#copilot .caution_icon {
  padding-top: 4px;
}

#copilot .toggle-menu {
  margin-top: clamp(20px, 10.464px + 2.54vw, 30px);
  margin-top: clamp(1.25rem, 0.654rem + 2.54vw, 1.875rem);
  border-top: 2px dotted #f6f6f6;
  border-bottom: 2px dotted #f6f6f6;
  padding-block: 10px;
  padding-block: 0.625rem;
}

#copilot .toggle-content {
  display: none;
  padding: 10px;
}

#copilot .toggle-title {
  cursor: pointer;
  font-size: clamp(14px, 10.176px + 1.02vw, 18px);
  font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
  font-weight: bold;
  color: #004da1;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#copilot .toggle-section {
  margin-top: clamp(30px, 10.912px + 5.09vw, 50px);
  margin-top: clamp(1.875rem, 0.682rem + 5.09vw, 3.125rem);
}

#copilot .toggle-section h5 {
  font-size: clamp(13px, 11.088px + 0.51vw, 15px);
  font-size: clamp(0.8125rem, 0.693rem + 0.51vw, 0.9375rem);
}

#copilot .toggle-section h6 {
  font-size: clamp(13px, 11.088px + 0.51vw, 15px);
  font-size: clamp(0.8125rem, 0.693rem + 0.51vw, 0.9375rem);
}

#copilot .toggle-subTitle {
  font-size: clamp(14px, 10.176px + 1.02vw, 18px);
  font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
  font-weight: bold;
  color: #484848;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  border-bottom: 2px solid #004da1;
  margin-bottom: 28px;
  margin-bottom: 1.75rem;
}

#copilot .toggle-text {
  color: #484848;
  font-size: clamp(13px, 11.088px + 0.51vw, 15px);
  font-size: clamp(0.8125rem, 0.693rem + 0.51vw, 0.9375rem);
  line-height: 2;
  letter-spacing: 0.06em;
}

#copilot .toggle-text+.toggle-text {
  margin-top: clamp(20px, 10.464px + 2.54vw, 30px);
  margin-top: clamp(1.25rem, 0.654rem + 2.54vw, 1.875rem);
}

#copilot .toggle-menu.active .toggle-content {
  display: block;
}

#copilot .toggle-content {
  overflow: hidden;
  /* コンテンツの溢れを隠す */
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  /* max-heightのトランジションを適用 */
}

#copilot .toggle-menu.active .toggle-content {}

#copilot .toggle-bgGray {
  background-color: #f6f6f6;
  border-radius: 4px;
  padding-block: clamp(15px, 8.32px + 1.78vw, 22px);
  padding-block: clamp(0.9375rem, 0.52rem + 1.78vw, 1.375rem);
  padding-inline: clamp(15px, 2.592px + 3.31vw, 28px);
  padding-inline: clamp(0.9375rem, 0.162rem + 3.31vw, 1.75rem);
}

#copilot .toggle-linkTitle {
  color: #484848;
  font-size: clamp(14px, 12.096px + 0.51vw, 16px);
  font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.toggle-list>li ul {
  margin-bottom: 1em;
  padding-left: 1em;
}

#copilot .toggle-link {
  position: relative;
  color: #00a2e6;
  font-size: clamp(14px, 12.096px + 0.51vw, 16px);
  font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
  text-decoration: underline;
  padding-left: 20px;
  padding-left: 1.25rem;
  line-height: 1.6;
  display: block;
  position: relative;
  color: #00a2e6;
  text-decoration: underline;
  text-underline-offset: 5px;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}

#copilot .toggle-link .caution_icon {
  padding-top: 5px;
}

#copilot .toggle-link:hover {
  text-decoration: none;
}

#copilot .toggle-link::before {
  position: absolute;
  content: "・";
  display: block;
  left: 0;
  top: 2px;
}

#copilot .toggle-btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: clamp(30px, 18.544px + 3.05vw, 42px);
  margin-top: clamp(1.875rem, 1.159rem + 3.05vw, 2.625rem);
}

#copilot .toggle-btnWrap .c-button {
  max-width: 500px;
  max-width: 31.25rem;
  width: 100%;
}

#copilot .toggle-btn {
  background-color: white;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 5px;
  position: relative;
  width: 12px;
  height: 12px;
  outline: none;
}

#copilot .toggle-btn::before,
#copilot .toggle-btn::after {
  content: "";
  position: absolute;
  background-color: #004ea2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#copilot .toggle-btn::before {
  width: 3px;
  height: 15px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#copilot .toggle-btn::after {
  width: 15px;
  height: 3px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#copilot .toggle-btn.active::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  /* 縦線が90度回転して横に倒れる */
}

#copilot .toggle-btn.active::after {
  width: 0;
}

/*****************************************************
  ホームページ
*****************************************************/
/* -----------------------------------------------
 homeページ共通
----------------------------------------------- */
#copilot {
  /* -----------------------------------------------
  mv
  ----------------------------------------------- */
  /* -----------------------------------------------
  about
  ----------------------------------------------- */
  /* -----------------------------------------------
  recommendCopilot
  ----------------------------------------------- */
  /* -----------------------------------------------
  intel
  ----------------------------------------------- */
  /* -----------------------------------------------
  recommendAi
  ----------------------------------------------- */
  /* -----------------------------------------------
  btnList
  ----------------------------------------------- */
}

#copilot .mv {
  padding-top: clamp(37px, -4.032px + 10.94vw, 80px);
  padding-top: clamp(2.3125rem, -0.252rem + 10.94vw, 5rem);
  padding-bottom: clamp(26px, -34.112px + 16.03vw, 89px);
  padding-bottom: clamp(1.625rem, -2.132rem + 16.03vw, 5.5625rem);
  background-image: url(../images/common/mv_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  #copilot .mv {
    background-image: url(../images/common/mv_bg_sp.webp);
  }
}

#copilot .mv_inner {
  max-width: 1200px;
  max-width: 75rem;
  padding-inline: clamp(15px, 0.688px + 3.82vw, 30px);
  padding-inline: clamp(0.9375rem, 0.043rem + 3.82vw, 1.875rem);
  margin-inline: auto;
}

#copilot .mv_title {
  margin-inline: auto;
}

#copilot .mv_title02 {
  text-align: center;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: clamp(34px, -0.352px + 9.16vw, 70px);
  font-size: clamp(2.125rem, -0.022rem + 9.16vw, 4.375rem);
  letter-spacing: 0.025em;
  color: #141314;
}

#copilot .mv_titleSub {
  display: block;
  font-family: "Noto Sans JP";
  font-size: clamp(16px, 0.736px + 4.07vw, 32px);
  font-size: clamp(1rem, 0.046rem + 4.07vw, 2rem);
  font-weight: bold;
}

#copilot .mv_img {
  margin-inline: auto;
  max-width: 714px;
  max-width: 44.625rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #copilot .mv_img {
    max-width: clamp(18rem, -13.635rem + 121.37vw, 44.625rem);
  }
}

#copilot .mv_read {
  margin-top: clamp(20px, 10.464px + 2.54vw, 30px);
  margin-top: clamp(1.25rem, 0.654rem + 2.54vw, 1.875rem);
  font-size: clamp(13px, 6.32px + 1.78vw, 20px);
  font-size: clamp(0.8125rem, 0.395rem + 1.78vw, 1.25rem);
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.8;
  color: #393e43;
}

#copilot .about {
  padding-top: clamp(70px, 3.2px + 17.81vw, 140px);
  padding-top: clamp(4.375rem, 0.2rem + 17.81vw, 8.75rem);
}

#copilot .about_01 {
  max-width: 1200px;
  max-width: 75rem;
  padding-inline: clamp(15px, 0.688px + 3.82vw, 30px);
  padding-inline: clamp(0.9375rem, 0.043rem + 3.82vw, 1.875rem);
  margin-inline: auto;
  margin-bottom: 75px;
}

@media screen and (min-width: 769px) {
  #copilot .about_01 .read {
    text-align: center !important;
  }
}

#copilot .about_02 {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  #copilot .about_02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#copilot .about_keyboardText {
  padding-top: clamp(60px, 14.288px + 4.46vw, 100px);
  padding-top: clamp(3.75rem, 0.893rem + 4.46vw, 6.25rem);
  max-width: 570px;
  max-width: 35.625rem;
  width: 100%;
  padding-inline: clamp(15px, 0.688px + 3.82vw, 30px);
  padding-inline: clamp(0.9375rem, 0.043rem + 3.82vw, 1.875rem);
}

@media screen and (max-width: 768px) {
  #copilot .about_keyboardText {
    margin-left: auto !important;
    margin-top: -50px;
    margin-inline: auto;
    text-align: center;
  }
}

#copilot .about_iconWrap {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 25px;
  gap: 1.5625rem;
}

@media screen and (max-width: 768px) {
  #copilot .about_iconWrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 5.25rem;
    justify-content: space-between;
  }
}

#copilot .about_icon {
  text-align: center;
}

#copilot .about_iconImg {
  margin-inline: auto;
}

#copilot .about_iconImg.-icon01 {
  max-width: 60px;
  max-width: 3.75rem;
  width: 80px;
}

#copilot .about_iconImg.-icon02 {
  max-width: 69px;
  max-width: 4.3125rem;
  width: 80px;
}

#copilot .about_iconImg.-icon03 {
  max-width: 76px;
  max-width: 4.75rem;
  width: 80px;
}

#copilot .about_iconText {
  font-size: clamp(10px, 8.096px + 0.51vw, 12px);
  font-size: clamp(0.625rem, 0.506rem + 0.51vw, 0.75rem);
  font-weight: normal;
  color: #484848;
  padding-top: 10px;
}

#copilot .about_03 {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  max-width: 75rem;
  padding-inline: clamp(15px, 0.688px + 3.82vw, 30px);
  padding-inline: clamp(0.9375rem, 0.043rem + 3.82vw, 1.875rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 240px;
  padding-bottom: 15rem;
}

@media screen and (max-width: 1023px) {
  #copilot .about_03 {
    padding-bottom: clamp(8.75rem, -10.172rem + 39.37vw, 15rem);
  }
}

@media screen and (max-width: 768px) {
  #copilot .about_03 {
    padding-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

#copilot .about_textWrap {
  max-width: 610px;
  max-width: 38.125rem;
  width: 100%;
  padding-inline: clamp(15px, 0.688px + 3.82vw, 30px);
  padding-inline: clamp(0.9375rem, 0.043rem + 3.82vw, 1.875rem);
  padding-top: 50px;
  padding-top: 3.125rem;
}

#copilot .about_pcImg {
  max-width: clamp(183.008px, 131.536px + 13.72vw, 395.008px);
  max-width: clamp(11.438rem, 8.221rem + 13.72vw, 24.688rem);
  width: 100%;
}

#copilot .about_04 {
  margin-top: 90px;
  padding-top: 90px;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 1023px) {
  #copilot .about_04 {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  #copilot .about_04 {
    margin-top: 50px;
    padding-top: 140px;
  }
}

#copilot .about_04::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../images/common/about_04_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 1302px;
  max-width: 81.375rem;
  width: 100%;
  height: clamp(752px, 637.712px + 11.16vw, 852px);
  height: clamp(47rem, 39.857rem + 11.16vw, 53.25rem);
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 1023px) and (min-width: 769px) {
  #copilot .about_04::after {
    height: 100%;
    background-size: contain;
    background-position: right;
  }
}

@media screen and (max-width: 768px) {
  #copilot .about_04::after {
    background-image: url(../images/common/about_04_bg_sp.webp);
    max-width: 100%;
    max-height: 53.25rem;
    height: 100%;
    background-size: cover;
  }
}

#copilot .about_04Inner {
  max-width: 1200px;
  max-width: 75rem;
  padding-inline: clamp(15px, 0.688px + 3.82vw, 30px);
  padding-inline: clamp(0.9375rem, 0.043rem + 3.82vw, 1.875rem);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #copilot .about_04Inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: clamp(6.25rem, 3.865rem + 10.18vw, 8.75rem);
  }
}

#copilot .about_04Text {
  margin-top: -110px;
  margin-top: -6.875rem;
  max-width: 560px;
  max-width: 35rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #copilot .about_04Text {
    margin-top: 0;
    text-align: center;
    padding-inline: 0;
  }
}

#copilot .about_04Img {
  max-width: 602px;
  max-width: 37.625rem;
  width: 80%;
}

#copilot .recommendCopilot {
  padding-top: clamp(54px, 15.84px + 10.18vw, 94px);
  padding-top: clamp(3.375rem, 0.99rem + 10.18vw, 5.875rem);
  padding-bottom: clamp(60px, 31.376px + 7.63vw, 90px);
  padding-bottom: clamp(3.75rem, 1.961rem + 7.63vw, 5.625rem);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fbeeec), color-stop(54%, #ede4fc), to(#e7eefa));
  background-image: linear-gradient(0deg, #fbeeec 0%, #ede4fc 54%, #e7eefa 100%);
}

#copilot .recommendCopilot_inner {
  max-width: 1200px;
  max-width: 75rem;
  padding-inline: clamp(25px, 20.224px + 1.27vw, 30px);
  padding-inline: clamp(1.5625rem, 1.264rem + 1.27vw, 1.875rem);
  margin-inline: auto;
}

#copilot .recommendCopilot_cards {
  margin-top: 50px;
}

#copilot .recommendCopilot_caution {
  margin-top: clamp(30px, 20.464px + 2.54vw, 40px);
  margin-top: clamp(1.875rem, 1.279rem + 2.54vw, 2.5rem);
}

#copilot .intel {
  padding-top: clamp(68px, 12.656px + 14.76vw, 126px);
  padding-top: clamp(4.25rem, 0.791rem + 14.76vw, 7.875rem);
  padding-bottom: clamp(57px, 20.736px + 9.67vw, 95px);
  padding-bottom: clamp(3.5625rem, 1.296rem + 9.67vw, 5.9375rem);
  background-image: url(../images/common/intel_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  #copilot .intel {
    background-image: url(../images/common/intel_bg_sp.webp);
    background-position: center;
  }
}

#copilot .intel_inner {
  max-width: 1200px;
  max-width: 75rem;
  padding-inline: clamp(15px, 0.688px + 3.82vw, 30px);
  padding-inline: clamp(0.9375rem, 0.043rem + 3.82vw, 1.875rem);
  margin-inline: auto;
}

#copilot .intel_title {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(36px, 7.376px + 7.63vw, 66px);
  font-size: clamp(2.25rem, 0.461rem + 7.63vw, 4.125rem);
  font-weight: bold;
  letter-spacing: 0.025em;
  color: #fff;
}

#copilot .intel_titleSub {
  font-family: "Noto Sans JP";
  font-size: clamp(16px, -3.088px + 5.09vw, 36px);
  font-size: clamp(1rem, -0.193rem + 5.09vw, 2.25rem);
  font-weight: bold;
  letter-spacing: 0.075em;
  display: block;
}

#copilot .intel_read {
  margin-top: clamp(30px, 8.048px + 5.85vw, 53px);
  margin-top: clamp(1.875rem, 0.503rem + 5.85vw, 3.3125rem);
  color: #fff;
  text-shadow: 2px 2px 13px #0e0443;
}

#copilot .intel_flex {
  margin-top: clamp(30px, 8.048px + 5.85vw, 53px);
  margin-top: clamp(1.875rem, 0.503rem + 5.85vw, 3.3125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #copilot .intel_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#copilot .intel_imgWrap {
  width: 50%;
  padding-top: clamp(30px, 1.376px + 7.63vw, 60px);
  padding-top: clamp(1.875rem, 0.086rem + 7.63vw, 3.75rem);
}

@media screen and (max-width: 768px) {
  #copilot .intel_imgWrap {
    width: 100%;
  }
}

#copilot .intel_img {
  max-width: clamp(148px, 20.144px + 34.1vw, 282px);
  max-width: clamp(9.25rem, 1.259rem + 34.1vw, 17.625rem);
  width: 100%;
  margin-inline: auto;
}

#copilot .intel_textWrap {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #copilot .intel_textWrap {
    width: 100%;
    margin-top: 3.75rem;
  }
}

#copilot .intel_label {
  position: relative;
  font-size: clamp(18px, 6.544px + 3.05vw, 30px);
  font-size: clamp(1.125rem, 0.409rem + 3.05vw, 1.875rem);
  font-weight: bold;
  color: #f6f6f6;
  text-align: center;
  border: 1px solid #00a2e6;
  border-radius: 27px;
  margin-bottom: clamp(13px, 5.36px + 2.04vw, 21px);
  margin-bottom: clamp(0.8125rem, 0.335rem + 2.04vw, 1.3125rem);
  padding-block: 5px;
  padding-block: 0.3125rem;
}

#copilot .intel_label::before {
  position: absolute;
  content: "";
  display: block;
  width: clamp(18px, 6.544px + 3.05vw, 30px);
  width: clamp(1.125rem, 0.409rem + 3.05vw, 1.875rem);
  height: clamp(18px, 6.544px + 3.05vw, 30px);
  height: clamp(1.125rem, 0.409rem + 3.05vw, 1.875rem);
  background-image: url(../images/common/check.webp);
  background-repeat: no-repeat;
  background-size: contain;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#copilot .intel_label:last-child {
  margin-bottom: 0;
}

#copilot .intel_npuBox {
  margin-top: clamp(30px, 10.912px + 5.09vw, 50px);
  margin-top: clamp(1.875rem, 0.682rem + 5.09vw, 3.125rem);
  border: 1px solid #00a2e6;
  padding-block: 30px;
  padding-inline: clamp(20px, 10.464px + 2.54vw, 30px);
  padding-inline: clamp(1.25rem, 0.654rem + 2.54vw, 1.875rem);
}

#copilot .intel_npuBoxTitle {
  font-size: clamp(18px, 16.096px + 0.51vw, 20px);
  font-size: clamp(1.125rem, 1.006rem + 0.51vw, 1.25rem);
  font-weight: bold;
  color: #f6f6f6;
}

#copilot .intel_npuBoxText {
  font-size: clamp(12px, 8.176px + 1.02vw, 16px);
  font-size: clamp(0.75rem, 0.511rem + 1.02vw, 1rem);
  font-weight: normal;
  color: #f6f6f6;
}

#copilot .recommendAi {
  background-color: #f6f6f6;
  padding-top: clamp(54px, 24.416px + 7.89vw, 85px);
  padding-top: clamp(3.375rem, 1.526rem + 7.89vw, 5.3125rem);
  padding-bottom: clamp(16px, -43.168px + 15.78vw, 78px);
  padding-bottom: clamp(1rem, -2.698rem + 15.78vw, 4.875rem);
}

#copilot .recommendAi_inner {
  max-width: 1200px;
  max-width: 75rem;
  padding-inline: clamp(15px, 0.688px + 3.82vw, 30px);
  padding-inline: clamp(0.9375rem, 0.043rem + 3.82vw, 1.875rem);
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  #copilot .recommendAi_inner {
    padding-inline: 0;
  }
}

@media screen and (max-width: 768px) {
  #copilot .recommendAi_cardsWrap {
    overflow: scroll;
    padding-inline: 1.5625rem;
  }
}

#copilot .recommendAi_cards {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

#copilot .recommendAi_cards .card {
  width: 31%;
}

@media screen and (max-width: 768px) {
  #copilot .recommendAi_cards .card {
    max-width: 16.125rem;
    width: 100%;
    padding: 1.25rem 0.9375rem;
    min-width: 258px;
  }
}

@media screen and (max-width: 768px) {
  #copilot .recommendAi_cards .card_priceWrap {
    gap: 5px;
  }
}

@media screen and (max-width: 768px) {
  #copilot .recommendAi_cards .card_price {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  #copilot .recommendAi_cards .card_price .-small {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  #copilot .recommendAi_cards {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    /*    width: 68.75rem;*/
    width: fit-content;
    gap: 1.0625rem;
    align-items: flex-start;
  }
}

@media screen and (max-width: 768px) {
  #copilot .recommendAi_cards.-w {
    /*    width: 51.25rem;*/
  }
}

#copilot .btnList {
  padding-block: clamp(50px, 30.912px + 5.09vw, 70px);
  padding-block: clamp(3.125rem, 1.932rem + 5.09vw, 4.375rem);
  background-color: #f2fafe;
}

#copilot .btnList_inner {
  max-width: 1200px;
  max-width: 75rem;
  padding-inline: clamp(15px, 0.688px + 3.82vw, 30px);
  padding-inline: clamp(0.9375rem, 0.043rem + 3.82vw, 1.875rem);
  margin-inline: auto;
}

#copilot .btnList_title {
  text-align: center;
  color: #004da1;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 35px;
}

#copilot .btnList_wrap+.btnList_wrap {
  margin-top: clamp(40px, 30.464px + 2.54vw, 50px);
  margin-top: clamp(2.5rem, 1.904rem + 2.54vw, 3.125rem);
}

#copilot .btnList_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  #copilot .btnList_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#copilot .btnList_flex .c-button {
  width: 31%;
}

@media screen and (max-width: 768px) {
  #copilot .btnList_flex .c-button {
    width: 100%;
  }
}

#copilot .aboutCopilot {
  padding-block: clamp(50px, 40.464px + 2.54vw, 60px);
  padding-block: clamp(3.125rem, 2.529rem + 2.54vw, 3.75rem);
}

#copilot .aboutCopilot .caution {
  margin-top: clamp(30px, 10.912px + 5.09vw, 50px);
  margin-top: clamp(1.875rem, 0.682rem + 5.09vw, 3.125rem);
}

#copilot .aboutCopilot_inner {
  max-width: 1200px;
  max-width: 75rem;
  padding-inline: clamp(15px, 0.688px + 3.82vw, 30px);
  padding-inline: clamp(0.9375rem, 0.043rem + 3.82vw, 1.875rem);
  margin-inline: auto;
}

#copilot .aboutCopilot_title {
  text-align: center;
  font-size: clamp(18px, 8.464px + 2.54vw, 28px);
  font-size: clamp(1.125rem, 0.529rem + 2.54vw, 1.75rem);
  font-weight: bold;
  color: #004da1;
  letter-spacing: 0.06em;
}

#copilot .updated {
  font-size: clamp(0.8125rem, 0.693rem + 0.51vw, 0.9375rem);
  margin: 10px 0 30px;
  text-align: right;
}

/*****************************************************
  CSS Animation
*****************************************************/
@-webkit-keyframes fadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }

  50% {
    visibility: hidden;
    opacity: 0;
  }

  100% {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    visibility: hidden;
    opacity: 0;
  }

  50% {
    visibility: hidden;
    opacity: 0;
  }

  100% {
    visibility: visible;
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }

  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }

  to {
    visibility: hidden;
    opacity: 0;
  }
}

@-webkit-keyframes fadeOutTop {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes fadeOutTop {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@-webkit-keyframes leftToRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes leftToRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes rightToLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes rightToLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes bottomToTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bottomToTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes blur {
  from {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="15" /></filter></svg>#filter');
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes blur {
  from {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="15" /></filter></svg>#filter');
    -webkit-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

@-webkit-keyframes scrollTop {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes scrollTop {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@-webkit-keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes slideTip {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  50% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }

  100% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
  }
}

@keyframes slideTip {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  50% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }

  100% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right;
    transform-origin: right;
  }
}

/* -----------------------------------------------
  Animation
----------------------------------------------- */
@media not print {
  [data-animate=fadeIn] {
    opacity: 0;
    -webkit-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
  }

  [data-animate=fadeIn].is-animated {
    opacity: 1;
  }

  [data-animate=bottomToTop] {
    opacity: 0;
  }

  [data-animate=bottomToTop].is-animated {
    opacity: 1;
    -webkit-animation: bottomToTop 0.5s ease-in-out;
    animation: bottomToTop 0.5s ease-in-out;
  }

  [data-animate=leftToRight] {
    opacity: 0;
  }

  [data-animate=leftToRight].is-animated {
    opacity: 1;
    -webkit-animation: leftToRight 0.5s ease-in-out;
    animation: leftToRight 0.5s ease-in-out;
  }

  [data-animate=rightToLeft] {
    opacity: 0;
  }

  [data-animate=rightToLeft].is-animated {
    opacity: 1;
    -webkit-animation: rightToLeft 0.5s ease-in-out;
    animation: rightToLeft 0.5s ease-in-out;
  }

  [data-animate=fadeToLeft] {
    opacity: 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  [data-animate=fadeToLeft].is-animated {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/*****************************************************
  Utility
*****************************************************/
.u-mt0 {
  margin-top: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-mtSmall {
  margin-top: 15px !important;
}

.u-mtNormal {
  margin-top: 45px !important;
}

.u-mtLarge {
  margin-top: 60px !important;
}

.u-mbSmall {
  margin-bottom: 15px !important;
}

.u-mbNormal {
  margin-bottom: 45px !important;
}

.u-mbLarge {
  margin-bottom: 60px !important;
}

@media screen and (max-width: 768px) {
  .u-mtSmall {
    margin-top: 15px !important;
  }

  .u-mtNormal {
    margin-top: 30px !important;
  }

  .u-mtLarge {
    margin-top: 40px !important;
  }

  .u-mbSmall {
    margin-bottom: 15px !important;
  }

  .u-mbNormal {
    margin-bottom: 30px !important;
  }

  .u-mbLarge {
    margin-bottom: 40px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .u-mt-tab0 {
    margin-top: 0px !important;
  }

  .u-mr-tab0 {
    margin-right: 0px !important;
  }

  .u-mb-tab0 {
    margin-bottom: 0px !important;
  }

  .u-ml-tab0 {
    margin-left: 0px !important;
  }

  .u-mt-tab5 {
    margin-top: 5px !important;
  }

  .u-mr-tab5 {
    margin-right: 5px !important;
  }

  .u-mb-tab5 {
    margin-bottom: 5px !important;
  }

  .u-ml-tab5 {
    margin-left: 5px !important;
  }

  .u-mt-tab10 {
    margin-top: 10px !important;
  }

  .u-mr-tab10 {
    margin-right: 10px !important;
  }

  .u-mb-tab10 {
    margin-bottom: 10px !important;
  }

  .u-ml-tab10 {
    margin-left: 10px !important;
  }

  .u-mt-tab15 {
    margin-top: 15px !important;
  }

  .u-mr-tab15 {
    margin-right: 15px !important;
  }

  .u-mb-tab15 {
    margin-bottom: 15px !important;
  }

  .u-ml-tab15 {
    margin-left: 15px !important;
  }

  .u-mt-tab20 {
    margin-top: 20px !important;
  }

  .u-mr-tab20 {
    margin-right: 20px !important;
  }

  .u-mb-tab20 {
    margin-bottom: 20px !important;
  }

  .u-ml-tab20 {
    margin-left: 20px !important;
  }

  .u-mt-tab25 {
    margin-top: 25px !important;
  }

  .u-mr-tab25 {
    margin-right: 25px !important;
  }

  .u-mb-tab25 {
    margin-bottom: 25px !important;
  }

  .u-ml-tab25 {
    margin-left: 25px !important;
  }

  .u-mt-tab30 {
    margin-top: 30px !important;
  }

  .u-mr-tab30 {
    margin-right: 30px !important;
  }

  .u-mb-tab30 {
    margin-bottom: 30px !important;
  }

  .u-ml-tab30 {
    margin-left: 30px !important;
  }

  .u-mt-tab35 {
    margin-top: 35px !important;
  }

  .u-mr-tab35 {
    margin-right: 35px !important;
  }

  .u-mb-tab35 {
    margin-bottom: 35px !important;
  }

  .u-ml-tab35 {
    margin-left: 35px !important;
  }

  .u-mt-tab40 {
    margin-top: 40px !important;
  }

  .u-mr-tab40 {
    margin-right: 40px !important;
  }

  .u-mb-tab40 {
    margin-bottom: 40px !important;
  }

  .u-ml-tab40 {
    margin-left: 40px !important;
  }

  .u-mt-tab45 {
    margin-top: 45px !important;
  }

  .u-mr-tab45 {
    margin-right: 45px !important;
  }

  .u-mb-tab45 {
    margin-bottom: 45px !important;
  }

  .u-ml-tab45 {
    margin-left: 45px !important;
  }

  .u-mt-tab50 {
    margin-top: 50px !important;
  }

  .u-mr-tab50 {
    margin-right: 50px !important;
  }

  .u-mb-tab50 {
    margin-bottom: 50px !important;
  }

  .u-ml-tab50 {
    margin-left: 50px !important;
  }

  .u-mt-tab55 {
    margin-top: 55px !important;
  }

  .u-mr-tab55 {
    margin-right: 55px !important;
  }

  .u-mb-tab55 {
    margin-bottom: 55px !important;
  }

  .u-ml-tab55 {
    margin-left: 55px !important;
  }

  .u-mt-tab60 {
    margin-top: 60px !important;
  }

  .u-mr-tab60 {
    margin-right: 60px !important;
  }

  .u-mb-tab60 {
    margin-bottom: 60px !important;
  }

  .u-ml-tab60 {
    margin-left: 60px !important;
  }

  .u-mt-tab65 {
    margin-top: 65px !important;
  }

  .u-mr-tab65 {
    margin-right: 65px !important;
  }

  .u-mb-tab65 {
    margin-bottom: 65px !important;
  }

  .u-ml-tab65 {
    margin-left: 65px !important;
  }

  .u-mt-tab70 {
    margin-top: 70px !important;
  }

  .u-mr-tab70 {
    margin-right: 70px !important;
  }

  .u-mb-tab70 {
    margin-bottom: 70px !important;
  }

  .u-ml-tab70 {
    margin-left: 70px !important;
  }

  .u-mt-tab75 {
    margin-top: 75px !important;
  }

  .u-mr-tab75 {
    margin-right: 75px !important;
  }

  .u-mb-tab75 {
    margin-bottom: 75px !important;
  }

  .u-ml-tab75 {
    margin-left: 75px !important;
  }

  .u-mt-tab80 {
    margin-top: 80px !important;
  }

  .u-mr-tab80 {
    margin-right: 80px !important;
  }

  .u-mb-tab80 {
    margin-bottom: 80px !important;
  }

  .u-ml-tab80 {
    margin-left: 80px !important;
  }

  .u-mt-tab85 {
    margin-top: 85px !important;
  }

  .u-mr-tab85 {
    margin-right: 85px !important;
  }

  .u-mb-tab85 {
    margin-bottom: 85px !important;
  }

  .u-ml-tab85 {
    margin-left: 85px !important;
  }

  .u-mt-tab90 {
    margin-top: 90px !important;
  }

  .u-mr-tab90 {
    margin-right: 90px !important;
  }

  .u-mb-tab90 {
    margin-bottom: 90px !important;
  }

  .u-ml-tab90 {
    margin-left: 90px !important;
  }

  .u-mt-tab95 {
    margin-top: 95px !important;
  }

  .u-mr-tab95 {
    margin-right: 95px !important;
  }

  .u-mb-tab95 {
    margin-bottom: 95px !important;
  }

  .u-ml-tab95 {
    margin-left: 95px !important;
  }

  .u-mt-tab100 {
    margin-top: 100px !important;
  }

  .u-mr-tab100 {
    margin-right: 100px !important;
  }

  .u-mb-tab100 {
    margin-bottom: 100px !important;
  }

  .u-ml-tab100 {
    margin-left: 100px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-mt-sp0 {
    margin-top: 0px !important;
  }

  .u-mr-sp0 {
    margin-right: 0px !important;
  }

  .u-mb-sp0 {
    margin-bottom: 0px !important;
  }

  .u-ml-sp0 {
    margin-left: 0px !important;
  }

  .u-mt-sp5 {
    margin-top: 5px !important;
  }

  .u-mr-sp5 {
    margin-right: 5px !important;
  }

  .u-mb-sp5 {
    margin-bottom: 5px !important;
  }

  .u-ml-sp5 {
    margin-left: 5px !important;
  }

  .u-mt-sp10 {
    margin-top: 10px !important;
  }

  .u-mr-sp10 {
    margin-right: 10px !important;
  }

  .u-mb-sp10 {
    margin-bottom: 10px !important;
  }

  .u-ml-sp10 {
    margin-left: 10px !important;
  }

  .u-mt-sp15 {
    margin-top: 15px !important;
  }

  .u-mr-sp15 {
    margin-right: 15px !important;
  }

  .u-mb-sp15 {
    margin-bottom: 15px !important;
  }

  .u-ml-sp15 {
    margin-left: 15px !important;
  }

  .u-mt-sp20 {
    margin-top: 20px !important;
  }

  .u-mr-sp20 {
    margin-right: 20px !important;
  }

  .u-mb-sp20 {
    margin-bottom: 20px !important;
  }

  .u-ml-sp20 {
    margin-left: 20px !important;
  }

  .u-mt-sp25 {
    margin-top: 25px !important;
  }

  .u-mr-sp25 {
    margin-right: 25px !important;
  }

  .u-mb-sp25 {
    margin-bottom: 25px !important;
  }

  .u-ml-sp25 {
    margin-left: 25px !important;
  }

  .u-mt-sp30 {
    margin-top: 30px !important;
  }

  .u-mr-sp30 {
    margin-right: 30px !important;
  }

  .u-mb-sp30 {
    margin-bottom: 30px !important;
  }

  .u-ml-sp30 {
    margin-left: 30px !important;
  }

  .u-mt-sp35 {
    margin-top: 35px !important;
  }

  .u-mr-sp35 {
    margin-right: 35px !important;
  }

  .u-mb-sp35 {
    margin-bottom: 35px !important;
  }

  .u-ml-sp35 {
    margin-left: 35px !important;
  }

  .u-mt-sp40 {
    margin-top: 40px !important;
  }

  .u-mr-sp40 {
    margin-right: 40px !important;
  }

  .u-mb-sp40 {
    margin-bottom: 40px !important;
  }

  .u-ml-sp40 {
    margin-left: 40px !important;
  }

  .u-mt-sp45 {
    margin-top: 45px !important;
  }

  .u-mr-sp45 {
    margin-right: 45px !important;
  }

  .u-mb-sp45 {
    margin-bottom: 45px !important;
  }

  .u-ml-sp45 {
    margin-left: 45px !important;
  }

  .u-mt-sp50 {
    margin-top: 50px !important;
  }

  .u-mr-sp50 {
    margin-right: 50px !important;
  }

  .u-mb-sp50 {
    margin-bottom: 50px !important;
  }

  .u-ml-sp50 {
    margin-left: 50px !important;
  }

  .u-mt-sp55 {
    margin-top: 55px !important;
  }

  .u-mr-sp55 {
    margin-right: 55px !important;
  }

  .u-mb-sp55 {
    margin-bottom: 55px !important;
  }

  .u-ml-sp55 {
    margin-left: 55px !important;
  }

  .u-mt-sp60 {
    margin-top: 60px !important;
  }

  .u-mr-sp60 {
    margin-right: 60px !important;
  }

  .u-mb-sp60 {
    margin-bottom: 60px !important;
  }

  .u-ml-sp60 {
    margin-left: 60px !important;
  }

  .u-mt-sp65 {
    margin-top: 65px !important;
  }

  .u-mr-sp65 {
    margin-right: 65px !important;
  }

  .u-mb-sp65 {
    margin-bottom: 65px !important;
  }

  .u-ml-sp65 {
    margin-left: 65px !important;
  }

  .u-mt-sp70 {
    margin-top: 70px !important;
  }

  .u-mr-sp70 {
    margin-right: 70px !important;
  }

  .u-mb-sp70 {
    margin-bottom: 70px !important;
  }

  .u-ml-sp70 {
    margin-left: 70px !important;
  }

  .u-mt-sp75 {
    margin-top: 75px !important;
  }

  .u-mr-sp75 {
    margin-right: 75px !important;
  }

  .u-mb-sp75 {
    margin-bottom: 75px !important;
  }

  .u-ml-sp75 {
    margin-left: 75px !important;
  }

  .u-mt-sp80 {
    margin-top: 80px !important;
  }

  .u-mr-sp80 {
    margin-right: 80px !important;
  }

  .u-mb-sp80 {
    margin-bottom: 80px !important;
  }

  .u-ml-sp80 {
    margin-left: 80px !important;
  }

  .u-mt-sp85 {
    margin-top: 85px !important;
  }

  .u-mr-sp85 {
    margin-right: 85px !important;
  }

  .u-mb-sp85 {
    margin-bottom: 85px !important;
  }

  .u-ml-sp85 {
    margin-left: 85px !important;
  }

  .u-mt-sp90 {
    margin-top: 90px !important;
  }

  .u-mr-sp90 {
    margin-right: 90px !important;
  }

  .u-mb-sp90 {
    margin-bottom: 90px !important;
  }

  .u-ml-sp90 {
    margin-left: 90px !important;
  }

  .u-mt-sp95 {
    margin-top: 95px !important;
  }

  .u-mr-sp95 {
    margin-right: 95px !important;
  }

  .u-mb-sp95 {
    margin-bottom: 95px !important;
  }

  .u-ml-sp95 {
    margin-left: 95px !important;
  }

  .u-mt-sp100 {
    margin-top: 100px !important;
  }

  .u-mr-sp100 {
    margin-right: 100px !important;
  }

  .u-mb-sp100 {
    margin-bottom: 100px !important;
  }

  .u-ml-sp100 {
    margin-left: 100px !important;
  }
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-pr75 {
  padding-right: 75px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-pl75 {
  padding-left: 75px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-pl80 {
  padding-left: 80px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .u-pt-tab0 {
    padding-top: 0px !important;
  }

  .u-pr-tab0 {
    padding-right: 0px !important;
  }

  .u-pb-tab0 {
    padding-bottom: 0px !important;
  }

  .u-pl-tab0 {
    padding-left: 0px !important;
  }

  .u-pt-tab5 {
    padding-top: 5px !important;
  }

  .u-pr-tab5 {
    padding-right: 5px !important;
  }

  .u-pb-tab5 {
    padding-bottom: 5px !important;
  }

  .u-pl-tab5 {
    padding-left: 5px !important;
  }

  .u-pt-tab10 {
    padding-top: 10px !important;
  }

  .u-pr-tab10 {
    padding-right: 10px !important;
  }

  .u-pb-tab10 {
    padding-bottom: 10px !important;
  }

  .u-pl-tab10 {
    padding-left: 10px !important;
  }

  .u-pt-tab15 {
    padding-top: 15px !important;
  }

  .u-pr-tab15 {
    padding-right: 15px !important;
  }

  .u-pb-tab15 {
    padding-bottom: 15px !important;
  }

  .u-pl-tab15 {
    padding-left: 15px !important;
  }

  .u-pt-tab20 {
    padding-top: 20px !important;
  }

  .u-pr-tab20 {
    padding-right: 20px !important;
  }

  .u-pb-tab20 {
    padding-bottom: 20px !important;
  }

  .u-pl-tab20 {
    padding-left: 20px !important;
  }

  .u-pt-tab25 {
    padding-top: 25px !important;
  }

  .u-pr-tab25 {
    padding-right: 25px !important;
  }

  .u-pb-tab25 {
    padding-bottom: 25px !important;
  }

  .u-pl-tab25 {
    padding-left: 25px !important;
  }

  .u-pt-tab30 {
    padding-top: 30px !important;
  }

  .u-pr-tab30 {
    padding-right: 30px !important;
  }

  .u-pb-tab30 {
    padding-bottom: 30px !important;
  }

  .u-pl-tab30 {
    padding-left: 30px !important;
  }

  .u-pt-tab35 {
    padding-top: 35px !important;
  }

  .u-pr-tab35 {
    padding-right: 35px !important;
  }

  .u-pb-tab35 {
    padding-bottom: 35px !important;
  }

  .u-pl-tab35 {
    padding-left: 35px !important;
  }

  .u-pt-tab40 {
    padding-top: 40px !important;
  }

  .u-pr-tab40 {
    padding-right: 40px !important;
  }

  .u-pb-tab40 {
    padding-bottom: 40px !important;
  }

  .u-pl-tab40 {
    padding-left: 40px !important;
  }

  .u-pt-tab45 {
    padding-top: 45px !important;
  }

  .u-pr-tab45 {
    padding-right: 45px !important;
  }

  .u-pb-tab45 {
    padding-bottom: 45px !important;
  }

  .u-pl-tab45 {
    padding-left: 45px !important;
  }

  .u-pt-tab50 {
    padding-top: 50px !important;
  }

  .u-pr-tab50 {
    padding-right: 50px !important;
  }

  .u-pb-tab50 {
    padding-bottom: 50px !important;
  }

  .u-pl-tab50 {
    padding-left: 50px !important;
  }

  .u-pt-tab55 {
    padding-top: 55px !important;
  }

  .u-pr-tab55 {
    padding-right: 55px !important;
  }

  .u-pb-tab55 {
    padding-bottom: 55px !important;
  }

  .u-pl-tab55 {
    padding-left: 55px !important;
  }

  .u-pt-tab60 {
    padding-top: 60px !important;
  }

  .u-pr-tab60 {
    padding-right: 60px !important;
  }

  .u-pb-tab60 {
    padding-bottom: 60px !important;
  }

  .u-pl-tab60 {
    padding-left: 60px !important;
  }

  .u-pt-tab65 {
    padding-top: 65px !important;
  }

  .u-pr-tab65 {
    padding-right: 65px !important;
  }

  .u-pb-tab65 {
    padding-bottom: 65px !important;
  }

  .u-pl-tab65 {
    padding-left: 65px !important;
  }

  .u-pt-tab70 {
    padding-top: 70px !important;
  }

  .u-pr-tab70 {
    padding-right: 70px !important;
  }

  .u-pb-tab70 {
    padding-bottom: 70px !important;
  }

  .u-pl-tab70 {
    padding-left: 70px !important;
  }

  .u-pt-tab75 {
    padding-top: 75px !important;
  }

  .u-pr-tab75 {
    padding-right: 75px !important;
  }

  .u-pb-tab75 {
    padding-bottom: 75px !important;
  }

  .u-pl-tab75 {
    padding-left: 75px !important;
  }

  .u-pt-tab80 {
    padding-top: 80px !important;
  }

  .u-pr-tab80 {
    padding-right: 80px !important;
  }

  .u-pb-tab80 {
    padding-bottom: 80px !important;
  }

  .u-pl-tab80 {
    padding-left: 80px !important;
  }

  .u-pt-tab85 {
    padding-top: 85px !important;
  }

  .u-pr-tab85 {
    padding-right: 85px !important;
  }

  .u-pb-tab85 {
    padding-bottom: 85px !important;
  }

  .u-pl-tab85 {
    padding-left: 85px !important;
  }

  .u-pt-tab90 {
    padding-top: 90px !important;
  }

  .u-pr-tab90 {
    padding-right: 90px !important;
  }

  .u-pb-tab90 {
    padding-bottom: 90px !important;
  }

  .u-pl-tab90 {
    padding-left: 90px !important;
  }

  .u-pt-tab95 {
    padding-top: 95px !important;
  }

  .u-pr-tab95 {
    padding-right: 95px !important;
  }

  .u-pb-tab95 {
    padding-bottom: 95px !important;
  }

  .u-pl-tab95 {
    padding-left: 95px !important;
  }

  .u-pt-tab100 {
    padding-top: 100px !important;
  }

  .u-pr-tab100 {
    padding-right: 100px !important;
  }

  .u-pb-tab100 {
    padding-bottom: 100px !important;
  }

  .u-pl-tab100 {
    padding-left: 100px !important;
  }

  .u-pt-tab105 {
    padding-top: 105px !important;
  }

  .u-pr-tab105 {
    padding-right: 105px !important;
  }

  .u-pb-tab105 {
    padding-bottom: 105px !important;
  }

  .u-pl-tab105 {
    padding-left: 105px !important;
  }

  .u-pt-tab110 {
    padding-top: 110px !important;
  }

  .u-pr-tab110 {
    padding-right: 110px !important;
  }

  .u-pb-tab110 {
    padding-bottom: 110px !important;
  }

  .u-pl-tab110 {
    padding-left: 110px !important;
  }

  .u-pt-tab115 {
    padding-top: 115px !important;
  }

  .u-pr-tab115 {
    padding-right: 115px !important;
  }

  .u-pb-tab115 {
    padding-bottom: 115px !important;
  }

  .u-pl-tab115 {
    padding-left: 115px !important;
  }

  .u-pt-tab120 {
    padding-top: 120px !important;
  }

  .u-pr-tab120 {
    padding-right: 120px !important;
  }

  .u-pb-tab120 {
    padding-bottom: 120px !important;
  }

  .u-pl-tab120 {
    padding-left: 120px !important;
  }

  .u-pt-tab125 {
    padding-top: 125px !important;
  }

  .u-pr-tab125 {
    padding-right: 125px !important;
  }

  .u-pb-tab125 {
    padding-bottom: 125px !important;
  }

  .u-pl-tab125 {
    padding-left: 125px !important;
  }

  .u-pt-tab130 {
    padding-top: 130px !important;
  }

  .u-pr-tab130 {
    padding-right: 130px !important;
  }

  .u-pb-tab130 {
    padding-bottom: 130px !important;
  }

  .u-pl-tab130 {
    padding-left: 130px !important;
  }

  .u-pt-tab135 {
    padding-top: 135px !important;
  }

  .u-pr-tab135 {
    padding-right: 135px !important;
  }

  .u-pb-tab135 {
    padding-bottom: 135px !important;
  }

  .u-pl-tab135 {
    padding-left: 135px !important;
  }

  .u-pt-tab140 {
    padding-top: 140px !important;
  }

  .u-pr-tab140 {
    padding-right: 140px !important;
  }

  .u-pb-tab140 {
    padding-bottom: 140px !important;
  }

  .u-pl-tab140 {
    padding-left: 140px !important;
  }

  .u-pt-tab145 {
    padding-top: 145px !important;
  }

  .u-pr-tab145 {
    padding-right: 145px !important;
  }

  .u-pb-tab145 {
    padding-bottom: 145px !important;
  }

  .u-pl-tab145 {
    padding-left: 145px !important;
  }

  .u-pt-tab150 {
    padding-top: 150px !important;
  }

  .u-pr-tab150 {
    padding-right: 150px !important;
  }

  .u-pb-tab150 {
    padding-bottom: 150px !important;
  }

  .u-pl-tab150 {
    padding-left: 150px !important;
  }

  .u-pt-tab155 {
    padding-top: 155px !important;
  }

  .u-pr-tab155 {
    padding-right: 155px !important;
  }

  .u-pb-tab155 {
    padding-bottom: 155px !important;
  }

  .u-pl-tab155 {
    padding-left: 155px !important;
  }

  .u-pt-tab160 {
    padding-top: 160px !important;
  }

  .u-pr-tab160 {
    padding-right: 160px !important;
  }

  .u-pb-tab160 {
    padding-bottom: 160px !important;
  }

  .u-pl-tab160 {
    padding-left: 160px !important;
  }

  .u-pt-tab165 {
    padding-top: 165px !important;
  }

  .u-pr-tab165 {
    padding-right: 165px !important;
  }

  .u-pb-tab165 {
    padding-bottom: 165px !important;
  }

  .u-pl-tab165 {
    padding-left: 165px !important;
  }

  .u-pt-tab170 {
    padding-top: 170px !important;
  }

  .u-pr-tab170 {
    padding-right: 170px !important;
  }

  .u-pb-tab170 {
    padding-bottom: 170px !important;
  }

  .u-pl-tab170 {
    padding-left: 170px !important;
  }

  .u-pt-tab175 {
    padding-top: 175px !important;
  }

  .u-pr-tab175 {
    padding-right: 175px !important;
  }

  .u-pb-tab175 {
    padding-bottom: 175px !important;
  }

  .u-pl-tab175 {
    padding-left: 175px !important;
  }

  .u-pt-tab180 {
    padding-top: 180px !important;
  }

  .u-pr-tab180 {
    padding-right: 180px !important;
  }

  .u-pb-tab180 {
    padding-bottom: 180px !important;
  }

  .u-pl-tab180 {
    padding-left: 180px !important;
  }

  .u-pt-tab185 {
    padding-top: 185px !important;
  }

  .u-pr-tab185 {
    padding-right: 185px !important;
  }

  .u-pb-tab185 {
    padding-bottom: 185px !important;
  }

  .u-pl-tab185 {
    padding-left: 185px !important;
  }

  .u-pt-tab190 {
    padding-top: 190px !important;
  }

  .u-pr-tab190 {
    padding-right: 190px !important;
  }

  .u-pb-tab190 {
    padding-bottom: 190px !important;
  }

  .u-pl-tab190 {
    padding-left: 190px !important;
  }

  .u-pt-tab195 {
    padding-top: 195px !important;
  }

  .u-pr-tab195 {
    padding-right: 195px !important;
  }

  .u-pb-tab195 {
    padding-bottom: 195px !important;
  }

  .u-pl-tab195 {
    padding-left: 195px !important;
  }

  .u-pt-tab200 {
    padding-top: 200px !important;
  }

  .u-pr-tab200 {
    padding-right: 200px !important;
  }

  .u-pb-tab200 {
    padding-bottom: 200px !important;
  }

  .u-pl-tab200 {
    padding-left: 200px !important;
  }

  .u-pt-tab205 {
    padding-top: 205px !important;
  }

  .u-pr-tab205 {
    padding-right: 205px !important;
  }

  .u-pb-tab205 {
    padding-bottom: 205px !important;
  }

  .u-pl-tab205 {
    padding-left: 205px !important;
  }

  .u-pt-tab210 {
    padding-top: 210px !important;
  }

  .u-pr-tab210 {
    padding-right: 210px !important;
  }

  .u-pb-tab210 {
    padding-bottom: 210px !important;
  }

  .u-pl-tab210 {
    padding-left: 210px !important;
  }

  .u-pt-tab215 {
    padding-top: 215px !important;
  }

  .u-pr-tab215 {
    padding-right: 215px !important;
  }

  .u-pb-tab215 {
    padding-bottom: 215px !important;
  }

  .u-pl-tab215 {
    padding-left: 215px !important;
  }

  .u-pt-tab220 {
    padding-top: 220px !important;
  }

  .u-pr-tab220 {
    padding-right: 220px !important;
  }

  .u-pb-tab220 {
    padding-bottom: 220px !important;
  }

  .u-pl-tab220 {
    padding-left: 220px !important;
  }

  .u-pt-tab225 {
    padding-top: 225px !important;
  }

  .u-pr-tab225 {
    padding-right: 225px !important;
  }

  .u-pb-tab225 {
    padding-bottom: 225px !important;
  }

  .u-pl-tab225 {
    padding-left: 225px !important;
  }

  .u-pt-tab230 {
    padding-top: 230px !important;
  }

  .u-pr-tab230 {
    padding-right: 230px !important;
  }

  .u-pb-tab230 {
    padding-bottom: 230px !important;
  }

  .u-pl-tab230 {
    padding-left: 230px !important;
  }

  .u-pt-tab235 {
    padding-top: 235px !important;
  }

  .u-pr-tab235 {
    padding-right: 235px !important;
  }

  .u-pb-tab235 {
    padding-bottom: 235px !important;
  }

  .u-pl-tab235 {
    padding-left: 235px !important;
  }

  .u-pt-tab240 {
    padding-top: 240px !important;
  }

  .u-pr-tab240 {
    padding-right: 240px !important;
  }

  .u-pb-tab240 {
    padding-bottom: 240px !important;
  }

  .u-pl-tab240 {
    padding-left: 240px !important;
  }

  .u-pt-tab245 {
    padding-top: 245px !important;
  }

  .u-pr-tab245 {
    padding-right: 245px !important;
  }

  .u-pb-tab245 {
    padding-bottom: 245px !important;
  }

  .u-pl-tab245 {
    padding-left: 245px !important;
  }

  .u-pt-tab250 {
    padding-top: 250px !important;
  }

  .u-pr-tab250 {
    padding-right: 250px !important;
  }

  .u-pb-tab250 {
    padding-bottom: 250px !important;
  }

  .u-pl-tab250 {
    padding-left: 250px !important;
  }
}

@media screen and (max-width: 768px) {
  .u-pt-sp0 {
    padding-top: 0px !important;
  }

  .u-pr-sp0 {
    padding-right: 0px !important;
  }

  .u-pb-sp0 {
    padding-bottom: 0px !important;
  }

  .u-pl-sp0 {
    padding-left: 0px !important;
  }

  .u-pt-sp5 {
    padding-top: 5px !important;
  }

  .u-pr-sp5 {
    padding-right: 5px !important;
  }

  .u-pb-sp5 {
    padding-bottom: 5px !important;
  }

  .u-pl-sp5 {
    padding-left: 5px !important;
  }

  .u-pt-sp10 {
    padding-top: 10px !important;
  }

  .u-pr-sp10 {
    padding-right: 10px !important;
  }

  .u-pb-sp10 {
    padding-bottom: 10px !important;
  }

  .u-pl-sp10 {
    padding-left: 10px !important;
  }

  .u-pt-sp15 {
    padding-top: 15px !important;
  }

  .u-pr-sp15 {
    padding-right: 15px !important;
  }

  .u-pb-sp15 {
    padding-bottom: 15px !important;
  }

  .u-pl-sp15 {
    padding-left: 15px !important;
  }

  .u-pt-sp20 {
    padding-top: 20px !important;
  }

  .u-pr-sp20 {
    padding-right: 20px !important;
  }

  .u-pb-sp20 {
    padding-bottom: 20px !important;
  }

  .u-pl-sp20 {
    padding-left: 20px !important;
  }

  .u-pt-sp25 {
    padding-top: 25px !important;
  }

  .u-pr-sp25 {
    padding-right: 25px !important;
  }

  .u-pb-sp25 {
    padding-bottom: 25px !important;
  }

  .u-pl-sp25 {
    padding-left: 25px !important;
  }

  .u-pt-sp30 {
    padding-top: 30px !important;
  }

  .u-pr-sp30 {
    padding-right: 30px !important;
  }

  .u-pb-sp30 {
    padding-bottom: 30px !important;
  }

  .u-pl-sp30 {
    padding-left: 30px !important;
  }

  .u-pt-sp35 {
    padding-top: 35px !important;
  }

  .u-pr-sp35 {
    padding-right: 35px !important;
  }

  .u-pb-sp35 {
    padding-bottom: 35px !important;
  }

  .u-pl-sp35 {
    padding-left: 35px !important;
  }

  .u-pt-sp40 {
    padding-top: 40px !important;
  }

  .u-pr-sp40 {
    padding-right: 40px !important;
  }

  .u-pb-sp40 {
    padding-bottom: 40px !important;
  }

  .u-pl-sp40 {
    padding-left: 40px !important;
  }

  .u-pt-sp45 {
    padding-top: 45px !important;
  }

  .u-pr-sp45 {
    padding-right: 45px !important;
  }

  .u-pb-sp45 {
    padding-bottom: 45px !important;
  }

  .u-pl-sp45 {
    padding-left: 45px !important;
  }

  .u-pt-sp50 {
    padding-top: 50px !important;
  }

  .u-pr-sp50 {
    padding-right: 50px !important;
  }

  .u-pb-sp50 {
    padding-bottom: 50px !important;
  }

  .u-pl-sp50 {
    padding-left: 50px !important;
  }

  .u-pt-sp55 {
    padding-top: 55px !important;
  }

  .u-pr-sp55 {
    padding-right: 55px !important;
  }

  .u-pb-sp55 {
    padding-bottom: 55px !important;
  }

  .u-pl-sp55 {
    padding-left: 55px !important;
  }

  .u-pt-sp60 {
    padding-top: 60px !important;
  }

  .u-pr-sp60 {
    padding-right: 60px !important;
  }

  .u-pb-sp60 {
    padding-bottom: 60px !important;
  }

  .u-pl-sp60 {
    padding-left: 60px !important;
  }

  .u-pt-sp65 {
    padding-top: 65px !important;
  }

  .u-pr-sp65 {
    padding-right: 65px !important;
  }

  .u-pb-sp65 {
    padding-bottom: 65px !important;
  }

  .u-pl-sp65 {
    padding-left: 65px !important;
  }

  .u-pt-sp70 {
    padding-top: 70px !important;
  }

  .u-pr-sp70 {
    padding-right: 70px !important;
  }

  .u-pb-sp70 {
    padding-bottom: 70px !important;
  }

  .u-pl-sp70 {
    padding-left: 70px !important;
  }

  .u-pt-sp75 {
    padding-top: 75px !important;
  }

  .u-pr-sp75 {
    padding-right: 75px !important;
  }

  .u-pb-sp75 {
    padding-bottom: 75px !important;
  }

  .u-pl-sp75 {
    padding-left: 75px !important;
  }

  .u-pt-sp80 {
    padding-top: 80px !important;
  }

  .u-pr-sp80 {
    padding-right: 80px !important;
  }

  .u-pb-sp80 {
    padding-bottom: 80px !important;
  }

  .u-pl-sp80 {
    padding-left: 80px !important;
  }

  .u-pt-sp85 {
    padding-top: 85px !important;
  }

  .u-pr-sp85 {
    padding-right: 85px !important;
  }

  .u-pb-sp85 {
    padding-bottom: 85px !important;
  }

  .u-pl-sp85 {
    padding-left: 85px !important;
  }

  .u-pt-sp90 {
    padding-top: 90px !important;
  }

  .u-pr-sp90 {
    padding-right: 90px !important;
  }

  .u-pb-sp90 {
    padding-bottom: 90px !important;
  }

  .u-pl-sp90 {
    padding-left: 90px !important;
  }

  .u-pt-sp95 {
    padding-top: 95px !important;
  }

  .u-pr-sp95 {
    padding-right: 95px !important;
  }

  .u-pb-sp95 {
    padding-bottom: 95px !important;
  }

  .u-pl-sp95 {
    padding-left: 95px !important;
  }

  .u-pt-sp100 {
    padding-top: 100px !important;
  }

  .u-pr-sp100 {
    padding-right: 100px !important;
  }

  .u-pb-sp100 {
    padding-bottom: 100px !important;
  }

  .u-pl-sp100 {
    padding-left: 100px !important;
  }

  .u-pt-sp105 {
    padding-top: 105px !important;
  }

  .u-pr-sp105 {
    padding-right: 105px !important;
  }

  .u-pb-sp105 {
    padding-bottom: 105px !important;
  }

  .u-pl-sp105 {
    padding-left: 105px !important;
  }

  .u-pt-sp110 {
    padding-top: 110px !important;
  }

  .u-pr-sp110 {
    padding-right: 110px !important;
  }

  .u-pb-sp110 {
    padding-bottom: 110px !important;
  }

  .u-pl-sp110 {
    padding-left: 110px !important;
  }

  .u-pt-sp115 {
    padding-top: 115px !important;
  }

  .u-pr-sp115 {
    padding-right: 115px !important;
  }

  .u-pb-sp115 {
    padding-bottom: 115px !important;
  }

  .u-pl-sp115 {
    padding-left: 115px !important;
  }

  .u-pt-sp120 {
    padding-top: 120px !important;
  }

  .u-pr-sp120 {
    padding-right: 120px !important;
  }

  .u-pb-sp120 {
    padding-bottom: 120px !important;
  }

  .u-pl-sp120 {
    padding-left: 120px !important;
  }

  .u-pt-sp125 {
    padding-top: 125px !important;
  }

  .u-pr-sp125 {
    padding-right: 125px !important;
  }

  .u-pb-sp125 {
    padding-bottom: 125px !important;
  }

  .u-pl-sp125 {
    padding-left: 125px !important;
  }

  .u-pt-sp130 {
    padding-top: 130px !important;
  }

  .u-pr-sp130 {
    padding-right: 130px !important;
  }

  .u-pb-sp130 {
    padding-bottom: 130px !important;
  }

  .u-pl-sp130 {
    padding-left: 130px !important;
  }

  .u-pt-sp135 {
    padding-top: 135px !important;
  }

  .u-pr-sp135 {
    padding-right: 135px !important;
  }

  .u-pb-sp135 {
    padding-bottom: 135px !important;
  }

  .u-pl-sp135 {
    padding-left: 135px !important;
  }

  .u-pt-sp140 {
    padding-top: 140px !important;
  }

  .u-pr-sp140 {
    padding-right: 140px !important;
  }

  .u-pb-sp140 {
    padding-bottom: 140px !important;
  }

  .u-pl-sp140 {
    padding-left: 140px !important;
  }

  .u-pt-sp145 {
    padding-top: 145px !important;
  }

  .u-pr-sp145 {
    padding-right: 145px !important;
  }

  .u-pb-sp145 {
    padding-bottom: 145px !important;
  }

  .u-pl-sp145 {
    padding-left: 145px !important;
  }

  .u-pt-sp150 {
    padding-top: 150px !important;
  }

  .u-pr-sp150 {
    padding-right: 150px !important;
  }

  .u-pb-sp150 {
    padding-bottom: 150px !important;
  }

  .u-pl-sp150 {
    padding-left: 150px !important;
  }

  .u-pt-sp155 {
    padding-top: 155px !important;
  }

  .u-pr-sp155 {
    padding-right: 155px !important;
  }

  .u-pb-sp155 {
    padding-bottom: 155px !important;
  }

  .u-pl-sp155 {
    padding-left: 155px !important;
  }

  .u-pt-sp160 {
    padding-top: 160px !important;
  }

  .u-pr-sp160 {
    padding-right: 160px !important;
  }

  .u-pb-sp160 {
    padding-bottom: 160px !important;
  }

  .u-pl-sp160 {
    padding-left: 160px !important;
  }

  .u-pt-sp165 {
    padding-top: 165px !important;
  }

  .u-pr-sp165 {
    padding-right: 165px !important;
  }

  .u-pb-sp165 {
    padding-bottom: 165px !important;
  }

  .u-pl-sp165 {
    padding-left: 165px !important;
  }

  .u-pt-sp170 {
    padding-top: 170px !important;
  }

  .u-pr-sp170 {
    padding-right: 170px !important;
  }

  .u-pb-sp170 {
    padding-bottom: 170px !important;
  }

  .u-pl-sp170 {
    padding-left: 170px !important;
  }

  .u-pt-sp175 {
    padding-top: 175px !important;
  }

  .u-pr-sp175 {
    padding-right: 175px !important;
  }

  .u-pb-sp175 {
    padding-bottom: 175px !important;
  }

  .u-pl-sp175 {
    padding-left: 175px !important;
  }

  .u-pt-sp180 {
    padding-top: 180px !important;
  }

  .u-pr-sp180 {
    padding-right: 180px !important;
  }

  .u-pb-sp180 {
    padding-bottom: 180px !important;
  }

  .u-pl-sp180 {
    padding-left: 180px !important;
  }

  .u-pt-sp185 {
    padding-top: 185px !important;
  }

  .u-pr-sp185 {
    padding-right: 185px !important;
  }

  .u-pb-sp185 {
    padding-bottom: 185px !important;
  }

  .u-pl-sp185 {
    padding-left: 185px !important;
  }

  .u-pt-sp190 {
    padding-top: 190px !important;
  }

  .u-pr-sp190 {
    padding-right: 190px !important;
  }

  .u-pb-sp190 {
    padding-bottom: 190px !important;
  }

  .u-pl-sp190 {
    padding-left: 190px !important;
  }

  .u-pt-sp195 {
    padding-top: 195px !important;
  }

  .u-pr-sp195 {
    padding-right: 195px !important;
  }

  .u-pb-sp195 {
    padding-bottom: 195px !important;
  }

  .u-pl-sp195 {
    padding-left: 195px !important;
  }

  .u-pt-sp200 {
    padding-top: 200px !important;
  }

  .u-pr-sp200 {
    padding-right: 200px !important;
  }

  .u-pb-sp200 {
    padding-bottom: 200px !important;
  }

  .u-pl-sp200 {
    padding-left: 200px !important;
  }

  .u-pt-sp205 {
    padding-top: 205px !important;
  }

  .u-pr-sp205 {
    padding-right: 205px !important;
  }

  .u-pb-sp205 {
    padding-bottom: 205px !important;
  }

  .u-pl-sp205 {
    padding-left: 205px !important;
  }

  .u-pt-sp210 {
    padding-top: 210px !important;
  }

  .u-pr-sp210 {
    padding-right: 210px !important;
  }

  .u-pb-sp210 {
    padding-bottom: 210px !important;
  }

  .u-pl-sp210 {
    padding-left: 210px !important;
  }

  .u-pt-sp215 {
    padding-top: 215px !important;
  }

  .u-pr-sp215 {
    padding-right: 215px !important;
  }

  .u-pb-sp215 {
    padding-bottom: 215px !important;
  }

  .u-pl-sp215 {
    padding-left: 215px !important;
  }

  .u-pt-sp220 {
    padding-top: 220px !important;
  }

  .u-pr-sp220 {
    padding-right: 220px !important;
  }

  .u-pb-sp220 {
    padding-bottom: 220px !important;
  }

  .u-pl-sp220 {
    padding-left: 220px !important;
  }

  .u-pt-sp225 {
    padding-top: 225px !important;
  }

  .u-pr-sp225 {
    padding-right: 225px !important;
  }

  .u-pb-sp225 {
    padding-bottom: 225px !important;
  }

  .u-pl-sp225 {
    padding-left: 225px !important;
  }

  .u-pt-sp230 {
    padding-top: 230px !important;
  }

  .u-pr-sp230 {
    padding-right: 230px !important;
  }

  .u-pb-sp230 {
    padding-bottom: 230px !important;
  }

  .u-pl-sp230 {
    padding-left: 230px !important;
  }

  .u-pt-sp235 {
    padding-top: 235px !important;
  }

  .u-pr-sp235 {
    padding-right: 235px !important;
  }

  .u-pb-sp235 {
    padding-bottom: 235px !important;
  }

  .u-pl-sp235 {
    padding-left: 235px !important;
  }

  .u-pt-sp240 {
    padding-top: 240px !important;
  }

  .u-pr-sp240 {
    padding-right: 240px !important;
  }

  .u-pb-sp240 {
    padding-bottom: 240px !important;
  }

  .u-pl-sp240 {
    padding-left: 240px !important;
  }

  .u-pt-sp245 {
    padding-top: 245px !important;
  }

  .u-pr-sp245 {
    padding-right: 245px !important;
  }

  .u-pb-sp245 {
    padding-bottom: 245px !important;
  }

  .u-pl-sp245 {
    padding-left: 245px !important;
  }

  .u-pt-sp250 {
    padding-top: 250px !important;
  }

  .u-pr-sp250 {
    padding-right: 250px !important;
  }

  .u-pb-sp250 {
    padding-bottom: 250px !important;
  }

  .u-pl-sp250 {
    padding-left: 250px !important;
  }
}

.u-wAuto {
  width: auto !important;
}

.u-w5 {
  width: 5% !important;
}

.u-w10 {
  width: 10% !important;
}

.u-w15 {
  width: 15% !important;
}

.u-w20 {
  width: 20% !important;
}

.u-w25 {
  width: 25% !important;
}

.u-w30 {
  width: 30% !important;
}

.u-w35 {
  width: 35% !important;
}

.u-w40 {
  width: 40% !important;
}

.u-w45 {
  width: 45% !important;
}

.u-w50 {
  width: 50% !important;
}

.u-w55 {
  width: 55% !important;
}

.u-w60 {
  width: 60% !important;
}

.u-w65 {
  width: 65% !important;
}

.u-w70 {
  width: 70% !important;
}

.u-w75 {
  width: 75% !important;
}

.u-w80 {
  width: 80% !important;
}

.u-w85 {
  width: 85% !important;
}

.u-w90 {
  width: 90% !important;
}

.u-w95 {
  width: 95% !important;
}

.u-w100 {
  width: 100% !important;
}

.u-w1em {
  width: 1em !important;
}

.u-w2em {
  width: 2em !important;
}

.u-w3em {
  width: 3em !important;
}

.u-w4em {
  width: 4em !important;
}

.u-w5em {
  width: 5em !important;
}

.u-w6em {
  width: 6em !important;
}

.u-w7em {
  width: 7em !important;
}

.u-w8em {
  width: 8em !important;
}

.u-w9em {
  width: 9em !important;
}

.u-w10em {
  width: 10em !important;
}

.u-w11em {
  width: 11em !important;
}

.u-w12em {
  width: 12em !important;
}

.u-w13em {
  width: 13em !important;
}

.u-w14em {
  width: 14em !important;
}

.u-w15em {
  width: 15em !important;
}

.u-w16em {
  width: 16em !important;
}

.u-w17em {
  width: 17em !important;
}

.u-w18em {
  width: 18em !important;
}

.u-w19em {
  width: 19em !important;
}

.u-w20em {
  width: 20em !important;
}

.u-w21em {
  width: 21em !important;
}

.u-w22em {
  width: 22em !important;
}

.u-w23em {
  width: 23em !important;
}

.u-w24em {
  width: 24em !important;
}

.u-w25em {
  width: 25em !important;
}

.u-w26em {
  width: 26em !important;
}

.u-w27em {
  width: 27em !important;
}

.u-w28em {
  width: 28em !important;
}

.u-w29em {
  width: 29em !important;
}

.u-w30em {
  width: 30em !important;
}

.u-w31em {
  width: 31em !important;
}

.u-w32em {
  width: 32em !important;
}

.u-w33em {
  width: 33em !important;
}

.u-w34em {
  width: 34em !important;
}

.u-w35em {
  width: 35em !important;
}

.u-w36em {
  width: 36em !important;
}

.u-w37em {
  width: 37em !important;
}

.u-w38em {
  width: 38em !important;
}

.u-w39em {
  width: 39em !important;
}

.u-w40em {
  width: 40em !important;
}

.u-w41em {
  width: 41em !important;
}

.u-w42em {
  width: 42em !important;
}

.u-w43em {
  width: 43em !important;
}

.u-w44em {
  width: 44em !important;
}

.u-w45em {
  width: 45em !important;
}

.u-w46em {
  width: 46em !important;
}

.u-w47em {
  width: 47em !important;
}

.u-w48em {
  width: 48em !important;
}

.u-w49em {
  width: 49em !important;
}

.u-w50em {
  width: 50em !important;
}

.u-fs11 {
  font-size: 17.6px !important;
  font-size: 1.1rem !important;
}

.u-fs12 {
  font-size: 19.2px !important;
  font-size: 1.2rem !important;
}

.u-fs13 {
  font-size: 20.8px !important;
  font-size: 1.3rem !important;
}

.u-fs14 {
  font-size: 22.4px !important;
  font-size: 1.4rem !important;
}

.u-fs15 {
  font-size: 24px !important;
  font-size: 1.5rem !important;
}

.u-fs16 {
  font-size: 25.6px !important;
  font-size: 1.6rem !important;
}

.u-fs17 {
  font-size: 27.2px !important;
  font-size: 1.7rem !important;
}

.u-fs18 {
  font-size: 28.8px !important;
  font-size: 1.8rem !important;
}

.u-fs19 {
  font-size: 30.4px !important;
  font-size: 1.9rem !important;
}

.u-fs20 {
  font-size: 32px !important;
  font-size: 2rem !important;
}

.u-fs21 {
  font-size: 33.6px !important;
  font-size: 2.1rem !important;
}

.u-fs22 {
  font-size: 35.2px !important;
  font-size: 2.2rem !important;
}

.u-fs23 {
  font-size: 36.8px !important;
  font-size: 2.3rem !important;
}

.u-fs24 {
  font-size: 38.4px !important;
  font-size: 2.4rem !important;
}

.u-fs25 {
  font-size: 40px !important;
  font-size: 2.5rem !important;
}

.u-fs26 {
  font-size: 41.6px !important;
  font-size: 2.6rem !important;
}

.u-fs27 {
  font-size: 43.2px !important;
  font-size: 2.7rem !important;
}

.u-fs28 {
  font-size: 44.8px !important;
  font-size: 2.8rem !important;
}

.u-fs29 {
  font-size: 46.4px !important;
  font-size: 2.9rem !important;
}

.u-fs30 {
  font-size: 48px !important;
  font-size: 3rem !important;
}

.u-fs31 {
  font-size: 49.6px !important;
  font-size: 3.1rem !important;
}

.u-fs32 {
  font-size: 51.2px !important;
  font-size: 3.2rem !important;
}

.u-fs33 {
  font-size: 52.8px !important;
  font-size: 3.3rem !important;
}

.u-fs34 {
  font-size: 54.4px !important;
  font-size: 3.4rem !important;
}

.u-fs35 {
  font-size: 56px !important;
  font-size: 3.5rem !important;
}

.u-fsXlarge {
  font-size: 30px !important;
}

.u-fsLarge {
  font-size: 20px !important;
}

.u-fsMedium {
  font-size: 18px !important;
}

.u-fsSmall {
  font-size: 14px !important;
}

.u-fsXsmall {
  font-size: 13px !important;
}

@media screen and (max-width: 768px) {
  .u-fsXlarge {
    font-size: 24px !important;
  }

  .u-fsLarge {
    font-size: 18px !important;
  }

  .u-fsMedium {
    font-size: 16px !important;
  }

  .u-fsSmall {
    font-size: 14px !important;
  }

  .u-fsXsmall {
    font-size: 11px !important;
  }
}

.u-textbold {
  font-weight: 700 !important;
}

.u-textmedium {
  font-weight: 500 !important;
}

.u-textnormal {
  font-weight: 400 !important;
}

.u-textthin {
  font-weight: 200 !important;
}

.u-emp {
  color: #cc0000 !important;
}

.u-indent {
  text-indent: 1em !important;
}

.u-clear {
  clear: both !important;
}

.u-ac {
  text-align: center !important;
}

.u-ar {
  text-align: right !important;
}

.u-al {
  text-align: left !important;
}

.u-vm {
  vertical-align: middle !important;
}

.u-vt {
  vertical-align: top !important;
}

.u-vb {
  vertical-align: bottom !important;
}

@media screen and (min-width: 1025px) {
  .u-ac-pc {
    text-align: center !important;
  }

  .u-ar-pc {
    text-align: right !important;
  }

  .u-al-pc {
    text-align: left !important;
  }

  .u-vm-pc {
    vertical-align: middle !important;
  }

  .u-vt-pc {
    vertical-align: top !important;
  }

  .u-vb-pc {
    vertical-align: bottom !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .u-ac-tab {
    text-align: center !important;
  }

  .u-ar-tab {
    text-align: right !important;
  }

  .u-al-tab {
    text-align: left !important;
  }

  .u-vm-tab {
    vertical-align: middle !important;
  }

  .u-vt-tab {
    vertical-align: top !important;
  }

  .u-vb-tab {
    vertical-align: bottom !important;
  }
}

@media screen and (max-width: 768px) {
  .u-ac-sp {
    text-align: center !important;
  }

  .u-ar-sp {
    text-align: right !important;
  }

  .u-al-sp {
    text-align: left !important;
  }

  .u-vm-sp {
    vertical-align: middle !important;
  }

  .u-vt-sp {
    vertical-align: top !important;
  }

  .u-vb-sp {
    vertical-align: bottom !important;
  }
}

.u-sp,
.u-tab {
  display: none !important;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .u-pc {
    display: none !important;
  }

  .u-tab {
    display: inherit !important;
  }
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }

  .u-sp {
    display: inherit !important;
  }
}

.u-linesMargin {
  margin-top: 1.8em;
}

.u-linesMargin.-oneLine {
  margin-top: 1em;
}

.splide__pagination {
  display: none;
}

@media screen and (max-width: 768px) {
  .splide__arrow {
    height: 3em;
    width: 3em;
  }

  #copilot .splide__arrow.splide__arrow--next {
    left: 0;
  }

  .splide__arrow--prev {
    right: 1em;
  }

  .splide__pagination {
    display: none;
  }

  #copilot .caution {
    padding-top: 30px;
  }

  #copilot .intel_npuBoxTitle {
    padding-bottom: 15px;
  }

  #copilot .intel_npuBoxText {
    line-height: 23px;
  }

  #copilot .sectionTitleSub {
    padding-bottom: 10px;
  }

}

.u-list-disc>li {
  padding-left: 1em;
  text-indent: -1em;
}

.u-list-disc>li::before {
  content: "・";
}

.u-list-disc>li * {
  text-indent: 0;
}

.u-list-disc>li h5,
.u-list-disc>li h6 {
  display: inline;
}

/*****************************************************
  Print
*****************************************************/
/*# sourceMappingURL=master.css.map */