:root {
  --font-primary: "Noto Sans JP", sans-serif;
  --font-ttl: "Noto Serif JP", sans-serif;
  --font-ttl-des: "Noto Serif JP", sans-serif;
  --font-en: "Baskervville", serif;
  --font-num: "Inter", sans-serif;
  --font-family-base: Noto Sans JP, sans-serif;
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --color-black: #000;
  --color-white: #FFF;
  --color-primary: #1F2446;
  --color-warning: #f00;
  --color-text: #1F2446;
  --input-border-color: #e6e6e6;
  --input-border-width: 0.1rem;
  --input-font-size: 14px;
  --input-font-weight: 400;
  --input-background: #fff;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

html[lang=zh-CN] {
  --font-ttl-des:
      "PingFang SC",
      "Microsoft YaHei",
      "Hiragino Sans GB",
      "WenQuanYi Micro Hei",
      sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  overflow-x: hidden;
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
@media (max-width: 391px) {
  html {
    font-size: 2.5641025641vw;
  }
}

html[lang=en] *::first-letter {
  text-transform: uppercase;
}

font::first-letter {
  display: inline-block;
  text-transform: uppercase;
}

body {
  background-color: #fff;
  color: var(--color-text);
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

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

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0;
  padding: 0;
}

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

table {
  border-collapse: collapse;
}

th {
  font-weight: 400;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

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;
}

select {
  word-wrap: normal;
}

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

textarea {
  overflow: auto;
  resize: vertical;
}

[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-decoration {
  -webkit-appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin: auto;
  max-width: 126rem;
  padding-left: 3rem;
  padding-right: 3rem;
  width: 100%;
}

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 900px) {
  .d-break-none {
    display: none !important;
  }
  .d-break-block {
    display: block !important;
  }
  .d-break-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1023px) {
  .d-tb-none {
    display: none !important;
  }
  .d-tb-block {
    display: block !important;
  }
  .d-tb-flex {
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 900px) {
  .text-break-left {
    text-align: left !important;
  }
  .text-break-right {
    text-align: right !important;
  }
  .text-break-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1023px) {
  .text-tb-left {
    text-align: left !important;
  }
  .text-tb-right {
    text-align: right !important;
  }
  .text-tb-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-underline {
  text-decoration: underline;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-5 {
  margin: 0.5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 0.5rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 0.5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 0.5rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 0.5rem !important;
}

.m-10 {
  margin: 1rem !important;
}

.mt-10,
.my-10 {
  margin-top: 1rem !important;
}

.mr-10,
.mx-10 {
  margin-right: 1rem !important;
}

.mb-10,
.my-10 {
  margin-bottom: 1rem !important;
}

.ml-10,
.mx-10 {
  margin-left: 1rem !important;
}

.m-20 {
  margin: 2rem !important;
}

.mt-20,
.my-20 {
  margin-top: 2rem !important;
}

.mr-20,
.mx-20 {
  margin-right: 2rem !important;
}

.mb-20,
.my-20 {
  margin-bottom: 2rem !important;
}

.ml-20,
.mx-20 {
  margin-left: 2rem !important;
}

.m-30 {
  margin: 3rem !important;
}

.mt-30,
.my-30 {
  margin-top: 3rem !important;
}

.mr-30,
.mx-30 {
  margin-right: 3rem !important;
}

.mb-30,
.my-30 {
  margin-bottom: 3rem !important;
}

.ml-30,
.mx-30 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-5 {
  padding: 0.5rem !important;
}

.pt-5,
.py-5 {
  padding-top: 0.5rem !important;
}

.pr-5,
.px-5 {
  padding-right: 0.5rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 0.5rem !important;
}

.pl-5,
.px-5 {
  padding-left: 0.5rem !important;
}

.p-10 {
  padding: 1rem !important;
}

.pt-10,
.py-10 {
  padding-top: 1rem !important;
}

.pr-10,
.px-10 {
  padding-right: 1rem !important;
}

.pb-10,
.py-10 {
  padding-bottom: 1rem !important;
}

.pl-10,
.px-10 {
  padding-left: 1rem !important;
}

.p-20 {
  padding: 2rem !important;
}

.pt-20,
.py-20 {
  padding-top: 2rem !important;
}

.pr-20,
.px-20 {
  padding-right: 2rem !important;
}

.pb-20,
.py-20 {
  padding-bottom: 2rem !important;
}

.pl-20,
.px-20 {
  padding-left: 2rem !important;
}

.p-30 {
  padding: 3rem !important;
}

.pt-30,
.py-30 {
  padding-top: 3rem !important;
}

.pr-30,
.px-30 {
  padding-right: 3rem !important;
}

.pb-30,
.py-30 {
  padding-bottom: 3rem !important;
}

.pl-30,
.px-30 {
  padding-left: 3rem !important;
}

.m-n5 {
  margin: -0.5rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -0.5rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -0.5rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -0.5rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -0.5rem !important;
}

.m-n10 {
  margin: -1rem !important;
}

.mt-n10,
.my-n10 {
  margin-top: -1rem !important;
}

.mr-n10,
.mx-n10 {
  margin-right: -1rem !important;
}

.mb-n10,
.my-n10 {
  margin-bottom: -1rem !important;
}

.ml-n10,
.mx-n10 {
  margin-left: -1rem !important;
}

.m-n20 {
  margin: -2rem !important;
}

.mt-n20,
.my-n20 {
  margin-top: -2rem !important;
}

.mr-n20,
.mx-n20 {
  margin-right: -2rem !important;
}

.mb-n20,
.my-n20 {
  margin-bottom: -2rem !important;
}

.ml-n20,
.mx-n20 {
  margin-left: -2rem !important;
}

.m-n30 {
  margin: -3rem !important;
}

.mt-n30,
.my-n30 {
  margin-top: -3rem !important;
}

.mr-n30,
.mx-n30 {
  margin-right: -3rem !important;
}

.mb-n30,
.my-n30 {
  margin-bottom: -3rem !important;
}

.ml-n30,
.mx-n30 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-5 {
    margin: 0.5rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 0.5rem !important;
  }
  .m-sm-10 {
    margin: 1rem !important;
  }
  .mt-sm-10,
  .my-sm-10 {
    margin-top: 1rem !important;
  }
  .mr-sm-10,
  .mx-sm-10 {
    margin-right: 1rem !important;
  }
  .mb-sm-10,
  .my-sm-10 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-10,
  .mx-sm-10 {
    margin-left: 1rem !important;
  }
  .m-sm-20 {
    margin: 2rem !important;
  }
  .mt-sm-20,
  .my-sm-20 {
    margin-top: 2rem !important;
  }
  .mr-sm-20,
  .mx-sm-20 {
    margin-right: 2rem !important;
  }
  .mb-sm-20,
  .my-sm-20 {
    margin-bottom: 2rem !important;
  }
  .ml-sm-20,
  .mx-sm-20 {
    margin-left: 2rem !important;
  }
  .m-sm-30 {
    margin: 3rem !important;
  }
  .mt-sm-30,
  .my-sm-30 {
    margin-top: 3rem !important;
  }
  .mr-sm-30,
  .mx-sm-30 {
    margin-right: 3rem !important;
  }
  .mb-sm-30,
  .my-sm-30 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-30,
  .mx-sm-30 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-5 {
    padding: 0.5rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 0.5rem !important;
  }
  .p-sm-10 {
    padding: 1rem !important;
  }
  .pt-sm-10,
  .py-sm-10 {
    padding-top: 1rem !important;
  }
  .pr-sm-10,
  .px-sm-10 {
    padding-right: 1rem !important;
  }
  .pb-sm-10,
  .py-sm-10 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-10,
  .px-sm-10 {
    padding-left: 1rem !important;
  }
  .p-sm-20 {
    padding: 2rem !important;
  }
  .pt-sm-20,
  .py-sm-20 {
    padding-top: 2rem !important;
  }
  .pr-sm-20,
  .px-sm-20 {
    padding-right: 2rem !important;
  }
  .pb-sm-20,
  .py-sm-20 {
    padding-bottom: 2rem !important;
  }
  .pl-sm-20,
  .px-sm-20 {
    padding-left: 2rem !important;
  }
  .p-sm-30 {
    padding: 3rem !important;
  }
  .pt-sm-30,
  .py-sm-30 {
    padding-top: 3rem !important;
  }
  .pr-sm-30,
  .px-sm-30 {
    padding-right: 3rem !important;
  }
  .pb-sm-30,
  .py-sm-30 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-30,
  .px-sm-30 {
    padding-left: 3rem !important;
  }
  .m-sm-n5 {
    margin: -0.5rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n10 {
    margin: -1rem !important;
  }
  .mt-sm-n10,
  .my-sm-n10 {
    margin-top: -1rem !important;
  }
  .mr-sm-n10,
  .mx-sm-n10 {
    margin-right: -1rem !important;
  }
  .mb-sm-n10,
  .my-sm-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n10,
  .mx-sm-n10 {
    margin-left: -1rem !important;
  }
  .m-sm-n20 {
    margin: -2rem !important;
  }
  .mt-sm-n20,
  .my-sm-n20 {
    margin-top: -2rem !important;
  }
  .mr-sm-n20,
  .mx-sm-n20 {
    margin-right: -2rem !important;
  }
  .mb-sm-n20,
  .my-sm-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-sm-n20,
  .mx-sm-n20 {
    margin-left: -2rem !important;
  }
  .m-sm-n30 {
    margin: -3rem !important;
  }
  .mt-sm-n30,
  .my-sm-n30 {
    margin-top: -3rem !important;
  }
  .mr-sm-n30,
  .mx-sm-n30 {
    margin-right: -3rem !important;
  }
  .mb-sm-n30,
  .my-sm-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n30,
  .mx-sm-n30 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-5 {
    margin: 0.5rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 0.5rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 0.5rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 0.5rem !important;
  }
  .m-md-10 {
    margin: 1rem !important;
  }
  .mt-md-10,
  .my-md-10 {
    margin-top: 1rem !important;
  }
  .mr-md-10,
  .mx-md-10 {
    margin-right: 1rem !important;
  }
  .mb-md-10,
  .my-md-10 {
    margin-bottom: 1rem !important;
  }
  .ml-md-10,
  .mx-md-10 {
    margin-left: 1rem !important;
  }
  .m-md-20 {
    margin: 2rem !important;
  }
  .mt-md-20,
  .my-md-20 {
    margin-top: 2rem !important;
  }
  .mr-md-20,
  .mx-md-20 {
    margin-right: 2rem !important;
  }
  .mb-md-20,
  .my-md-20 {
    margin-bottom: 2rem !important;
  }
  .ml-md-20,
  .mx-md-20 {
    margin-left: 2rem !important;
  }
  .m-md-30 {
    margin: 3rem !important;
  }
  .mt-md-30,
  .my-md-30 {
    margin-top: 3rem !important;
  }
  .mr-md-30,
  .mx-md-30 {
    margin-right: 3rem !important;
  }
  .mb-md-30,
  .my-md-30 {
    margin-bottom: 3rem !important;
  }
  .ml-md-30,
  .mx-md-30 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-5 {
    padding: 0.5rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 0.5rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 0.5rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 0.5rem !important;
  }
  .p-md-10 {
    padding: 1rem !important;
  }
  .pt-md-10,
  .py-md-10 {
    padding-top: 1rem !important;
  }
  .pr-md-10,
  .px-md-10 {
    padding-right: 1rem !important;
  }
  .pb-md-10,
  .py-md-10 {
    padding-bottom: 1rem !important;
  }
  .pl-md-10,
  .px-md-10 {
    padding-left: 1rem !important;
  }
  .p-md-20 {
    padding: 2rem !important;
  }
  .pt-md-20,
  .py-md-20 {
    padding-top: 2rem !important;
  }
  .pr-md-20,
  .px-md-20 {
    padding-right: 2rem !important;
  }
  .pb-md-20,
  .py-md-20 {
    padding-bottom: 2rem !important;
  }
  .pl-md-20,
  .px-md-20 {
    padding-left: 2rem !important;
  }
  .p-md-30 {
    padding: 3rem !important;
  }
  .pt-md-30,
  .py-md-30 {
    padding-top: 3rem !important;
  }
  .pr-md-30,
  .px-md-30 {
    padding-right: 3rem !important;
  }
  .pb-md-30,
  .py-md-30 {
    padding-bottom: 3rem !important;
  }
  .pl-md-30,
  .px-md-30 {
    padding-left: 3rem !important;
  }
  .m-md-n5 {
    margin: -0.5rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -0.5rem !important;
  }
  .m-md-n10 {
    margin: -1rem !important;
  }
  .mt-md-n10,
  .my-md-n10 {
    margin-top: -1rem !important;
  }
  .mr-md-n10,
  .mx-md-n10 {
    margin-right: -1rem !important;
  }
  .mb-md-n10,
  .my-md-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n10,
  .mx-md-n10 {
    margin-left: -1rem !important;
  }
  .m-md-n20 {
    margin: -2rem !important;
  }
  .mt-md-n20,
  .my-md-n20 {
    margin-top: -2rem !important;
  }
  .mr-md-n20,
  .mx-md-n20 {
    margin-right: -2rem !important;
  }
  .mb-md-n20,
  .my-md-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-md-n20,
  .mx-md-n20 {
    margin-left: -2rem !important;
  }
  .m-md-n30 {
    margin: -3rem !important;
  }
  .mt-md-n30,
  .my-md-n30 {
    margin-top: -3rem !important;
  }
  .mr-md-n30,
  .mx-md-n30 {
    margin-right: -3rem !important;
  }
  .mb-md-n30,
  .my-md-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n30,
  .mx-md-n30 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 900px) {
  .m-break-0 {
    margin: 0 !important;
  }
  .mt-break-0,
  .my-break-0 {
    margin-top: 0 !important;
  }
  .mr-break-0,
  .mx-break-0 {
    margin-right: 0 !important;
  }
  .mb-break-0,
  .my-break-0 {
    margin-bottom: 0 !important;
  }
  .ml-break-0,
  .mx-break-0 {
    margin-left: 0 !important;
  }
  .m-break-5 {
    margin: 0.5rem !important;
  }
  .mt-break-5,
  .my-break-5 {
    margin-top: 0.5rem !important;
  }
  .mr-break-5,
  .mx-break-5 {
    margin-right: 0.5rem !important;
  }
  .mb-break-5,
  .my-break-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-break-5,
  .mx-break-5 {
    margin-left: 0.5rem !important;
  }
  .m-break-10 {
    margin: 1rem !important;
  }
  .mt-break-10,
  .my-break-10 {
    margin-top: 1rem !important;
  }
  .mr-break-10,
  .mx-break-10 {
    margin-right: 1rem !important;
  }
  .mb-break-10,
  .my-break-10 {
    margin-bottom: 1rem !important;
  }
  .ml-break-10,
  .mx-break-10 {
    margin-left: 1rem !important;
  }
  .m-break-20 {
    margin: 2rem !important;
  }
  .mt-break-20,
  .my-break-20 {
    margin-top: 2rem !important;
  }
  .mr-break-20,
  .mx-break-20 {
    margin-right: 2rem !important;
  }
  .mb-break-20,
  .my-break-20 {
    margin-bottom: 2rem !important;
  }
  .ml-break-20,
  .mx-break-20 {
    margin-left: 2rem !important;
  }
  .m-break-30 {
    margin: 3rem !important;
  }
  .mt-break-30,
  .my-break-30 {
    margin-top: 3rem !important;
  }
  .mr-break-30,
  .mx-break-30 {
    margin-right: 3rem !important;
  }
  .mb-break-30,
  .my-break-30 {
    margin-bottom: 3rem !important;
  }
  .ml-break-30,
  .mx-break-30 {
    margin-left: 3rem !important;
  }
  .p-break-0 {
    padding: 0 !important;
  }
  .pt-break-0,
  .py-break-0 {
    padding-top: 0 !important;
  }
  .pr-break-0,
  .px-break-0 {
    padding-right: 0 !important;
  }
  .pb-break-0,
  .py-break-0 {
    padding-bottom: 0 !important;
  }
  .pl-break-0,
  .px-break-0 {
    padding-left: 0 !important;
  }
  .p-break-5 {
    padding: 0.5rem !important;
  }
  .pt-break-5,
  .py-break-5 {
    padding-top: 0.5rem !important;
  }
  .pr-break-5,
  .px-break-5 {
    padding-right: 0.5rem !important;
  }
  .pb-break-5,
  .py-break-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-break-5,
  .px-break-5 {
    padding-left: 0.5rem !important;
  }
  .p-break-10 {
    padding: 1rem !important;
  }
  .pt-break-10,
  .py-break-10 {
    padding-top: 1rem !important;
  }
  .pr-break-10,
  .px-break-10 {
    padding-right: 1rem !important;
  }
  .pb-break-10,
  .py-break-10 {
    padding-bottom: 1rem !important;
  }
  .pl-break-10,
  .px-break-10 {
    padding-left: 1rem !important;
  }
  .p-break-20 {
    padding: 2rem !important;
  }
  .pt-break-20,
  .py-break-20 {
    padding-top: 2rem !important;
  }
  .pr-break-20,
  .px-break-20 {
    padding-right: 2rem !important;
  }
  .pb-break-20,
  .py-break-20 {
    padding-bottom: 2rem !important;
  }
  .pl-break-20,
  .px-break-20 {
    padding-left: 2rem !important;
  }
  .p-break-30 {
    padding: 3rem !important;
  }
  .pt-break-30,
  .py-break-30 {
    padding-top: 3rem !important;
  }
  .pr-break-30,
  .px-break-30 {
    padding-right: 3rem !important;
  }
  .pb-break-30,
  .py-break-30 {
    padding-bottom: 3rem !important;
  }
  .pl-break-30,
  .px-break-30 {
    padding-left: 3rem !important;
  }
  .m-break-n5 {
    margin: -0.5rem !important;
  }
  .mt-break-n5,
  .my-break-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-break-n5,
  .mx-break-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-break-n5,
  .my-break-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-break-n5,
  .mx-break-n5 {
    margin-left: -0.5rem !important;
  }
  .m-break-n10 {
    margin: -1rem !important;
  }
  .mt-break-n10,
  .my-break-n10 {
    margin-top: -1rem !important;
  }
  .mr-break-n10,
  .mx-break-n10 {
    margin-right: -1rem !important;
  }
  .mb-break-n10,
  .my-break-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-break-n10,
  .mx-break-n10 {
    margin-left: -1rem !important;
  }
  .m-break-n20 {
    margin: -2rem !important;
  }
  .mt-break-n20,
  .my-break-n20 {
    margin-top: -2rem !important;
  }
  .mr-break-n20,
  .mx-break-n20 {
    margin-right: -2rem !important;
  }
  .mb-break-n20,
  .my-break-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-break-n20,
  .mx-break-n20 {
    margin-left: -2rem !important;
  }
  .m-break-n30 {
    margin: -3rem !important;
  }
  .mt-break-n30,
  .my-break-n30 {
    margin-top: -3rem !important;
  }
  .mr-break-n30,
  .mx-break-n30 {
    margin-right: -3rem !important;
  }
  .mb-break-n30,
  .my-break-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-break-n30,
  .mx-break-n30 {
    margin-left: -3rem !important;
  }
  .m-break-auto {
    margin: auto !important;
  }
  .mt-break-auto,
  .my-break-auto {
    margin-top: auto !important;
  }
  .mr-break-auto,
  .mx-break-auto {
    margin-right: auto !important;
  }
  .mb-break-auto,
  .my-break-auto {
    margin-bottom: auto !important;
  }
  .ml-break-auto,
  .mx-break-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-5 {
    margin: 0.5rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 0.5rem !important;
  }
  .m-lg-10 {
    margin: 1rem !important;
  }
  .mt-lg-10,
  .my-lg-10 {
    margin-top: 1rem !important;
  }
  .mr-lg-10,
  .mx-lg-10 {
    margin-right: 1rem !important;
  }
  .mb-lg-10,
  .my-lg-10 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-10,
  .mx-lg-10 {
    margin-left: 1rem !important;
  }
  .m-lg-20 {
    margin: 2rem !important;
  }
  .mt-lg-20,
  .my-lg-20 {
    margin-top: 2rem !important;
  }
  .mr-lg-20,
  .mx-lg-20 {
    margin-right: 2rem !important;
  }
  .mb-lg-20,
  .my-lg-20 {
    margin-bottom: 2rem !important;
  }
  .ml-lg-20,
  .mx-lg-20 {
    margin-left: 2rem !important;
  }
  .m-lg-30 {
    margin: 3rem !important;
  }
  .mt-lg-30,
  .my-lg-30 {
    margin-top: 3rem !important;
  }
  .mr-lg-30,
  .mx-lg-30 {
    margin-right: 3rem !important;
  }
  .mb-lg-30,
  .my-lg-30 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-30,
  .mx-lg-30 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-5 {
    padding: 0.5rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 0.5rem !important;
  }
  .p-lg-10 {
    padding: 1rem !important;
  }
  .pt-lg-10,
  .py-lg-10 {
    padding-top: 1rem !important;
  }
  .pr-lg-10,
  .px-lg-10 {
    padding-right: 1rem !important;
  }
  .pb-lg-10,
  .py-lg-10 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-10,
  .px-lg-10 {
    padding-left: 1rem !important;
  }
  .p-lg-20 {
    padding: 2rem !important;
  }
  .pt-lg-20,
  .py-lg-20 {
    padding-top: 2rem !important;
  }
  .pr-lg-20,
  .px-lg-20 {
    padding-right: 2rem !important;
  }
  .pb-lg-20,
  .py-lg-20 {
    padding-bottom: 2rem !important;
  }
  .pl-lg-20,
  .px-lg-20 {
    padding-left: 2rem !important;
  }
  .p-lg-30 {
    padding: 3rem !important;
  }
  .pt-lg-30,
  .py-lg-30 {
    padding-top: 3rem !important;
  }
  .pr-lg-30,
  .px-lg-30 {
    padding-right: 3rem !important;
  }
  .pb-lg-30,
  .py-lg-30 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-30,
  .px-lg-30 {
    padding-left: 3rem !important;
  }
  .m-lg-n5 {
    margin: -0.5rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n10 {
    margin: -1rem !important;
  }
  .mt-lg-n10,
  .my-lg-n10 {
    margin-top: -1rem !important;
  }
  .mr-lg-n10,
  .mx-lg-n10 {
    margin-right: -1rem !important;
  }
  .mb-lg-n10,
  .my-lg-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n10,
  .mx-lg-n10 {
    margin-left: -1rem !important;
  }
  .m-lg-n20 {
    margin: -2rem !important;
  }
  .mt-lg-n20,
  .my-lg-n20 {
    margin-top: -2rem !important;
  }
  .mr-lg-n20,
  .mx-lg-n20 {
    margin-right: -2rem !important;
  }
  .mb-lg-n20,
  .my-lg-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-lg-n20,
  .mx-lg-n20 {
    margin-left: -2rem !important;
  }
  .m-lg-n30 {
    margin: -3rem !important;
  }
  .mt-lg-n30,
  .my-lg-n30 {
    margin-top: -3rem !important;
  }
  .mr-lg-n30,
  .mx-lg-n30 {
    margin-right: -3rem !important;
  }
  .mb-lg-n30,
  .my-lg-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n30,
  .mx-lg-n30 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1023px) {
  .m-tb-0 {
    margin: 0 !important;
  }
  .mt-tb-0,
  .my-tb-0 {
    margin-top: 0 !important;
  }
  .mr-tb-0,
  .mx-tb-0 {
    margin-right: 0 !important;
  }
  .mb-tb-0,
  .my-tb-0 {
    margin-bottom: 0 !important;
  }
  .ml-tb-0,
  .mx-tb-0 {
    margin-left: 0 !important;
  }
  .m-tb-5 {
    margin: 0.5rem !important;
  }
  .mt-tb-5,
  .my-tb-5 {
    margin-top: 0.5rem !important;
  }
  .mr-tb-5,
  .mx-tb-5 {
    margin-right: 0.5rem !important;
  }
  .mb-tb-5,
  .my-tb-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-tb-5,
  .mx-tb-5 {
    margin-left: 0.5rem !important;
  }
  .m-tb-10 {
    margin: 1rem !important;
  }
  .mt-tb-10,
  .my-tb-10 {
    margin-top: 1rem !important;
  }
  .mr-tb-10,
  .mx-tb-10 {
    margin-right: 1rem !important;
  }
  .mb-tb-10,
  .my-tb-10 {
    margin-bottom: 1rem !important;
  }
  .ml-tb-10,
  .mx-tb-10 {
    margin-left: 1rem !important;
  }
  .m-tb-20 {
    margin: 2rem !important;
  }
  .mt-tb-20,
  .my-tb-20 {
    margin-top: 2rem !important;
  }
  .mr-tb-20,
  .mx-tb-20 {
    margin-right: 2rem !important;
  }
  .mb-tb-20,
  .my-tb-20 {
    margin-bottom: 2rem !important;
  }
  .ml-tb-20,
  .mx-tb-20 {
    margin-left: 2rem !important;
  }
  .m-tb-30 {
    margin: 3rem !important;
  }
  .mt-tb-30,
  .my-tb-30 {
    margin-top: 3rem !important;
  }
  .mr-tb-30,
  .mx-tb-30 {
    margin-right: 3rem !important;
  }
  .mb-tb-30,
  .my-tb-30 {
    margin-bottom: 3rem !important;
  }
  .ml-tb-30,
  .mx-tb-30 {
    margin-left: 3rem !important;
  }
  .p-tb-0 {
    padding: 0 !important;
  }
  .pt-tb-0,
  .py-tb-0 {
    padding-top: 0 !important;
  }
  .pr-tb-0,
  .px-tb-0 {
    padding-right: 0 !important;
  }
  .pb-tb-0,
  .py-tb-0 {
    padding-bottom: 0 !important;
  }
  .pl-tb-0,
  .px-tb-0 {
    padding-left: 0 !important;
  }
  .p-tb-5 {
    padding: 0.5rem !important;
  }
  .pt-tb-5,
  .py-tb-5 {
    padding-top: 0.5rem !important;
  }
  .pr-tb-5,
  .px-tb-5 {
    padding-right: 0.5rem !important;
  }
  .pb-tb-5,
  .py-tb-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-tb-5,
  .px-tb-5 {
    padding-left: 0.5rem !important;
  }
  .p-tb-10 {
    padding: 1rem !important;
  }
  .pt-tb-10,
  .py-tb-10 {
    padding-top: 1rem !important;
  }
  .pr-tb-10,
  .px-tb-10 {
    padding-right: 1rem !important;
  }
  .pb-tb-10,
  .py-tb-10 {
    padding-bottom: 1rem !important;
  }
  .pl-tb-10,
  .px-tb-10 {
    padding-left: 1rem !important;
  }
  .p-tb-20 {
    padding: 2rem !important;
  }
  .pt-tb-20,
  .py-tb-20 {
    padding-top: 2rem !important;
  }
  .pr-tb-20,
  .px-tb-20 {
    padding-right: 2rem !important;
  }
  .pb-tb-20,
  .py-tb-20 {
    padding-bottom: 2rem !important;
  }
  .pl-tb-20,
  .px-tb-20 {
    padding-left: 2rem !important;
  }
  .p-tb-30 {
    padding: 3rem !important;
  }
  .pt-tb-30,
  .py-tb-30 {
    padding-top: 3rem !important;
  }
  .pr-tb-30,
  .px-tb-30 {
    padding-right: 3rem !important;
  }
  .pb-tb-30,
  .py-tb-30 {
    padding-bottom: 3rem !important;
  }
  .pl-tb-30,
  .px-tb-30 {
    padding-left: 3rem !important;
  }
  .m-tb-n5 {
    margin: -0.5rem !important;
  }
  .mt-tb-n5,
  .my-tb-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-tb-n5,
  .mx-tb-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-tb-n5,
  .my-tb-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-tb-n5,
  .mx-tb-n5 {
    margin-left: -0.5rem !important;
  }
  .m-tb-n10 {
    margin: -1rem !important;
  }
  .mt-tb-n10,
  .my-tb-n10 {
    margin-top: -1rem !important;
  }
  .mr-tb-n10,
  .mx-tb-n10 {
    margin-right: -1rem !important;
  }
  .mb-tb-n10,
  .my-tb-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-tb-n10,
  .mx-tb-n10 {
    margin-left: -1rem !important;
  }
  .m-tb-n20 {
    margin: -2rem !important;
  }
  .mt-tb-n20,
  .my-tb-n20 {
    margin-top: -2rem !important;
  }
  .mr-tb-n20,
  .mx-tb-n20 {
    margin-right: -2rem !important;
  }
  .mb-tb-n20,
  .my-tb-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-tb-n20,
  .mx-tb-n20 {
    margin-left: -2rem !important;
  }
  .m-tb-n30 {
    margin: -3rem !important;
  }
  .mt-tb-n30,
  .my-tb-n30 {
    margin-top: -3rem !important;
  }
  .mr-tb-n30,
  .mx-tb-n30 {
    margin-right: -3rem !important;
  }
  .mb-tb-n30,
  .my-tb-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-tb-n30,
  .mx-tb-n30 {
    margin-left: -3rem !important;
  }
  .m-tb-auto {
    margin: auto !important;
  }
  .mt-tb-auto,
  .my-tb-auto {
    margin-top: auto !important;
  }
  .mr-tb-auto,
  .mx-tb-auto {
    margin-right: auto !important;
  }
  .mb-tb-auto,
  .my-tb-auto {
    margin-bottom: auto !important;
  }
  .ml-tb-auto,
  .mx-tb-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-5 {
    margin: 0.5rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 0.5rem !important;
  }
  .m-xl-10 {
    margin: 1rem !important;
  }
  .mt-xl-10,
  .my-xl-10 {
    margin-top: 1rem !important;
  }
  .mr-xl-10,
  .mx-xl-10 {
    margin-right: 1rem !important;
  }
  .mb-xl-10,
  .my-xl-10 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-10,
  .mx-xl-10 {
    margin-left: 1rem !important;
  }
  .m-xl-20 {
    margin: 2rem !important;
  }
  .mt-xl-20,
  .my-xl-20 {
    margin-top: 2rem !important;
  }
  .mr-xl-20,
  .mx-xl-20 {
    margin-right: 2rem !important;
  }
  .mb-xl-20,
  .my-xl-20 {
    margin-bottom: 2rem !important;
  }
  .ml-xl-20,
  .mx-xl-20 {
    margin-left: 2rem !important;
  }
  .m-xl-30 {
    margin: 3rem !important;
  }
  .mt-xl-30,
  .my-xl-30 {
    margin-top: 3rem !important;
  }
  .mr-xl-30,
  .mx-xl-30 {
    margin-right: 3rem !important;
  }
  .mb-xl-30,
  .my-xl-30 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-30,
  .mx-xl-30 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-5 {
    padding: 0.5rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 0.5rem !important;
  }
  .p-xl-10 {
    padding: 1rem !important;
  }
  .pt-xl-10,
  .py-xl-10 {
    padding-top: 1rem !important;
  }
  .pr-xl-10,
  .px-xl-10 {
    padding-right: 1rem !important;
  }
  .pb-xl-10,
  .py-xl-10 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-10,
  .px-xl-10 {
    padding-left: 1rem !important;
  }
  .p-xl-20 {
    padding: 2rem !important;
  }
  .pt-xl-20,
  .py-xl-20 {
    padding-top: 2rem !important;
  }
  .pr-xl-20,
  .px-xl-20 {
    padding-right: 2rem !important;
  }
  .pb-xl-20,
  .py-xl-20 {
    padding-bottom: 2rem !important;
  }
  .pl-xl-20,
  .px-xl-20 {
    padding-left: 2rem !important;
  }
  .p-xl-30 {
    padding: 3rem !important;
  }
  .pt-xl-30,
  .py-xl-30 {
    padding-top: 3rem !important;
  }
  .pr-xl-30,
  .px-xl-30 {
    padding-right: 3rem !important;
  }
  .pb-xl-30,
  .py-xl-30 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-30,
  .px-xl-30 {
    padding-left: 3rem !important;
  }
  .m-xl-n5 {
    margin: -0.5rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n10 {
    margin: -1rem !important;
  }
  .mt-xl-n10,
  .my-xl-n10 {
    margin-top: -1rem !important;
  }
  .mr-xl-n10,
  .mx-xl-n10 {
    margin-right: -1rem !important;
  }
  .mb-xl-n10,
  .my-xl-n10 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n10,
  .mx-xl-n10 {
    margin-left: -1rem !important;
  }
  .m-xl-n20 {
    margin: -2rem !important;
  }
  .mt-xl-n20,
  .my-xl-n20 {
    margin-top: -2rem !important;
  }
  .mr-xl-n20,
  .mx-xl-n20 {
    margin-right: -2rem !important;
  }
  .mb-xl-n20,
  .my-xl-n20 {
    margin-bottom: -2rem !important;
  }
  .ml-xl-n20,
  .mx-xl-n20 {
    margin-left: -2rem !important;
  }
  .m-xl-n30 {
    margin: -3rem !important;
  }
  .mt-xl-n30,
  .my-xl-n30 {
    margin-top: -3rem !important;
  }
  .mr-xl-n30,
  .mx-xl-n30 {
    margin-right: -3rem !important;
  }
  .mb-xl-n30,
  .my-xl-n30 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n30,
  .mx-xl-n30 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.animate__animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

.animate__imageScale {
  animation-name: imageScale;
}

@keyframes imageScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    pointer-events: none;
    display: none;
  }
}
@keyframes smoothArrow {
  0%, 100% {
    transform: translateY(-50%) translateY(4px);
  }
  50% {
    transform: translateY(-50%) translateY(-4px);
  }
}
@keyframes runningText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.btn {
  background-color: transparent;
  border-radius: 5rem;
  border: 1px solid transparent;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: 0.6;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn--primary {
  background: #0071B2;
  background: linear-gradient(90deg, rgb(0, 113, 178) 0%, rgb(65, 126, 140) 100%);
  max-width: 30rem;
  height: 6.1rem;
}
@media (min-width: 768px) {
  .btn--primary {
    max-width: 27rem;
    height: 5.5rem;
    transition: all 0.25s ease-in-out;
  }
  .btn--primary:hover {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
    border-color: var(--color-primary);
    color: var(--color-primary);
  }
}
.btn--arrow {
  position: relative;
}
@media (min-width: 768px) {
  .btn--arrow:hover::after {
    filter: brightness(1) invert(1);
  }
}
.btn--arrow::after {
  content: "";
  background: url("../img/common/icon_arrow_05.svg") no-repeat center/contain;
  width: 2.9rem;
  height: 0.9rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3.5rem;
}
@media (min-width: 768px) {
  .btn--arrow::after {
    width: 2.6rem;
    height: 0.8rem;
    right: 3.1rem;
  }
}
.btn--single-arrow {
  border: 1.5px solid var(--color-primary);
  position: relative;
  width: 7.1rem;
  height: 3.2rem;
}
.btn--single-arrow::after {
  content: "";
  background: url("../img/common/icon_arrow_03.svg") no-repeat center/contain;
  width: 1.5rem;
  height: 0.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: filter 0.4s ease;
}
@media (min-width: 768px) {
  .btn--single-arrow::after {
    width: 1.6rem;
    height: 0.6rem;
  }
}
@media (min-width: 768px) {
  .btn--single-arrow:hover {
    transition: all 0.25s ease-in-out;
    background: linear-gradient(90deg, rgb(0, 113, 178) 0%, rgb(65, 126, 140) 100%);
    border-color: transparent;
  }
  .btn--single-arrow:hover::after {
    filter: brightness(1) invert(1);
  }
}
.btn .--blank {
  position: relative;
}
.btn .--blank::after {
  display: inline-block;
  margin-left: 0.2rem;
  width: 1.2rem;
  height: 0.9rem;
  background: url("../img/common/icon_window_01.svg") no-repeat center/contain;
  content: "";
}
@media (min-width: 768px) {
  .btn:hover .--blank::after {
    background-image: url("../img/common/icon_window_02.svg");
  }
}

@media (min-width: 768px) {
  .hover {
    transition: all 0.25s ease-in-out;
  }
  .hover:hover {
    opacity: 0.7;
  }
}

.p-header {
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.5rem;
  background-color: #FFF;
  border-bottom: 1px solid #DFDFDF;
}
@media (min-width: 900px) {
  .p-header {
    justify-content: space-between;
    height: 8rem;
    padding: 0.5rem 7.1rem 0 3rem;
    border-bottom: 0;
  }
}
.p-header__logo {
  display: flex;
  align-items: center;
}
.p-header__logo img {
  display: block;
  width: 20rem;
}
@media (min-width: 900px) {
  .p-header__logo img {
    width: 24.9rem;
  }
}
.p-header__block {
  display: none;
}
@media (min-width: 900px) {
  .p-header__block {
    display: flex;
  }
}

.animation-firstview .p-header.p-header-top {
  opacity: 0;
  animation: fadeIn 2.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 2s;
}

.gtranslate_wrapper {
  align-self: center;
  margin-right: 2rem;
}

@media (min-width: 900px) {
  .main-menu {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-right: 5rem;
  }
}
@media (min-width: 900px) and (max-width: 1022px) {
  .main-menu {
    gap: 2.5rem;
    margin-right: 2.5rem;
  }
}
.main-menu li {
  display: flex;
}
.main-menu a {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  overflow: hidden;
  text-transform: capitalize;
}
.main-menu a span {
  display: inline-block;
  transform: translateY(0);
  transition: none;
}
.main-menu a::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  transform: translateY(100%);
  transition: none;
}
@media (min-width: 900px) {
  .main-menu a:hover span {
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateY(-100%);
  }
  .main-menu a:hover::after {
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateY(0);
  }
}

.p-hamburger {
  position: fixed;
  right: 0;
  display: block;
  z-index: 100;
  width: 6.5rem;
  height: 6.5rem;
  cursor: pointer;
}
@media (min-width: 900px) {
  .p-hamburger {
    top: 0;
    right: 2.3rem;
    width: 8rem;
    height: 8rem;
  }
}
.p-hamburger span {
  display: block;
  position: absolute;
  right: 2.1rem;
  width: 2.1rem;
  height: 2px;
  background-color: var(--color-primary);
  transition: 0.2s transform, 0.2s background-color;
}
@media (min-width: 900px) {
  .p-hamburger span {
    right: 2.9rem;
  }
}
.p-hamburger span:nth-child(1) {
  top: 2.5rem;
}
@media (min-width: 900px) {
  .p-hamburger span:nth-child(1) {
    top: 3.5rem;
  }
}
.p-hamburger span:nth-child(2) {
  top: 3.1rem;
}
@media (min-width: 900px) {
  .p-hamburger span:nth-child(2) {
    top: 4.1rem;
  }
}
.p-hamburger span:nth-child(3) {
  top: 3.7rem;
}
@media (min-width: 900px) {
  .p-hamburger span:nth-child(3) {
    top: 4.7rem;
  }
}
.p-hamburger.active span {
  background-color: #FFF;
}
.p-hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 3.1rem;
}
@media (min-width: 900px) {
  .p-hamburger.active span:nth-child(1) {
    top: 4.1rem;
  }
}
.p-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.p-hamburger.active span:nth-child(3) {
  top: 3.1rem;
  transform: rotate(-45deg);
}
@media (min-width: 900px) {
  .p-hamburger.active span:nth-child(3) {
    top: 4.1rem;
  }
}

.second-menu {
  display: block;
  position: fixed;
  right: 0;
  top: 0;
  max-width: 42rem;
  width: 100%;
  height: 100%;
  padding: 10rem 5rem;
  overflow-y: auto;
  background-color: rgba(28, 35, 68, 0.9);
  transform: translateX(110%);
  transition: transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
  pointer-events: none;
  z-index: 99;
}
.second-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.second-menu .custom-container-language {
  margin-bottom: 3rem;
}
.second-menu .custom-container-language .select2-selection__rendered {
  color: #FFF !important;
  font-size: 2rem !important;
}
.second-menu .custom-container-language .select2-selection__arrow {
  background: url("../img/common/icon_arrow_06.svg") no-repeat center center/contain !important;
}

.nav-1 {
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #FFF;
}
.nav-1 a {
  position: relative;
  display: inline-block;
  margin: 1.2rem 0;
  font-size: 2rem;
  font-weight: 500;
  color: #FFF;
  overflow: hidden;
  text-transform: capitalize;
}
.nav-1 a span {
  display: inline-block;
  transform: translateY(0);
  transition: none;
  text-transform: capitalize;
}
.nav-1 a::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  transform: translateY(100%);
  transition: none;
}
@media (min-width: 900px) {
  .nav-1 a:hover span {
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateY(-100%);
  }
  .nav-1 a:hover::after {
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateY(0);
  }
}

.nav-2 {
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #FFF;
}
.nav-2 a {
  position: relative;
  display: inline-block;
  margin: 0.8rem 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #FFF;
  overflow: hidden;
}
.nav-2 a span {
  display: inline-block;
  transform: translateY(0);
  transition: none;
}
.nav-2 a::after {
  position: absolute;
  inset: 0;
  content: attr(data-text);
  transform: translateY(100%);
  transition: none;
}
@media (min-width: 900px) {
  .nav-2 a:hover span {
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateY(-100%);
  }
  .nav-2 a:hover::after {
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateY(0);
  }
}

.p-footer {
  background-color: var(--color-primary);
  padding-block: 4.9rem;
}
@media (min-width: 768px) {
  .p-footer {
    padding-block: 6rem 7.6rem;
  }
}
.p-footer__logo {
  max-width: 25.9rem;
}
@media (min-width: 768px) {
  .p-footer__logo {
    max-width: 32.5rem;
  }
}
@media (max-width: 767px) {
  .p-footer__logo {
    margin: 0 auto;
  }
}
.p-footer__wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5.2rem;
}
@media (min-width: 768px) {
  .p-footer__wrap {
    gap: 2.6rem;
    justify-content: flex-start;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.p-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .p-footer__nav {
    justify-content: flex-start;
    gap: 9.2rem;
    margin-top: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .p-footer__nav {
    gap: 4rem;
  }
}
.p-footer__nav-item {
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer__nav-item {
    text-align: left;
  }
}
.p-footer__nav-item a {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 3.1428571429;
  text-transform: capitalize;
}
.p-footer__copyright {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .p-footer__copyright {
    font-size: 1.2rem;
    text-align: left;
  }
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  color: #000;
  display: block;
  font-family: var(--font-family-base);
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: 1.5;
  padding: 0.5rem 1rem;
  width: 100%;
  height: 6rem;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
.form-control::-moz-placeholder {
  color: #e6e6e6;
  opacity: 1;
}
.form-control::placeholder {
  color: #e6e6e6;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #1E1E1E;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.translate-wrap-primary {
  display: flex;
  align-items: center;
  margin-right: 4rem;
}
.translate-wrap-primary .country-selector.weglot-dropdown .wgcurrent {
  border: 0;
}
.translate-wrap-primary .country-selector.weglot-dropdown .wgcurrent::after {
  content: "";
  background: url("../img/common/icon_arrow_01.svg") no-repeat center;
  background-size: 1.5rem auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: rotate(0deg) translateY(-50%) !important;
  width: 1.5rem;
  height: 1.5rem;
}
.translate-wrap-primary .country-selector.weglot-dropdown .wgcurrent a, .translate-wrap-primary .country-selector.weglot-dropdown .wgcurrent span {
  font-size: 1.6rem;
  line-height: 1.5;
  height: auto;
  padding: 1rem 1.8rem 1rem 0;
}
.translate-wrap-primary .country-selector.weglot-dropdown a {
  font-size: 1.6rem;
  height: auto;
  line-height: 1.5;
  padding: 1rem;
}
.translate-wrap-primary .gtranslate_wrapper {
  position: relative;
  margin: 0 !important;
}
.translate-wrap-primary .gtranslate_wrapper::after {
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/common/icon_arrow_01.svg") no-repeat center center;
  background-size: 1.5rem auto;
  content: "";
  pointer-events: none;
}
.translate-wrap-primary .gt_selector {
  width: 9rem;
  margin-left: -2.5rem;
  border: 0;
  text-align: center;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.translate-wrap-primary .gt_selector::-ms-expand {
  display: none;
}
.translate-wrap-primary .gt_selector.lang-en, .translate-wrap-primary .gt_selector.lang-ja, .translate-wrap-primary .gt_selector.lang-zh-cn, .translate-wrap-primary .gt_selector.lang-zh-tw {
  width: 7rem;
}
.translate-wrap-primary .gt_selector.lang-ko {
  width: 9rem;
}

.translate-wrap-second {
  display: flex;
  margin-bottom: 3rem;
}
.translate-wrap-second .gtranslate_wrapper {
  position: relative;
  margin: 0 !important;
}
.translate-wrap-second .gtranslate_wrapper::after {
  position: absolute;
  right: 0;
  top: 0.8rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/common/icon_arrow_06.svg") no-repeat center center;
  background-size: 1.5rem auto;
  content: "";
  pointer-events: none;
}
.translate-wrap-second .gt_selector {
  padding-left: 0.8rem;
  margin-left: -0.8rem;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  font-size: 2rem;
}
.translate-wrap-second .gt_selector::-ms-expand {
  display: none;
}
.translate-wrap-second .gt_selector option {
  background-color: #FFF;
  color: var(--color-primary);
}
.translate-wrap-second .gt_selector.lang-en, .translate-wrap-second .gt_selector.lang-ja, .translate-wrap-second .gt_selector.lang-zh-cn, .translate-wrap-second .gt_selector.lang-zh-tw {
  width: 7rem;
}
.translate-wrap-second .gt_selector.lang-ko {
  width: 9rem;
}

.table {
  width: 100%;
}

.hline01 {
  margin-bottom: 2.8rem;
  text-align: center;
}
@media (min-width: 768px) {
  .hline01 {
    margin-bottom: 3.1rem;
  }
}
.hline01__ttl {
  display: block;
  font-family: var(--font-en);
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .hline01__ttl {
    font-size: 4.4rem;
    margin-bottom: 1rem;
  }
}
.hline01__sub {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .hline01--small .hline01__ttl {
    font-size: 3rem;
  }
}

.hline02 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hline02-en {
  font-family: var(--font-en);
  font-size: 3.4rem;
  font-weight: normal;
  line-height: 1;
}
@media (min-width: 768px) {
  .hline02-en {
    font-size: 3rem;
    margin-bottom: 0.3rem;
  }
}
@media (min-width: 992px) {
  .hline02-en {
    font-size: 4.4rem;
  }
}
.hline02-jp {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .hline02-jp {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.hline03 {
  padding: 1.1rem 2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #FFF;
  background: linear-gradient(to right, #0071B2, #417E8C);
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .hline03 {
    padding: 1.4rem 5rem;
    font-size: 2.8rem;
  }
}

.txt-1 {
  margin-bottom: 3.5rem;
  font-family: var(--font-ttl);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--color-text);
}
@media (min-width: 768px) {
  .txt-1 {
    font-size: 2rem;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.wrapper {
  padding-top: 6.5rem;
}
@media (min-width: 900px) {
  .wrapper {
    padding-top: 8rem;
  }
}

.body-txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.l-circle > li {
  padding-left: 2rem;
  text-indent: -1.8rem;
}

@media (min-width: 768px) {
  .p-intro {
    margin-block: 10.4rem 7.4rem;
  }
}
@media (min-width: 768px) {
  .p-intro .hline01 {
    margin-bottom: 2.3rem;
  }
}
.p-intro__desc {
  font-family: var(--font-ttl-des);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.02em;
  margin-bottom: 4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-intro__desc {
    font-size: 4rem;
    margin-bottom: 4.1rem;
  }
}
.p-intro__desc.custom {
  text-align: left;
}
@media (min-width: 768px) {
  .p-intro__desc.custom {
    text-align: center;
  }
}
.p-intro__txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 4rem;
  text-align: justify;
}
@media (min-width: 768px) {
  .p-intro__txt {
    margin-bottom: 4.7rem;
    text-align: center;
  }
}

.p-direct {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .p-direct {
    flex-direction: row;
    max-width: 91.3rem;
  }
}
.p-direct li {
  border-bottom: 1px solid #D3D3D3;
}
.p-direct li.item-1, .p-direct li.item-2, .p-direct li.item-3, .p-direct li.item-4, .p-direct li.item-5 {
  width: 100%;
}
.p-direct li:last-child {
  border-bottom: 0;
}
@media (min-width: 768px) {
  .p-direct li {
    border-bottom: 0;
  }
  .p-direct li.item-1 {
    width: 20%;
  }
  .p-direct li.item-2 {
    width: 16%;
  }
  .p-direct li.item-3 {
    width: 28%;
  }
  .p-direct li.item-4 {
    width: 18%;
  }
  .p-direct li.item-5 {
    width: 18%;
  }
}
.p-direct__link {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding-block: 1.2rem;
}
@media (min-width: 768px) {
  .p-direct__link {
    flex-direction: column;
    text-align: center;
  }
  .p-direct__link:hover::after {
    animation: smoothArrow 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
}
.p-direct__link::after {
  content: "";
  background: url("../img/common/icon_arrow_down01.svg") no-repeat center/contain;
  height: 0.8rem;
  width: 1.5rem;
}
@media (min-width: 768px) {
  .p-direct__link::after {
    margin: 0.9rem auto 0;
  }
}
.p-direct__icon {
  width: 4.5rem;
}
@media (min-width: 768px) {
  .p-direct__icon {
    width: auto;
    margin-bottom: 0.9rem;
  }
}
.p-direct__content {
  width: calc(100% - 4.5rem);
  padding-left: 2.5rem;
}
@media (min-width: 768px) {
  .p-direct__content {
    width: auto;
    padding-left: 0;
  }
}
.p-direct__ttl {
  font-family: var(--font-num);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
  white-space: nowrap;
}
.p-direct__sub {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .p-direct__sub {
    font-size: 1.4rem;
  }
}

.running-images {
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  width: 100%;
  height: 45.2rem;
}
@media (min-width: 768px) {
  .running-images {
    height: 54.4rem;
  }
}
.running-images__list {
  display: flex;
  flex-shrink: 0;
  gap: 3rem;
  padding: 0 1.5rem;
  animation: runningText 50s linear infinite;
}
@media (min-width: 768px) {
  .running-images__list {
    gap: 3.6rem;
    padding: 0 1.8rem;
  }
}
.running-images__item {
  width: 27.4rem;
  height: 36.5rem;
  aspect-ratio: 274/365;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .running-images__item {
    width: 33rem;
    height: 44rem;
    aspect-ratio: 33/44;
  }
}
.running-images__item:nth-child(odd) {
  transform: translateY(7rem);
}
@media (min-width: 768px) {
  .running-images__item:nth-child(odd) {
    transform: translateY(10.2rem);
  }
}
.running-images__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-policy {
  padding-block: 5rem 9.8rem;
}
@media (min-width: 768px) {
  .c-policy {
    padding-block: 9.3rem 11rem;
  }
}
.c-policy__wrap {
  padding-inline: 3rem;
}
@media (min-width: 768px) {
  .c-policy__wrap {
    max-width: 106rem;
    margin: 0 auto;
  }
}
.c-policy .hline01 {
  margin-bottom: 3.4rem;
}
@media (min-width: 768px) {
  .c-policy .hline01 {
    margin-bottom: 5.1rem;
  }
}
@media (min-width: 768px) {
  .c-policy .hline01__ttl {
    margin-bottom: 0.3rem;
  }
}
.c-policy__txt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .c-policy__txt {
    color: var(--color-black);
    line-height: 1.8;
    text-align: center;
  }
}
.c-policy__content {
  margin-top: 5.6rem;
}
@media (min-width: 768px) {
  .c-policy__content {
    margin-top: 6.3rem;
  }
}
.c-policy__list-ttl {
  border-bottom: 1px solid var(--color-black);
  font-weight: 500;
  font-size: 2rem;
  padding-bottom: 2.1rem;
  margin-bottom: 1.9rem;
}
@media (min-width: 768px) {
  .c-policy__list-ttl {
    color: var(--color-black);
    font-size: 2.2rem;
    line-height: 1.3090909091;
    padding-bottom: 2.9rem;
    margin-bottom: 2.1rem;
  }
}
.c-policy__list-desc {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.75;
  margin-inline-start: 0;
}
@media (min-width: 768px) {
  .c-policy__list-desc {
    color: var(--color-black);
    line-height: 1.8;
  }
}
.c-policy__list-desc ul li {
  display: flex;
}
.c-policy__list-desc ul li::before {
  content: "-";
}
.c-policy__list-desc + .c-policy__list-ttl {
  margin-top: 7.2rem;
}
@media (min-width: 768px) {
  .c-policy__list-desc + .c-policy__list-ttl {
    margin-top: 5.9rem;
  }
}

.p-pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 90;
  right: 2rem;
  bottom: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 10rem;
  border: 1px solid #FFF;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s opacity;
  cursor: pointer;
}
.p-pagetop.active {
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 768px) {
  .p-pagetop {
    right: 10rem;
    bottom: 10rem;
    width: 6.4rem;
    height: 6.4rem;
    background-size: 2.4rem auto;
    border-width: 2px;
  }
  .p-pagetop:hover span {
    animation: smoothArrow 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
}
.p-pagetop span {
  display: inline-flex;
  width: 1.4rem;
  height: 0.8rem;
  background: url("../img/common/icon_arrow_10.svg") no-repeat center center/contain;
}
@media (min-width: 768px) {
  .p-pagetop span {
    width: 2.4rem;
    height: 1.2rem;
  }
}