@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*変数設定用*/
@media screen and (min-width: 768px) {
  .vpc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .vpc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .vsp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .vsp {
    display: block;
  }
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: #000;
}
a:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

body {
  font-size: 1.6rem;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: auto;
  letter-spacing: 0.05em;
  padding: 0;
}
@media screen and (max-width: 768px) {
  body {
    padding: 0 0 60px;
  }
}
body .all-container {
  overflow: clip;
  position: relative;
}
@media screen and (min-width: 768px) {
  body .all-container {
    min-width: 1200px;
  }
}

.dib {
  display: inline-block;
}

.inner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 767px) and (max-width: 1200px) {
  .inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}

header {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
header .logo-wrap {
  width: 97px;
  position: absolute;
  top: 14px;
  left: 20px;
}
header .header-link-list {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: 80px;
  inset: 0 0 auto auto;
}
@media screen and (max-width: 768px) {
  header .header-link-list {
    inset: auto auto 0 0;
    height: 60px;
    width: 100%;
  }
}
header .header-link-list li {
  height: 100%;
}
@media screen and (max-width: 768px) {
  header .header-link-list li {
    width: 50%;
  }
}
header .header-link-list li a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 7px;
       column-gap: 7px;
  padding: 20px 14px;
}
@media screen and (max-width: 768px) {
  header .header-link-list li a {
    padding: 5px;
  }
}
header .header-link-list li a.search {
  background-color: #0163B2;
}
@media screen and (min-width: 768px) {
  header .header-link-list li a.search {
    border-radius: 0 0 0 10px;
    font-size: 1.5rem;
  }
}
header .header-link-list li a.mail {
  background: linear-gradient(90deg, rgb(230, 103, 0) 0%, rgb(230, 151, 32) 100%);
}
@media screen and (max-width: 768px) {
  header .header-link-list li a.mail {
    font-size: 1.4rem;
  }
}
header .header-link-list li a .icon-wrap {
  width: 34px;
}
header .header-link-list li a .txt-wrap {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .header-link-list li a .txt-wrap {
    font-size: 1.4rem;
  }
}
header .header-link-list li a .txt-wrap .small-accent-txt {
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}
header .header-link-list li a .txt-wrap .small-accent-txt::before, header .header-link-list li a .txt-wrap .small-accent-txt::after {
  content: "";
  width: 1px;
  height: 13px;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 60%;
}
header .header-link-list li a .txt-wrap .small-accent-txt::before {
  left: -6px;
  translate: 0 -50%;
  rotate: -25deg;
}
header .header-link-list li a .txt-wrap .small-accent-txt::after {
  right: -6px;
  translate: 0 -50%;
  rotate: 25deg;
}
@media screen and (max-width: 768px) {
  header .header-link-list li a .txt-wrap .pc-only {
    opacity: 0;
  }
}

footer {
  background-color: #0163B2;
  padding: 11px 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 18px 0;
  }
}
footer .inner .footer-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .inner .footer-contents {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
}
footer .inner .footer-contents .footer-link-list {
  display: flex;
  gap: 20px;
}
footer .inner .footer-contents .footer-link-list li a {
  font-size: 1.2rem;
  color: #fff;
}
footer .inner .footer-contents .copyright {
  font-size: 1.2rem;
  letter-spacing: 0;
}

.default-txt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .default-txt {
    font-size: 1.5rem;
  }
}

.cau-list {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  row-gap: 3px;
  margin-top: 6px;
}
.cau-list.right {
  margin: 10px 0 0 auto;
}
@media screen and (min-width: 768px) {
  .cau-list.center {
    margin: 14px auto 0;
  }
}
.cau-list li {
  font-size: 1.2rem;
}

.scroll-fade {
  opacity: 0;
  translate: 0 50px;
  transition: all 1.3s;
}
.scroll-fade.move {
  opacity: 1;
  translate: 0 0;
}

.page-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .page-top-btn {
    right: 10px;
    bottom: 70px;
  }
}

main .page-top-container {
  background-color: #e3f8ff;
  position: relative;
  padding: 0 0 122px;
}
@media screen and (min-width: 768px) {
  main .page-top-container {
    background-image: url(../img/img_mv_bg01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media screen and (min-width: 768px) {
  main .page-top-container .sp-only-bg {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  main .page-top-container .sp-only-bg {
    position: absolute;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  main .page-top-container .sp-only-bg.bg-sp-top-wrap {
    top: 0;
    left: 0;
  }
  main .page-top-container .sp-only-bg.bg-sp-bottom-wrap {
    top: 990px;
    left: 0;
  }
}
main .page-top-container .mv-area .gym-abso-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 51%;
  max-width: 714px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  main .page-top-container .mv-area .gym-abso-img {
    max-width: initial;
    width: 84.6%;
    top: 220px;
  }
}
main .page-top-container .mv-area .inner {
  max-width: 1300px;
}
main .page-top-container .mv-area .inner .main-img-wrap {
  width: 90%;
  position: relative;
  z-index: 1;
  padding: 118px 0 0;
}
@media screen and (max-width: 768px) {
  main .page-top-container .mv-area .inner .main-img-wrap {
    margin: 0 calc(50% - 50vw) 0 auto;
    width: 97.4vw;
    padding: 85px 0 0;
  }
}
main .page-top-container .mv-point-list-area {
  position: relative;
  z-index: 1;
}
main .page-top-container .mv-point-list-area .inner {
  max-width: 1326px;
  position: relative;
}
main .page-top-container .mv-point-list-area .inner .human-abso-img {
  position: absolute;
  max-width: 279px;
  right: -10px;
  top: -230px;
  width: 17.4%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main .page-top-container .mv-point-list-area .inner .human-abso-img {
    max-width: 200px;
    width: 100%;
    top: -131px;
    left: 0;
    right: auto;
  }
}
main .page-top-container .mv-point-list-area .inner .point-link-list {
  display: flex;
  justify-content: space-between;
  gap: 1.4%;
  margin: 34px 0 0;
}
@media screen and (max-width: 768px) {
  main .page-top-container .mv-point-list-area .inner .point-link-list {
    -moz-column-gap: 4.6%;
         column-gap: 4.6%;
    row-gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 133px 0 0;
  }
}
@media screen and (min-width: 768px) {
  main .page-top-container .mv-point-list-area .inner .point-link-list li {
    width: 18.88%;
  }
  main .page-top-container .mv-point-list-area .inner .point-link-list li:nth-of-type(even) {
    margin-top: 55px;
  }
}
@media screen and (max-width: 768px) {
  main .page-top-container .mv-point-list-area .inner .point-link-list li {
    width: 47.7%;
  }
}
main .page-top-container .simulation-area .simulation-contents {
  display: flex;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  margin: 75px 0 0;
}
@media screen and (max-width: 768px) {
  main .page-top-container .simulation-area .simulation-contents {
    flex-direction: column;
    margin: 50px 0 0;
  }
}
main .page-top-container .simulation-area .simulation-contents .txt-container {
  border-radius: 10px 0 0 10px;
  width: 42.3%;
  padding: 42.4px 37px 41.4px;
  background: linear-gradient(65deg, rgb(0, 122, 221) 0%, rgb(4, 182, 222) 100%);
}
@media screen and (max-width: 768px) {
  main .page-top-container .simulation-area .simulation-contents .txt-container {
    width: 100%;
    padding: 30px 20px;
    border-radius: 10px 10px 0 0;
  }
}
main .page-top-container .simulation-area .simulation-contents .txt-container .simulation-ttl {
  max-width: 383px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main .page-top-container .simulation-area .simulation-contents .txt-container .simulation-ttl {
    max-width: 268px;
    margin: 0 auto;
  }
}
main .page-top-container .simulation-area .simulation-contents .txt-container .simulation-des {
  color: #fff;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  main .page-top-container .simulation-area .simulation-contents .txt-container .simulation-des {
    line-height: 1.7;
  }
}
main .page-top-container .simulation-area .simulation-contents .txt-container .simulation-des .bold {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  main .page-top-container .simulation-area .simulation-contents .txt-container .simulation-des .bold {
    font-size: 1.6rem;
  }
}
main .page-top-container .simulation-area .simulation-contents .img-container {
  width: 57.7%;
  background-color: #fff;
  padding: 25px;
  display: flex;
  align-items: center;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  main .page-top-container .simulation-area .simulation-contents .img-container {
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
}
main .arena-area {
  background: linear-gradient(180deg, rgba(128, 231, 255, 0.7) 0%, rgba(78, 194, 255, 0.7) 100%);
  padding: 102px 0 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .arena-area {
    padding: 104px 0 80px;
  }
}
main .arena-area .arena-ttl {
  position: absolute;
  width: 720px;
  position: absolute;
  top: -46px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-ttl {
    max-width: 350px;
    width: 100%;
    top: -57px;
  }
}
main .arena-area .arena-contents-conainer {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer {
    row-gap: 30px;
  }
}
main .arena-area .arena-contents-conainer .arena-content {
  background-color: #e3f8ff;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  padding: 34px 60px 40px 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content {
    flex-direction: column;
    padding: 25px 20px 21px;
    row-gap: 30px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container {
  width: 54.2%;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container {
    width: 100%;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap {
    flex-direction: column;
    align-items: center;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-txt-wrap {
  background: linear-gradient(180deg, rgb(0, 134, 242) 0%, rgb(4, 197, 222) 100%);
  width: 90px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-txt-wrap {
    width: 63px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-txt-wrap span {
  line-height: 1;
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-txt-wrap .point {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-txt-wrap .point {
    font-size: 0.8rem;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-txt-wrap .num {
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-txt-wrap .num {
    font-size: 3.5rem;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-ttl {
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-ttl {
    text-align: center;
    font-size: 2.3rem;
    letter-spacing: -0.05em;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-ttl .black {
  position: relative;
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-ttl .black .exclamation {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 3.9rem;
  position: absolute;
  right: -13px;
  top: 6px;
  rotate: 5deg;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-ttl .black .exclamation {
    top: initial;
    right: -10px;
    font-size: 3rem;
    bottom: -4px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-ttl .blue {
  position: relative;
  color: #0163b2;
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-ttl .mid {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-ttl .mid {
    font-size: 2rem;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-ttl .small {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .ttl-wrap .point-ttl .small {
    font-size: 1.6rem;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .point-des {
  margin: 0 0 26px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .point-des.sp-mb-none {
    margin: 0;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .frame-wrap {
  border-radius: 6px;
  border: 1px solid #0163b2;
  background-color: #fff;
  max-width: 562px;
  width: 100%;
  padding: 18px 18px;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .frame-wrap {
    padding: 24px 20px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .frame-wrap .frame-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  width: 80%;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .frame-wrap .frame-ttl {
    width: 100%;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .frame-wrap .frame-des {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  font-feature-settings: "palt";
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .frame-wrap .dot-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 11px 0 0;
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .frame-wrap .dot-list li {
  font-size: 1.4rem;
  position: relative;
  padding-left: 10px;
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .frame-wrap .dot-list li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0163B2;
  position: absolute;
  left: 0;
  top: 9px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .frame-wrap.is-catch {
    padding: 86px 20px 24px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .frame-wrap.is-catch .catch-img-wrap {
  position: absolute;
  width: 106px;
  top: -11px;
  right: 11px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .frame-wrap.is-catch .catch-img-wrap {
    width: 96px;
    top: -20px;
    left: 50%;
    right: auto;
    translate: -50% 0;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container:has(.mentenance-container) {
  width: 100%;
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dt {
  background-color: #3BC9EA;
  padding: 23px 15px 23px 185px;
  position: relative;
  color: #fff;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dt {
    padding: 70px 20px 13px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dt .catch-img-wrap {
  position: absolute;
  left: -10px;
  top: 16px;
  width: 174px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dt .catch-img-wrap {
    width: 298px;
    top: 14px;
    left: -10px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dt .ttl-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dt .ttl-wrap {
    align-items: flex-start;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dt .ttl-wrap .cat-ttl {
  font-size: 1.6rem;
  font-weight: 800;
  background-color: #0163B2;
  padding: 4px 7px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dt .ttl-wrap .cat-ttl {
    font-size: 1.5rem;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dt .ttl-wrap .sub-ttl {
  font-size: 2.8rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dt .ttl-wrap .sub-ttl {
    font-size: 2.5rem;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd {
    padding: 25px 20px 20px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-des .blue {
  color: #0163B2;
  font-weight: bold;
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-menu-wrap {
  display: flex;
  padding: 30px 30px 32px 55px;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  border: 1px solid #0163B2;
  border-radius: 6px;
  margin: 30px 0 0;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-menu-wrap {
    margin: 20px 0 0;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px 20px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-menu-wrap .menu-catch-img {
  width: 134px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-menu-wrap .menu-catch-img {
    width: 126px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-menu-wrap .mentenance-list-container {
  width: 79.2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-menu-wrap .mentenance-list-container {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-menu-wrap .mentenance-list-container .mentenance-list {
  background-color: #F5F5F5;
  border-radius: 6px;
  width: 100%;
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-menu-wrap .mentenance-list-container .mentenance-list li {
  padding: 12.5px 19px;
  font-weight: 500;
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-menu-wrap .mentenance-list-container .mentenance-list li:nth-of-type(n+2) {
  background-image: linear-gradient(to right, #707070 1px, transparent 2px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}
main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-menu-wrap .mentenance-list-container .mentenance-list li sup {
  font-size: 1.2rem;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .mentenance-container .mentenance-dl dd .mentenance-menu-wrap .mentenance-list-container .plus-icon {
    width: 24px;
  }
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .txt-container .cau-list li {
    text-indent: -32px;
    padding-left: 32px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .img-container {
  width: 43.7%;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .img-container {
    width: 100%;
  }
}
main .arena-area .arena-contents-conainer .arena-content.peace .txt-container {
  width: 100%;
}
main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container {
    padding: 19.5px 19px 20px;
  }
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container {
    flex-direction: column;
    row-gap: 24px;
  }
}
main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .peace-sub-ttl {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 10px;
  font-feature-settings: "palt";
}
main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .peace-sub-ttl.blue {
  color: #0163B2;
  font-weight: 800;
}
main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .default-wrap {
  width: 37.7%;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .default-wrap {
    width: 100%;
  }
}
main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .evacuation-wrap {
  width: 59%;
  padding: 0 0 0 35px;
  position: relative;
  background-image: radial-gradient(circle, #0163b2 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 2px 8px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .evacuation-wrap {
    width: 100%;
    padding: 22px 0 0;
    background-image: radial-gradient(circle, #0163b2 1px, transparent 1px);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 8px 2px;
  }
}
main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .evacuation-wrap .evacuation-img-wrap {
  max-width: 435px;
  width: 100%;
  margin: 0 0 15px;
}
main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .evacuation-wrap .evacuation-icon-txt-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .evacuation-wrap .evacuation-icon-txt-wrap {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .evacuation-wrap .evacuation-icon-txt-wrap .icon-wrap {
  width: 106px;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .evacuation-wrap .evacuation-icon-txt-wrap .icon-wrap {
    width: 95px;
  }
}
main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .evacuation-wrap .evacuation-icon-txt-wrap .evacuation-des {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  width: calc(100% - 121px);
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content.peace .txt-container .peace-container .evacuation-wrap .evacuation-icon-txt-wrap .evacuation-des {
    width: 100%;
  }
}
main .arena-area .arena-contents-conainer .arena-content .triangle-img {
  width: 61px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .triangle-img {
    width: 36.6px;
  }
}
main .arena-area .arena-contents-conainer .arena-content .bg-abso-img {
  width: 458px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  main .arena-area .arena-contents-conainer .arena-content .bg-abso-img {
    width: 320px;
  }
}
main .introduction-area {
  padding: 100px 0 140px;
}
@media screen and (max-width: 768px) {
  main .introduction-area {
    padding: 80px 0 120px;
  }
}
main .introduction-area .introduction-content:nth-of-type(n+2) {
  margin: 70px 0 0;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content:nth-of-type(n+2) {
    margin: 50px 0 0;
  }
}
main .introduction-area .introduction-content .introduction-ttl {
  margin: 0 auto 22px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  letter-spacing: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-ttl {
    text-align: center;
  }
}
main .introduction-area .introduction-content .introduction-ttl::before, main .introduction-area .introduction-content .introduction-ttl::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/img_accent01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 35px;
  height: 44px;
  position: absolute;
  top: 56%;
  right: -10px;
  translate: 0 -50%;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-ttl::before, main .introduction-area .introduction-content .introduction-ttl::after {
    width: 27px;
    height: 35px;
    top: initial;
    bottom: -10px;
  }
}
main .introduction-area .introduction-content .introduction-ttl::before {
  left: -32px;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-ttl::before {
    left: -26px;
  }
}
main .introduction-area .introduction-content .introduction-ttl::after {
  right: -48px;
  transform: scale(-1, 1);
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-ttl::after {
    right: -37px;
  }
}
main .introduction-area .introduction-content .introduction-ttl .big {
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-ttl .big {
    font-size: 3.6rem;
  }
}
main .introduction-area .introduction-content .introduction-ttl .mid {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-ttl .mid {
    font-size: 3rem;
  }
}
main .introduction-area .introduction-content .introduction-ttl .small {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-ttl .small {
    font-size: 2.4rem;
  }
}
main .introduction-area .introduction-content .introduction-ttl .orange {
  color: #E66700;
}
main .introduction-area .introduction-content .introduction-ttl .exclamation {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 4.3rem;
  position: absolute;
  right: -16px;
  top: 13px;
  rotate: 5deg;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-ttl .exclamation {
    font-size: 3.6rem;
    top: initial;
    right: -14px;
    bottom: -7px;
  }
}
main .introduction-area .introduction-content .introduction-gray-wrap {
  background-color: #F5F5F5;
  padding: 40px 60px 43px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-gray-wrap {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-gray-wrap.ghp {
    padding: 24px 20px;
  }
}
main .introduction-area .introduction-content .introduction-gray-wrap .introduction-des {
  text-align: center;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-gray-wrap .introduction-des {
    text-align: left;
  }
}
main .introduction-area .introduction-content .introduction-gray-wrap .case-contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-gray-wrap .case-contents {
    flex-direction: column;
    row-gap: 20px;
  }
}
main .introduction-area .introduction-content .introduction-gray-wrap .case-contents .img-wrap {
  width: 35.2%;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-gray-wrap .case-contents .img-wrap {
    width: 100%;
  }
}
main .introduction-area .introduction-content .introduction-gray-wrap .case-contents .case-txt-container {
  width: 60.2%;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-gray-wrap .case-contents .case-txt-container {
    width: 100%;
  }
}
main .introduction-area .introduction-content .introduction-gray-wrap .case-contents .case-txt-container .name {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 30px;
  color: #0163B2;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-gray-wrap .case-contents .case-txt-container .name {
    font-size: 2.2rem;
    margin: 0 0 20px;
  }
}
main .introduction-area .introduction-content .introduction-gray-wrap .case-contents .case-txt-container .detail-btn {
  width: 230px;
  height: 58px;
  background-color: #0163B2;
  display: flex;
  align-items: center;
  padding: 15px 40px 15px 15px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 6px;
  margin: 30px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .introduction-area .introduction-content .introduction-gray-wrap .case-contents .case-txt-container .detail-btn {
    margin: 20px 0 0;
  }
}
main .introduction-area .introduction-content .introduction-gray-wrap .case-contents .case-txt-container .detail-btn::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/icon_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 15px;
  translate: 0 -50%;
}/*# sourceMappingURL=style.css.map */