@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  margin: 0;
  padding: 0;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  appearance: button;
}

textarea {
  resize: vertical;
}

:focus-visible {
  outline: 2px solid #ff5252;
  outline-offset: 2px;
}

@media print {
  a {
    text-decoration: underline;
  }
}
.header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #333333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease-out;
}

.header .container {
  max-width: inherit;
  height: 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1100px) {
  .header .container {
    height: 7.5rem;
  }
}

.site-logo {
  width: 2.8125rem;
}
@media (min-width: 1100px) {
  .site-logo {
    width: 5.875rem;
  }
}
.site-logo a {
  color: inherit;
  display: block;
  line-height: 1;
}
.site-logo .logo01 {
  display: block;
  line-height: 1;
}
.site-logo svg {
  fill: #ff5252;
  transition: fill 0.3s;
  display: block;
}

footer {
  background-color: #000000;
  color: #ffffff;
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 5;
}
footer .footer-inner {
  padding: 4em min(5.7142857143vw, 24px) 3em;
}
@media (min-width: 768px) {
  footer .footer-inner {
    max-width: 1240px;
    padding: 100px min(4.7619047619vw, 20px) 48px;
    margin: 0 auto;
  }
}
footer .logo {
  margin: 0 auto 2em;
}
@media (min-width: 768px) {
  footer .logo {
    margin: 0 auto 40px;
  }
}
footer .logo a {
  display: inline-block;
}
footer .logo a img {
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  footer .logo a img {
    width: 5rem;
    height: auto;
  }
}
footer .logo a:hover img {
  opacity: 0.7;
}
footer .add {
  margin: 0 0 3em;
  font-weight: 500;
  font-size: min(3.3333333333vw, 0.875rem);
  line-height: 1.5;
}
@media (min-width: 768px) {
  footer .add {
    margin: 0 0 100px;
    font-size: 1rem;
  }
}

#footer .Copyright {
  display: block;
  font-size: min(3.3333333333vw, 0.875rem);
}
@media (min-width: 768px) {
  #footer .Copyright {
    font-size: min(1.2903225806vw, 1rem);
  }
}

/* page top */
#page-top {
  display: block;
  position: absolute;
  z-index: 9999;
  top: -2.5rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: #ffffff;
  text-decoration: none;
  background-color: #000000;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  #page-top {
    top: -3.75rem;
    width: 3.75rem;
    height: 3.75rem;
  }
}
#page-top:after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -5px;
}

#header .global-nav .with-arrow span {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateX(-2px) rotate(45deg);
}
@media (min-width: 1100px) {
  #header .global-nav {
    align-self: end;
  }
  #header .global-nav ul {
    display: flex !important;
    justify-content: center;
  }
  #header .global-nav li {
    position: relative;
    align-self: end;
  }
  #header .global-nav li + li {
    margin-left: min(2.0689655172vw, 30px);
  }
  #header .global-nav li a,
  #header .global-nav li .a-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: min(0.6896551724vw, 0.625rem);
    padding: 0.3125rem 0;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    font-size: min(1.2413793103vw, 1.125rem);
    font-weight: 500;
  }
  #header .global-nav li a:hover,
  #header .global-nav li .a-tag:hover {
    color: #ff5252;
  }
  #header .global-nav li a::after,
  #header .global-nav li .a-tag::after {
    content: "";
    background-color: #ff5252;
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 0.1875rem;
    transition: all 0.3s ease;
  }
  #header .global-nav li a:hover::after,
  #header .global-nav li .a-tag:hover::after {
    left: 0;
  }
  #header .global-nav li.nankodo-link {
    width: min(6.4137931034vw, 93px);
    margin-left: min(4.275862069vw, 3.875rem);
    padding-bottom: min(0.6896551724vw, 10px);
  }
  #header .global-nav li.nankodo-link a::after {
    display: none;
  }
  #header .global-nav .active > a {
    pointer-events: none;
  }
  #header .global-nav .active > a::after {
    left: 0;
  }
  #header .btn {
    display: none;
  }
}
@media (max-width: 1099.98px) {
  #header .global-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 25rem;
    height: 100%;
    background-color: #222222;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    overflow-y: auto;
  }
  #header .global-nav.is-open {
    transform: translateX(0);
  }
  #header .global-nav > ul {
    padding-top: 3.75rem;
  }
  #header .global-nav > ul > li {
    position: relative;
  }
  #header .global-nav > ul > li.is-active > a {
    background-color: #eee;
  }
  #header .global-nav > ul > li.is-active > .sub-menu {
    display: block;
  }
  #header .global-nav > ul > li .sub-menu li.is-active > .sub-menu {
    display: block;
  }
  #header .global-nav > ul > li > a,
  #header .global-nav > ul > li .a-tag {
    display: block;
    padding: 0.9375rem 1.25rem;
    min-height: 3.125rem;
    text-decoration: none;
    color: #ffffff;
    border-bottom: 1px solid #707070;
    position: relative;
    overflow: hidden;
    font-size: 1.125rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  #header .global-nav > ul > li > a:hover,
  #header .global-nav > ul > li .a-tag:hover {
    background-color: #565656;
  }
  #header .global-nav .with-arrow span {
    margin-left: 0.625rem;
    display: none;
  }
  #header .global-nav li.nankodo-link a {
    width: 5.8125rem;
    border-bottom: none;
    margin: 0 auto;
    padding: 1.25rem 0 0;
  }
  #header .global-nav .active > a {
    pointer-events: none;
  }
  #header .btn {
    padding: 3.125rem 1.25rem;
    text-align: center;
  }
  #header .btn a {
    max-width: 18.75rem;
    font-size: 1.125rem;
    height: 3.75rem;
    margin: 0 auto;
  }
  #header .btn a + a {
    margin-top: 1.875rem;
  }
}
#header .hamburger-button {
  display: block;
  position: absolute;
  top: calc(50% - 16px);
  right: 1.25rem;
  width: 2.25rem;
  height: 2rem;
  background-color: rgba(255, 255, 255, 0);
  border: none;
  border-radius: 0rem;
  cursor: pointer;
  z-index: 1000;
  padding: 0;
}
@media (max-width: 1099.98px) {
  #header .hamburger-button {
    right: min(1.8181818182vw, 20px);
  }
}
#header .hamburger-button span {
  display: block;
  position: absolute;
  height: 0.25rem;
  width: 2.25rem;
  background: #565656;
  border-radius: 0rem;
  left: 0;
  transform: translateX(0%);
  transition: all 0.3s ease-in-out;
}
#header .hamburger-button span:nth-child(1) {
  top: 0rem;
}
#header .hamburger-button span:nth-child(2) {
  top: 50%;
  transform: translate(0%, -50%);
}
#header .hamburger-button span:nth-child(3) {
  bottom: 0rem;
}
#header .hamburger-button.is-open span:nth-child(1) {
  top: 50%;
  transform: translate(0%, -50%) rotate(45deg);
}
#header .hamburger-button.is-open span:nth-child(2) {
  opacity: 0;
}
#header .hamburger-button.is-open span:nth-child(3) {
  bottom: 50%;
  transform: translate(0%, 50%) rotate(-45deg);
}
@media (max-width: 1099.98px) {
  #header .hamburger-button {
    display: none;
  }
}
#header .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  cursor: pointer;
}
#header .overlay.is-active {
  display: block;
}

#main-content #hero {
  position: relative;
  padding: 0;
  text-align: center;
}
@media (min-width: 768px) {
  #main-content #hero {
    padding: 0 1.5rem;
  }
}
@media (min-width: 768px) {
  #main-content #hero figure {
    width: min(97.4358974359vw, 1520px);
    padding-left: min(1.2820512821vw, 20px);
    margin: 0 auto;
    display: grid;
  }
  #main-content #hero figure > * {
    grid-row: 1;
    grid-column: 1;
  }
  #main-content #hero figure .img {
    width: min(92.3076923077vw, 1440px);
    margin-left: min(3.8461538462vw, 60px);
  }
}
@media (max-width: 767.98px) {
  #main-content #hero figure figcaption {
    padding: 9.75%;
  }
}
@media (min-width: 768px) {
  #main-content #hero figure h1 {
    width: min(39.2948717949vw, 613px);
    margin-top: min(8.5897435897vw, 134px);
  }
}
#main-content #hero figure h2 {
  margin-top: 9.75%;
  margin-right: 32%;
}
@media (min-width: 768px) {
  #main-content #hero figure h2 {
    width: min(26.4102564103vw, 412px);
    margin: min(4.4871794872vw, 70px) 0 0;
  }
}
@media (min-width: 768px) {
  #main-content .about-col-2 {
    display: flex;
    justify-content: space-between;
    gap: min(5.6451612903vw, 70px);
  }
}
@media (max-width: 767.98px) {
  #main-content .about-col-2 dt {
    margin: 0 auto min(7.1428571429vw, 30px);
    width: min(59.5238095238vw, 250px);
  }
}
@media (min-width: 768px) {
  #main-content .about-col-2 dt {
    width: min(30.6451612903vw, 380px);
    flex-shrink: 0;
  }
}
#main-content .about-col-2 dd {
  line-height: 2;
}
#main-content .about-col-2 .btn {
  display: flex;
}
@media (max-width: 767.98px) {
  #main-content .about-col-2 .btn {
    justify-content: center;
    flex-wrap: wrap;
    gap: min(4.7619047619vw, 20px);
    margin: 2.5rem 0 1.5625rem;
  }
}
@media (min-width: 768px) {
  #main-content .about-col-2 .btn {
    display: flex;
    justify-content: space-between;
    gap: min(3.2258064516vw, 40px);
    margin: min(3.6290322581vw, 45px) 0 min(2.4193548387vw, 30px);
  }
}
@media (max-width: 767.98px) {
  #main-content .about-col-2 .btn a {
    max-width: 300px;
  }
}
@media (min-width: 768px) {
  #main-content .about-col-2 .btn a {
    font-size: min(1.7741935484vw, 1.375rem);
    height: min(6.4516129032vw, 80px);
  }
}
#main-content #Features {
  background-image: url(../img/Features_bg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
#main-content #Features .list {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  #main-content #Features .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column; /* ★縦方向に埋めてから次の列へ */
    gap: min(4.8387096774vw, 60px) min(8.064516129vw, 100px);
  }
}
#main-content #Features li {
  display: flex;
  gap: 0.3125rem;
}
@media (min-width: 768px) {
  #main-content #Features li {
    gap: min(1.6129032258vw, 20px);
  }
}
#main-content #Features figure {
  width: min(9.5238095238vw, 40px);
  flex-shrink: 0;
}
@media (min-width: 768px) {
  #main-content #Features figure {
    width: min(6.4516129032vw, 80px);
  }
}
#main-content #Trailer .video-wrapper {
  max-width: 61.25rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 アスペクト比 */
  height: 0;
  overflow: hidden;
}
#main-content #Trailer .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
#main-content #Sample {
  background-image: url(../img/sample_bg.jpg);
  background-position: center top;
  background-size: cover;
}
#main-content #Sample .list {
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 767.98px) {
  #main-content #Sample .list {
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  #main-content #Sample .list {
    gap: min(6.4516129032vw, 80px);
    justify-content: space-between;
  }
}
#main-content #Sample li {
  color: #222222;
  background-color: #ffffff;
  border: 1px solid #ff5252;
  border-radius: 0.5rem;
  padding: 1.5625rem 1.25rem;
}
@media (min-width: 768px) {
  #main-content #Sample li {
    padding: min(2.8225806452vw, 35px) min(3.2258064516vw, 40px) min(3.2258064516vw, 40px);
    flex: 1;
  }
}
#main-content #Sample li h3 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  #main-content #Sample li h3 {
    font-size: 1.5rem;
  }
}
#main-content #Sample li p {
  margin: 0.625rem 0 1.25rem;
  line-height: 2;
}
#main-content #Sample li p a {
  color: #222222;
}
#main-content #Sample .lead-txt {
  line-height: 2;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  #main-content #Sample .lead-txt {
    margin-bottom: 3.75rem;
    text-align: center;
  }
}
#main-content #Other .list li + li {
  margin-top: 80px;
}
@media (min-width: 768px) {
  #main-content #Other .list li + li {
    margin-top: 100px;
  }
}
#main-content #Other .lead-txt {
  line-height: 2;
  margin-bottom: 3.75rem;
}
@media (min-width: 768px) {
  #main-content #Other .lead-txt {
    margin-bottom: 5.625rem;
    text-align: center;
  }
}
#main-content #Other .item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  #main-content #Other .item {
    flex-direction: row-reverse;
    gap: min(6.4516129032vw, 80px);
  }
}
#main-content #Other .item dt {
  display: flex;
  width: 12.5rem;
}
@media (max-width: 767.98px) {
  #main-content #Other .item dt {
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  #main-content #Other .item dt {
    flex-shrink: 0;
    align-items: flex-start;
    width: min(27.0161290323vw, 335px);
  }
}
#main-content #Other .item dd {
  flex-grow: 1;
}
#main-content #Other .item .btn-secondary {
  margin-top: 1.875rem;
}
@media (min-width: 768px) {
  #main-content #Other .item .btn-secondary {
    margin-top: min(4.8387096774vw, 60px);
  }
}
#main-content #Other h3 {
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  #main-content #Other h3 {
    font-size: 1.5rem;
    margin-bottom: 1.875rem;
  }
}
#main-content #Other h3 em {
  font-style: normal;
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  #main-content #Other h3 em {
    font-size: 2.25rem;
    margin-bottom: 0.9375rem;
  }
}
#main-content #Other p {
  line-height: 2;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  #main-content #Other p {
    margin-bottom: 3.75rem;
  }
}

#Trial-bnr {
  position: fixed;
  right: min(5.7142857143vw, 24px);
  bottom: 0.9375rem;
  z-index: 998;
  opacity: 1;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767.98px) {
  #Trial-bnr {
    right: 1.25rem;
    bottom: 1.25rem;
    width: 15.625rem;
  }
}
@media (min-width: 768px) {
  #Trial-bnr {
    right: 1.5625rem;
    bottom: 1.5625rem;
    width: 17.5rem;
  }
}
#Trial-bnr img {
  height: auto;
}
#Trial-bnr.show {
  opacity: 1;
}
#Trial-bnr .close {
  display: grid;
  place-items: center;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background-color: rgba(34, 34, 34, 0.6);
  cursor: pointer;
  position: absolute;
  top: -1.125rem;
  right: -1.125rem;
}
#Trial-bnr .close::before, #Trial-bnr .close::after {
  content: "";
  display: inline-block;
  width: 0.125rem;
  height: 0.875rem;
  background-color: #ffffff;
  grid-row: 1;
  grid-column: 1;
}
#Trial-bnr .close::before {
  transform: rotate(45deg);
}
#Trial-bnr .close::after {
  transform: rotate(-45deg);
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 3.75rem;
}
@media (min-width: 1100px) {
  html {
    scroll-padding-top: 7.5rem;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  font-size: 0.875rem;
  color: #ffffff;
  background-color: #000000;
  padding-top: 3.75rem;
}
@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
  }
}
@media (min-width: 1100px) {
  body {
    padding-top: 7.5rem;
  }
}

.font-en,
.news-date {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

#main-content {
  overflow: hidden;
}
#main-content h1,
#main-content h2,
#main-content h3,
#main-content h4,
#main-content h5,
#main-content h6 {
  font-weight: 700;
  line-height: 1.2;
}
#main-content a {
  text-decoration: underline;
  color: #222222;
}
#main-content a:hover {
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 80.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: min(5.7142857143vw, 24px);
  padding-right: min(5.7142857143vw, 24px);
}
@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section {
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 6.25rem 0;
  }
}
.section + .section {
  padding: 0 0 3.75rem;
}
@media (min-width: 768px) {
  .section + .section {
    padding: 0 0 6.25rem;
  }
}

.stack p + * {
  margin-top: 0.875rem;
}
@media (min-width: 768px) {
  .stack p + * {
    margin-top: 1rem;
  }
}

.section-heading + * {
  margin-top: 3.125rem;
}
@media (min-width: 768px) {
  .section-heading + * {
    margin-top: 5rem;
  }
}

.section-heading + .lead-text-md {
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .section-heading + .lead-text-md {
    margin-top: 1.875rem;
  }
}

.section-heading--second + * {
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .section-heading--second + * {
    margin-top: 2.5rem;
  }
}

* + .section-heading--second {
  margin-top: 5rem;
}
@media (min-width: 768px) {
  * + .section-heading--second {
    margin-top: 6.25rem;
  }
}

.section-heading--third + * {
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .section-heading--third + * {
    margin-top: 2.5rem;
  }
}

* + .section-heading--third {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  * + .section-heading--third {
    margin-top: 5rem;
  }
}

.container + .container {
  margin-top: 3.5rem;
}
@media (min-width: 768px) {
  .container + .container {
    margin-top: 4rem;
  }
}

.section-heading {
  font-size: 1.75rem;
  color: #000000;
  text-align: center;
  position: relative;
  padding-bottom: 0.9375rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .section-heading {
    font-size: 2rem;
    padding-bottom: 1.5625rem;
  }
}
.section-heading::after {
  content: "";
  height: 0.1875rem;
  width: 11.25rem;
  background: linear-gradient(to right, #b6bec2, #ff5252);
  border-radius: 10em;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .section-heading::after {
    height: 0.375rem;
    width: 18.75rem;
  }
}

.section-heading--second {
  font-size: 1rem;
  color: #000000;
  padding: 0.5rem 0;
  border-top: 3px solid #ff5252;
  border-bottom: 3px solid #ff5252;
}
@media (min-width: 768px) {
  .section-heading--second {
    font-size: 1.375rem;
    padding: 0.625rem 0;
  }
}

.section-heading--third {
  font-size: 0.9375rem;
  color: #000000;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ff5252;
}
@media (min-width: 768px) {
  .section-heading--third {
    font-size: 1.25rem;
    padding-bottom: 0.625rem;
  }
}

.lead-text-md {
  font-size: 1.125rem;
  line-height: 2;
}
@media (min-width: 768px) {
  .lead-text-md {
    font-size: 1.5rem;
  }
}

.lead-text {
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .lead-text {
    font-size: 1.375rem;
  }
}

.lead-text-lg {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .lead-text-lg {
    font-size: 2rem;
  }
}

#page-hero {
  background-image: url(../img/common/sub-hero.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 9.375rem;
}
@media (min-width: 768px) {
  #page-hero {
    height: 15.625rem;
  }
}

.page-title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: #333333;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-title {
    font-size: 32px;
  }
}

/* ===================================
// パンくずリスト (Breadcrumbs) スタイル
// =================================== */
.breadcrumb-nav {
  padding: 0.625rem 0;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .breadcrumb-list {
    font-size: 0.875rem;
  }
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #000000;
}
.breadcrumb-item a {
  color: #000000;
  text-decoration: underline;
}
.breadcrumb-item::after {
  content: "";
  display: inline-block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-right: 1px solid #000000;
  border-top: 1px solid #000000;
  transform: rotate(45deg);
  margin: 0 0.375rem;
}
@media (min-width: 768px) {
  .breadcrumb-item::after {
    margin: 0 0.5rem;
  }
}
.breadcrumb-item:last-child::after {
  display: none;
}
.breadcrumb-item.current {
  color: #000000;
  font-weight: 700;
}

.grid-2-col-content {
  display: flex;
  flex-direction: column;
}
.grid-2-col-content .image-content {
  align-self: center;
  margin: 20px 0;
}
@media (min-width: 768px) {
  .grid-2-col-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .grid-2-col-content .text-content,
  .grid-2-col-content .image-content {
    width: 48%;
    margin: 0;
  }
  .grid-2-col-content .image-content {
    align-self: auto;
  }
}

#main-content [class^=btn-],
#header [class^=btn-],
#footer [class^=btn-] {
  display: inline-flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.625rem 1.25rem;
  line-height: 1.2;
  transition: all 0.3s ease;
}
#main-content [class^=btn-]:active,
#header [class^=btn-]:active,
#footer [class^=btn-]:active {
  transform: translateY(1px);
}
#main-content .btn-primary,
#header .btn-primary,
#footer .btn-primary {
  background-color: #ff5252;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 10em;
  width: 100%;
  max-width: 460px;
  height: 3.125rem;
}
@media (min-width: 768px) {
  #main-content .btn-primary,
  #header .btn-primary,
  #footer .btn-primary {
    font-size: 22px;
    height: 5rem;
  }
}
#main-content .btn-primary:hover,
#header .btn-primary:hover,
#footer .btn-primary:hover {
  background-color: #ff8585;
  border-color: #ff8585;
}
#main-content .btn-primary [class^=i-] svg,
#header .btn-primary [class^=i-] svg,
#footer .btn-primary [class^=i-] svg {
  fill: #ffffff;
}
#main-content .i-opwn svg,
#header .i-opwn svg,
#footer .i-opwn svg {
  width: 0.875rem;
  height: 0.875rem;
}
#main-content .btn-blank,
#header .btn-blank,
#footer .btn-blank {
  color: #ffffff;
  background-color: #565656;
}
#main-content .btn-blank:hover,
#header .btn-blank:hover,
#footer .btn-blank:hover {
  background-color: rgba(86, 86, 86, 0.8);
}
#main-content .btn-secondary,
#header .btn-secondary,
#footer .btn-secondary {
  background-color: #ffffff;
  color: #707f89;
  border-color: #707f89;
  border-radius: 50rem;
  max-width: 320px;
  width: 100%;
  padding: 1em;
}
@media (min-width: 768px) {
  #main-content .btn-secondary,
  #header .btn-secondary,
  #footer .btn-secondary {
    height: 3.75rem;
  }
}
#main-content .btn-secondary:hover,
#header .btn-secondary:hover,
#footer .btn-secondary:hover {
  opacity: 0.7;
}
#main-content .btn-white,
#header .btn-white,
#footer .btn-white {
  background-color: #ffffff;
}
#main-content .btn-white:hover,
#header .btn-white:hover,
#footer .btn-white:hover {
  background-color: rgba(112, 112, 112, 0.9);
}
#main-content .btn-outline-primary,
#header .btn-outline-primary,
#footer .btn-outline-primary {
  background-color: transparent;
  color: #ff5252;
  border-color: #ff5252;
}
#main-content .btn-outline-primary:hover,
#header .btn-outline-primary:hover,
#footer .btn-outline-primary:hover {
  background-color: #ff5252;
  color: #ffffff;
}
#main-content .btn-outline-primary [class^=i-] svg,
#header .btn-outline-primary [class^=i-] svg,
#footer .btn-outline-primary [class^=i-] svg {
  fill: #ff5252;
}
#main-content .btn-outline-primary:hover [class^=i-] svg,
#header .btn-outline-primary:hover [class^=i-] svg,
#footer .btn-outline-primary:hover [class^=i-] svg {
  fill: #ffffff;
}
#main-content .btn-with-arrow,
#header .btn-with-arrow,
#footer .btn-with-arrow {
  position: relative;
  padding-right: 7.5rem;
}
#main-content .btn-with-arrow::after,
#header .btn-with-arrow::after,
#footer .btn-with-arrow::after {
  content: "→";
  position: absolute;
  right: 3.125rem;
  transition: right 0.3s ease 0.3s ease;
}
#main-content .btn-with-arrow.is-back,
#header .btn-with-arrow.is-back,
#footer .btn-with-arrow.is-back {
  background-color: rgba(86, 86, 86, 0.8);
  border: 1px solid rgba(86, 86, 86, 0.8);
  padding-right: 3.125rem;
  padding-left: 7.5rem;
}
#main-content .btn-with-arrow.is-back::after,
#header .btn-with-arrow.is-back::after,
#footer .btn-with-arrow.is-back::after {
  display: none;
}
#main-content .btn-with-arrow.is-back::before,
#header .btn-with-arrow.is-back::before,
#footer .btn-with-arrow.is-back::before {
  content: "←";
  position: absolute;
  left: 3.125rem;
  transition: left 0.3s ease 0.3s ease;
}
#main-content .btn-with-arrow:hover::after,
#header .btn-with-arrow:hover::after,
#footer .btn-with-arrow:hover::after {
  right: 1.875rem;
}
#main-content .btn-with-arrow.is-back:hover,
#header .btn-with-arrow.is-back:hover,
#footer .btn-with-arrow.is-back:hover {
  background-color: #565656;
}
#main-content .btn-with-arrow.is-back:hover::before,
#header .btn-with-arrow.is-back:hover::before,
#footer .btn-with-arrow.is-back:hover::before {
  left: 1.875rem;
}
#main-content .icon-pdf,
#header .icon-pdf,
#footer .icon-pdf {
  display: inline-block;
  margin-left: 5px;
}
#main-content .--pill,
#header .--pill,
#footer .--pill {
  border-radius: 50rem;
}
#main-content .--pill-sm,
#header .--pill-sm,
#footer .--pill-sm {
  border-radius: 0.25rem;
}
#main-content .--shadow,
#header .--shadow,
#footer .--shadow {
  box-shadow: 0 3px 6px rgba(86, 86, 86, 0.4);
}
#main-content .--shadow:hover,
#header .--shadow:hover,
#footer .--shadow:hover {
  box-shadow: 0 4px 8px rgba(86, 86, 86, 0.6);
  transform: translateY(-2px);
}
#main-content .--nolink,
#header .--nolink,
#footer .--nolink {
  pointer-events: none;
}
#main-content .icon-plus-minus,
#header .icon-plus-minus,
#footer .icon-plus-minus {
  position: relative;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  /* 横線 */
  /* 縦線 */
}
#main-content .icon-plus-minus::before, #main-content .icon-plus-minus::after,
#header .icon-plus-minus::before,
#header .icon-plus-minus::after,
#footer .icon-plus-minus::before,
#footer .icon-plus-minus::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#main-content .icon-plus-minus::before,
#header .icon-plus-minus::before,
#footer .icon-plus-minus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
#main-content .icon-plus-minus::after,
#header .icon-plus-minus::after,
#footer .icon-plus-minus::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.active #main-content .icon-plus-minus::after,
.active #header .icon-plus-minus::after,
.active #footer .icon-plus-minus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
#main-content .btn-transparent-hover,
#header .btn-transparent-hover,
#footer .btn-transparent-hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #ff5252;
  border: 1px solid #ff5252;
}
#main-content .btn-transparent-hover:hover,
#header .btn-transparent-hover:hover,
#footer .btn-transparent-hover:hover {
  background-color: #ff5252;
  color: #ffffff;
}
#main-content .btn-transparent-hover [class^=i-] svg,
#header .btn-transparent-hover [class^=i-] svg,
#footer .btn-transparent-hover [class^=i-] svg {
  fill: #ff5252;
}
#main-content .btn-transparent-hover:hover [class^=i-] svg,
#header .btn-transparent-hover:hover [class^=i-] svg,
#footer .btn-transparent-hover:hover [class^=i-] svg {
  fill: #ffffff;
}
#main-content .btn-more,
#header .btn-more,
#footer .btn-more {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ff5252;
  color: #ff5252;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
#main-content .btn-more:hover,
#header .btn-more:hover,
#footer .btn-more:hover {
  background-color: #ff5252;
  color: #ffffff;
}
#main-content .btn-sm,
#header .btn-sm,
#footer .btn-sm {
  padding: 1.25rem 1.875rem;
  font-size: 0.875rem;
}
#main-content .btn-lg,
#header .btn-lg,
#footer .btn-lg {
  padding: 3.125rem 5rem;
  font-size: 1.25rem;
}

hr.my-lg {
  border: none;
  border-top: 1px solid #707070; /* 変数に合わせて調整 */
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  hr.my-lg {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

hr.my-xl {
  border: none;
  border-top: 2px solid #707070; /* 変数に合わせて調整 */
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
}
@media (min-width: 768px) {
  hr.my-xl {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
}

.bg-success {
  background-color: #28a745 !important;
}

.bg-success-light {
  background-color: rgb(92.8405797101, 216.1594202899, 121) !important;
}

.bg-success-dark {
  background-color: rgb(30.1449275362, 125.8550724638, 52) !important;
}

.bg-primary {
  background-color: #ff5252 !important;
}

.bg-primary-light {
  background-color: #ff6d01 !important;
}

.bg-primary-lighter {
  background-color: #ff6d01 !important;
}

.bg-secondary {
  background-color: #1c2e67 !important;
}

.bg-gray {
  background-color: #333333 !important;
}

.bg-gray-light {
  background-color: #707070 !important;
}

.bg-gray-dark {
  background-color: #333333 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-primary {
  color: #ff5252 !important;
}

.text-secondary {
  color: #1c2e67 !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.fs-sm {
  font-size: 0.75rem !important;
}
@media (min-width: 768px) {
  .fs-sm {
    font-size: 1rem !important;
  }
}

.mt-00 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 1em !important;
}

.mt-sm {
  margin-top: 1.25rem !important;
}

.mt-md {
  margin-top: 1.875rem !important;
}

.mt-lg {
  margin-top: 3.125rem !important;
}

.mt-xl {
  margin-top: 5rem !important;
}

.mt-xxl {
  margin-top: 6.25rem !important;
}

.mb-00 {
  margin-bottom: 0 !important;
}

.mb-xs {
  margin-bottom: 0.625rem !important;
}
@media (min-width: 768px) {
  .mb-xs {
    margin-bottom: 0.9375rem !important;
  }
}

.mb-sm {
  margin-bottom: 0.9375rem !important;
}
@media (min-width: 768px) {
  .mb-sm {
    margin-bottom: 1.25rem !important;
  }
}

.mb-md {
  margin-bottom: 1.25rem !important;
}
@media (min-width: 768px) {
  .mb-md {
    margin-bottom: 1.875rem !important;
  }
}

.mb-lg {
  margin-bottom: 1.875rem !important;
}
@media (min-width: 768px) {
  .mb-lg {
    margin-bottom: 3.125rem !important;
  }
}

.mb-xl {
  margin-bottom: 5rem !important;
}

.mb-xxl {
  margin-bottom: 6.25rem !important;
}

/* 括弧を囲む要素のスタイルを調整 */
.kerning-back {
  letter-spacing: -0.5em;
}

.kerning-front {
  text-indent: -0.5em;
  display: inline-block;
}

.kerning-both {
  text-indent: -0.2em;
  letter-spacing: -0.2em;
  display: inline-block;
}

.br-pc {
  display: none;
}
@media (min-width: 768px) {
  .br-pc {
    display: block;
  }
}

.br-sp {
  display: block;
}
@media (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  font-weight: 700;
}
section h1[data-heading-design=marker-underline],
section h2[data-heading-design=marker-underline],
section h3[data-heading-design=marker-underline],
section h4[data-heading-design=marker-underline],
section h5[data-heading-design=marker-underline],
section h6[data-heading-design=marker-underline] {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  z-index: 1;
}
section h1[data-heading-design=marker-underline]::after,
section h2[data-heading-design=marker-underline]::after,
section h3[data-heading-design=marker-underline]::after,
section h4[data-heading-design=marker-underline]::after,
section h5[data-heading-design=marker-underline]::after,
section h6[data-heading-design=marker-underline]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 35%; /* マーカーの太さ */
  background-color: hsl(0, 100%, 106.0784313725%); /* 薄いマーカー色 */
  z-index: -1;
}
section h1[data-heading-design=gradation-border-accent],
section h2[data-heading-design=gradation-border-accent],
section h3[data-heading-design=gradation-border-accent],
section h4[data-heading-design=gradation-border-accent],
section h5[data-heading-design=gradation-border-accent],
section h6[data-heading-design=gradation-border-accent] {
  position: relative;
  padding-bottom: 0.9375rem;
  font-size: 1.75rem;
  color: #000000;
}
@media (min-width: 768px) {
  section h1[data-heading-design=gradation-border-accent],
  section h2[data-heading-design=gradation-border-accent],
  section h3[data-heading-design=gradation-border-accent],
  section h4[data-heading-design=gradation-border-accent],
  section h5[data-heading-design=gradation-border-accent],
  section h6[data-heading-design=gradation-border-accent] {
    padding-bottom: 1.5625rem;
    font-size: 2rem;
  }
}
section h1[data-heading-design=gradation-border-accent]::after,
section h2[data-heading-design=gradation-border-accent]::after,
section h3[data-heading-design=gradation-border-accent]::after,
section h4[data-heading-design=gradation-border-accent]::after,
section h5[data-heading-design=gradation-border-accent]::after,
section h6[data-heading-design=gradation-border-accent]::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  background: linear-gradient(90deg, rgb(28, 46, 103), rgb(45, 182, 168));
  width: 2.5rem;
  height: 0.3125rem;
}
@media (min-width: 768px) {
  section h1[data-heading-design=gradation-border-accent]::after,
  section h2[data-heading-design=gradation-border-accent]::after,
  section h3[data-heading-design=gradation-border-accent]::after,
  section h4[data-heading-design=gradation-border-accent]::after,
  section h5[data-heading-design=gradation-border-accent]::after,
  section h6[data-heading-design=gradation-border-accent]::after {
    width: 5rem;
    height: 0.625rem;
  }
}
section h1[data-heading-design=border-top-bottom],
section h2[data-heading-design=border-top-bottom],
section h3[data-heading-design=border-top-bottom],
section h4[data-heading-design=border-top-bottom],
section h5[data-heading-design=border-top-bottom],
section h6[data-heading-design=border-top-bottom] {
  padding: min(1.1904761905vw, 5px) min(3.5714285714vw, 15px);
  border-top: 1px solid #ff5252;
  border-bottom: 1px solid #ff5252;
  font-size: 1.5rem;
  line-height: 1.6 !important;
}
@media (min-width: 768px) {
  section h1[data-heading-design=border-top-bottom],
  section h2[data-heading-design=border-top-bottom],
  section h3[data-heading-design=border-top-bottom],
  section h4[data-heading-design=border-top-bottom],
  section h5[data-heading-design=border-top-bottom],
  section h6[data-heading-design=border-top-bottom] {
    padding: 0.8125rem 0.625rem 0.9375rem;
    font-size: 2rem;
  }
}
section h1[data-heading-design=underline-primary],
section h2[data-heading-design=underline-primary],
section h3[data-heading-design=underline-primary],
section h4[data-heading-design=underline-primary],
section h5[data-heading-design=underline-primary],
section h6[data-heading-design=underline-primary] {
  border-bottom: 2px solid #ff5252;
  padding-bottom: min(1.9047619048vw, 8px);
}
@media (min-width: 768px) {
  section h1[data-heading-design=underline-primary],
  section h2[data-heading-design=underline-primary],
  section h3[data-heading-design=underline-primary],
  section h4[data-heading-design=underline-primary],
  section h5[data-heading-design=underline-primary],
  section h6[data-heading-design=underline-primary] {
    padding-bottom: min(0.9677419355vw, 12px);
  }
}
section h1[data-heading-design=border-left-accent],
section h2[data-heading-design=border-left-accent],
section h3[data-heading-design=border-left-accent],
section h4[data-heading-design=border-left-accent],
section h5[data-heading-design=border-left-accent],
section h6[data-heading-design=border-left-accent] {
  display: inline-block;
  padding: min(1.1904761905vw, 5px) min(3.5714285714vw, 15px);
  background-color: #f8f8f8;
  border-left: 5px solid #dc3545;
}
@media (min-width: 768px) {
  section h1[data-heading-design=border-left-accent],
  section h2[data-heading-design=border-left-accent],
  section h3[data-heading-design=border-left-accent],
  section h4[data-heading-design=border-left-accent],
  section h5[data-heading-design=border-left-accent],
  section h6[data-heading-design=border-left-accent] {
    padding: min(0.8064516129vw, 10px) min(1.6129032258vw, 20px);
  }
}
section h1[data-heading-design=ribbon-background],
section h2[data-heading-design=ribbon-background],
section h3[data-heading-design=ribbon-background],
section h4[data-heading-design=ribbon-background],
section h5[data-heading-design=ribbon-background],
section h6[data-heading-design=ribbon-background] {
  position: relative;
  display: inline-block;
  padding: min(2.380952381vw, 10px) min(7.1428571429vw, 30px);
  background-color: #ff5252;
  color: #ffffff !important;
}
section h1[data-heading-design=ribbon-background]::after,
section h2[data-heading-design=ribbon-background]::after,
section h3[data-heading-design=ribbon-background]::after,
section h4[data-heading-design=ribbon-background]::after,
section h5[data-heading-design=ribbon-background]::after,
section h6[data-heading-design=ribbon-background]::after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  border: 10px solid transparent;
  border-top-color: #ff1f1f;
}
section h1[data-heading-design=simple-line-box],
section h2[data-heading-design=simple-line-box],
section h3[data-heading-design=simple-line-box],
section h4[data-heading-design=simple-line-box],
section h5[data-heading-design=simple-line-box],
section h6[data-heading-design=simple-line-box] {
  border: 1px solid #565656;
  padding: min(2.380952381vw, 10px) 0;
}
@media (min-width: 768px) {
  section h1[data-heading-design=simple-line-box],
  section h2[data-heading-design=simple-line-box],
  section h3[data-heading-design=simple-line-box],
  section h4[data-heading-design=simple-line-box],
  section h5[data-heading-design=simple-line-box],
  section h6[data-heading-design=simple-line-box] {
    padding: min(1.2096774194vw, 15px) 0;
  }
}
section h1[data-heading-design=double-line-primary],
section h2[data-heading-design=double-line-primary],
section h3[data-heading-design=double-line-primary],
section h4[data-heading-design=double-line-primary],
section h5[data-heading-design=double-line-primary],
section h6[data-heading-design=double-line-primary] {
  position: relative;
  padding-bottom: min(3.5714285714vw, 15px);
  border-bottom: 1px solid #333333;
}
section h1[data-heading-design=double-line-primary]::after,
section h2[data-heading-design=double-line-primary]::after,
section h3[data-heading-design=double-line-primary]::after,
section h4[data-heading-design=double-line-primary]::after,
section h5[data-heading-design=double-line-primary]::after,
section h6[data-heading-design=double-line-primary]::after {
  content: "";
  position: absolute;
  bottom: min(1.9047619048vw, 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ff5252;
}
section h1[data-heading-design=speech-bubble],
section h2[data-heading-design=speech-bubble],
section h3[data-heading-design=speech-bubble],
section h4[data-heading-design=speech-bubble],
section h5[data-heading-design=speech-bubble],
section h6[data-heading-design=speech-bubble] {
  position: relative;
  display: inline-block;
  padding: min(2.8571428571vw, 12px) min(5.9523809524vw, 25px);
  background-color: #1c2e67;
  color: #ffffff !important;
  border-radius: 4px;
}
section h1[data-heading-design=speech-bubble]::before,
section h2[data-heading-design=speech-bubble]::before,
section h3[data-heading-design=speech-bubble]::before,
section h4[data-heading-design=speech-bubble]::before,
section h5[data-heading-design=speech-bubble]::before,
section h6[data-heading-design=speech-bubble]::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #1c2e67;
}
section h1[data-heading-design=shadow-box],
section h2[data-heading-design=shadow-box],
section h3[data-heading-design=shadow-box],
section h4[data-heading-design=shadow-box],
section h5[data-heading-design=shadow-box],
section h6[data-heading-design=shadow-box] {
  display: inline-block;
  padding: min(2.380952381vw, 10px) min(4.7619047619vw, 20px);
  background-color: #ffffff;
  box-shadow: 4px 4px 0px #ff6d01;
  border: 1px solid #ff5252;
}
section h1[data-heading-design=vertical-ribbon],
section h2[data-heading-design=vertical-ribbon],
section h3[data-heading-design=vertical-ribbon],
section h4[data-heading-design=vertical-ribbon],
section h5[data-heading-design=vertical-ribbon],
section h6[data-heading-design=vertical-ribbon] {
  position: relative;
  padding-left: min(7.1428571429vw, 30px);
  text-align: left !important;
}
section h1[data-heading-design=vertical-ribbon]::before,
section h2[data-heading-design=vertical-ribbon]::before,
section h3[data-heading-design=vertical-ribbon]::before,
section h4[data-heading-design=vertical-ribbon]::before,
section h5[data-heading-design=vertical-ribbon]::before,
section h6[data-heading-design=vertical-ribbon]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 10px;
  background-color: #ff5252;
}
section h1[data-heading-design=icon-left-accent],
section h2[data-heading-design=icon-left-accent],
section h3[data-heading-design=icon-left-accent],
section h4[data-heading-design=icon-left-accent],
section h5[data-heading-design=icon-left-accent],
section h6[data-heading-design=icon-left-accent] {
  border-bottom: 2px solid #707070;
  padding-bottom: min(2.380952381vw, 10px);
  text-align: left !important;
}
section h1[data-heading-design=left-right-line],
section h2[data-heading-design=left-right-line],
section h3[data-heading-design=left-right-line],
section h4[data-heading-design=left-right-line],
section h5[data-heading-design=left-right-line],
section h6[data-heading-design=left-right-line] {
  color: #ff5252;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  white-space: nowrap;
}
section h1[data-heading-design=left-right-line]::before, section h1[data-heading-design=left-right-line]::after,
section h2[data-heading-design=left-right-line]::before,
section h2[data-heading-design=left-right-line]::after,
section h3[data-heading-design=left-right-line]::before,
section h3[data-heading-design=left-right-line]::after,
section h4[data-heading-design=left-right-line]::before,
section h4[data-heading-design=left-right-line]::after,
section h5[data-heading-design=left-right-line]::before,
section h5[data-heading-design=left-right-line]::after,
section h6[data-heading-design=left-right-line]::before,
section h6[data-heading-design=left-right-line]::after {
  content: "";
  height: 2px;
  width: 100%;
  display: block;
  background-color: rgb(255, 209.5, 209.5);
}
section h1[data-heading-design=left-line],
section h2[data-heading-design=left-line],
section h3[data-heading-design=left-line],
section h4[data-heading-design=left-line],
section h5[data-heading-design=left-line],
section h6[data-heading-design=left-line] {
  color: #ff5252;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  white-space: nowrap;
}
section h1[data-heading-design=left-line]::after,
section h2[data-heading-design=left-line]::after,
section h3[data-heading-design=left-line]::after,
section h4[data-heading-design=left-line]::after,
section h5[data-heading-design=left-line]::after,
section h6[data-heading-design=left-line]::after {
  content: "";
  height: 2px;
  width: 100%;
  display: block;
  background-color: rgb(255, 209.5, 209.5);
}

[class^=i-] {
  display: inline-block;
  line-height: 1;
}
[class^=i-] svg {
  width: 100%;
  height: 100%;
}

.indented-list-1em li {
  text-indent: -1em;
  padding-left: 1em;
}

.list-circle li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.list-circle li + li {
  margin-top: 1em;
}
.list-circle li::before {
  content: "●";
  color: #ff5252;
  margin-right: 0.5em;
}

.list-dot li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.list-dot li + li {
  margin-top: 1em;
}
.list-dot li::before {
  content: "・";
  color: #000000;
  margin-right: 0.5em;
}

ol.list-number--square {
  counter-reset: number 0;
}
ol.list-number--square li {
  padding-left: 2.4em;
  margin: 0 0 0.5em;
  position: relative;
}
ol.list-number--square li::before {
  counter-increment: number 1;
  content: counter(number) "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #ff5252;
  font-size: 88.89%;
}/*# sourceMappingURL=style.css.map */