/**/
/* reboot */
/**/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

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

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  list-style: none;
  padding-left: 0;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

/*dt {
  font-weight: 700;
}*/

dd {
  /*margin-bottom: .5rem;*/
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  /*margin-bottom: 0.5rem;*/
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

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

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

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

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

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/**/
/* grid */
/**/
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

/*
**  マージン class
*/
.m-0 {margin: 0;}
.mtb-0, .mt-0 {margin-top: 0;}
.mrl-0, .mr-0 {margin-right: 0;}
.mtb-0, .mb-0 {margin-bottom: 0;}
.mrl-0, .ml-0 {margin-left: 0;}

/*
**  マージン class [px]
*/
.m-5px {margin: 5px;}
.mtb-5px, .mt-5px {margin-top: 5px;}
.mrl-5px, .mr-5px {margin-right: 5px;}
.mtb-5px, .mb-5px {margin-bottom: 5px;}
.mrl-5px, .ml-5px {margin-left: 5px;}
.m-10px {margin: 10px;}
.mtb-10px, .mt-10px {margin-top: 10px;}
.mrl-10px, .mr-10px {margin-right: 10px;}
.mtb-10px, .mb-10px {margin-bottom: 10px;}
.mrl-10px, .ml-10px {margin-left: 10px;}
.m-15px {margin: 15px;}
.mtb-15px, .mt-15px {margin-top: 15px;}
.mrl-15px, .mr-15px {margin-right: 15px;}
.mtb-15px, .mb-15px {margin-bottom: 15px;}
.mrl-15px, .ml-15px {margin-left: 15px;}
.m-20px {margin: 20px;}
.mtb-20px, .mt-20px {margin-top: 20px;}
.mrl-20px, .mr-20px {margin-right: 20px;}
.mtb-20px, .mb-20px {margin-bottom: 20px;}
.mrl-20px, .ml-20px {margin-left: 20px;}
.m-25px {margin: 25px;}
.mtb-25px, .mt-25px {margin-top: 25px;}
.mrl-25px, .mr-25px {margin-right: 25px;}
.mtb-25px, .mb-25px {margin-bottom: 25px;}
.mrl-25px, .ml-25px {margin-left: 25px;}
.m-30px {margin: 30px;}
.mtb-30px, .mt-30px {margin-top: 30px;}
.mrl-30px, .mr-30px {margin-right: 30px;}
.mtb-30px, .mb-30px {margin-bottom: 30px;}
.mrl-30px, .ml-30px {margin-left: 30px;}
.m-35px {margin: 35px;}
.mtb-35px, .mt-35px {margin-top: 35px;}
.mrl-35px, .mr-35px {margin-right: 35px;}
.mtb-35px, .mb-35px {margin-bottom: 35px;}
.mrl-35px, .ml-35px {margin-left: 35px;}
.m-40px {margin: 40px;}
.mtb-40px, .mt-40px {margin-top: 40px;}
.mrl-40px, .mr-40px {margin-right: 40px;}
.mtb-40px, .mb-40px {margin-bottom: 40px;}
.mrl-40px, .ml-40px {margin-left: 40px;}
.m-45px {margin: 45px;}
.mtb-45px, .mt-45px {margin-top: 45px;}
.mrl-45px, .mr-45px {margin-right: 45px;}
.mtb-45px, .mb-45px {margin-bottom: 45px;}
.mrl-45px, .ml-45px {margin-left: 45px;}
.m-50px {margin: 50px;}
.mtb-50px, .mt-50px {margin-top: 50px;}
.mrl-50px, .mr-50px {margin-right: 50px;}
.mtb-50px, .mb-50px {margin-bottom: 50px;}
.mrl-50px, .ml-50px {margin-left: 50px;}
.m-55px {margin: 55px;}
.mtb-55px, .mt-55px {margin-top: 55px;}
.mrl-55px, .mr-55px {margin-right: 55px;}
.mtb-55px, .mb-55px {margin-bottom: 55px;}
.mrl-55px, .ml-55px {margin-left: 55px;}
.m-60px {margin: 60px;}
.mtb-60px, .mt-60px {margin-top: 60px;}
.mrl-60px, .mr-60px {margin-right: 60px;}
.mtb-60px, .mb-60px {margin-bottom: 60px;}
.mrl-60px, .ml-60px {margin-left: 60px;}
.m-65px {margin: 65px;}
.mtb-65px, .mt-65px {margin-top: 65px;}
.mrl-65px, .mr-65px {margin-right: 65px;}
.mtb-65px, .mb-65px {margin-bottom: 65px;}
.mrl-65px, .ml-65px {margin-left: 65px;}
.m-70px {margin: 70px;}
.mtb-70px, .mt-70px {margin-top: 70px;}
.mrl-70px, .mr-70px {margin-right: 70px;}
.mtb-70px, .mb-70px {margin-bottom: 70px;}
.mrl-70px, .ml-70px {margin-left: 70px;}
.m-75px {margin: 75px;}
.mtb-75px, .mt-75px {margin-top: 75px;}
.mrl-75px, .mr-75px {margin-right: 75px;}
.mtb-75px, .mb-75px {margin-bottom: 75px;}
.mrl-75px, .ml-75px {margin-left: 75px;}
.m-80px {margin: 80px;}
.mtb-80px, .mt-80px {margin-top: 80px;}
.mrl-80px, .mr-80px {margin-right: 80px;}
.mtb-80px, .mb-80px {margin-bottom: 80px;}
.mrl-80px, .ml-80px {margin-left: 80px;}
.m-85px {margin: 85px;}
.mtb-85px, .mt-85px {margin-top: 85px;}
.mrl-85px, .mr-85px {margin-right: 85px;}
.mtb-85px, .mb-85px {margin-bottom: 85px;}
.mrl-85px, .ml-85px {margin-left: 85px;}
.m-90px {margin: 90px;}
.mtb-90px, .mt-90px {margin-top: 90px;}
.mrl-90px, .mr-90px {margin-right: 90px;}
.mtb-90px, .mb-90px {margin-bottom: 90px;}
.mrl-90px, .ml-90px {margin-left: 90px;}
.m-95px {margin: 95px;}
.mtb-95px, .mt-95px {margin-top: 95px;}
.mrl-95px, .mr-95px {margin-right: 95px;}
.mtb-95px, .mb-95px {margin-bottom: 95px;}
.mrl-95px, .ml-95px {margin-left: 95px;}
.m-100px {margin: 100px;}
.mtb-100px, .mt-100px {margin-top: 100px;}
.mrl-100px, .mr-100px {margin-right: 100px;}
.mtb-100px, .mb-100px {margin-bottom: 100px;}
.mrl-100px, .ml-100px {margin-left: 100px;}

/*
**  マージン class [em]
**  ハイフンの後に続く[数値]は1文字分を100とした場合の相対的な数値です。
*/
.m-25em {margin: 0.25em;}
.mtb-25em, .mt-25em {margin-top: 0.25em;}
.mrl-25em, .mr-25em {margin-right: 0.25em;}
.mtb-25em, .mb-25em {margin-bottom: 0.25em;}
.mrl-25em, .ml-25em {margin-left: 0.25em;}
.m-50em {margin: 0.5em;}
.mtb-50em, .mt-50em {margin-top: 0.5em;}
.mrl-50em, .mr-50em {margin-right: 0.5em;}
.mtb-50em, .mb-50em {margin-bottom: 0.5em;}
.mrl-50em, .ml-50em {margin-left: 0.5em;}
.m-75em {margin: 0.75em;}
.mtb-75em, .mt-75em {margin-top: 0.75em;}
.mrl-75em, .mr-75em {margin-right: 0.75em;}
.mtb-75em, .mb-75em {margin-bottom: 0.75em;}
.mrl-75em, .ml-75em {margin-left: 0.75em;}
.m-100em {margin: 1em;}
.mtb-100em, .mt-100em {margin-top: 1em;}
.mrl-100em, .mr-100em {margin-right: 1em;}
.mtb-100em, .mb-100em {margin-bottom: 1em;}
.mrl-100em, .ml-100em {margin-left: 1em;}
.m-125em {margin: 1.25em;}
.mtb-125em, .mt-125em {margin-top: 1.25em;}
.mrl-125em, .mr-125em {margin-right: 1.25em;}
.mtb-125em, .mb-125em {margin-bottom: 1.25em;}
.mrl-125em, .ml-125em {margin-left: 1.25em;}
.m-150em {margin: 1.5em;}
.mtb-150em, .mt-150em {margin-top: 1.5em;}
.mrl-150em, .mr-150em {margin-right: 1.5em;}
.mtb-150em, .mb-150em {margin-bottom: 1.5em;}
.mrl-150em, .ml-150em {margin-left: 1.5em;}
.m-200em {margin: 2em;}
.mtb-200em, .mt-200em {margin-top: 2em;}
.mrl-200em, .mr-200em {margin-right: 2em;}
.mtb-200em, .mb-200em {margin-bottom: 2em;}
.mrl-200em, .ml-200em {margin-left: 2em;}
.m-250em {margin: 2.5em;}
.mtb-250em, .mt-250em {margin-top: 2.5em;}
.mrl-250em, .mr-250em {margin-right: 2.5em;}
.mtb-250em, .mb-250em {margin-bottom: 2.5em;}
.mrl-250em, .ml-250em {margin-left: 2.5em;}
.m-300em {margin: 3em;}
.mtb-300em, .mt-300em {margin-top: 3em;}
.mrl-300em, .mr-300em {margin-right: 3em;}
.mtb-300em, .mb-300em {margin-bottom: 3em;}
.mrl-300em, .ml-300em {margin-left: 3em;}
.m-350em {margin: 3.5em;}
.mtb-350em, .mt-350em {margin-top: 3.5em;}
.mrl-350em, .mr-350em {margin-right: 3.5em;}
.mtb-350em, .mb-350em {margin-bottom: 3.5em;}
.mrl-350em, .ml-350em {margin-left: 3.5em;}
.m-400em {margin: 4em;}
.mtb-400em, .mt-400em {margin-top: 4em;}
.mrl-400em, .mr-400em {margin-right: 4em;}
.mtb-400em, .mb-400em {margin-bottom: 4em;}
.mrl-400em, .ml-400em {margin-left: 4em;}
.m-450em {margin: 4.5em;}
.mtb-450em, .mt-450em {margin-top: 4.5em;}
.mrl-450em, .mr-450em {margin-right: 4.5em;}
.mtb-450em, .mb-450em {margin-bottom: 4.5em;}
.mrl-450em, .ml-450em {margin-left: 4.5em;}
.m-500em {margin: 5em;}
.mtb-500em, .mt-500em {margin-top: 5em;}
.mrl-500em, .mr-500em {margin-right: 5em;}
.mtb-500em, .mb-500em {margin-bottom: 5em;}
.mrl-500em, .ml-500em {margin-left: 5em;}
.m-550em {margin: 5.5em;}
.mtb-550em, .mt-550em {margin-top: 5.5em;}
.mrl-550em, .mr-550em {margin-right: 5.5em;}
.mtb-550em, .mb-550em {margin-bottom: 5.5em;}
.mrl-550em, .ml-550em {margin-left: 5.5em;}
.m-600em {margin: 6em;}
.mtb-600em, .mt-600em {margin-top: 6em;}
.mrl-600em, .mr-600em {margin-right: 6em;}
.mtb-600em, .mb-600em {margin-bottom: 6em;}
.mrl-600em, .ml-600em {margin-left: 6em;}

@media (min-width: 768px) {
  /*
  **  マージン class
  */
  .m-md-0 {margin: 0;}
  .mtb-md-0, .mt-md-0 {margin-top: 0;}
  .mrl-md-0, .mr-md-0 {margin-right: 0;}
  .mtb-md-0, .mb-md-0 {margin-bottom: 0;}
  .mrl-md-0, .ml-md-0 {margin-left: 0;}

  /*
  **  マージン class [px]
  */
  .m-md-5px {margin: 5px;}
  .mtb-md-5px, .mt-md-5px {margin-top: 5px;}
  .mrl-md-5px, .mr-md-5px {margin-right: 5px;}
  .mtb-md-5px, .mb-md-5px {margin-bottom: 5px;}
  .mrl-md-5px, .ml-md-5px {margin-left: 5px;}
  .m-md-10px {margin: 10px;}
  .mtb-md-10px, .mt-md-10px {margin-top: 10px;}
  .mrl-md-10px, .mr-md-10px {margin-right: 10px;}
  .mtb-md-10px, .mb-md-10px {margin-bottom: 10px;}
  .mrl-md-10px, .ml-md-10px {margin-left: 10px;}
  .m-md-15px {margin: 15px;}
  .mtb-md-15px, .mt-md-15px {margin-top: 15px;}
  .mrl-md-15px, .mr-md-15px {margin-right: 15px;}
  .mtb-md-15px, .mb-md-15px {margin-bottom: 15px;}
  .mrl-md-15px, .ml-md-15px {margin-left: 15px;}
  .m-md-20px {margin: 20px;}
  .mtb-md-20px, .mt-md-20px {margin-top: 20px;}
  .mrl-md-20px, .mr-md-20px {margin-right: 20px;}
  .mtb-md-20px, .mb-md-20px {margin-bottom: 20px;}
  .mrl-md-20px, .ml-md-20px {margin-left: 20px;}
  .m-md-25px {margin: 25px;}
  .mtb-md-25px, .mt-md-25px {margin-top: 25px;}
  .mrl-md-25px, .mr-md-25px {margin-right: 25px;}
  .mtb-md-25px, .mb-md-25px {margin-bottom: 25px;}
  .mrl-md-25px, .ml-md-25px {margin-left: 25px;}
  .m-md-30px {margin: 30px;}
  .mtb-md-30px, .mt-md-30px {margin-top: 30px;}
  .mrl-md-30px, .mr-md-30px {margin-right: 30px;}
  .mtb-md-30px, .mb-md-30px {margin-bottom: 30px;}
  .mrl-md-30px, .ml-md-30px {margin-left: 30px;}
  .m-md-35px {margin: 35px;}
  .mtb-md-35px, .mt-md-35px {margin-top: 35px;}
  .mrl-md-35px, .mr-md-35px {margin-right: 35px;}
  .mtb-md-35px, .mb-md-35px {margin-bottom: 35px;}
  .mrl-md-35px, .ml-md-35px {margin-left: 35px;}
  .m-md-40px {margin: 40px;}
  .mtb-md-40px, .mt-md-40px {margin-top: 40px;}
  .mrl-md-40px, .mr-md-40px {margin-right: 40px;}
  .mtb-md-40px, .mb-md-40px {margin-bottom: 40px;}
  .mrl-md-40px, .ml-md-40px {margin-left: 40px;}
  .m-md-45px {margin: 45px;}
  .mtb-md-45px, .mt-md-45px {margin-top: 45px;}
  .mrl-md-45px, .mr-md-45px {margin-right: 45px;}
  .mtb-md-45px, .mb-md-45px {margin-bottom: 45px;}
  .mrl-md-45px, .ml-md-45px {margin-left: 45px;}
  .m-md-50px {margin: 50px;}
  .mtb-md-50px, .mt-md-50px {margin-top: 50px;}
  .mrl-md-50px, .mr-md-50px {margin-right: 50px;}
  .mtb-md-50px, .mb-md-50px {margin-bottom: 50px;}
  .mrl-md-50px, .ml-md-50px {margin-left: 50px;}
  .m-md-55px {margin: 55px;}
  .mtb-md-55px, .mt-md-55px {margin-top: 55px;}
  .mrl-md-55px, .mr-md-55px {margin-right: 55px;}
  .mtb-md-55px, .mb-md-55px {margin-bottom: 55px;}
  .mrl-md-55px, .ml-md-55px {margin-left: 55px;}
  .m-md-60px {margin: 60px;}
  .mtb-md-60px, .mt-md-60px {margin-top: 60px;}
  .mrl-md-60px, .mr-md-60px {margin-right: 60px;}
  .mtb-md-60px, .mb-md-60px {margin-bottom: 60px;}
  .mrl-md-60px, .ml-md-60px {margin-left: 60px;}
  .m-md-65px {margin: 65px;}
  .mtb-md-65px, .mt-md-65px {margin-top: 65px;}
  .mrl-md-65px, .mr-md-65px {margin-right: 65px;}
  .mtb-md-65px, .mb-md-65px {margin-bottom: 65px;}
  .mrl-md-65px, .ml-md-65px {margin-left: 65px;}
  .m-md-70px {margin: 70px;}
  .mtb-md-70px, .mt-md-70px {margin-top: 70px;}
  .mrl-md-70px, .mr-md-70px {margin-right: 70px;}
  .mtb-md-70px, .mb-md-70px {margin-bottom: 70px;}
  .mrl-md-70px, .ml-md-70px {margin-left: 70px;}
  .m-md-75px {margin: 75px;}
  .mtb-md-75px, .mt-md-75px {margin-top: 75px;}
  .mrl-md-75px, .mr-md-75px {margin-right: 75px;}
  .mtb-md-75px, .mb-md-75px {margin-bottom: 75px;}
  .mrl-md-75px, .ml-md-75px {margin-left: 75px;}
  .m-md-80px {margin: 80px;}
  .mtb-md-80px, .mt-md-80px {margin-top: 80px;}
  .mrl-md-80px, .mr-md-80px {margin-right: 80px;}
  .mtb-md-80px, .mb-md-80px {margin-bottom: 80px;}
  .mrl-md-80px, .ml-md-80px {margin-left: 80px;}
  .m-md-85px {margin: 85px;}
  .mtb-md-85px, .mt-md-85px {margin-top: 85px;}
  .mrl-md-85px, .mr-md-85px {margin-right: 85px;}
  .mtb-md-85px, .mb-md-85px {margin-bottom: 85px;}
  .mrl-md-85px, .ml-md-85px {margin-left: 85px;}
  .m-md-90px {margin: 90px;}
  .mtb-md-90px, .mt-md-90px {margin-top: 90px;}
  .mrl-md-90px, .mr-md-90px {margin-right: 90px;}
  .mtb-md-90px, .mb-md-90px {margin-bottom: 90px;}
  .mrl-md-90px, .ml-md-90px {margin-left: 90px;}
  .m-md-95px {margin: 95px;}
  .mtb-md-95px, .mt-md-95px {margin-top: 95px;}
  .mrl-md-95px, .mr-md-95px {margin-right: 95px;}
  .mtb-md-95px, .mb-md-95px {margin-bottom: 95px;}
  .mrl-md-95px, .ml-md-95px {margin-left: 95px;}
  .m-md-100px {margin: 100px;}
  .mtb-md-100px, .mt-md-100px {margin-top: 100px;}
  .mrl-md-100px, .mr-md-100px {margin-right: 100px;}
  .mtb-md-100px, .mb-md-100px {margin-bottom: 100px;}
  .mrl-md-100px, .ml-md-100px {margin-left: 100px;}

  /*
  **  マージン class [em]
  */
  .m-md-25em {margin: 0.25em;}
  .mtb-md-25em, .mt-md-25em{margin-top: 0.25em;}
  .mrl-md-25em, .mr-md-25em{margin-right: 0.25em;}
  .mtb-md-25em, .mb-md-25em{margin-bottom: 0.25em;}
  .mrl-md-25em, .ml-md-25em{margin-left: 0.25em;}
  .m-md-50em {margin: 0.5em;}
  .mtb-md-50em, .mt-md-50em {margin-top: 0.5em;}
  .mrl-md-50em, .mr-md-50em {margin-right: 0.5em;}
  .mtb-md-50em, .mb-md-50em {margin-bottom: 0.5em;}
  .mrl-md-50em, .ml-md-50em {margin-left: 0.5em;}
  .m-md-75em {margin: 0.75em;}
  .mtb-md-75em, .mt-md-75em {margin-top: 0.75em;}
  .mrl-md-75em, .mr-md-75em {margin-right: 0.75em;}
  .mtb-md-75em, .mb-md-75em {margin-bottom: 0.75em;}
  .mrl-md-75em, .ml-md-75em {margin-left: 0.75em;}
  .m-md-100em {margin: 1em;}
  .mtb-md-100em, .mt-md-100em {margin-top: 1em;}
  .mrl-md-100em, .mr-md-100em {margin-right: 1em;}
  .mtb-md-100em, .mb-md-100em {margin-bottom: 1em;}
  .mrl-md-100em, .ml-md-100em {margin-left: 1em;}
  .m-md-125em {margin: 1.25em;}
  .mtb-md-125em, .mt-md-125em {margin-top: 1.25em;}
  .mrl-md-125em, .mr-md-125em {margin-right: 1.25em;}
  .mtb-md-125em, .mb-md-125em {margin-bottom: 1.25em;}
  .mrl-md-125em, .ml-md-125em {margin-left: 1.25em;}
  .m-md-150em {margin: 1.5em;}
  .mtb-md-150em, .mt-md-150em {margin-top: 1.5em;}
  .mrl-md-150em, .mr-md-150em {margin-right: 1.5em;}
  .mtb-md-150em, .mb-md-150em {margin-bottom: 1.5em;}
  .mrl-md-150em, .ml-md-150em {margin-left: 1.5em;}
  .m-md-200em {margin: 2em;}
  .mtb-md-200em, .mt-md-200em {margin-top: 2em;}
  .mrl-md-200em, .mr-md-200em {margin-right: 2em;}
  .mtb-md-200em, .mb-md-200em {margin-bottom: 2em;}
  .mrl-md-200em, .ml-md-200em {margin-left: 2em;}
  .m-md-250em {margin: 2.5em;}
  .mtb-md-250em, .mt-md-250em {margin-top: 2.5em;}
  .mrl-md-250em, .mr-md-250em {margin-right: 2.5em;}
  .mtb-md-250em, .mb-md-250em {margin-bottom: 2.5em;}
  .mrl-md-250em, .ml-md-250em {margin-left: 2.5em;}
  .m-md-300em {margin: 3em;}
  .mtb-md-300em, .mt-md-300em {margin-top: 3em;}
  .mrl-md-300em, .mr-md-300em {margin-right: 3em;}
  .mtb-md-300em, .mb-md-300em {margin-bottom: 3em;}
  .mrl-md-300em, .ml-md-300em {margin-left: 3em;}
  .m-md-350em {margin: 3.5em;}
  .mtb-md-350em, .mt-md-350em {margin-top: 3.5em;}
  .mrl-md-350em, .mr-md-350em {margin-right: 3.5em;}
  .mtb-md-350em, .mb-md-350em {margin-bottom: 3.5em;}
  .mrl-md-350em, .ml-md-350em {margin-left: 3.5em;}
  .m-md-400em {margin: 4em;}
  .mtb-md-400em, .mt-md-400em {margin-top: 4em;}
  .mrl-md-400em, .mr-md-400em {margin-right: 4em;}
  .mtb-md-400em, .mb-md-400em {margin-bottom: 4em;}
  .mrl-md-400em, .ml-md-400em {margin-left: 4em;}
  .m-md-450em {margin: 4.5em;}
  .mtb-md-450em, .mt-md-450em {margin-top: 4.5em;}
  .mrl-md-450em, .mr-md-450em {margin-right: 4.5em;}
  .mtb-md-450em, .mb-md-450em {margin-bottom: 4.5em;}
  .mrl-md-450em, .ml-md-450em {margin-left: 4.5em;}
  .m-md-500em {margin: 5em;}
  .mtb-md-500em, .mt-md-500em {margin-top: 5em;}
  .mrl-md-500em, .mr-md-500em {margin-right: 5em;}
  .mtb-md-500em, .mb-md-500em {margin-bottom: 5em;}
  .mrl-md-500em, .ml-md-500em {margin-left: 5em;}
  .m-md-550em {margin: 5.5em;}
  .mtb-md-550em, .mt-md-550em {margin-top: 5.5em;}
  .mrl-md-550em, .mr-md-550em {margin-right: 5.5em;}
  .mtb-md-550em, .mb-md-550em {margin-bottom: 5.5em;}
  .mrl-md-550em, .ml-md-550em {margin-left: 5.5em;}
  .m-md-600em {margin: 6em;}
  .mtb-md-600em, .mt-md-600em {margin-top: 6em;}
  .mrl-md-600em, .mr-md-600em {margin-right: 6em;}
  .mtb-md-600em, .mb-md-600em {margin-bottom: 6em;}
  .mrl-md-600em, .ml-md-600em {margin-left: 6em;}
}

/*
**  パディング class
*/
.p-0 {padding: 0;}
.ptb-0, .pt-0 {padding-top: 0;}
.prl-0, .pr-0 {padding-right: 0;}
.ptb-0, .pb-0 {padding-bottom: 0;}
.prl-0, .pl-0 {padding-left: 0;}

/*
**  パディング class [px]
*/
.p-5px {padding: 5px;}
.ptb-5px, .pt-5px {padding-top: 5px;}
.prl-5px, .pr-5px {padding-right: 5px;}
.ptb-5px, .pb-5px {padding-bottom: 5px;}
.prl-5px, .pl-5px {padding-left: 5px;}
.p-10px {padding: 10px;}
.ptb-10px, .pt-10px {padding-top: 10px;}
.prl-10px, .pr-10px {padding-right: 10px;}
.ptb-10px, .pb-10px {padding-bottom: 10px;}
.prl-10px, .pl-10px {padding-left: 10px;}
.p-15px {padding: 15px;}
.ptb-15px, .pt-15px {padding-top: 15px;}
.prl-15px, .pr-15px {padding-right: 15px;}
.ptb-15px, .pb-15px {padding-bottom: 15px;}
.prl-15px, .pl-15px {padding-left: 15px;}
.p-20px {padding: 20px;}
.ptb-20px, .pt-20px {padding-top: 20px;}
.prl-20px, .pr-20px {padding-right: 20px;}
.ptb-20px, .pb-20px {padding-bottom: 20px;}
.prl-20px, .pl-20px {padding-left: 20px;}
.p-25px {padding: 25px;}
.ptb-25px, .pt-25px {padding-top: 25px;}
.prl-25px, .pr-25px {padding-right: 25px;}
.ptb-25px, .pb-25px {padding-bottom: 25px;}
.prl-25px, .pl-25px {padding-left: 25px;}
.p-30px {padding: 30px;}
.ptb-30px, .pt-30px {padding-top: 30px;}
.prl-30px, .pr-30px {padding-right: 30px;}
.ptb-30px, .pb-30px {padding-bottom: 30px;}
.prl-30px, .pl-30px {padding-left: 30px;}
.p-35px {padding: 35px;}
.ptb-35px, .pt-35px {padding-top: 35px;}
.prl-35px, .pr-35px {padding-right: 35px;}
.ptb-35px, .pb-35px {padding-bottom: 35px;}
.prl-35px, .pl-35px {padding-left: 35px;}
.p-40px {padding: 40px;}
.ptb-40px, .pt-40px {padding-top: 40px;}
.prl-40px, .pr-40px {padding-right: 40px;}
.ptb-40px, .pb-40px {padding-bottom: 40px;}
.prl-40px, .pl-40px {padding-left: 40px;}
.p-45px {padding: 45px;}
.ptb-45px, .pt-45px {padding-top: 45px;}
.prl-45px, .pr-45px {padding-right: 45px;}
.ptb-45px, .pb-45px {padding-bottom: 45px;}
.prl-45px, .pl-45px {padding-left: 45px;}
.p-50px {padding: 50px;}
.ptb-50px, .pt-50px {padding-top: 50px;}
.prl-50px, .pr-50px {padding-right: 50px;}
.ptb-50px, .pb-50px {padding-bottom: 50px;}
.prl-50px, .pl-50px {padding-left: 50px;}
.p-55px {padding: 55px;}
.ptb-55px, .pt-55px {padding-top: 55px;}
.prl-55px, .pr-55px {padding-right: 55px;}
.ptb-55px, .pb-55px {padding-bottom: 55px;}
.prl-55px, .pl-55px {padding-left: 55px;}
.p-60px {padding: 60px;}
.ptb-60px, .pt-60px {padding-top: 60px;}
.prl-60px, .pr-60px {padding-right: 60px;}
.ptb-60px, .pb-60px {padding-bottom: 60px;}
.prl-60px, .pl-60px {padding-left: 60px;}
.p-65px {padding: 65px;}
.ptb-65px, .pt-65px {padding-top: 65px;}
.prl-65px, .pr-65px {padding-right: 65px;}
.ptb-65px, .pb-65px {padding-bottom: 65px;}
.prl-65px, .pl-65px {padding-left: 65px;}
.p-70px {padding: 70px;}
.ptb-70px, .pt-70px {padding-top: 70px;}
.prl-70px, .pr-70px {padding-right: 70px;}
.ptb-70px, .pb-70px {padding-bottom: 70px;}
.prl-70px, .pl-70px {padding-left: 70px;}
.p-75px {padding: 75px;}
.ptb-75px, .pt-75px {padding-top: 75px;}
.prl-75px, .pr-75px {padding-right: 75px;}
.ptb-75px, .pb-75px {padding-bottom: 75px;}
.prl-75px, .pl-75px {padding-left: 75px;}
.p-80px {padding: 80px;}
.ptb-80px, .pt-80px {padding-top: 80px;}
.prl-80px, .pr-80px {padding-right: 80px;}
.ptb-80px, .pb-80px {padding-bottom: 80px;}
.prl-80px, .pl-80px {padding-left: 80px;}
.p-85px {padding: 85px;}
.ptb-85px, .pt-85px {padding-top: 85px;}
.prl-85px, .pr-85px {padding-right: 85px;}
.ptb-85px, .pb-85px {padding-bottom: 85px;}
.prl-85px, .pl-85px {padding-left: 85px;}
.p-90px {padding: 90px;}
.ptb-90px, .pt-90px {padding-top: 90px;}
.prl-90px, .pr-90px {padding-right: 90px;}
.ptb-90px, .pb-90px {padding-bottom: 90px;}
.prl-90px, .pl-90px {padding-left: 90px;}
.p-95px {padding: 95px;}
.ptb-95px, .pt-95px {padding-top: 95px;}
.prl-95px, .pr-95px {padding-right: 95px;}
.ptb-95px, .pb-95px {padding-bottom: 95px;}
.prl-95px, .pl-95px {padding-left: 95px;}
.p-100px {padding: 100px;}
.ptb-100px, .pt-100px {padding-top: 100px;}
.prl-100px, .pr-100px {padding-right: 100px;}
.ptb-100px, .pb-100px {padding-bottom: 100px;}
.prl-100px, .pl-100px {padding-left: 100px;}

/*
**  パディング class [em]
**  ハイフンの後に続く[数値]は1文字分を100とした場合の相対的な数値です。
*/
.p-0em {padding: 0;}
.ptb-0em, .pt-0em {padding-top: 0;}
.prl-0em, .pr-0em {padding-right: 0;}
.ptb-0em, .pb-0em {padding-bottom: 0;}
.prl-0em, .pl-0em {padding-left: 0;}
.p-25em {padding: 0.25em;}
.ptb-25em, .pt-25em {padding-top: 0.25em;}
.prl-25em, .pr-25em {padding-right: 0.25em;}
.ptb-25em, .pb-25em {padding-bottom: 0.25em;}
.prl-25em, .pl-25em {padding-left: 0.25em;}
.p-50em {padding: 0.5em;}
.ptb-50em, .pt-50em {padding-top: 0.5em;}
.prl-50em, .pr-50em {padding-right: 0.5em;}
.ptb-50em, .pb-50em {padding-bottom: 0.5em;}
.prl-50em, .pl-50em {padding-left: 0.5em;}
.p-75em {padding: 0.75em;}
.ptb-75em, .pt-75em {padding-top: 0.75em;}
.prl-75em, .pr-75em {padding-right: 0.75em;}
.ptb-75em, .pb-75em {padding-bottom: 0.75em;}
.prl-75em, .pl-75em {padding-left: 0.75em;}
.p-100em {padding: 1em;}
.ptb-100em, .pt-100em {padding-top: 1em;}
.prl-100em, .pr-100em {padding-right: 1em;}
.ptb-100em, .pb-100em {padding-bottom: 1em;}
.prl-100em, .pl-100em {padding-left: 1em;}
.p-125em {padding: 1.25em;}
.ptb-125em, .pt-125em {padding-top: 1.25em;}
.prl-125em, .pr-125em {padding-right: 1.25em;}
.ptb-125em, .pb-125em {padding-bottom: 1.25em;}
.prl-125em, .pl-125em {padding-left: 1.25em;}
.p-150em {padding: 1.5em;}
.ptb-150em, .pt-150em {padding-top: 1.5em;}
.prl-150em, .pr-150em {padding-right: 1.5em;}
.ptb-150em, .pb-150em {padding-bottom: 1.5em;}
.prl-150em, .pl-150em {padding-left: 1.5em;}
.p-200em {padding: 2em;}
.ptb-200em, .pt-200em {padding-top: 2em;}
.prl-200em, .pr-200em {padding-right: 2em;}
.ptb-200em, .pb-200em {padding-bottom: 2em;}
.prl-200em, .pl-200em {padding-left: 2em;}
.p-250em {padding: 2.5em;}
.ptb-250em, .pt-250em {padding-top: 2.5em;}
.prl-250em, .pr-250em {padding-right: 2.5em;}
.ptb-250em, .pb-250em {padding-bottom: 2.5em;}
.prl-250em, .pl-250em {padding-left: 2.5em;}
.p-300em {padding: 3em;}
.ptb-300em, .pt-300em {padding-top: 3em;}
.prl-300em, .pr-300em {padding-right: 3em;}
.ptb-300em, .pb-300em {padding-bottom: 3em;}
.prl-300em, .pl-300em {padding-left: 3em;}
.p-350em {padding: 3.5em;}
.ptb-350em, .pt-350em {padding-top: 3.5em;}
.prl-350em, .pr-350em {padding-right: 3.5em;}
.ptb-350em, .pb-350em {padding-bottom: 3.5em;}
.prl-350em, .pl-350em {padding-left: 3.5em;}
.p-400em {padding: 4em;}
.ptb-400em, .pt-400em {padding-top: 4em;}
.prl-400em, .pr-400em {padding-right: 4em;}
.ptb-400em, .pb-400em {padding-bottom: 4em;}
.prl-400em, .pl-400em {padding-left: 4em;}
.p-450em {padding: 4.5em;}
.ptb-450em, .pt-450em {padding-top: 4.5em;}
.prl-450em, .pr-450em {padding-right: 4.5em;}
.ptb-450em, .pb-450em {padding-bottom: 4.5em;}
.prl-450em, .pl-450em {padding-left: 4.5em;}
.p-500em {padding: 5em;}
.ptb-500em, .pt-500em {padding-top: 5em;}
.prl-500em, .pr-500em {padding-right: 5em;}
.ptb-500em, .pb-500em {padding-bottom: 5em;}
.prl-500em, .pl-500em {padding-left: 5em;}
.p-550em {padding: 5.5em;}
.ptb-550em, .pt-550em {padding-top: 5.5em;}
.prl-550em, .pr-550em {padding-right: 5.5em;}
.ptb-550em, .pb-550em {padding-bottom: 5.5em;}
.prl-550em, .pl-550em {padding-left: 5.5em;}
.p-600em {padding: 6em;}
.ptb-600em, .pt-600em {padding-top: 6em;}
.prl-600em, .pr-600em {padding-right: 6em;}
.ptb-600em, .pb-600em {padding-bottom: 6em;}
.prl-600em, .pl-600em {padding-left: 6em;}

@media (min-width: 768px) {
  /*
  **  パディング class
  */
  .p-md-0 {padding: 0;}
  .ptb-md-0, .pt-md-0 {padding-top: 0;}
  .prl-md-0, .pr-md-0 {padding-right: 0;}
  .ptb-md-0, .pb-md-0 {padding-bottom: 0;}
  .prl-md-0, .pl-md-0 {padding-left: 0;}

  /*
  **  パディング class [px]
  */
  .p-md-5px {padding: 5px;}
  .ptb-md-5px, .pt-md-5px {padding-top: 5px;}
  .prl-md-5px, .pr-md-5px {padding-right: 5px;}
  .ptb-md-5px, .pb-md-5px {padding-bottom: 5px;}
  .prl-md-5px, .pl-md-5px {padding-left: 5px;}
  .p-md-10px {padding: 10px;}
  .ptb-md-10px, .pt-md-10px {padding-top: 10px;}
  .prl-md-10px, .pr-md-10px {padding-right: 10px;}
  .ptb-md-10px, .pb-md-10px {padding-bottom: 10px;}
  .prl-md-10px, .pl-md-10px {padding-left: 10px;}
  .p-md-15px {padding: 15px;}
  .ptb-md-15px, .pt-md-15px {padding-top: 15px;}
  .prl-md-15px, .pr-md-15px {padding-right: 15px;}
  .ptb-md-15px, .pb-md-15px {padding-bottom: 15px;}
  .prl-md-15px, .pl-md-15px {padding-left: 15px;}
  .p-md-20px {padding: 20px;}
  .ptb-md-20px, .pt-md-20px {padding-top: 20px;}
  .prl-md-20px, .pr-md-20px {padding-right: 20px;}
  .ptb-md-20px, .pb-md-20px {padding-bottom: 20px;}
  .prl-md-20px, .pl-md-20px {padding-left: 20px;}
  .p-md-25px {padding: 25px;}
  .ptb-md-25px, .pt-md-25px {padding-top: 25px;}
  .prl-md-25px, .pr-md-25px {padding-right: 25px;}
  .ptb-md-25px, .pb-md-25px {padding-bottom: 25px;}
  .prl-md-25px, .pl-md-25px {padding-left: 25px;}
  .p-md-30px {padding: 30px;}
  .ptb-md-30px, .pt-md-30px {padding-top: 30px;}
  .prl-md-30px, .pr-md-30px {padding-right: 30px;}
  .ptb-md-30px, .pb-md-30px {padding-bottom: 30px;}
  .prl-md-30px, .pl-md-30px {padding-left: 30px;}
  .p-md-35px {padding: 35px;}
  .ptb-md-35px, .pt-md-35px {padding-top: 35px;}
  .prl-md-35px, .pr-md-35px {padding-right: 35px;}
  .ptb-md-35px, .pb-md-35px {padding-bottom: 35px;}
  .prl-md-35px, .pl-md-35px {padding-left: 35px;}
  .p-md-40px {padding: 40px;}
  .ptb-md-40px, .pt-md-40px {padding-top: 40px;}
  .prl-md-40px, .pr-md-40px {padding-right: 40px;}
  .ptb-md-40px, .pb-md-40px {padding-bottom: 40px;}
  .prl-md-40px, .pl-md-40px {padding-left: 40px;}
  .p-md-45px {padding: 45px;}
  .ptb-md-45px, .pt-md-45px {padding-top: 45px;}
  .prl-md-45px, .pr-md-45px {padding-right: 45px;}
  .ptb-md-45px, .pb-md-45px {padding-bottom: 45px;}
  .prl-md-45px, .pl-md-45px {padding-left: 45px;}
  .p-md-50px {padding: 50px;}
  .ptb-md-50px, .pt-md-50px {padding-top: 50px;}
  .prl-md-50px, .pr-md-50px {padding-right: 50px;}
  .ptb-md-50px, .pb-md-50px {padding-bottom: 50px;}
  .prl-md-50px, .pl-md-50px {padding-left: 50px;}
  .p-md-55px {padding: 55px;}
  .ptb-md-55px, .pt-md-55px {padding-top: 55px;}
  .prl-md-55px, .pr-md-55px {padding-right: 55px;}
  .ptb-md-55px, .pb-md-55px {padding-bottom: 55px;}
  .prl-md-55px, .pl-md-55px {padding-left: 55px;}
  .p-md-60px {padding: 60px;}
  .ptb-md-60px, .pt-md-60px {padding-top: 60px;}
  .prl-md-60px, .pr-md-60px {padding-right: 60px;}
  .ptb-md-60px, .pb-md-60px {padding-bottom: 60px;}
  .prl-md-60px, .pl-md-60px {padding-left: 60px;}
  .p-md-65px {padding: 65px;}
  .ptb-md-65px, .pt-md-65px {padding-top: 65px;}
  .prl-md-65px, .pr-md-65px {padding-right: 65px;}
  .ptb-md-65px, .pb-md-65px {padding-bottom: 65px;}
  .prl-md-65px, .pl-md-65px {padding-left: 65px;}
  .p-md-70px {padding: 70px;}
  .ptb-md-70px, .pt-md-70px {padding-top: 70px;}
  .prl-md-70px, .pr-md-70px {padding-right: 70px;}
  .ptb-md-70px, .pb-md-70px {padding-bottom: 70px;}
  .prl-md-70px, .pl-md-70px {padding-left: 70px;}
  .p-md-75px {padding: 75px;}
  .ptb-md-75px, .pt-md-75px {padding-top: 75px;}
  .prl-md-75px, .pr-md-75px {padding-right: 75px;}
  .ptb-md-75px, .pb-md-75px {padding-bottom: 75px;}
  .prl-md-75px, .pl-md-75px {padding-left: 75px;}
  .p-md-80px {padding: 80px;}
  .ptb-md-80px, .pt-md-80px {padding-top: 80px;}
  .prl-md-80px, .pr-md-80px {padding-right: 80px;}
  .ptb-md-80px, .pb-md-80px {padding-bottom: 80px;}
  .prl-md-80px, .pl-md-80px {padding-left: 80px;}
  .p-md-85px {padding: 85px;}
  .ptb-md-85px, .pt-md-85px {padding-top: 85px;}
  .prl-md-85px, .pr-md-85px {padding-right: 85px;}
  .ptb-md-85px, .pb-md-85px {padding-bottom: 85px;}
  .prl-md-85px, .pl-md-85px {padding-left: 85px;}
  .p-md-90px {padding: 90px;}
  .ptb-md-90px, .pt-md-90px {padding-top: 90px;}
  .prl-md-90px, .pr-md-90px {padding-right: 90px;}
  .ptb-md-90px, .pb-md-90px {padding-bottom: 90px;}
  .prl-md-90px, .pl-md-90px {padding-left: 90px;}
  .p-md-95px {padding: 95px;}
  .ptb-md-95px, .pt-md-95px {padding-top: 95px;}
  .prl-md-95px, .pr-md-95px {padding-right: 95px;}
  .ptb-md-95px, .pb-md-95px {padding-bottom: 95px;}
  .prl-md-95px, .pl-md-95px {padding-left: 95px;}
  .p-md-100px {padding: 100px;}
  .ptb-md-100px, .pt-md-100px {padding-top: 100px;}
  .prl-md-100px, .pr-md-100px {padding-right: 100px;}
  .ptb-md-100px, .pb-md-100px {padding-bottom: 100px;}
  .prl-md-100px, .pl-md-100px {padding-left: 100px;}

  /*
  **  パディング class [em]
  */
  .p-md-25em {padding: 0.25em;}
  .ptb-md-25em, .pt-md-25em {padding-top: 0.25em;}
  .prl-md-25em, .pr-md-25em {padding-right: 0.25em;}
  .ptb-md-25em, .pb-md-25em {padding-bottom: 0.25em;}
  .prl-md-25em, .pl-md-25em {padding-left: 0.25em;}
  .p-md-50em {padding: 0.5em;}
  .ptb-md-50em, .pt-md-50em {padding-top: 0.5em;}
  .prl-md-50em, .pr-md-50em {padding-right: 0.5em;}
  .ptb-md-50em, .pb-md-50em {padding-bottom: 0.5em;}
  .prl-md-50em, .pl-md-50em {padding-left: 0.5em;}
  .p-md-75em {padding: 0.75em;}
  .ptb-md-75em, .pt-md-75em {padding-top: 0.75em;}
  .prl-md-75em, .pr-md-75em {padding-right: 0.75em;}
  .ptb-md-75em, .pb-md-75em {padding-bottom: 0.75em;}
  .prl-md-75em, .pl-md-75em {padding-left: 0.75em;}
  .p-md-100em {padding: 1em;}
  .ptb-md-100em, .pt-md-100em {padding-top: 1em;}
  .prl-md-100em, .pr-md-100em {padding-right: 1em;}
  .ptb-md-100em, .pb-md-100em {padding-bottom: 1em;}
  .prl-md-100em, .pl-md-100em {padding-left: 1em;}
  .p-md-125em {padding: 1.25em;}
  .ptb-md-125em, .pt-md-125em {padding-top: 1.25em;}
  .prl-md-125em, .pr-md-125em {padding-right: 1.25em;}
  .ptb-md-125em, .pb-md-125em {padding-bottom: 1.25em;}
  .prl-md-125em, .pl-md-125em {padding-left: 1.25em;}
  .p-md-150em {padding: 1.5em;}
  .ptb-md-150em, .pt-md-150em {padding-top: 1.5em;}
  .prl-md-150em, .pr-md-150em {padding-right: 1.5em;}
  .ptb-md-150em, .pb-md-150em {padding-bottom: 1.5em;}
  .prl-md-150em, .pl-md-150em {padding-left: 1.5em;}
  .p-md-200em {padding: 2em;}
  .ptb-md-200em, .pt-md-200em {padding-top: 2em;}
  .prl-md-200em, .pr-md-200em {padding-right: 2em;}
  .ptb-md-200em, .pb-md-200em {padding-bottom: 2em;}
  .prl-md-200em, .pl-md-200em {padding-left: 2em;}
  .p-md-250em {padding: 2.5em;}
  .ptb-md-250em, .pt-md-250em {padding-top: 2.5em;}
  .prl-md-250em, .pr-md-250em {padding-right: 2.5em;}
  .ptb-md-250em, .pb-md-250em {padding-bottom: 2.5em;}
  .prl-md-250em, .pl-md-250em {padding-left: 2.5em;}
  .p-md-300em {padding: 3em;}
  .ptb-md-300em, .pt-md-300em {padding-top: 3em;}
  .prl-md-300em, .pr-md-300em {padding-right: 3em;}
  .ptb-md-300em, .pb-md-300em {padding-bottom: 3em;}
  .prl-md-300em, .pl-md-300em {padding-left: 3em;}
  .p-md-350em {padding: 3.5em;}
  .ptb-md-350em, .pt-md-350em {padding-top: 3.5em;}
  .prl-md-350em, .pr-md-350em {padding-right: 3.5em;}
  .ptb-md-350em, .pb-md-350em {padding-bottom: 3.5em;}
  .prl-md-350em, .pl-md-350em {padding-left: 3.5em;}
  .p-md-400em {padding: 4em;}
  .ptb-md-400em, .pt-md-400em {padding-top: 4em;}
  .prl-md-400em, .pr-md-400em {padding-right: 4em;}
  .ptb-md-400em, .pb-md-400em {padding-bottom: 4em;}
  .prl-md-400em, .pl-md-400em {padding-left: 4em;}
  .p-md-450em {padding: 4.5em;}
  .ptb-md-450em, .pt-md-450em {padding-top: 4.5em;}
  .prl-md-450em, .pr-md-450em {padding-right: 4.5em;}
  .ptb-md-450em, .pb-md-450em {padding-bottom: 4.5em;}
  .prl-md-450em, .pl-md-450em {padding-left: 4.5em;}
  .p-md-500em {padding: 5em;}
  .ptb-md-500em, .pt-md-500em {padding-top: 5em;}
  .prl-md-500em, .pr-md-500em {padding-right: 5em;}
  .ptb-md-500em, .pb-md-500em {padding-bottom: 5em;}
  .prl-md-500em, .pl-md-500em {padding-left: 5em;}
  .p-md-550em {padding: 5.5em;}
  .ptb-md-550em, .pt-md-550em {padding-top: 5.5em;}
  .prl-md-550em, .pr-md-550em {padding-right: 5.5em;}
  .ptb-md-550em, .pb-md-550em {padding-bottom: 5.5em;}
  .prl-md-550em, .pl-md-550em {padding-left: 5.5em;}
  .p-md-600em {padding: 6em;}
  .ptb-md-600em, .pt-md-600em {padding-top: 6em;}
  .prl-md-600em, .pr-md-600em {padding-right: 6em;}
  .ptb-md-600em, .pb-md-600em {padding-bottom: 6em;}
  .prl-md-600em, .pl-md-600em {padding-left: 6em;}
}

/*
**  文字サイズ class [px]
*/
.fs-10px { font-size: 10px; }  .fs-11px { font-size: 11px; }  .fs-12px { font-size: 12px; }  .fs-13px { font-size: 13px; }
.fs-14px { font-size: 14px; }  .fs-15px { font-size: 15px; }  .fs-16px { font-size: 16px; }  .fs-17px { font-size: 17px; }
.fs-18px { font-size: 18px; }  .fs-19px { font-size: 19px; }  .fs-20px { font-size: 20px; }  .fs-21px { font-size: 21px; }
.fs-22px { font-size: 22px; }  .fs-23px { font-size: 23px; }  .fs-24px { font-size: 24px; }  .fs-25px { font-size: 25px; }
.fs-26px { font-size: 26px; }  .fs-27px { font-size: 27px; }  .fs-28px { font-size: 28px; }  .fs-29px { font-size: 29px; }
.fs-30px { font-size: 30px; }  .fs-31px { font-size: 31px; }  .fs-32px { font-size: 32px; }  .fs-33px { font-size: 33px; }
.fs-34px { font-size: 34px; }  .fs-35px { font-size: 35px; }  .fs-36px { font-size: 36px; }  .fs-37px { font-size: 37px; }
.fs-38px { font-size: 38px; }  .fs-39px { font-size: 39px; }  .fs-40px { font-size: 40px; }  .fs-41px { font-size: 41px; }
.fs-42px { font-size: 42px; }  .fs-43px { font-size: 43px; }  .fs-44px { font-size: 44px; }  .fs-45px { font-size: 45px; }
.fs-46px { font-size: 46px; }  .fs-47px { font-size: 47px; }  .fs-48px { font-size: 48px; }  .fs-49px { font-size: 49px; }
.fs-50px { font-size: 50px; }  .fs-51px { font-size: 51px; }  .fs-52px { font-size: 52px; }  .fs-53px { font-size: 53px; }
.fs-54px { font-size: 54px; }  .fs-55px { font-size: 55px; }  .fs-56px { font-size: 56px; }  .fs-57px { font-size: 57px; }
.fs-58px { font-size: 58px; }  .fs-59px { font-size: 59px; }  .fs-60px { font-size: 60px; }

@media (min-width: 768px) {
  /*
  **  文字サイズ class [px]
  */
  .fs-md-10px { font-size: 10px; }  .fs-md-11px { font-size: 11px; }  .fs-md-12px { font-size: 12px; }  .fs-md-13px { font-size: 13px; }
  .fs-md-14px { font-size: 14px; }  .fs-md-15px { font-size: 15px; }  .fs-md-16px { font-size: 16px; }  .fs-md-17px { font-size: 17px; }
  .fs-md-18px { font-size: 18px; }  .fs-md-19px { font-size: 19px; }  .fs-md-20px { font-size: 20px; }  .fs-md-21px { font-size: 21px; }
  .fs-md-22px { font-size: 22px; }  .fs-md-23px { font-size: 23px; }  .fs-md-24px { font-size: 24px; }  .fs-md-25px { font-size: 25px; }
  .fs-md-26px { font-size: 26px; }  .fs-md-27px { font-size: 27px; }  .fs-md-28px { font-size: 28px; }  .fs-md-29px { font-size: 29px; }
  .fs-md-30px { font-size: 30px; }  .fs-md-31px { font-size: 31px; }  .fs-md-32px { font-size: 32px; }  .fs-md-33px { font-size: 33px; }
  .fs-md-34px { font-size: 34px; }  .fs-md-35px { font-size: 35px; }  .fs-md-36px { font-size: 36px; }  .fs-md-37px { font-size: 37px; }
  .fs-md-38px { font-size: 38px; }  .fs-md-39px { font-size: 39px; }  .fs-md-40px { font-size: 40px; }  .fs-md-41px { font-size: 41px; }
  .fs-md-42px { font-size: 42px; }  .fs-md-43px { font-size: 43px; }  .fs-md-44px { font-size: 44px; }  .fs-md-45px { font-size: 45px; }
  .fs-md-46px { font-size: 46px; }  .fs-md-47px { font-size: 47px; }  .fs-md-48px { font-size: 48px; }  .fs-md-49px { font-size: 49px; }
  .fs-md-50px { font-size: 50px; }  .fs-md-51px { font-size: 51px; }  .fs-md-52px { font-size: 52px; }  .fs-md-53px { font-size: 53px; }
  .fs-md-54px { font-size: 54px; }  .fs-md-55px { font-size: 55px; }  .fs-md-56px { font-size: 56px; }  .fs-md-57px { font-size: 57px; }
  .fs-md-58px { font-size: 58px; }  .fs-md-59px { font-size: 59px; }  .fs-md-60px { font-size: 60px; }
}

/*
**  文字装飾 class
*/
.fw-lighter { font-weight: 100; }
.fw-normal { font-weight: 400; }
.fw-bold { font-weight: 600; }
@media (min-width: 768px) {
  .fw-md-lighter { font-weight: 100; }
  .fw-md-normal { font-weight: 400; }
  .fw-md-bold { font-weight: 600; }
}

/*
**  テキストレイアウト class
*/
.text-L { text-align: left; }
.text-C { text-align: center; }
.text-R { text-align: right; }
.text-J { text-align: justify; }
@media (min-width: 768px) {
  .text-md-L { text-align: left; }
  .text-md-C { text-align: center; }
  .text-md-R { text-align: right; }
  .text-md-J { text-align: justify; }
}

/**/
/* slick slider */
/**/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
    -ms-user-select: none;
      user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
    touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0 65px;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
@media print, screen and (min-width: 768px) {
  .slick-list {
    padding: 0 145px;
  }
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
     -o-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
.slick-slide:focus {
  outline: 0;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 30%;
  z-index: 1;
  width: 13.5px;
  height: 28px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  background-size: contain;
}
.slick-prev {
  left: 15px;
  background: url(https://2864453.fs1.hubspotusercontent-na1.net/hubfs/2864453/lp/OfficeUP/installation_arrow_prev.png) no-repeat;
  background-size: contain;
}
.slick-next {
  right: 15px;
  background: url(https://2864453.fs1.hubspotusercontent-na1.net/hubfs/2864453/lp/OfficeUP/installation_arrow_next.png) no-repeat;
  background-size: contain;
}
@media print, screen and (min-width: 768px) {
  .slick-prev,
  .slick-next {
    width: 27px;
    height: 56px;
  }
  .slick-prev {
    left: calc(50% - 537px)
  }
  .slick-next {
    right: calc(50% - 537px)
  }
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: 8px;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  margin: 0 2.5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 5px;
  height: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  content: '';
  width: 5px;
  height: 5px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media print, screen and (min-width: 768px) {
  .slick-dots {
    bottom: 18px;
  }
  .slick-dots li {
    margin: 0 5px;
  }
  .slick-dots li button,
  .slick-dots li button:before {
    width: 10px;
    height: 10px;
  }
}

/**/
/* layout */
/**/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&family=Oswald:wght@400;700&display=swap");
html {
  font-size: 62.5%;
}

body {
  color: #101010;
  font-family: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.875;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  -webkit-print-color-adjust: exact;
}
@media print, screen and (min-width: 768px) {
  body {
    font-size: 16px;
    overflow-x: hidden;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

a,
a:hover {
  color: #000;
  text-decoration: underline;
}

a:focus,
button:focus {
  outline: 0;
}

img {
  width: 100%;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
}

.row-fluid [class*="span"] {
  float: none;
  min-height: 0;
  margin-left: 0;
}


.main {
  padding-bottom: 120px;
}
@media only screen and (max-width: 767px) {
  .main {
    padding-top: 45px;
  }
}
@media print, screen and (min-width: 768px) {
  .main {
    padding-bottom: 116px;
  }
}

.oswald {
  font-family: "Oswald", sans-serif;
}

.fc-orange {
  color: #fe5705;
}

.fw-bold {
  font-weight: 700;
}

.ind {
  text-indent: -1em;
  padding-left: 1em;
}

.border__box {
  color: #002738;
  font-size: 13px;
  font-size: 1.3rem;
  border: 1px solid #003343;
  border-radius: 6px;
  padding: 10px 15px;
}
@media print, screen and (min-width: 768px) {
  .border__box {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .border__box {
    text-align: center;
    border-radius: 12px;
    padding: 15px;
  }
}

.heroheader {
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .heroheader {
    background-image: url("https://2864453.fs1.hubspotusercontent-na1.net/hubfs/2864453/lp/OfficeUP/t/heroheader-bg-sp_t1.png");
  }
}
@media print, screen and (min-width: 768px) {
  .heroheader {
    background-image: url("https://2864453.fs1.hubspotusercontent-na1.net/hubfs/2864453/lp/OfficeUP/t/heroheader-bg-pc_t1.png");
    position: relative;
  }
}
.heroheader img {
  width: auto;
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .heroheader::after {
    content: "";
    width: 100%;
    height: 88px;
    background-color: rgba(0, 39, 56, 0.8);
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
.heroheader .txt__1st,
.heroheader .txt__2nd {
  width: 100%;
  font-weight: 700;
  text-shadow: 0 0 3px #fff;
  display: block;
  position: absolute;
  z-index: 1;
  padding-right: 6%;
}
@media print, screen and (min-width: 768px) {
  .heroheader .txt__1st,
  .heroheader .txt__2nd {
    padding-right: 30%;
  }
}
.heroheader .txt__1st {
  color: #002738;
  font-size: 22px;
  font-size: 5.86vw;
  line-height: 1.4;
  top: 42%;
}
@media print, screen and (min-width: 768px) {
  .heroheader .txt__1st {
    font-size: 56px;
    font-size: 3.78vw;
    top: 38%;
  }
}
.heroheader .txt__2nd {
  font-size: 12px;
  font-size: 3.73vw;
  top: 64%;
}
@media print, screen and (min-width: 768px) {
  .heroheader .txt__2nd {
    font-size: 26px;
    font-size: 1.76vw;
    top: 66%;
  }
}
.heroheader .heroheader__achievements {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .heroheader .heroheader__achievements {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    padding: 4px 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .heroheader .heroheader__achievements {
    right: 60px;
    bottom: 15px;
  }
}
.heroheader .heroheader__achievements .heroheader__achievements--img {
  width: 120px;
}
@media print, screen and (min-width: 768px) {
  .heroheader .heroheader__achievements .heroheader__achievements--img {
    width: 180px;
  }
}
.heroheader .heroheader__achievements .heroheader__achievements--caption {
  color: #fff;
  font-size: 10px;
  font-size: 1rem;
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  .heroheader .heroheader__achievements .heroheader__achievements--caption {
    font-size: 12px;
    font-size: 0.81vw;
  }
}
.heroheader .heroheader__achievements .heroheader__achievements--caption span {
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .heroheader .heroheader__achievements .heroheader__achievements--caption span {
    font-size: 20px;
    font-size: 1.35vw;
  }
}
.heroheader .heroheader__anker {
  color: #032f3c;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  width: 80px;
  height: 80px;
  background-color: #f9b200;
  border-radius: 100em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
}

.heroheader .heroheader__anker {
  left: 70% !important;
  bottom: 44px !important;
  top: auto !important;
  transform: translateX(-50%) translateY(50%); 
  z-index: 2;
}

@media print, screen and (min-width: 768px) {
  .heroheader .heroheader__anker {
    display: flex;
    font-size: 20px;
    width: 140px;
    height: 140px;
  }
}
@media only screen and (max-width: 767px) {
  .heroheader .heroheader__anker {
    display: flex;
    font-size: 16px;
    width: 120px;
    height: 120px;
  }
}

}
.heroheader .heroheader__anker:hover {
  opacity: 0.8;
}

@media print, screen and (min-width: 1481px) {
  .heroheader .txt__1st {
    font-size: 56px;
  }
  .heroheader .txt__2nd {
    font-size: 26px;
  }
  .heroheader .heroheader__achievements .heroheader__achievements--caption {
    font-size: 12px;
  }
  .heroheader .heroheader__achievements .heroheader__achievements--caption span {
    font-size: 20px;
  }
}

.section .section__inner {
  max-width: 1010px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.heading__1st {
  color: #101010;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .heading__1st {
    font-size: 40px;
    font-size: 4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .heading__1st {
    margin-bottom: 40px;
  }
}

.heading__2nd {
  color: #fff;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background-color: #002738;
  position: relative;
  padding: 10px 0;
  margin-bottom: 70px;
}
@media print, screen and (min-width: 768px) {
  .heading__2nd {
    font-size: 40px;
    font-size: 4rem;
  }
}
.heading__2nd::after {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  transform: rotate(45deg);
  background-color: #002738;
  position: absolute;
  left: 50%;
  bottom: -11px;
}
@media print, screen and (min-width: 768px) {
  .heading__2nd {
    padding: 24px 0;
    margin-bottom: 90px;
  }
}

.heading__3rd {
  color: #101010;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .heading__3rd {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 768px) {
  .heading__3rd {
    margin-bottom: 40px;
  }
}

.section_01 {
  padding: 15px 0 20px;
}
@media print, screen and (min-width: 768px) {
  .section_01 {
    padding: 60px 0 70px;
  }
}

.point__list {
  display: flex;
  flex-wrap: wrap;
}
.point__list .point__item {
  width: 50%;
  padding: 0 15px;
}
@media print, screen and (min-width: 768px) {
  .point__list .point__item {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .point__list .point__item:nth-of-type(n + 3) {
    margin-top: 30px;
  }
}
.point__list .point__item--ttl {
  color: #002738;
  font-size: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .point__list .point__item--ttl {
    font-size: 24px;
    font-size: 2.1rem;
  }
}
.point__list .point__item--img {
  text-align: center;
  padding: 0px 21.25px;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .point__list .point__item--img {
    padding: 0 28.5px;
  }
}
.point__list .point__item--caption {
  color: #002738;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .point__list .point__item--caption {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
  }
}

.trouble .trouble__item {
  position: relative;
}
.trouble .trouble__item_01 {
  margin-bottom: 80px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_01 {
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_01 .trouble__body--left,
  .trouble .trouble__item_01 .trouble__body--right {
    width: 50%;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_01 .trouble__body--right {
    padding-left: 17px;
  }
}
.trouble .trouble__item_02 {
  background-color: #f1f8fe;
  padding-top: 30px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_02 {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_02 .trouble__body--left,
  .trouble .trouble__item_02 .trouble__body--right {
    width: 50%;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_02 .trouble__body--right {
    padding-right: 44px;
    padding-left: 18px;
  }
}
.trouble .trouble__item_02 .trouble__heading--4th {
  text-align: center;
  margin-bottom: 30px;
}
.trouble .trouble__item_03 {
  background-color: #f1f8fe; /*--trouble_02の削除に伴い、trouble_03はtrouble_02に変更されたから、背景色が追加されました--*/
  padding-top: 70px;
}
@media only screen and (max-width: 767px) {
  .trouble .trouble__item_03 {
    margin-bottom: 80px;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_03 {
    padding-bottom: 20px;
    padding-top: 90px;
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_03 .trouble__body--left,
  .trouble .trouble__item_03 .trouble__body--right {
    width: 50%;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_03 .trouble__body--right {
    padding-left: 16px;
  }
}
.trouble .trouble__item_04 {
  /*--trouble_02の削除に伴い、trouble_04はtrouble_03に変更されたから、背景色が削除されました
  background-color: #f1f8fe;
  --*/
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .trouble .trouble__item_04 {
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_04 {
    padding-top: 80px;
    padding-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_04 .trouble__heading--1st {
    padding: 42px 0 42px 200px;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__item_04 .trouble__heading--4th {
    text-align: center;
    margin-bottom: 50px;
  }
}
.trouble .trouble__heading--1st {
  color: #002738;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  position: relative;
  background-color: #fff;
  border: 3px solid #003343;
  border-radius: 40px;
  padding: 15px 0;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--1st {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--1st {
    border-width: 6px;
    border-radius: 100em;
    padding: 24px 0 24px 200px;
    margin-bottom: 60px;
  }
}
.trouble .trouble__heading--1st .trouble__heading--img {
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .trouble .trouble__heading--1st .trouble__heading--img {
    width: 60px;
    top: -50px;
    left: calc(50% - 30px);
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--1st .trouble__heading--img {
    width: 187px;
    transform: translateY(-50%);
    left: 35px;
    top: 50%;
  }
}
.trouble .trouble__heading--1st .trouble__heading--num {
  width: 92px;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 15px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--1st .trouble__heading--num {
    width: 143px;
    right: 40px;
  }
}

.trouble .trouble__heading--2nd {
  color: #002738;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--2nd {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--2nd {
    text-align: left;
  }
}
.trouble .trouble__heading--2nd span {
  font-size: 15px;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--2nd span {
    font-size: 20px;
    font-size: 2rem;
  }
}
.trouble .trouble__heading--2nd + p {
  text-align: center;
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--2nd + p {
    text-align: left;
  }
}
.trouble .trouble__body--2nd {
  padding-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__body--2nd {
    padding-bottom: 40px;
  }
}
.trouble .trouble__body--3rd + .trouble__body--3rd {
  margin-top: 30px;
}
.trouble .trouble__solution {
  text-align: center;
  padding-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__solution {
    padding-bottom: 30px;
  }
}
.trouble .trouble__solution .trouble__solution--img {
  width: 45px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__solution .trouble__solution--img {
    width: 67px;
  }
}
@media only screen and (max-width: 767px) {
  .trouble .trouble__body--left + .trouble__body--right {
    margin-top: 15px;
  }
}
.trouble .trouble__body--img {
  margin-bottom: 15px;
}
.trouble .trouble__heading--3rd {
  color: #002738;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  border-bottom: 3px solid #002738;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--3rd {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--3rd {
    border-width: 6px;
    margin-bottom: 40px;
  }
}
.trouble .trouble__heading--3rd span {
  font-size: 15px;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--3rd span {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.trouble .trouble__heading--3rd .trouble__heading--img {
  width: 45px;
  position: absolute;
  top: -100px;
  left: calc(50% - 27.5px);
}
.trouble .trouble__heading--4th {
  color: #002738;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--4th {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--4th {
    text-align: left;
  }
}
.trouble .trouble__heading--4th span {
  font-size: 15px;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--4th span {
    font-size: 30px;
    font-size: 3rem;
  }
}
.trouble .trouble__heading--5th {
  color: #002738;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--5th {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__heading--5th {
    text-align: left;
  }
}
.trouble .trouble__body--more {
  text-align: center;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__body--more {
    margin-bottom: 50px;
  }
}
.trouble .trouble__body--more .trouble__body--more__inr {
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  display: inline-block;
  background-color: #fe5705;
  border-radius: 20em;
  padding: 0 15px;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__body--more .trouble__body--more__inr {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__body--more .trouble__body--more__inr {
    padding: 6px 15px;
  }
}
.trouble .trouble__list {
  white-space: wrap;
  display: flex;
  margin: 0 -3px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__list {
    margin: 0 -9px;
  }
}
.trouble .trouble__list .trouble__item {
  width: 33.3333%;
  padding: 0 3px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__list .trouble__item {
    padding: 0 9px;
  }
}
.trouble .trouble__list + p {
  padding-top: 15px;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__list + p {
    text-align: center;
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .trouble .trouble__body {
    max-height: 28em;
    overflow: hidden;
    position: relative;
    transition-duration: 1s;
    padding-top: 50px;
  }
  .trouble .trouble__body::after {
    content: "";
    width: 100%;
    height: 130px;
    display: block;
    background-color: #000;
    position: absolute;
    bottom: 0;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 99%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 99%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 99%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  }
}
.trouble .trouble__body.open {
  max-height: 200em;
  overflow: visible;
  padding-top: 0;
}
.trouble .trouble__body.open::after {
  height: 0;
}
.trouble .trouble__more {
  color: #1885f5;
  font-size: 15px;
  transform: translateX(-50%);
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .trouble .trouble__more {
    display: none;
  }
}
.trouble .trouble__more.open {
  bottom: -45px;
}
.trouble .trouble__more .trouble__more--img {
  width: 20px;
  display: block;
  margin: 0 auto;
}

.section_03 {
  padding-top: 15px;
  padding-bottom: 25px;
}
@media print, screen and (min-width: 768px) {
  .section_03 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.cooperation {
  overflow: hidden;
}

.cooperation__list .slick-list {
  overflow: visible;
  max-width: 980px;
}
@media print, screen and (min-width: 768px) {
  .cooperation__list .slick-list {
    padding: 0;
    margin: auto;
  }
}
.cooperation__list .slick-track {
  display: flex;
}
.cooperation__list .cooperation__item {
  float: none;
  width: 115px;
  height: auto;
  height: inherit;
  margin: 0 8px;
}
@media print, screen and (min-width: 768px) {
  .cooperation__list .cooperation__item {
    width: 220px;
    margin: 0 16px;
  }
}
.cooperation__list .cooperation__item--link {
  text-decoration: none;
  display: block;
}
.cooperation__list .cooperation__item--name {
  font-size: 11px;
  font-size: 1.1rem;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .cooperation__list .cooperation__item--name {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .cooperation__list .cooperation__item--name {
    margin-top: 10px;
  }
}

.section_04 {
  background: url("https://2864453.fs1.hubspotusercontent-na1.net/hubfs/2864453/lp/OfficeUP/section_04_bg.jpg") repeat-x;
  background-size: auto 76px;
  padding-top: 20px;
  padding-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .section_04 {
    background-size: auto;
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

@media print, screen and (min-width: 768px) {
  .function .border__box {
    padding: 25px 30px;
  }
}
.function .border__box + .border__box {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .function .border__box + .border__box {
    margin-top: 30px;
  }
}
.function .function__heading--1st {
  color: #002738;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .function .function__heading--1st {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .function .function__heading--1st {
    margin-bottom: 20px;
  }
}
.function .function__heading--2nd {
  color: #fff;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background-color: #002738;
  padding: 10px 0;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .function .function__heading--2nd {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 768px) {
  .function .function__heading--2nd {
    padding: 15px 0;
    margin-bottom: 25px;
  }
}
.function .function__body--1st + .function__body--1st {
  margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
  .function .function__body--1st + .function__body--1st {
    margin-top: 60px;
  }
}
@media print, screen and (min-width: 768px) {
  .function .function__body--2nd {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .function .function__body--2nd + .function__body--2nd {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .function .function__body--3rd {
    width: 50%;
    text-align: left;
  }
}
@media print, screen and (min-width: 768px) {
  .function .function__body--4th {
    text-align: left;
  }
}
.function .function__description {
  color: #101010;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 768px) {
  .function .function__description {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .function .function__img--1st {
    width: calc(50% - 7.5px);
  }
}
@media print, screen and (min-width: 768px) {
  .function .function__img--1st {
    padding: 0 90px;
    margin-bottom: 20px;
  }
}
.function .function__img--2nd {
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .function .function__img--2nd {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .function .function__img--3rd {
    width: 50%;
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .function .function__meta--1st {
    width: calc(50% - 7.5px);
  }
}
@media print, screen and (min-width: 768px) {
  .function .function__meta--1st {
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .function .function__meta--2nd {
    width: 50%;
  }
}
.function .function__img--note {
  font-size: 11px;
  font-size: 1.1rem;
  text-align: left;
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .function .function__img--note {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.function .function__img--note p {
  text-indent: -1em;
  padding-left: 1em;
}
.function .function__list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1.5px solid #002738;
  border-left: 1.5px solid #002738;
}
@media print, screen and (min-width: 768px) {
  .function .function__list {
    border-width: 3px;
  }
}
.function .function__item {
  width: 50%;
  background-color: #eff7fd;
  border-right: 1.5px solid #002738;
  border-bottom: 1.5px solid #002738;
  padding: 5px 0;
}
@media print, screen and (min-width: 768px) {
  .function .function__item {
    width: 25%;
    border-width: 3px;
  }
}
.function .function__item--img {
  text-align: center;
  padding: 0 13px;
  margin-bottom: 5px;
}
.function .function__item--ttl {
  color: #002738;
  font-size: 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .function .function__item--ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.section_05 {
  overflow: hidden;
  background-color: #eff7fd;
  padding-top: 15px;
  padding-bottom: 35px;
}
@media print, screen and (min-width: 768px) {
  .section_05 {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .example {
    margin: 0 -15px;
  }
}
.example .slick-list {
  padding: 0;
}
.example .slick-track {
  display: flex;
}
.example .slick-arrow {
  top: calc(50% - 14px);
}
.example .example__item {
  width: 245px;
  height: inherit;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  float: none;
  margin: 0 8px;
}
@media print, screen and (min-width: 768px) {
  .example .example__item {
    width: 474px;
    border-width: 3px;
    margin: 0 16px;
  }
}
.example .example__item--header {
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #000;
}
@media print, screen and (min-width: 768px) {
  .example .example__item--header {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .example .example__item--header {
    border-width: 2px;
  }
}
.example .example__item--heading {
  font-size: 15px;
  font-size: 1.5rem;
  border-bottom: 1px solid #000;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .example .example__item--heading {
    font-size: 20px;
    font-size: 2rem;
  }
}
.example .example__item--body {
  padding: 10px;
}
.example .example__item--description {
  font-size: 12px;
  font-size: 1.2rem;
}
@media print, screen and (min-width: 768px) {
  .example .example__item--description {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.example .example__figure {
  text-align: center;
  width: 100%;
  padding: 0 7px;
}
.example .example__figure .example__figure--ttl {
  font-size: 11px;
  font-size: 1.1rem;
}
@media print, screen and (min-width: 768px) {
  .example .example__figure .example__figure--ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.example .example__item.example__item--dark {
  border-color: #002738;
}
.example .example__item.example__item--dark .example__item--header {
  background-color: #002738;
}
.example .example__item.example__item--dark .example__item--heading {
  border-color: #002738;
}
.example .example__item.example__item--light {
  border-color: #fe5705;
}
.example .example__item.example__item--light .example__item--header {
  background-color: #fe5705;
}
.example .example__item.example__item--light .example__item--heading {
  border-color: #fe5705;
}
.example .example__item.example__item--2nd .example__item--description {
  width: 50%;
  padding-right: 10px;
}
.example .example__item.example__item--2nd .example__item--img {
  width: 50%;
}

.scene {
  margin-top: 30px;
}
.scene .scene__heading {
  color: #002738;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .scene .scene__heading {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.scene .scene__list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px -10px;
}
@media print, screen and (min-width: 768px) {
  .scene .scene__list {
    margin: -6px;
  }
}
.scene .scene__item {
  color: #002738;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  width: calc(50% - 20px);
  border: 1px solid #002738;
  border-radius: 3px;
  margin: 5px 10px;
}
@media print, screen and (min-width: 768px) {
  .scene .scene__item {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media print, screen and (min-width: 768px) {
  .scene .scene__item {
    width: calc(25% - 12px);
    border-radius: 5px;
    margin: 6px;
  }
}

.section_06 {
  padding-top: 15px;
  padding-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .section_06 {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

@media print, screen and (min-width: 768px) {
  .lineup {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .lineup .lineup__item + .lineup__item {
    margin-top: 10px;
  }
}
.lineup .lineup__item--inr {
  border: 1px solid #00001a;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  padding: 10px 15px;
}
@media print, screen and (min-width: 768px) {
  .lineup .lineup__item--inr {
    height: 100%;
    padding: 20px;
  }
}
.lineup .lineup__item--inr::before {
  content: "";
  width: 50px;
  height: 50px;
  display: block;
  transform: rotate(45deg);
  position: absolute;
  top: -25px;
  left: -25px;
}
@media print, screen and (min-width: 768px) {
  .lineup .lineup__item--inr::before {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
  }
}
.lineup .lineup__heading--1st {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .lineup .lineup__heading--1st {
    font-size: 30px;
    font-size: 3rem;
  }
}
.lineup .lineup__badge {
  color: #fff;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 700;
  position: absolute;
  top: 13px;
  right: 15px;
  padding: 0 5px;
}
@media print, screen and (min-width: 768px) {
  .lineup .lineup__badge {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .lineup .lineup__badge {
    top: 20px;
    right: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .lineup .lineup__list + .lineup__list {
    margin-left: 10px;
  }
}
.lineup .lineup__list--item {
  font-weight: 700;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}
@media print, screen and (min-width: 768px) {
  .lineup .lineup__list--item {
    margin: 10px 0;
  }
}
.lineup .lineup__spec {
  font-size: 12px;
  font-size: 1.2rem;
  background-color: #e9ebec;
  padding: 5px 10px;
}
@media print, screen and (min-width: 768px) {
  .lineup .lineup__spec {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.lineup .lineup__spec th,
.lineup .lineup__spec td {
  color: #101010;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: top;
}
@media print, screen and (min-width: 768px) {
  .lineup .lineup__spec th,
  .lineup .lineup__spec td {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.lineup .lineup__spec th {
  white-space: nowrap;
  text-align: justify;
  text-align-last: justify;
  text-justify: inter-ideograph;
  white-space: nowrap;
}
.lineup .lineup__item.lineup__item--light .lineup__item--inr::before {
  background-color: #fe5705;
}
.lineup .lineup__item.lineup__item--light .lineup__badge {
  background-color: #fe5705;
}
.lineup .lineup__item.lineup__item--dark .lineup__item--inr::before {
  background-color: #c6cacc;
}
.lineup .lineup__item.lineup__item--dark .lineup__badge {
  background-color: #002738;
}
@media print, screen and (min-width: 768px) {
  .lineup .lineup__item.lineup__item_01 {
    width: 50%;
    padding-right: 17px;
    padding-bottom: 17px;
    margin-bottom: 17px;
  }
}
.lineup .lineup__item.lineup__item_01 .lineup__img {
  width: 146px;
  padding: 0 10px;
}
@media print, screen and (min-width: 768px) {
  .lineup .lineup__item.lineup__item_01 .lineup__img {
    width: 175px;
  }
}
.lineup .lineup__item.lineup__item_02 {
  position: relative;
  padding-bottom: 17px;
}
@media print, screen and (min-width: 768px) {
  .lineup .lineup__item.lineup__item_02 {
    width: 50%;
    padding-left: 17px;
    margin-bottom: 17px;
  }
}
.lineup .lineup__item.lineup__item_02::after {
  content: "";
  width: 30px;
  height: 18px;
  display: block;
  background: url("https://2864453.fs1.hubspotusercontent-na1.net/hubfs/2864453/lp/OfficeUP/lineup_arrow.png") no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: calc(50% - 9px);
}
.lineup .lineup__item.lineup__item_03 {
  width: 100%;
}
.lineup .lineup__item.lineup__item_03 .lineup__heading--1st,
.lineup .lineup__item.lineup__item_03 .lineup__heading--1st + p {
  color: #002738;
}

.yt-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.yt-video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hs-responsive-embed {
  max-width: 100% !important;
  max-height: 528px !important;
}

.cost {
  background-color: #eff7fd;
  padding: 15px;
}
@media print, screen and (min-width: 768px) {
  .cost {
    padding: 20px 40px;
  }
}
.cost .heading__3rd {
  color: #002738;
  margin-bottom: 20px;
}
.cost .cost__item {
  background-color: #fff;
  border: 1px solid #a0bac6;
}
@media print, screen and (min-width: 768px) {
  .cost .cost__item {
    width: 100%;
    display: table;
  }
}
.cost .cost__item + .cost__item {
  margin-top: 3px;
}
.cost .cost__header {
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background-color: #002738;
  padding: 5px 0;
}
@media print, screen and (min-width: 768px) {
  .cost .cost__header {
    font-size: 20px;
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 768px) {
  .cost .cost__header {
    width: 320px;
    display: table-cell;
    vertical-align: middle;
  }
}
.cost .cost__body {
  text-align: center;
  padding: 5px 15px;
}
@media print, screen and (min-width: 768px) {
  .cost .cost__body {
    text-align: left;
    display: table-cell;
    vertical-align: middle;
  }
}
.cost .cost__caption {
  font-size: 10px;
  font-size: 1rem;
  margin-top: 5px;
}
@media print, screen and (min-width: 768px) {
  .cost .cost__caption {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.section_08 {
  padding-top: 15px;
  padding-bottom: 20px;
  background-color: #eff7fd;
}
@media print, screen and (min-width: 768px) {
  .section_08 {
    padding-top: 30px;
  }
}

.contact .contact__tel {
  text-align: center;
  text-decoration: none;
  display: block;
  border: 1px solid #000;
  border-radius: 2px;
  padding: 10px 0;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .contact .contact__tel {
    max-width: 770px;
    border-radius: 4px;
    padding: 16px 0;
    margin: auto auto 25px;
  }
}
.contact .contact__tel .contact__tel--title {
  font-size: 19px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .contact .contact__tel .contact__tel--title {
    margin-bottom: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .contact .contact__tel .contact__tel--title {
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-right: 10px;
  }
}
.contact .contact__tel .contact__tel--num {
  font-size: 25px;
  line-height: 1;
  display: flex;
  justify-content: center;
}
.contact .contact__tel .contact__tel--num span {
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  .contact .contact__tel .contact__tel--num span {
    font-size: 16px;
  }
}
.contact .contact__tel .contact__tel--icon {
  width: 25px;
  margin-right: 5px;
}
@media print, screen and (min-width: 768px) {
  .contact .contact__tel .contact__tel--icon {
    width: 40px;
  }
}
.contact .contact__tel .tel-num {
  font-size: 25px;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .contact .contact__tel .tel-num {
    font-size: 32px;
  }
}
.contact .contact__company {
  text-align: center;
}
.contact .contact__company .contact__company--name {
  font-size: 15px;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .contact .contact__company .contact__company--name {
    font-size: 16px;
  }
}
.contact .contact__company p {
  font-size: 12px;
}
@media print, screen and (min-width: 768px) {
  .contact .contact__company p {
    font-size: 14px;
  }
}
.contact .contact__company p + p {
  margin-top: 15px;
}

.footer {
  background-color: #002738;
}
.footer .copyright {
  color: #fff;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  padding: 5px 0;
}
@media print, screen and (min-width: 768px) {
  .footer .copyright {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .footer .copyright {
    padding: 28px 0;
  }
}

.row-number-17 {
  height: 0;
}

.sticky {
  display: none;
  position: fixed;
  z-index: 100;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #00001a;
}
@media print, screen and (min-width: 768px) {
  .sticky .sticky__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1010px;
    padding: 21px 15px;
    margin: auto;
  }
}
.sticky .sticky__tel {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .sticky .sticky__tel {
    padding: 10px 15px;
  }
}
@media print, screen and (min-width: 768px) {
  .sticky .sticky__tel {
    align-items: center;
  }
}
.sticky .sticky__tel--title {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
  .sticky .sticky__tel--title {
    font-size: 15px;
  }
}
.sticky .sticky__tel--title span {
  font-size: 14px;
}
.sticky .sticky__tel--num {
  color: #fff;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .sticky .sticky__tel--num {
    margin-left: 10px;
  }
}
.sticky .sticky__tel--num a {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
@media print, screen and (min-width: 768px) {
  .sticky .sticky__tel--num a {
    display: flex;
    font-size: 34px;
  }
}
.sticky .sticky__tel--num a img {
  width: 34px;
  margin-right: 10px;
}
.sticky .sticky__documents--link {
  text-decoration: none;
  display: block;
  background-color: #1885f5;
  padding: 10px 0;
}
@media print, screen and (min-width: 768px) {
  .sticky .sticky__documents--link {
    border-radius: 4px;
    padding: 15px 10px;
  }
}
.sticky .sticky__documents--description,
.sticky .sticky__documents--title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
.sticky .sticky__documents--title {
  font-size: 20px;
  margin-top: 10px;
}
.sticky .sticky__documents--title span {
  color: #fff;
  font-size: 18px;
  background-color: #fe5705;
  border-radius: 3px;
  padding: 0 3px;
  margin-right: 5px;
}

.tab-area {
  display: flex;
  cursor: pointer;
}
.tab-area .tab {
  color: #556975;
  width: 50%;
  background-color: #d7e3ed;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .tab-area .tab {
    padding: 15px 40px;
    margin-bottom: 20px;
  }
}
.tab-area .tab::after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-color: #d7e3ed;
  display: none;
  transform: rotate(45deg);
  position: absolute;
  bottom: -10px;
  left: calc(50% - 10px);
}
@media print, screen and (min-width: 768px) {
  .tab-area .tab::after {
    width: 30px;
    height: 30px;
    bottom: -15px;
    left: calc(50% - 15px);
  }
}
.tab-area .tab__header {
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #002738;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
@media print, screen and (min-width: 768px) {
  .tab-area .tab__header {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .tab-area .tab__header {
    border-width: 2px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.tab-area .tab__body {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  .tab-area .tab__body {
    text-align: center;
    justify-content: center;
  }
}
.tab-area .tab.active {
  color: #fff;
  background-color: #002738;
}
.tab-area .tab.active::after {
  background-color: #002738;
  display: block;
}
.tab-area .tab.active .tab__header {
  border-color: #fff;
}

.content-area {
  background-color: #f0f1f1;
  padding: 20px 15px;
}
@media print, screen and (min-width: 768px) {
  .content-area {
    padding: 40px 0 50px;
  }
}
.content-area .content {
  display: none;
}
.content-area .content.show {
  display: block;
}

.section_09 {
  padding-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .section_09 {
    padding-top: 35px;
    padding-bottom: 50px;
  }
}

.contact-2nd fieldset {
  max-width: 750px !important;
  margin: auto !important;
}
.contact-2nd input[type="email"],
.contact-2nd input[type="text"],
.contact-2nd input[type="tel"],
.contact-2nd select,
.contact-2nd textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  box-sizing: border-box;
  width: 100% !important;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset;
  padding: 5px 10px;
}
.contact-2nd input[type="email"]::-ms-clear,
.contact-2nd input[type="text"]::-ms-clear,
.contact-2nd input[type="tel"]::-ms-clear,
.contact-2nd select::-ms-clear,
.contact-2nd textarea::-ms-clear {
  display: none;
}
.contact-2nd input[type="email"]::-ms-reveal,
.contact-2nd input[type="text"]::-ms-reveal,
.contact-2nd input[type="tel"]::-ms-reveal,
.contact-2nd select::-ms-reveal,
.contact-2nd textarea::-ms-reveal {
  display: none;
}
.contact-2nd input[type="email"]::-ms-expand,
.contact-2nd input[type="text"]::-ms-expand,
.contact-2nd input[type="tel"]::-ms-expand,
.contact-2nd select::-ms-expand,
.contact-2nd textarea::-ms-expand {
  display: none;
}
.contact-2nd .hs-form-booleancheckbox-display input {
  display: none;
}
.contact-2nd .hs-form-booleancheckbox-display input:checked + span::after {
  opacity: 1;
}
.contact-2nd .hs-form-booleancheckbox-display input + span {
  font-size: 16px;
  display: inline-block;
  position: relative;
  padding-left: 1.6em;
}
@media print, screen and (min-width: 768px) {
  .contact-2nd .hs-form-booleancheckbox-display input + span {
    font-size: 18px;
  }
}
.contact-2nd .hs-form-booleancheckbox-display input + span::before, .contact-2nd .hs-form-booleancheckbox-display input + span::after {
  content: "";
  position: absolute;
  display: block;
}
.contact-2nd .hs-form-booleancheckbox-display input + span::before {
  width: 20px;
  height: 20px;
  border: 1px solid #a9a9a9;
  top: calc(50% - 10px);
  left: 0;
  background-color: #fff;
  border-radius: 3px;
}
.contact-2nd .hs-form-booleancheckbox-display input + span::after {
  width: 12px;
  height: 9px;
  top: calc(50% - 7px);
  transform: rotate(-45deg);
  left: 4px;
  border-bottom: 3px solid #1885f5;
  border-left: 3px solid #1885f5;
  opacity: 0;
}
.contact-2nd .hs-form-required,
.contact-2nd .hs-error-msg {
  color: #1885f5;
}
.contact-2nd .hs-form-required {
  font-size: 12px;
}
.contact-2nd .form-columns-1,
.contact-2nd .form-columns-2 {
  margin-top: 15px !important;
}
.contact-2nd .grecaptcha-badge {
  margin: 15px auto;
}
.contact-2nd .actions {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
@media print, screen and (min-width: 768px) {
  .contact-2nd .actions {
    margin-top: 50px;
  }
}
.contact-2nd .actions input[type="submit"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  background-clip: padding-box;
  color: inherit;
  font-size: inherit;
  vertical-align: middle;
  box-sizing: border-box;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  width: 250px;
  display: block;
  background-color: #fe5705;
  cursor: pointer;
  padding: 15px 0;
}
.contact-2nd .actions input[type="submit"]::-ms-clear {
  display: none;
}
.contact-2nd .actions input[type="submit"]::-ms-reveal {
  display: none;
}
.contact-2nd .actions input[type="submit"]::-ms-expand {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .contact-2nd .actions input[type="submit"] {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
@media print, screen and (min-width: 768px) {
  .contact-2nd .actions input[type="submit"] {
    width: 350px;
  }
}
.contact-2nd .actions input[type="submit"]:hover {
  opacity: 0.8;
}

.nav {
  width: 100%;
  height: 45px;
  background-color: #002738;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
}
@media print, screen and (min-width: 768px) {
  .nav {
    display: none;
    height: 0;
  }
}
.nav .nav__btn {
  position: relative;
  width: 45px;
  height: 45px;
  margin-left: 20px;
}
.nav .nav__btn--open span {
  width: 39px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 3px;
}
.nav .nav__btn--open span:nth-of-type(1) {
  top: 12px;
}
.nav .nav__btn--open span:nth-of-type(2) {
  top: 22px;
}
.nav .nav__btn--open span:nth-of-type(3) {
  top: 32px;
}
.nav .nav__btn--close span {
  width: 45px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 23px;
}
.nav .nav__btn--close span:nth-of-type(1) {
  transform: rotate(45deg);
}
.nav .nav__btn--close span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.nav .nav__list {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url("https://2864453.fs1.hubspotusercontent-na1.net/hubfs/2864453/lp/OfficeUP/nav_bg.png");
  transform: translateY(-120%);
  transition-duration: 0.5s;
  transition-timing-function: ease;
}
.nav .nav__list ul {
  padding: 25px 30px 0;
}
.nav .nav__list li {
  border-bottom: 1px solid #fff;
}
.nav .nav__list a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.nav.opened .nav__list {
  transform: translateY(0%);
}

.pagetop {
  display: block;
  cursor: pointer;
  position: absolute;
  top: -45px;
  right: 15px;
}
@media only screen and (max-width: 767px) {
  .pagetop {
    width: 35px;
  }
}
@media print, screen and (min-width: 768px) {
  .pagetop {
    top: -70px;
  }
}

/*------------------------------------------------------*/
/*  CTA */
/*------------------------------------------------------*/
.cta-container {
  text-align: center;
  margin: 20px 0;
}

.cta-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  background-color: #f9b200;
  border-radius: 10px;
  color: #032f3c;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.cta-box:hover {
  opacity: 0.8;
}

.cta-box__icon {
  width: 42px;
  height: auto;
  display: block;
}

.cta-box__text {
  line-height: 1.5;
  white-space: nowrap;
}

/*------------------------------------------------------*/
/*  cookie */
/*------------------------------------------------------*/
#hs-banner-parent #hs-eu-cookie-confirmation {
  width: 100% !important;
  max-width: 100% !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-top: 1px solid #ececec;
  bottom: 0 !important;
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-header-container {
  width: 37px;
  height: 37px;
  position: absolute;
  right: 90px;
  top: 12px;
  border-radius: 50% 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #035b90;
  background: #fff;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  display: none !important;
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-header-container button {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0;
  line-height: 0;
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-header-container button svg {
  width: 12px;
  height: 12px;
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-header-container button svg path {
  fill: #035b90;
}
@media screen and (min-width: 751px) {
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-header-container:hover {
    background: #035b90;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-header-container:hover button svg path {
    fill: #fff;
  }
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner {
  padding: 34px 90px 34px;
  gap: 10px;
  min-height: auto;
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner div, #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner p {
  color: #000;
  font-size: 1.5rem;
  line-height: 3.6rem;
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-cookie-confirmation-buttons-area {
  position: absolute;
  right: 90px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-policy-wording {
  padding-right: 360px;
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-policy-wording a {
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 751px) {
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-policy-wording a:hover {
    border-bottom: none;
  }
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-cookie-disclaimer {
  padding-right: 280px;
  font-size: 1.2rem;
  line-height: 2.4rem;
  gap: 5px;
  display: none;
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-cookie-disclaimer::before {
  content: "※";
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-confirmation-button, #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-settings-button, #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-decline-button {
  font-size: 1.6rem;
  line-height: 4.6rem;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  border: 1px solid #035b90;
  min-width: 156px;
  height: 48px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック  Medium", meiryo, sans-serif;
  font-weight: 500;
  text-decoration: none;
}
@media screen and (min-width: 751px) {
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-confirmation-button:hover, #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-settings-button:hover, #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-decline-button:hover {
    background: #fff;
    color: #035b90;
  }
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-settings-button {
  color: #035b90;
}
@media screen and (min-width: 751px) {
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-settings-button:hover {
    background: #035b90;
    color: #fff;
  }
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-opt-in-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-opt-in-buttons #hs-eu-decline-button {
  display: none;
}
@media screen and (max-width: 1400px) {
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-header-container {
    right: 4vw;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-cookie-confirmation-buttons-area {
    right: 4vw;
  }
}
@media screen and (max-width: 1000px) {
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-cookie-confirmation-buttons-area {
    position: relative;
    right: 0;
    top: 0;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-policy-wording {
    padding-right: 0;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-cookie-disclaimer {
    padding-right: 0;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-opt-in-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (max-width: 750px) {
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-header-container {
    width: 21px;
    height: 21px;
    right: 4.6vw;
    top: 13px;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-header-container button svg {
    width: 9px;
    height: 9px;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner {
    padding-top: 26px;
    padding-left: 7.6vw;
    padding-right: 7.6vw;
    padding-bottom: 30px;
    margin-top: 18px;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner div, #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner p {
    font-size: 1.2rem;
    line-height: 2.2rem;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-policy-wording {
    padding-right: 0;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner #hs-eu-cookie-disclaimer {
    padding-right: 0;
    font-size: 1rem;
    line-height: 2rem;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-confirmation-button, #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-cookie-settings-button, #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-decline-button {
    font-size: 1.2rem;
    line-height: 3.4rem;
    height: 36px;
    min-width: 138px;
  }
  #hs-banner-parent #hs-eu-cookie-confirmation #hs-eu-opt-in-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

#hs-modal #hs-modal-content #hs-modal-accept-all {
  border: 1px solid #035b90;
  background: #035b90;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック  Medium", meiryo, sans-serif;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
@media screen and (min-width: 751px) {
  #hs-modal #hs-modal-content #hs-modal-accept-all:hover {
    background: #fff;
    color: #035b90;
  }
}
#hs-modal #hs-modal-content #hs-modal-save-settings {
  border: 1px solid #035b90;
  color: #035b90;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック  Medium", meiryo, sans-serif;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
@media screen and (min-width: 751px) {
  #hs-modal #hs-modal-content #hs-modal-save-settings:hover {
    background: #035b90;
    color: #fff;
  }
}
#hs-modal #hs-modal-content #hs-categories-container .hs-category-row .hs-toggle-switch.hs-toggle-selected-flag {
  background-color: #035b90;
  border-color: #035b90;
}
#hs-modal #hs-modal-content #hs-categories-container .hs-category-description.visible {
  margin-top: 10px;
}
@media screen and (max-width: 750px) {
  #hs-modal #hs-modal-content #hs-modal-footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #hs-modal #hs-modal-content #hs-modal-accept-all, #hs-modal #hs-modal-content #hs-modal-save-settings {
    height: 36px;
    min-width: 138px;
    font-size: 1.2rem;
  }
}