@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1620px) {
  html {
    font-size: 0.617vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.666vw;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.888;
  color: #050505;
  background: #ffffff;
  overflow-x: hidden;
}

body.fixed {
  position: fixed;
  width: 100%;
}

a {
  transition: opacity 0.4s;
}

:focus-visible {
  outline: solid 2px #0072bc;
  outline-offset: 0.75rem;
}

iframe {
  max-width: 100%;
}

small {
  font-size: 88%;
}

img {
  max-width: 100%;
  height: auto;
}

.-radius {
  border-radius: 1.5rem;
}

.-radius_top-left {
  border-top-left-radius: 1.5rem;
}

.-radius_top-right {
  border-top-right-radius: 1.5rem;
}

.-radius_bottom-right {
  border-bottom-right-radius: 1.5rem;
}

.-radius_bottom-left {
  border-bottom-left-radius: 1.5rem;
}

.cookie-notice-container a {
  color: #000 !important;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0.3rem 0.3rem 0.8rem rgba(51, 51, 51, 0.2);
  z-index: 101;
}

.l-header__logo {
  padding: 1.2rem 2rem;
}

@media screen and (max-width: 768px) {
  .l-header__logo {
    padding: 1.8rem 2rem;
  }
}

.l-header__logo a {
  display: block;
}

.l-header__logo a img {
  display: block;
  width: 30.9rem;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-header__logo a img {
    width: 13.1rem;
    height: 3.4rem;
  }
}

.l-header__open {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-header__open {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    width: 4rem;
    height: 3.4rem;
    margin: auto;
    display: block;
  }

  .l-header__open-line {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    width: calc(100% - 2rem);
    height: 0.2rem;
    margin: auto;
    border-radius: 0.2rem;
    background-color: #0072bc;
    transition: all 0.4s;
  }

  .l-header__open-line.-line02 {
    top: 0;
    bottom: 0;
    margin: auto;
  }

  .l-header__open-line.-line03 {
    top: auto;
    bottom: 1rem;
  }

  .l-header__open.active .l-header__open-line.-line01 {
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
  }

  .l-header__open.active .l-header__open-line.-line02 {
    background-color: transparent;
  }

  .l-header__open.active .l-header__open-line.-line03 {
    bottom: 50%;
    transform: rotate(-45deg) translateY(50%);
  }
}

@media screen and (max-width: 768px) {
  .l-header-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 6rem;
    right: -30rem;
    width: 35.5rem;
    height: calc(100vh - 6rem);
    padding: 3rem 2rem 8rem;
    background: #ffffff;
    box-shadow: 0.3rem 1.2rem 0.8rem rgb(51, 51, 51);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    overflow: scroll;
  }

  .l-header-nav.active {
    right: 0;
    opacity: 1;
    visibility: visible;
  }
}

.l-header-nav-pc {
  display: flex;
  align-items: stretch;
  gap: 3.5rem;
}

@media screen and (max-width: 768px) {
  .l-header-nav-pc {
    display: none;
  }
}

.l-header-nav-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .l-header-nav-sp {
    display: block;
  }
}

.l-header-nav__bnr {
  display: block;
}

.l-header-nav__bnr:focus-visible {
  outline: solid 2px #0072bc;
  outline-offset: 0.75rem;
}

.l-header-nav__group {
  position: relative;
  margin-top: 5rem;
}

.l-header-nav__group::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #0072bc;
}

.l-header-nav__group+.l-header-nav__group {
  margin-top: 7rem;
}

.l-header-nav__group-title {
  position: relative;
  display: inline-block;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  padding-right: 2rem;
  background-color: #ffffff;
  color: #0072bc;
}

.l-header-nav__group.-not_title {
  padding-top: 3rem;
}

.l-header-nav__group.-not_title::before {
  width: calc(100% + 4rem);
  top: 0;
}

.l-header-nav__wrap {
  display: flex;
  gap: 3.5rem;
}

@media screen and (max-width: 768px) {
  .l-header-nav__wrap {
    display: block;
    padding-left: 1.5rem;
  }
}

.l-header-nav__wrap ul {
  display: flex;
  gap: 1.7rem;
}

@media screen and (max-width: 768px) {
  .l-header-nav__wrap ul {
    display: block;
  }
}

.l-header-nav__wrap ul+ul {
  margin-top: 3rem;
}

@media screen and (max-width: 768px) {
  .l-header-nav__item+.l-header-nav__item {
    margin-top: 1rem;
  }
}

.l-header-nav__item a {
  display: flex;
  align-items: center;
  padding: 0.7rem 1rem 0;
  height: 100%;
  border-bottom: solid 0.7rem #ffffff;
  transition: all 0.4s;
}

@media screen and (max-width: 768px) {
  .l-header-nav__item a {
    padding: 0;
    color: #0072bc;
  }

  .l-header-nav__item a:focus-visible {
    outline: solid 2px #0072bc;
    outline-offset: 0.75rem;
  }
}

.l-header-nav__item a.-current {
  border-bottom-color: #db3d23;
}

@media screen and (min-width: 769px) {
  .l-header-nav__item a:hover {
    opacity: 1;
    border-bottom-color: #db3d23;
  }
}

.l-header-nav__item.-main {
  margin-bottom: 2rem;
}

.l-header-nav__item.-main a {
  font-size: 1.8rem;
}

.l-header-nav__item.-sub a {
  position: relative;
  display: block;
  font-size: 1.6rem;
  padding-left: 1rem;
  font-weight: 400;
}

.l-header-nav__item.-sub a::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0.4rem;
  height: 2px;
  background-color: #ffffff;
}

.l-header-nav__item.-third a {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  margin-left: 1.6rem;
  padding-left: 1rem;
}

.l-header-nav__item.-third a::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0.4rem;
  height: 0.2rem;
  background-color: #ffffff;
}

.l-header-recruit__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  width: 23rem;
  height: 8rem;
  padding: 2.3rem 0;
  color: #ffffff;
  background-color: #c91c00;
}

@media screen and (max-width: 768px) {
  .l-header-recruit__btn {
    justify-content: flex-start;
    font-size: 1.6rem;
    width: 100%;
    height: 5rem;
    margin-top: 2rem;
    padding: 1.3rem 2rem;
    letter-spacing: 0.2em;
  }

  .l-header-recruit__btn:focus-visible {
    outline: solid 2px #0072bc;
    outline-offset: 0.75rem;
  }
}

.l-header-recruit__btn span {
  position: relative;
  display: inline-block;
  padding-left: 4.3rem;
}

.l-header-recruit__btn span::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 3.2rem;
  height: 3.6rem;
  background: url(../img/common/ico_search.png);
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .l-header-recruit__btn span::before {
    top: 0.4rem;
    width: 2.2rem;
    height: 2.4rem;
  }
}

.l-header-recruit__btn:hover {
  color: #c91c00;
  background-color: #ffffff;
  border: solid 3px #c91c00;
}

.l-header-recruit__btn:hover span::before {
  background-image: url(../img/common/ico_search_on.png);
}

.l-footer {
  margin-top: auto;
  padding: 17.6rem 0 7.2rem;
  background-color: #f2f2f2;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 6rem 1rem 3rem;
  }
}

.l-footer-info {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-1 * (100vw - 124rem) / 2);
  gap: 8.8rem;
}

@media screen and (max-width: 768px) {
  .l-footer-info {
    margin-right: 0;
    gap: 2.4rem;
  }
}

.l-footer-info__contents {
  width: 37rem;
}

.l-footer-info__name {
  font-size: 3.2rem;
}

@media screen and (max-width: 768px) {
  .l-footer-info__name {
    font-size: 2.4rem;
  }
}

.l-footer-info__en {
  display: block;
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .l-footer-info__en {
    font-size: 1.8rem;
  }
}

.l-footer-info__address {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 6.4rem;
}

@media screen and (max-width: 768px) {
  .l-footer-info__address {
    margin-top: 2.4rem;
  }
}

.l-footer-info__cover {
  width: calc(100% - 45.8rem);
  border-radius: 1.6rem 0 0 1.6rem;
}

@media screen and (max-width: 768px) {
  .l-footer-info__cover {
    width: 100%;
  }
}

.l-footer-info__cover img {
  aspect-ratio: 1010/352;
  object-fit: cover;
  object-position: center;
  max-width: 100%;
  border-radius: 1.6rem 0 0 1.6rem;
}

@media screen and (max-width: 768px) {
  .l-footer-info__cover img {
    aspect-ratio: 335/144;
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
  }
}

.l-footer-bnr {
  margin-top: 19.5rem;
}

@media screen and (max-width: 768px) {
  .l-footer-bnr {
    margin-top: 4rem;
  }
}

.l-footer-bnr a {
  display: block;
}

.l-footer-bnr__img img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-footer-bnr__img img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
  }
}

.l-footer-nav {
  margin-top: 15rem;
}

@media screen and (max-width: 768px) {
  .l-footer-nav {
    margin-top: 10rem;
  }
}

.l-footer-nav__group {
  position: relative;
}

.l-footer-nav__group::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #b2b2b2;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__group::before {
    top: 2.2rem;
    right: -1rem;
    width: calc(100% + 1rem);
  }
}

.l-footer-nav__group+.l-footer-nav__group {
  margin-top: 10rem;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__group+.l-footer-nav__group {
    margin-top: 7rem;
  }
}

.l-footer-nav__group-title {
  position: relative;
  display: inline-block;
  font-size: 2.6rem;
  padding-right: 4rem;
  background: #f2f2f2;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__group-title {
    font-size: 2.2rem;
    padding-right: 2rem;
  }
}

.l-footer-nav__group.-not_title {
  padding-top: 4rem;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__group.-not_title {
    padding-top: 3rem;
  }
}

.l-footer-nav__group.-not_title::before {
  width: calc(100% + 4rem);
  top: 0;
}

.l-footer-nav__row {
  display: flex;
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__row {
    display: block;
    margin-top: 3.5rem;
  }
}

.l-footer-nav__col {
  flex: 1;
  padding-left: 5.2rem;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__col {
    padding-left: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .l-footer-nav__col+.l-footer-nav__col {
    margin-top: 3.4rem;
  }
}

.l-footer-nav__col ul+ul {
  margin-top: 5.4rem;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__col ul+ul {
    margin-top: 3rem;
  }
}

.l-footer-nav__item+.l-footer-nav__item {
  margin-top: 2.2rem;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__item+.l-footer-nav__item {
    margin-top: 1.8rem;
  }
}

.l-footer-nav__item a {
  line-height: 1.56;
}

@media screen and (min-width: 769px) {
  .l-footer-nav__item a:hover {
    opacity: 1;
    text-decoration: underline;
  }
}

.l-footer-nav__item.-main {
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__item.-main {
    margin-bottom: 2rem;
  }
}

.l-footer-nav__item.-main a {
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__item.-main a {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .l-footer-nav__item.-sub {
    padding-left: 2rem;
  }
}

.l-footer-nav__item.-sub a {
  position: relative;
  display: block;
  font-size: 1.6rem;
  padding-left: 1rem;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__item.-sub a {
    font-weight: 400;
  }
}

.l-footer-nav__item.-sub a::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 0;
  width: 0.4rem;
  height: 2px;
  background-color: #050505;
}

.l-footer-nav__item.-third a {
  position: relative;
  font-size: 2.2rem;
  margin-left: 1.6rem;
  padding-left: 1.2rem;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__item.-third a {
    position: relative;
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    padding-left: 1rem;
  }
}

.l-footer-nav__item.-third a::before {
  content: "";
  position: absolute;
  top: 1.7rem;
  left: 0;
  width: 0.4rem;
  height: 0.2rem;
  background-color: #050505;
}

@media screen and (max-width: 768px) {
  .l-footer-nav__item.-third a::before {
    top: 1.3rem;
  }
}

.l-footer-privacy {
  margin-top: 10rem;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .l-footer-privacy {
    margin-top: 4rem;
  }
}

.l-footer-privacy img {
  max-width: 7rem;
}

@media screen and (max-width: 768px) {
  .l-footer-privacy img {
    max-width: 4.4rem;
  }
}

.l-main {
  margin-top: 8rem;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .l-main {
    margin-top: 6rem;
  }
}

.l-container {
  width: 100%;
  max-width: 128rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media screen and (max-width: 768px) {
  .l-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.l-section {
  margin-top: 16rem;
  margin-bottom: 16rem;
}

@media screen and (max-width: 768px) {
  .l-section {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

.l-section:first-child {
  margin-top: 10rem;
}

@media screen and (max-width: 768px) {
  .l-section:first-child {
    margin-top: 6rem;
  }
}

.l-section-bg {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #f1f5f7;
}

.c-block+.c-block {
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .c-block+.c-block {
    margin-top: 4rem;
  }
}

.c-block+.c-block.-medium {
  margin-top: 8rem;
}

@media screen and (max-width: 768px) {
  .c-block+.c-block.-medium {
    margin-top: 6rem;
  }
}

.c-block+.c-block.-wide {
  margin-top: 10rem;
}

@media screen and (max-width: 768px) {
  .c-block+.c-block.-wide {
    margin-top: 5rem;
  }
}

.c-block-border {
  padding: 1rem;
  border: solid 3px #000;
}

.c-breadcrumb {
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  .c-breadcrumb {
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
}

.c-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.c-breadcrumb ul li {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-breadcrumb ul li {
    font-size: 1.6rem;
  }
}

.c-breadcrumb ul li a {
  font-weight: 600;
  display: inline-block;
  color: #0072bc;
  text-decoration: underline;
}

.c-breadcrumb ul li span {
  font-weight: 500;
  display: inline-block;
}

.c-breadcrumb ul li .arrow {
  display: inline-block;
  padding: 0 1rem;
  transform: scale(0.75, 1.25);
}

.c-copyright {
  position: fixed;
  top: 32rem;
  right: 0.4rem;
  color: #ffffff;
  transition: color 0.4s;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  .c-copyright {
    top: 25rem;
    right: 0.1rem;
  }
}

.c-copyright small {
  display: block;
  font-size: 1.2rem;
  writing-mode: vertical-rl;
  text-orientation: sideways;
  transform: scale(-1, -1);
}

@media screen and (max-width: 768px) {
  .c-copyright small {
    font-size: 1rem;
    font-weight: 400;
  }
}

.c-copyright.black {
  color: #000000;
}

_:lang(x)+_:-webkit-full-screen-document,
.c-copyright small {
  transform-origin: 0;
}

@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  50% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  100% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }
}

.c-loader {
  display: none;
  margin-top: 6rem;
  text-align: center;
}

.c-loader-inner {
  display: inline-block;
  width: fit-content;
}

.c-loader-inner>span {
  background-color: #0072bc;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

.c-loader-inner>span:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.c-loader-inner>span:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.c-loader-inner>span:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.c-loader-inner>span:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.c-loader-inner>span:nth-child(5) {
  -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.c-pagination {
  margin-top: 4rem;
}

.c-pagination__inner {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}

.c-pagination__numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  width: 3.2rem;
  height: 3.2rem;
  border: solid 1px #ededed;
  transition: all 0.4s;
}

@media screen and (min-width: 769px) {

  .c-pagination__numbers.-current,
  .c-pagination__numbers:hover {
    opacity: 1;
    background: #ededed;
  }
}

.c-pagination__numbers.-prev,
.c-pagination__numbers.-next {
  position: relative;
  width: 7.2rem;
  padding-right: 1.5rem;
}

.c-pagination__numbers.-prev::after,
.c-pagination__numbers.-next::after {
  content: ">";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.75rem;
  font-size: 2rem;
  height: 3.2rem;
  margin: auto;
  transform: scale(0.5, 1);
}

.c-pagination__numbers.-prev {
  padding-right: 0;
  padding-left: 1.5rem;
}

.c-pagination__numbers.-prev::after {
  content: "<";
  right: auto;
  left: 0.75rem;
  transform: scale(0.5, 1);
}

.c-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
}

@media screen and (max-width: 768px) {
  .c-panel {
    gap: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .c-panel.-gap2_sp {
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .c-panel.-gap7_sp {
    gap: 7rem;
  }
}

.c-panel.-column4 .c-panel__item {
  width: calc(25% - 2.3rem);
}

@media screen and (max-width: 768px) {
  .c-panel.-column4 .c-panel__item {
    width: 100%;
  }
}

.c-panel.-column3 .c-panel__item {
  width: calc(33.333% - 4rem);
}

@media screen and (max-width: 768px) {
  .c-panel.-column3 .c-panel__item {
    width: 100%;
  }
}

.c-panel.-column2 .c-panel__item {
  width: calc(50% - 4rem);
}

@media screen and (max-width: 768px) {
  .c-panel.-column2 .c-panel__item {
    width: 100%;
  }
}

.c-panel.-shift.-column2 .c-panel__item:nth-child(odd) {
  margin-top: -12rem;
}

@media screen and (max-width: 768px) {
  .c-panel.-shift.-column2 .c-panel__item:nth-child(odd) {
    margin-top: 0;
  }
}

.c-panel.-shift.-column2 .c-panel__item:nth-child(2) {
  margin-top: 12rem;
}

@media screen and (max-width: 768px) {
  .c-panel.-shift.-column2 .c-panel__item:nth-child(2) {
    margin-top: 0;
  }
}

.c-panel.-shift.-column2 .c-panel__item:first-child {
  margin-top: 0;
}

.c-panel img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 769px) {
  .c-shadow.-shadow_pc {
    border-radius: 1.6rem;
    position: relative;
  }

  .c-shadow.-shadow_pc::before {
    content: "";
    position: absolute;
    bottom: -2rem;
    right: -4rem;
    width: 100%;
    height: 100%;
    border-radius: 1.6rem;
    background-color: #0072bc;
  }

  .c-shadow.-shadow_pc>* {
    position: relative;
    border-radius: 1.6rem;
  }
}

.c-keyvisual.-primary .c-keyvisual__inner {
  display: flex;
  align-items: stretch;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-primary .c-keyvisual__inner {
    flex-direction: column;
  }
}

.c-keyvisual.-primary .c-keyvisual__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62rem;
  background: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-primary .c-keyvisual__title {
    justify-content: flex-start;
    width: 100%;
    min-height: 18rem;
    padding: 2rem;
  }
}

@media screen and (min-width: 1620px) {
  .c-keyvisual.-primary .c-keyvisual__title {
    width: 30%;
  }
}

.c-keyvisual.-primary .c-keyvisual__title h1 {
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 4.8rem;
  width: fit-content;
  line-height: 1.56;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-primary .c-keyvisual__title h1 {
    font-size: 3rem;
  }
}

.c-keyvisual.-primary .c-keyvisual__title h1::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-primary .c-keyvisual__title h1::before {
    top: 1.2rem;
  }
}

.c-keyvisual.-primary .c-keyvisual__title h1 span {
  position: relative;
  display: inline-block;
  font-size: 2.8rem;
  width: fit-content;
  padding-right: 1rem;
  background: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-primary .c-keyvisual__title h1 span {
    font-size: 1.6rem;
  }
}

.c-keyvisual.-primary .c-keyvisual__img {
  flex: 1;
}

.c-keyvisual.-primary .c-keyvisual__img img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-primary .c-keyvisual__img img {
    height: 18rem;
  }
}

.c-keyvisual.-secondary .c-keyvisual__inner {
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-secondary .c-keyvisual__inner {
    display: flex;
    flex-direction: column;
  }
}

.c-keyvisual.-secondary .c-keyvisual__title {
  position: absolute;
  bottom: 8rem;
  left: 0;
  width: 50%;
  height: fit-content;
  margin: auto;
  padding: 5rem 1.5rem 5rem 0;
  padding-left: calc((100vw - 124rem) / 2);
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-secondary .c-keyvisual__title {
    order: 2;
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 5rem 1rem;
  }
}

@media screen and (min-width: 1620px) {
  .c-keyvisual.-secondary .c-keyvisual__title {
    top: 0;
    bottom: 0;
    padding-left: 18rem;
  }
}

.c-keyvisual.-secondary .c-keyvisual__title.-wide {
  width: 58.5%;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-secondary .c-keyvisual__title.-wide {
    width: 100%;
  }
}

.c-keyvisual.-secondary .c-keyvisual__title h1 {
  position: relative;
  font-size: 4.6rem;
  width: fit-content;
  padding-left: 8rem;
  line-height: 1.56;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-secondary .c-keyvisual__title h1 {
    font-size: 2.9rem;
    padding-left: 3.5rem;
  }
}

.c-keyvisual.-secondary .c-keyvisual__title h1::before {
  content: "";
  position: absolute;
  top: 3.7rem;
  left: 0;
  width: 5.8rem;
  height: 0.3rem;
  background: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-secondary .c-keyvisual__title h1::before {
    top: 2.5rem;
    font-size: 1.6rem;
    width: 2.5rem;
  }
}

.c-keyvisual.-secondary .c-keyvisual__title p {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin-top: 1.6rem;
  padding-left: 8rem;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-secondary .c-keyvisual__title p {
    font-size: 1.6rem;
    margin-top: 1rem;
    padding-left: 3.5rem;
    line-height: 1.56;
  }
}

.c-keyvisual.-secondary .c-keyvisual__title.-small {
  width: 46%;
}

.c-keyvisual.-secondary .c-keyvisual__title.-small h1 {
  font-size: 4rem;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-secondary .c-keyvisual__title.-small {
    width: 100%;
  }

  .c-keyvisual.-secondary .c-keyvisual__title.-small h1 {
    font-size: 2.9rem;
  }
}

.c-keyvisual.-secondary .c-keyvisual__img {
  display: block;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-secondary .c-keyvisual__img {
    order: 1;
    height: 18rem;
  }
}

.c-keyvisual.-secondary .c-keyvisual__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.c-keyvisual.-tertiary {
  background: #0072bc;
}

.c-keyvisual.-tertiary .c-keyvisual__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32rem;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-tertiary .c-keyvisual__inner {
    height: 20rem;
  }
}

.c-keyvisual.-tertiary .c-keyvisual__title {
  width: fit-content;
}

.c-keyvisual.-tertiary .c-keyvisual__title h1 {
  position: relative;
  font-size: 4.8rem;
  width: fit-content;
  text-align: center;
  line-height: 1.56;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-tertiary .c-keyvisual__title h1 {
    font-size: 2.9rem;
  }
}

.c-keyvisual.-tertiary .c-keyvisual__title h1::before {
  content: "";
  position: absolute;
  top: 3.7rem;
  left: 0;
  width: 5.8rem;
  height: 0.3rem;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-tertiary .c-keyvisual__title h1::before {
    top: 2.5rem;
    font-size: 1.6rem;
    width: 2.5rem;
  }
}

.c-keyvisual.-tertiary .c-keyvisual__title h1 span {
  position: relative;
  display: block;
  font-size: 2.8rem;
  width: fit-content;
  margin: 0 auto 2.4rem;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-tertiary .c-keyvisual__title h1 span {
    font-size: 1.6rem;
  }
}

.c-keyvisual.-tertiary .c-keyvisual__title h1 span::before,
.c-keyvisual.-tertiary .c-keyvisual__title h1 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4rem;
  width: 0.1rem;
  height: 4rem;
  margin: auto;
  background-color: #ffffff;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {

  .c-keyvisual.-tertiary .c-keyvisual__title h1 span::before,
  .c-keyvisual.-tertiary .c-keyvisual__title h1 span::after {
    left: -2rem;
    height: 2rem;
  }
}

.c-keyvisual.-tertiary .c-keyvisual__title h1 span::after {
  left: auto;
  right: -4rem;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-tertiary .c-keyvisual__title h1 span::after {
    right: -2rem;
  }
}

.c-anchor-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4.8rem;
}

@media screen and (max-width: 768px) {
  .c-anchor-link {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}

.c-anchor-link__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 36rem;
  min-height: 8rem;
  padding: 0 5rem 0 3rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.56;
  color: #ffffff;
  border-radius: 1000px;
  background-color: #001973;
  border: solid 2px #001973;
  transition: all 0.3s;
  overflow: hidden;
  outline-offset: 0.75rem;
}

@media screen and (max-width: 768px) {
  .c-anchor-link__item {
    min-width: 30.8rem;
    min-height: 6rem;
    padding: 0 1rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 769px) {
  .c-anchor-link__item:hover::before {
    content: "";
  }
}

.c-anchor-link__item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  margin: auto;
  background: url(../img/common/ico_arrow_down.svg);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .c-anchor-link__item::after {
    right: 1.2rem;
    width: 2.6rem;
    height: 2.6rem;
  }
}

@media screen and (min-width: 769px) {
  .c-anchor-link__item:hover {
    color: #001973;
    background-color: #ffffff;
  }

  .c-anchor-link__item:hover::after {
    background-image: url(../img/common/ico_arrow_down_on.svg?2);
  }
}

.c-anchor-target {
  display: block;
}

.c-anchor-target-load {
  padding-top: 16rem;
  margin-top: -16rem;
}

.c-big-copy {
  position: relative;
  left: calc(-1 * (100vw - 124rem) / 2);
  display: block;
  width: 100vw;
  font-size: 30rem;
  font-weight: 700;
  margin-bottom: 8rem;
  line-height: 1;
  color: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-big-copy {
    left: 0;
    font-size: 7.2rem;
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 1620px) {
  .c-big-copy {
    left: calc(-1 * (100vw - 128rem) / 2);
  }
}

.c-big-copy.-business {
  left: -3rem;
  font-size: 32rem;
}

@media screen and (max-width: 768px) {
  .c-big-copy.-business {
    left: -0.6rem;
    font-size: 6.8rem;
  }
}

.c-big-copy.-sustainability {
  left: 3rem;
  font-size: 20.5rem;
}

@media screen and (max-width: 768px) {
  .c-big-copy.-sustainability {
    left: 0.75rem;
    font-size: 4.5rem;
  }
}

.c-big-copy.-recruit {
  font-size: 27rem;
  left: -2.4rem;
}

@media screen and (max-width: 768px) {
  .c-big-copy.-recruit {
    font-size: 7rem;
    left: 0;
  }
}

.c-big-copy.-contact {
  font-size: 30rem;
  left: 0;
}

@media screen and (max-width: 768px) {
  .c-big-copy.-contact {
    font-size: 7rem;
  }
}

.c-big-copy.-small {
  font-size: 20rem;
}

@media screen and (max-width: 768px) {
  .c-big-copy.-small {
    font-size: 5rem;
    left: -1rem;
  }
}

.c-big-copy.-ssmall {
  font-size: 9.5rem;
}

@media screen and (max-width: 768px) {
  .c-big-copy.-ssmall {
    font-size: 4.8rem;
    left: -1rem;
  }
}

.c-title.-type01 {
  position: relative;
  font-size: 3.8rem;
  margin-bottom: 4rem;
  padding-bottom: 1rem;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .c-title.-type01 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
}

.c-title.-type01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 7rem;
  height: 0.4rem;
  background-color: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-title.-type01::after {
    width: 5rem;
  }
}

.c-title.-type02 {
  position: relative;
  font-size: 3.8rem;
  margin-bottom: 7.2rem;
  padding-bottom: 1.5rem;
  padding-left: 6rem;
  line-height: 1.3;
  border-bottom: solid 0.4rem #0072bc;
}

@media screen and (max-width: 768px) {
  .c-title.-type02 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    padding-left: 3.4rem;
    border-bottom-width: 0.3rem;
  }
}

.c-title.-type02::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 0;
  width: 3.5rem;
  height: 0.6rem;
  background-color: #0fc8f2;
}

@media screen and (max-width: 768px) {
  .c-title.-type02::before {
    top: 1.8rem;
    width: 2.5rem;
    height: 0.4rem;
  }
}

.c-title.-type02::after {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 0;
  width: 1.5rem;
  height: 0.6rem;
  background-color: #001973;
}

@media screen and (max-width: 768px) {
  .c-title.-type02::after {
    top: 1.8rem;
    width: 1rem;
    height: 0.4rem;
  }
}

.c-title.-type03 {
  position: relative;
  font-size: 3.2rem;
  margin-bottom: 4rem;
  padding-left: 7rem;
  line-height: 1.56;
}

@media screen and (max-width: 768px) {
  .c-title.-type03 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    padding-left: 4rem;
  }
}

.c-title.-type03::before,
.c-title.-type03::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.c-title.-type03::before {
  top: 2rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  background-color: #c7e8e6;
}

@media screen and (max-width: 768px) {
  .c-title.-type03::before {
    top: 1.5rem;
    left: 1.5rem;
    width: 1.6rem;
    height: 1.6rem;
  }
}

.c-title.-type03::after {
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  background-color: #9adcc6;
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
  .c-title.-type03::after {
    top: 0.5rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}

.c-title.-type04 {
  position: relative;
  font-size: 3.2rem;
  margin-bottom: 4rem;
  padding: 0.4rem 0 0.8rem 3.5rem;
  line-height: 1.3;
  border-left: solid 0.6rem #0072bc;
}

@media screen and (max-width: 768px) {
  .c-title.-type04 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    padding: 0.2rem 0 0.4rem 1.5rem;
    border-left-width: 0.5rem;
  }
}

.c-title.-type05 {
  position: relative;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding: 1.9rem 1.5rem 1.9rem;
  line-height: 1.3;
  background-color: #f0f0f0;
}

.c-title.-type06 {
  position: relative;
  font-size: 2.8rem;
  margin-bottom: 5rem;
  padding: 0.5rem 0rem 1.3rem 3rem;
  line-height: 1.3;
  border-left: solid 0.8rem #000000;
  border-bottom: solid 1px #000000;
}

@media screen and (max-width: 768px) {
  .c-title.-type06 {
    font-size: 2rem;
    margin-bottom: 3rem;
    padding-left: 1.5rem;
    padding: 0.5rem 0rem 1rem 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .c-sentence {
    font-size: 1.6rem;
    font-weight: 500;
  }
}

.c-button {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: fit-content;
  min-width: 36rem;
  min-height: 8rem;
  margin-top: 6rem;
  padding: 0 5rem 0 3rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.56;
  color: #ffffff;
  border-radius: 1000px;
  background-color: #001973;
  border: solid 2px #001973;
  transition: all 0.3s;
  overflow: hidden;
  outline-offset: 0.75rem;
}

@media screen and (max-width: 768px) {
  .c-button {
    min-width: 30.8rem;
    min-height: 6rem;
    margin: 5rem auto 0;
    padding: 0 1rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.c-button+.c-button {
  margin-left: 4rem;
}

@media screen and (max-width: 768px) {
  .c-button+.c-button {
    margin-left: auto;
  }
}

.c-button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  width: 0.8rem;
  height: 1.3rem;
  margin: auto;
  background: url(../img/common/ico_arrow_right.svg);
  background-size: cover;
  transition: all 0.3s;
}

@media screen and (min-width: 769px) {
  .c-button:hover {
    color: #001973;
    background-color: #ffffff;
  }

  .c-button:hover::after {
    background-image: url(../img/common/ico_arrow_right_on.svg);
  }
}

.c-button.-white {
  color: #0072bc;
  background-color: #ffffff;
  border: solid 2px #ffffff;
  transition: all 0.4s;
  outline-color: #ffffff;
}

.c-button.-white::after {
  background-image: url(../img/common/ico_arrow_right_on.svg);
}

@media screen and (min-width: 769px) {
  .c-button.-white:hover {
    margin-top: 0;
    color: #ffffff;
    background-color: #0072bc;
  }

  .c-button.-white:hover:after {
    background-image: url(../img/common/ico_arrow_right.svg);
  }
}

.c-button.-white span {
  position: relative;
  z-index: 3;
}

.c-button.-center {
  margin-left: auto;
  margin-right: auto;
}

.c-button.-full {
  width: 100%;
}

.c-button.-arrow_down {
  padding-right: 3rem;
}

.c-button.-arrow_down::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  margin: auto;
  background: url(../img/common/ico_arrow_down.svg);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .c-button.-arrow_down::after {
    width: 2.6rem;
    height: 2.6rem;
    right: 1.2rem;
  }
}

@media screen and (min-width: 769px) {
  .c-button.-arrow_down:hover {
    color: #001973;
    background-color: #ffffff;
  }

  .c-button.-arrow_down:hover::after {
    background-image: url(../img/common/ico_arrow_down_on.svg?2);
  }
}

.c-button.-blank {
  top: 0;
}

.c-button.-blank img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.5rem;
  width: 1.6rem;
  height: 1.6rem;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .c-button.-blank img {
    right: 1.2rem;
  }
}

.c-button.-blank::after {
  content: none;
}

.c-button.-pdf,
.c-button.-word {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.c-button.-pdf+.c-button.-pdf,
.c-button.-pdf+.c-button.-word,
.c-button.-word+.c-button.-pdf,
.c-button.-word+.c-button.-word {
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {

  .c-button.-pdf+.c-button.-pdf,
  .c-button.-pdf+.c-button.-word,
  .c-button.-word+.c-button.-pdf,
  .c-button.-word+.c-button.-word {
    margin-top: 3rem;
  }
}

.c-button.-pdf img,
.c-button.-word img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4rem;
  width: 4rem;
  height: 4rem;
  margin: auto;
}

@media screen and (max-width: 768px) {

  .c-button.-pdf img,
  .c-button.-word img {
    right: 1.5rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}

.c-button.-pdf::after,
.c-button.-word::after {
  content: none;
}

.c-button.-pdf02 {
  justify-content: flex-start;
  width: 100%;
  padding-left: 14rem;
}

@media screen and (max-width: 768px) {
  .c-button.-pdf02 {
    font-size: 1.6rem;
    padding-left: 5rem;
  }
}

.c-button.-pdf02 img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4rem;
  width: 4rem;
  height: 4rem;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .c-button.-pdf02 img {
    left: 1.5rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}

.c-button.-border {
  color: #001973;
  background-color: #ffffff;
}

.c-button.-border::after {
  background-image: url(../img/common/ico_arrow_right_on.svg);
}

.c-button.-border:hover {
  color: #ffffff;
  background-color: #001973;
}

.c-button.-border:hover::after {
  background-image: url(../img/common/ico_arrow_right.svg);
}

.c-button.-has_border {
  overflow: visible;
}

.c-button.-has_border::before {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background-color: #001973;
}

.c-list.-disc li {
  position: relative;
  padding-left: 1.3em;
}

.c-list.-disc li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.c-list.-disc2 li {
  position: relative;
  padding-left: 1.3em;
}

.c-list.-disc2 li > span.c-list-style {
  position: absolute;
  left: 0;
}

.c-list.-disc li {
  position: relative;
  padding-left: 1.3em;
}

.c-list.-disc li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.c-list.-type01 {
  margin-left: 1.5rem;
}

@media screen and (max-width: 768px) {
  .c-list.-type01 {
    margin-left: 1rem;
  }
}

.c-list.-type01 li {
  position: relative;
  padding-left: 2rem;
}

@media screen and (max-width: 768px) {
  .c-list.-type01 li {
    font-size: 1.6rem;
  }
}

.c-list.-type01 li::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background-color: #bad2ed;
}

@media screen and (max-width: 768px) {
  .c-list.-type01 li::before {
    top: 1rem;
  }
}

.c-list.-type02 {
  margin-left: 3rem;
}

@media screen and (max-width: 768px) {
  .c-list.-type02 {
    margin-left: 1rem;
  }
}

.c-list.-type02 li {
  position: relative;
  font-size: 2.8rem;
  padding-left: 2.5rem;
}

@media screen and (max-width: 768px) {
  .c-list.-type02 li {
    font-size: 2rem;
    padding-left: 2rem;
    line-height: 1.56;
  }
}

.c-list.-type02 li+li {
  margin-top: 1rem;
}

.c-list.-type02 li::before {
  content: "";
  position: absolute;
  top: 2.1rem;
  left: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background-color: #008770;
}

@media screen and (max-width: 768px) {
  .c-list.-type02 li::before {
    top: 1.2rem;
    width: 1rem;
    height: 1rem;
  }
}

.c-list.-type03 {
  margin-left: 1.5rem;
}

@media screen and (max-width: 768px) {
  .c-list.-type03 {
    margin-left: 0;
  }
}

.c-list.-type03 li {
  position: relative;
  padding-left: 2rem;
}

@media screen and (max-width: 768px) {
  .c-list.-type03 li {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.c-list.-type03 li::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background-color: #c7e8e6;
}

@media screen and (max-width: 768px) {
  .c-list.-type03 li::before {
    top: 1rem;
  }
}

.c-list.-data {
  margin-left: 1.3em;
}

.c-list.-data li {
  position: relative;
  padding-left: 4.5rem;
}

.c-list.-data li span.c-list-style {
  position: absolute;
  left: 0;
}

@media screen and (max-width: 768px) {
  .c-list.-data {
    margin-left: 0;
  }
}

.c-list.-decimal {
  margin-left: 1.3em;
}

.c-list.-decimal li {
  position: relative;
  list-style: decimal;
}

.c-list.-bracket li {
  list-style: none;
  position: relative;
  font-weight: 500;
  padding-left: 2em;
}

@media screen and (max-width: 768px) {
  .c-list.-bracket li {
    font-size: 1.6rem;
  }
}

.c-list.-bracket li::before {
  content: "(" attr(data-count) ")";
  position: absolute;
  left: 0;
}

.c-list.-type_step li {
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-list.-type_step li {
    padding-left: 8rem;
  }
}

.c-list.-type_step li+li {
  margin-top: 5rem;
}

.c-list.-type_step li+li::before {
  content: "";
  position: absolute;
  top: -4rem;
  left: -20rem;
  right: 0;
  width: 2.3rem;
  height: 2.7rem;
  margin: auto;
  background: url(/assets/img/common/ico_arrow_down02.svg);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .c-list.-type_step li+li::before {
    left: 0;
  }
}

.c-list.-type_step li span {
  display: inline-block;
  min-width: 10rem;
  padding: 0.5rem;
  margin-right: 2.8rem;
  text-align: center;
  color: #ffffff;
  background: #333333;
}

@media screen and (max-width: 768px) {
  .c-list.-type_step li span {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 7rem;
    padding: 0rem;
  }
}

.c-list.-type_step li span.step-user {
  background: #001973;
}

.c-list.-type_step li span.step-our {
  background: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-list.-type_price {
    margin-left: 3.2rem;
  }
}

.c-list.-type_price li {
  position: relative;
  padding-left: 2.4rem;
}

.c-list.-type_price li+li {
  margin-top: 3.2rem;
}

@media screen and (max-width: 768px) {
  .c-list.-type_price li+li {
    margin-top: 1.6rem;
  }
}

.c-list.-type_price li::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 1.5rem;
  height: 0.4rem;
  background: #c8c8c8;
}

.c-table {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .c-table {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .c-table tbody {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .c-table tbody tr {
    display: block;
  }
}

.c-table tbody tr th,
.c-table tbody tr td {
  font-weight: 500;
  padding: 4.8rem 1rem;
}

@media screen and (max-width: 768px) {

  .c-table tbody tr th,
  .c-table tbody tr td {
    display: block;
  }
}

.c-table tbody tr th {
  width: 24rem;
  color: #001973;
  border-top: solid 1px #001973;
  border-bottom: solid 1px #001973;
  border-right: solid 4rem #ffffff;
}

@media screen and (max-width: 768px) {
  .c-table tbody tr th {
    width: 100%;
    border: none;
    padding: 0.7rem 1rem;
    background: #dde9f6;
    border-bottom: solid 1px #06186e;
  }
}

.c-table tbody tr td {
  border-top: solid 1px #c9c9c9;
  border-bottom: solid 1px #c9c9c9;
}

@media screen and (max-width: 768px) {
  .c-table tbody tr td {
    font-size: 1.6rem;
    width: 100%;
    border: none;
    padding: 1.5rem 1rem 4rem;
  }
}

@media screen and (max-width: 768px) {
  .c-table.-type02 tbody {
    display: table;
  }
}

@media screen and (max-width: 768px) {
  .c-table.-type02 tbody tr {
    display: table-row;
  }
}

.c-table.-type02 tbody tr th,
.c-table.-type02 tbody tr td {
  width: auto;
  padding: 3rem 2rem;
  border: solid 2px #bfd1ea;
}

@media screen and (max-width: 768px) {

  .c-table.-type02 tbody tr th,
  .c-table.-type02 tbody tr td {
    display: table-cell;
    font-weight: 500;
    padding: 0.5rem;
    line-height: 1.56;
  }
}

.c-table.-type02 tbody tr th.-center,
.c-table.-type02 tbody tr td.-center {
  text-align: center;
}

.c-table.-type02 tbody tr th {
  font-size: 2rem;
  color: #ffffff;
  border-color: #0072bc;
  border-right-color: #ffffff;
  background: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-table.-type02 tbody tr th {
    font-size: 1.8rem;
    letter-spacing: 0;
    text-align: center;
  }
}

.c-table.-type02 tbody tr th:last-child {
  border-right-color: #0072bc;
}

.c-table.-type02 tbody tr th.w1 {
  width: 8%;
}

@media screen and (max-width: 768px) {
  .c-table.-type02 tbody tr th.w1 {
    width: 15%;
  }
}

.c-table.-type02 tbody tr th.w2 {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .c-table.-type02 tbody tr th.w2 {
    width: 15%;
  }
}

.c-table.-type02 tbody tr th.w3 {
  width: 33.333%;
}

@media screen and (max-width: 768px) {
  .c-table.-type02 tbody tr th.w3 {
    width: 33.333%;
  }
}

.c-table.-type02 tbody tr td {
  font-size: 1.8rem;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .c-table.-type02 tbody tr td {
    font-size: 1.6rem;
  }
}

/* diagnosis-table */
.diagnosis-plans-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 2rem 0;
}

.diagnosis-plans-table th,
.diagnosis-plans-table td {
  padding: 1.2rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.diagnosis-plans-table tbody th,
.diagnosis-plans-table tbody td {
  border-bottom: 1px solid #cccccc;
}

.diagnosis-plans-table tbody tr:nth-child(odd) th,
.diagnosis-plans-table tbody tr:nth-child(odd) td {
  background-color: #f5f5f5;
}

.diagnosis-plans-table .row-header {
  font-size: 1.8rem;
  font-weight: bold;
  width: 17rem;
  vertical-align: middle;
}

.diagnosis-plans-table .plan-header {
  font-weight: bold;
  font-size: 2.1rem;
  text-align: center;
  vertical-align: middle;
  width: 20rem;
  color: #ffffff;
  padding: 1.5rem 0.8rem;
}

.diagnosis-plans-table .row-header.empty,
.diagnosis-plans-table .plan-header.empty {
  background-color: transparent;
  border: none;
}

.diagnosis-plans-table .site-construction {
  background-color: #666666;
}

.diagnosis-plans-table .status-light {
  background-color: #DCEAF7;
  color: #000000;
}

.diagnosis-plans-table .status-basic {
  background-color: #0072BC;
}

.diagnosis-plans-table .compliance-test {
  background-color: #C91C00;
}

.diagnosis-plans-table .plan-content {
  background-color: #ffffff;
  padding: 2rem 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  vertical-align: middle;
}

.diagnosis-plans-table tbody .plan-content {
  text-align: center;
}

@media (max-width: 768px) {
  .diagnosis-plans-table-wrap {
      overflow-x: scroll;
  }

  .diagnosis-plans-table {
      font-size: 1.2rem;
      width: 65rem;
  }

  .diagnosis-plans-table th,
  .diagnosis-plans-table td {
      padding: 0.8rem 0.4rem;
  }

  .diagnosis-plans-table .plan-header {
      width: auto;
      font-size: 1.4rem;
      min-width: 14rem;
  }

  .diagnosis-plans-table .row-header {
      width: 8rem;
      font-size: 1.4rem;
  }

  .diagnosis-plans-table .plan-content {
      padding: 1rem 1rem;
      font-size: 1.4rem;
  }
}

/* comparison-table */
.c-comparison-table {
  margin: 2rem 0;
}

.c-comparison-table__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.c-comparison-table__section {
  flex: 1;
  min-width: 300px;
}

.c-comparison-table__title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem;
}

.c-comparison-table__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 2.1rem;
  line-height: 1.3;
}

.c-comparison-table__header {
  background-color: #6F6F6F;
  color: #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
  vertical-align: middle;
}

.c-comparison-table__row-header {
  background-color: #F2F2F2;
  border-bottom: 1px solid #000000;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
  vertical-align: middle;
}

.c-comparison-table__cell {
  border-bottom: 1px solid #000000;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
  vertical-align: middle;
}

.c-comparison-table__cell.-duty {
  color: #A32525;
}

.c-comparison-table__cell.-effort-duty {
  color: #0072bc;
  border: 3px solid #A32525;
}

.c-comparison-table__cell.-changed {
  position: relative;
  background-color: #FFFFCC !important;
  color: #A32525 !important;
  border: 3px solid #A32525;
}

.c-comparison-table__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
}

.c-comparison-table__arrow-icon {
  font-size: 6rem;
  color: #A32525;
  font-weight: bold;
  line-height: 1;
}

.c-comparison-table__table.-blue .c-comparison-table__header {
  background-color: #394D8F;
}

@media (max-width: 768px) {
  .c-comparison-table__wrapper {
      flex-direction: column;
      gap: 1rem;
  }

  .c-comparison-table__arrow {
      transform: rotate(90deg);
      margin: 0;
  }

  .c-comparison-table__section {
      min-width: auto;
      width: 100%;
  }

  .c-comparison-table__table {
      font-size: 0.85rem;
  }

  .c-comparison-table__header,
  .c-comparison-table__row-header,
  .c-comparison-table__cell {
      padding: 0.5rem 0.25rem;
  }
  .c-comparison-table__arrow-icon {
      font-size: 4rem;
  }
}

.c-link {
  display: inline;
  color: #0072bc;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .c-link:hover {
    text-decoration: none;
  }
}

hr {
  margin: 10rem 0;
  border-color: #c8c8c8;
}

@media screen and (max-width: 768px) {
  hr {
    margin: 6rem 0;
  }
}

.c-inner {
  padding-left: 2rem;
}

@media screen and (max-width: 768px) {
  .c-inner {
    padding-left: 1rem;
  }
}

.c-inner.-pc {
  padding-left: 0;
}

@media screen and (min-width: 769px) {
  .c-inner.-pc {
    padding-left: 2rem;
  }
}

.c-box-shift {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
  margin: 4rem 0;
}

@media screen and (max-width: 768px) {
  .c-box-shift {
    gap: 4.8rem;
  }
}

.c-box-shift__item a {
  display: block;
}

.c-box-shift__img {
  aspect-ratio: 6/4;
  border-radius: 1.5rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .c-box-shift__img {
    width: 100%;
    height: auto;
  }
}

.c-box-shift__text {
  padding: 1rem;
}

@media screen and (max-width: 768px) {
  .c-box-shift__text {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 0;
    padding-top: 1.5rem;
  }
}

.c-box-shift__text .c-box-shift__tag {
  width: 100%;
}

.c-box-shift__text .c-box-shift__tag span {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-box-shift__text .c-box-shift__tag span {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

.c-box-shift__text .c-box-shift__tag span strong {
  font-size: 2.4rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .c-box-shift__text .c-box-shift__tag span strong {
    margin-left: 0.5rem;
    font-size: 1.8rem;
  }
}

.c-box-shift__text .c-box-shift__tag span+span {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: solid 1px #707070;
}

.c-box-shift__text h3 {
  font-size: 2.4rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.56;
  color: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-box-shift__text h3 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .c-box-shift__text h3 small {
    font-size: 1.6rem;
  }
}

.c-box-shift__text .c-box-shift__btn {
  position: relative;
  padding-right: 3rem;
  color: #050505;
}

@media screen and (max-width: 768px) {
  .c-box-shift__text .c-box-shift__btn {
    width: fit-content;
    font-size: 1.6rem;
    margin-top: 0.5rem;
    margin-left: auto;
  }
}

.c-box-shift__text .c-box-shift__btn::after {
  content: "";
  position: absolute;
  top: 0.1rem;
  bottom: 0;
  right: 0;
  width: 2.2rem;
  height: 2.2rem;
  margin: auto;
  background: url(../img/common/ico_arrow_right03.svg);
  background-size: 100%;
}

.c-box-shift a img {
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

@media screen and (min-width: 769px) {
  .c-box-shift a:hover .c-box-shift__img img {
    transform: scale(1.05);
  }

  .c-box-shift a:hover .c-box-shift__text h3,
  .c-box-shift a:hover .c-box-shift__text .c-box-shift__btn {
    text-decoration: underline;
  }

  .c-box-shift a:hover .c-box-shift__text h3 {
    color: #c33;
  }
}

.c-box-shift.-column2 .c-box-shift__item {
  width: calc(50% - 4rem);
}

@media screen and (max-width: 768px) {
  .c-box-shift.-column2 .c-box-shift__item {
    width: 100%;
  }
}

.c-box-shift.-column2.-gap_small {
  gap: 4rem;
}

.c-box-shift.-column2.-gap_small .c-box-shift__item {
  width: calc(50% - 2rem);
}

@media screen and (max-width: 768px) {
  .c-box-shift.-column2.-gap_small .c-box-shift__item {
    width: 100%;
  }
}

.c-box-shift.-column2 .c-box-shift__item:nth-child(odd) {
  margin-top: -12rem;
}

@media screen and (max-width: 768px) {
  .c-box-shift.-column2 .c-box-shift__item:nth-child(odd) {
    margin-top: 0;
  }
}

.c-box-shift.-column2 .c-box-shift__item:first-child {
  margin-top: 0;
}

.c-box-shift.-column2 .c-box-shift__item:nth-child(2) {
  margin-top: 12rem;
}

@media screen and (max-width: 768px) {
  .c-box-shift.-column2 .c-box-shift__item:nth-child(2) {
    margin-top: 0;
  }
}

.c-box-shift.-column3 {
  gap: 0 4rem;
}

.c-box-shift.-column3 .c-box-shift__item {
  width: calc(33.333% - 2.7rem);
}

@media screen and (max-width: 768px) {
  .c-box-shift.-column3 .c-box-shift__item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .c-box-shift.-column3 .c-box-shift__item+.c-box-shift__item {
    margin-top: 4.8rem !important;
  }
}

.c-box-shift.-column3 .c-box-shift__item:nth-child(2),
.c-box-shift.-column3 .c-box-shift__item:nth-child(5),
.c-box-shift.-column3 .c-box-shift__item:nth-child(8) {
  margin-top: 3.7rem;
}

.c-box-shift.-column3 .c-box-shift__item:nth-child(3),
.c-box-shift.-column3 .c-box-shift__item:nth-child(6),
.c-box-shift.-column3 .c-box-shift__item:nth-child(9) {
  margin-top: 7.5rem;
}

@media screen and (max-width: 768px) {
  .c-box-shift.-column3 .c-box-shift__img {
    aspect-ratio: 71/27;
  }
}

.c-box-shift.-column3 .c-box-shift__text {
  padding-top: 1rem;
}

@media screen and (max-width: 768px) {
  .c-box-shift.-column3 .c-box-shift__text span {
    font-size: 1.4rem;
    font-weight: 500;
  }
}

.c-box-shift.-column3 .c-box-shift__text span strong {
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  .c-box-shift.-column3 .c-box-shift__text span strong {
    font-size: 1.4rem;
  }
}

.c-box-shift.-column3 .c-box-shift__text h3 {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .c-box-shift.-column3 .c-box-shift__text h3 {
    font-size: 1.6rem;
    width: 100%;
    margin-bottom: 1rem;
  }
}

.c-box-shift.-column3 .c-box-shift__text h3 small {
  font-size: 1.6rem;
}

.c-box-shift.-column3 .c-box-shift__text .c-box-shift__btn {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.c-box-shift.-column3 .c-box-shift__text .c-box-shift__btn::after {
  width: 1.6rem;
  height: 1.6rem;
}

.c-box-shift img {
  max-width: 100%;
  height: auto;
}

.c-box-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
  margin: 4rem 0;
}

@media screen and (max-width: 768px) {
  .c-box-layout {
    gap: 2rem;
  }
}

.c-box-layout__item.c-box-shift__text {
  padding: 0;
}

.c-box-layout__item a {
  display: block;
}

.c-box-layout__img {
  aspect-ratio: 6/4;
  border-radius: 1.5rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .c-box-layout__img {
    width: 100%;
    height: auto;
  }
}

.c-box-layout__text {
  padding: 1rem 0;
  transition: opacity 0.4s;
}

@media screen and (max-width: 768px) {
  .c-box-layout__text {
    padding: 0;
    padding-top: 1rem;
  }
}

.c-box-layout__text h3 {
  font-size: 2.4rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.56;
}

@media screen and (max-width: 768px) {
  .c-box-layout__text h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}

.c-box-layout a img {
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

@media screen and (min-width: 769px) {
  .c-box-layout a:hover {
    opacity: 1;
  }

  .c-box-layout a:hover .c-box-layout__img img {
    transform: scale(1.05);
  }

  .c-box-layout a:hover .c-box-layout__text {
    text-decoration: underline;
  }
}

.c-box-layout.-column2 .c-box-layout__item {
  width: calc(50% - 4rem);
}

@media screen and (max-width: 768px) {
  .c-box-layout.-column2 .c-box-layout__item {
    width: 100%;
  }
}

.c-box-layout.-column3 {
  gap: 4rem;
}

.c-box-layout.-column3 .c-box-layout__item {
  width: calc(33.333% - 2.7rem);
}

@media screen and (max-width: 768px) {
  .c-box-layout.-column3 .c-box-layout__item {
    width: 100%;
  }
}

.c-box-layout.-column3 .c-box-layout__text span strong {
  font-size: 2.2rem;
}

.c-box-layout.-column3 .c-box-layout__text h3 {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .c-box-layout.-column3 .c-box-layout__text h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}

.c-box-layout__item.-movie button {
  width: 100%;
}

.c-box-layout__item.-movie .c-box-layout__img {
  position: relative;
  aspect-ratio: 16/9;
}

.c-box-layout__item.-movie .c-box-layout__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-box-layout__item.-movie .c-box-layout__img::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 13.5rem;
  height: 13.5rem;
  margin: auto;
  background: url(../img/common/ico_play.png);
  background-size: 100%;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .c-box-layout__item.-movie .c-box-layout__img::after {
    width: 8.7rem;
    height: 8.7rem;
  }
}

.c-box-layout__item.-movie .c-box-layout__text h3 {
  font-size: 1.8rem;
}

.c-box-layout__item.-movie .js-yt-area iframe {
  width: 100%;
  height: 100%;
}

.c-box-layout__item.-movie .js-yt-area.play img {
  display: none;
}

.c-box-layout__item.-movie .js-yt-area.play::after {
  content: none;
}

.c-box-layout.-center {
  justify-content: center;
}

.c-box-layout.-product {
  gap: 4rem;
}

@media screen and (max-width: 768px) {
  .c-box-layout.-product {
    gap: 1.5rem;
  }
}

.c-box-layout.-product .c-box-layout__item {
  width: calc(33.333% - 2.7rem);
}

@media screen and (max-width: 768px) {
  .c-box-layout.-product .c-box-layout__item {
    width: calc(50% - 1.5rem);
  }
}

.c-box-layout.-product .c-box-layout__item .c-box-layout__img {
  aspect-ratio: 38/30;
  padding-right: 2rem;
}

@media screen and (max-width: 768px) {
  .c-box-layout.-product .c-box-layout__item .c-box-layout__img {
    padding: 0;
  }
}

.c-box-layout.-product .c-box-layout__item .c-box-layout__text {
  position: relative;
  top: -7.5rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .c-box-layout.-product .c-box-layout__item .c-box-layout__text {
    top: -1.8rem;
    width: calc(100% - 1.5rem);
    margin-left: 0.6rem;
  }
}

.c-box-layout.-product .c-box-layout__item .c-box-layout__text::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: -0.7rem;
  width: 100%;
  height: 100%;
  background-color: #0fc8f2;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .c-box-layout.-product .c-box-layout__item .c-box-layout__text::before {
    top: 0.3rem;
    right: -0.3rem;
  }
}

.c-box-layout.-product .c-box-layout__item .c-box-layout__text-inner {
  position: relative;
  padding: 2rem;
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .c-box-layout.-product .c-box-layout__item .c-box-layout__text-inner {
    padding: 0.8rem 1.5rem;
  }
}

.c-box-layout.-product .c-box-layout__item .c-box-layout__text h4 {
  position: relative;
  font-size: 2rem;
  width: fit-content;
}

@media screen and (max-width: 768px) {
  .c-box-layout.-product .c-box-layout__item .c-box-layout__text h4 {
    font-size: 1.5rem;
    width: 100%;
  }
}

.c-box-layout.-product .c-box-layout__item .c-box-layout__text h4::after {
  content: "";
  position: absolute;
  top: 0.3rem;
  bottom: 0;
  right: -3.4rem;
  width: 1.8rem;
  height: 1.8rem;
  margin: auto;
  background: url(../img/common/ico_product.svg);
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .c-box-layout.-product .c-box-layout__item .c-box-layout__text h4::after {
    top: 0.2rem;
    right: -1rem;
    width: 1.2rem;
    height: 1.2rem;
  }
}

.c-box-layout.-product .c-box-layout__item .c-box-layout__label {
  color: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-box-layout.-product .c-box-layout__item .c-box-layout__label {
    display: block;
    font-size: 1.3rem;
    line-height: 1.3;
  }
}

.c-box-layout.-product .c-box-layout__item a:hover .c-box-layout__text {
  opacity: 1;
}

.c-box-layout img {
  max-width: 100%;
  height: auto;
}

.c-block-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
}

@media screen and (max-width: 768px) {
  .c-block-layout {
    flex-direction: column;
    gap: 4rem;
  }
}

.c-block-layout.-gap_small {
  gap: 4rem;
}

@media screen and (max-width: 768px) {
  .c-block-layout.-gap0_sp {
    gap: 0;
  }
}

.c-block-layout+.c-block-layout {
  margin-top: 10rem;
}

@media screen and (max-width: 768px) {
  .c-block-layout+.c-block-layout {
    margin-top: 6rem;
  }
}

.c-block-layout>div {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .c-block-layout>div {
    width: 100%;
  }
}

.c-block-layout>div>*+.title {
  margin-top: 3rem;
}

.c-block-layout p+p {
  margin-top: 2em;
}

.c-block-layout img {
  display: block;
  width: fit-content;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.c-block-layout__img-bg {
  position: relative;
}

.c-block-layout__img-bg::before {
  content: "";
  position: absolute;
  top: 4.7rem;
  right: calc(-1 * (100vw - 86rem) / 2);
  width: 75rem;
  height: 56rem;
  border-radius: 1.5rem;
  background-color: #bad2ed;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .c-block-layout__img-bg::before {
    content: none;
  }
}

.c-block-layout__img-bg01 {
  width: 50rem !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}

.c-block-layout__img-bg02 {
  width: 56rem !important;
  margin-top: -13rem !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

@media screen and (max-width: 768px) {
  .c-block-layout__img-bg02 {
    margin-top: 2.6rem !important;
  }
}

.c-post.-news {
  top: 0;
}

.c-post.-news .c-post__inner {
  top: 0;
}

.c-post.-news .c-post__item {
  border-bottom: solid 1px #bad2ed;
}

.c-post.-news .c-post__item:first-child {
  border-top: solid 1px #bad2ed;
}

.c-post.-news .c-post__item a {
  display: flex;
  gap: 2.8rem;
  padding: 5rem 0;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .c-post.-news .c-post__item a {
    display: block;
    font-size: 1.6rem;
    padding: 2rem 0;
  }
}

@media screen and (min-width: 769px) {
  .c-post.-news .c-post__item a:hover {
    opacity: 1;
  }

  .c-post.-news .c-post__item a:hover .c-post__title {
    text-decoration: none;
  }
}

@media screen and (max-width: 768px) {
  .c-post.-news .c-post__date {
    display: block;
    font-weight: 400;
  }
}

.c-post.-news .c-post__title {
  text-decoration: underline;
}

#js-ajax-more-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: fit-content;
  min-width: 36rem;
  min-height: 8rem;
  margin-top: 6rem;
  margin-left: auto;
  margin-right: auto;
  padding-right: 3rem;
  padding: 0 5rem 0 3rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.56;
  color: #ffffff;
  border-radius: 1000px;
  background-color: #001973;
  border: solid 2px #001973;
  transition: all 0.3s;
  overflow: hidden;
  outline-offset: 0.75rem;

  &::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2rem;
    width: 4rem;
    height: 4rem;
    margin: auto;
    background: url(../img/common/ico_arrow_down.svg);
    background-size: cover;
    transition: all 0.3s;
  }
}

.c-history {
  position: relative;
}

.c-history::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 12.8rem;
  width: 1px;
  height: calc(100% - 1rem);
  background-color: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-history::before {
    top: 1.1rem;
    left: 0.7rem;
  }
}

.c-history dl {
  position: relative;
  padding-left: 22rem;
}

@media screen and (max-width: 768px) {
  .c-history dl {
    padding-left: 3.5rem;
  }
}

.c-history dl+dl {
  margin-top: 5rem;
}

.c-history dl:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12.3rem;
  width: 1rem;
  height: calc(100% - 2.4rem);
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .c-history dl:last-child::after {
    left: 0;
    height: calc(100% - 8rem);
  }
}

.c-history dl dt {
  position: absolute;
  top: 0;
  left: 0;
  color: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-history dl dt {
    position: unset;
    margin-bottom: 3rem;
  }
}

.c-history dl dt::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 12.1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-history dl dt::before {
    top: 1.1rem;
    left: 0;
  }
}

.c-history dl dt::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 14.3rem;
  width: 3.4rem;
  height: 0.4rem;
  background-image: url(../img/common/ico_history.png);
  background-size: 0.7rem;
  background-position: 0;
}

@media screen and (max-width: 768px) {
  .c-history dl dt::after {
    content: none;
  }
}

.c-history dl dd {
  display: block;
}

@media screen and (max-width: 768px) {
  .c-history dl dd {
    position: relative;
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  .c-history dl dd::after {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: -2.5rem;
    width: 2rem;
    height: 0.2rem;
    background-image: url(../img/common/ico_history.png);
    background-size: 0.4rem;
    background-position: 0;
  }
}

@media screen and (max-width: 768px) {
  .c-history dl dd span {
    display: block;
  }
}

.c-history dl dd+dd {
  margin-top: 1rem;
}

.c-step {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

@media screen and (max-width: 768px) {
  .c-step {
    flex-direction: column;
    gap: 1rem;
  }
}

.c-step__item {
  position: relative;
  width: calc(33.333% - 2rem);
}

@media screen and (max-width: 768px) {
  .c-step__item {
    width: 100%;
    padding-top: 3.7rem;
  }
}

.c-step__item > span {
  position: relative;
  left: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 9.6rem;
  height: 9.6rem;
  line-height: 1;
  color: #ffffff;
  border-radius: 50%;
  background-color: #0072bc;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .c-step__item > span {
    position: absolute;
    top: 0;
    left: auto;
    right: 1rem;
    width: 6.8rem;
    height: 6.8rem;
  }
}

.c-step__item > span strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .c-step__item > span strong {
    font-size: 2.1rem;
  }
}

.c-step__item>div {
  position: relative;
  height: calc(100% - 6.4rem);
  margin-top: -3.2rem;
  padding: 5rem 2rem;
  border-radius: 1.5rem;
  border: solid 0.4rem #0072bc;
}

@media screen and (max-width: 768px) {
  .c-step__item>div {
    margin-top: 0;
    padding: 1.4rem;
  }
}

.c-step__item>div::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -2.75rem;
  width: 1.6rem;
  height: 4rem;
  margin: auto;
  margin: auto;
  background-image: url(../img/common/ico_arrow_step.svg);
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .c-step__item>div::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: -4.5rem;
    transform: rotate(90deg);
  }
}

.c-step__item>div h4 {
  font-size: 2.4rem;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  color: #0072bc;
  border-bottom: dashed 1px #001973;
}

@media screen and (max-width: 768px) {
  .c-step__item>div h4 {
    font-size: 2rem;
    padding-bottom: 1rem;
    padding-right: 5rem;
    margin-bottom: 1rem;
  }
}

.c-step__item>div p {
  font-size: 1.7rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .c-step__item>div p {
    font-size: 1.6rem;
    font-weight: 500;
  }
}

.c-step__item:last-child>div::after {
  content: none;
}

.c-step.-hide_arrow .c-step__item>div::after {
  content: none;
}

.c-price {
  position: relative;
  padding: 4rem;
  border: solid 1rem #bad2ed;
}

@media screen and (max-width: 768px) {
  .c-price {
    margin-left: 0.5rem;
    padding: 4rem 1.5rem;
    border-width: 0.5rem;
  }
}

.c-price__label {
  position: absolute;
  top: -4.5rem;
  left: -1rem;
  font-size: 2.2rem;
  padding: 2rem 2rem 2rem 6rem;
  background-color: #ffffff;
}

.c-price__label::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: 0;
  width: 4rem;
  height: 4rem;
  background-image: url(../img/common/ico_price.svg);
  background-size: 100%;
}

.c-price__opt {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0rem 2.5rem;
  border-radius: 100rem;
  background-color: #c7e8e6;
}

@media screen and (max-width: 768px) {

  .c-price p,
  .c-price small {
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
  }
}

.c-contact {
  padding: 4.8rem 6.8rem;
  border-radius: 0 4rem 0 5rem;
  color: #ffffff;
  background: #0072bc;
}

@media screen and (max-width: 768px) {
  .c-contact {
    padding: 3rem 1.5rem;
    font-size: 1.6rem;
    border-radius: 0 2rem 0 2.5rem;
  }
}

.c-contact h3 {
  position: relative;
  font-size: 3.2rem;
  margin-bottom: 2.4rem;
  line-height: 4rem;
}

@media screen and (max-width: 768px) {
  .c-contact h3 {
    font-size: 2rem;
    height: auto;
    line-height: 1.3;
  }
}

.c-contact .c-link {
  color: #ffffff;
}

.c-contact .c-link:focus-visible {
  outline: solid 2px #ffffff;
}

.c-accordion {}

.c-accordion+.c-accordion {
  margin-top: 1.6rem;
}

.c-accordion__button {
  letter-spacing: 0;
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 4.8rem 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.c-accordion__button-toggle-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  display: block;
  width: 3.2rem;
  height: 3.2rem;
}

.c-accordion__button-toggle-icon::after,
.c-accordion__button-toggle-icon::before {
  position: absolute;
  content: '';
  top: 1rem;
  right: 2rem;
  display: block;
  height: 0.2rem;
  width: 2rem;
  background-color: #333333;
}

@media screen and (max-width: 768px) {

  .c-accordion__button-toggle-icon::after,
  .c-accordion__button-toggle-icon::before {
    top: 1.5rem;
    right: 1.5rem;
    height: 0.2rem;
    width: 1.6rem;
  }
}

.c-accordion__button-toggle-icon::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
}

.c-accordion__button[accordion-state='open'] .c-accordion__button-toggle-icon::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.c-accordion__contents {
  display: block;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-out;
  transition: height 0.3s ease-out;
  margin-bottom: 0;
}

.c-accordion__contents[data-accordion-state='close'] {
  height: 0px;
  display: none;
}

.c-accordion__contents[data-accordion-state='open'] {
  height: auto;
  display: block;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.c-accordion__contents-inner {
  padding: 1.6rem 0 0 0;
  margin: 0 0 2.4rem 0;
}

.c-accordion__contents-inner>*:first-child {
  margin-top: 0;
}

.p-contact-sec {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

@media screen and (max-width: 768px) {
  .p-contact-sec {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

.p-contact-sec__box {
  position: relative;
  width: 101rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .p-contact-sec__box {
    max-width: 100%;
    overflow: hidden;
  }
}

.p-contact-sec__box-inner {
  position: relative;
  padding: 7rem;
  text-align: center;
  border-radius: 1.5rem;
  background: #0072bc;
}

@media screen and (max-width: 768px) {
  .p-contact-sec__box-inner {
    padding: 5rem 1.5rem;
  }
}

.p-contact-sec__title {
  position: relative;
  display: inline-block;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  padding-left: 8.8rem;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .p-contact-sec__title {
    font-size: 2.6rem;
    padding-top: 8rem;
    padding-left: 0rem;
  }
}

.p-contact-sec__title::before {
  content: "";
  position: absolute;
  top: -0.2rem;
  left: 0;
  width: 6.8rem;
  height: 6.8rem;
  background-image: url(/assets/img/common/ico_mail.png);
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .p-contact-sec__title::before {
    top: 0;
    right: 0;
    margin: auto;
  }
}

.p-form {
  /* form */
}

.p-form__item {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .p-form__item {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}

.p-form__item:first-child .p-form__label {
  border-top: solid 1px #001973;
}

@media screen and (max-width: 768px) {
  .p-form__item:first-child .p-form__label {
    border-top: none;
  }
}

.p-form__item:first-child .p-form__field {
  border-top: solid 1px #c9c9c9;
}

@media screen and (max-width: 768px) {
  .p-form__item:first-child .p-form__field {
    border-top: none;
  }
}

.p-form__label {
  display: flex;
  align-items: center;
  width: 30rem;
  border-bottom: solid 1px #001973;
}

@media screen and (max-width: 768px) {
  .p-form__label {
    width: 100%;
    margin-bottom: 2.4rem;
  }
}

.p-form__label h4 {
  color: #001973;
}

.p-form__label.-required h4::after {
  content: "*";
  font-size: 1.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.p-form__field {
  flex: 1;
  padding: 2.7rem 8rem;
  border-bottom: solid 1px #c9c9c9;
}

@media screen and (max-width: 768px) {
  .p-form__field {
    padding: 0;
    border: none;
  }
}

.p-form__unit {
  width: 100%;
  font-size: 1.6rem;
  padding: 2rem 2.4rem;
  border-radius: 0.5rem;
  border: solid 1px #c9c9c9;
}

@media screen and (max-width: 768px) {
  .p-form__unit {
    padding: 1.6rem;
  }
}

.p-form__privacy {
  margin-top: 7rem;
}

.p-form__privacy .p-form__field {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75rem;
  height: 15.5rem;
  margin: auto;
  background-color: #cde7e6;
}

@media screen and (max-width: 768px) {
  .p-form__privacy .p-form__field {
    position: relative;
    display: block;
    font-size: 1.6rem;
    width: 100%;
    height: auto;
    padding: 4rem;
    padding-left: 7rem;
  }
}

.p-form__privacy .p-form__field input[type="checkbox"] {
  position: relative;
  width: 5rem;
  height: 5rem;
  margin-right: 3rem;
  border-radius: 0.5rem;
  border: 1px solid #c8c8c8;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .p-form__privacy .p-form__field input[type="checkbox"] {
    position: absolute;
    top: 4.2rem;
    left: 3.2rem;
    width: 2.8rem;
    height: 2.8rem;
    margin: 0;
  }
}

.p-form__privacy .p-form__field input[type="checkbox"]:checked:before {
  position: absolute;
  top: 0.1rem;
  left: 1.4rem;
  transform: rotate(50deg);
  width: 2rem;
  height: 3.5rem;
  border-right: 0.6rem solid #c91c00;
  border-bottom: 0.6rem solid #c91c00;
  content: "";
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .p-form__privacy .p-form__field input[type="checkbox"]:checked:before {
    left: 0.8rem;
    width: 1rem;
    height: 2rem;
    border-right: 0.4rem solid #c91c00;
    border-bottom: 0.4rem solid #c91c00;
  }
}

.p-form__privacy .wpcf7-list-item {
  margin: 0;
}

.p-form__submit input {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: fit-content;
  min-width: 36rem;
  min-height: 8rem;
  margin: 6rem auto 0;
  padding: 0 5rem 0 3rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.56;
  color: #ffffff;
  border-radius: 1000px;
  background-color: #001973;
  border: solid 2px #001973;
  transition: all 0.3s;
  overflow: hidden;
  outline-offset: 0.75rem;
}

@media screen and (max-width: 768px) {
  .p-form__submit input {
    min-width: 30.8rem;
    min-height: 6rem;
    margin: 5rem auto 0;
    padding: 0 1rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.p-form__submit input::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  width: 0.8rem;
  height: 1.3rem;
  margin: auto;
  background: url(../img/common/ico_arrow_right.svg);
  background-size: cover;
  transition: all 0.3s;
}

@media screen and (min-width: 769px) {
  .p-form__submit input:hover {
    color: #001973;
    background-color: #ffffff;
  }

  .p-form__submit input:hover::after {
    background-image: url(../img/common/ico_arrow_right_on.svg);
  }
}

.p-form__submit input:disabled {
  background-color: #777777;
  border-color: #777777;
}

.c-keyvisual.-magazine .c-keyvisual__inner {
  padding: 7rem 0;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-magazine .c-keyvisual__inner {
    padding: 5rem 0;
  }
}

.c-keyvisual.-magazine .c-keyvisual__img {
  display: block;
  text-align: center;
  margin-bottom: 8rem;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-magazine .c-keyvisual__img {
    margin-bottom: 4rem;
  }
}

.c-keyvisual.-magazine .c-keyvisual__img img {
  width: 93rem;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-magazine .c-keyvisual__img img {
    width: 28rem;
  }
}

.c-keyvisual.-magazine .c-keyvisual__title {
  text-align: center;
}

.c-keyvisual.-magazine .c-keyvisual__title h1 {
  font-size: 4.8rem;
}

@media screen and (max-width: 768px) {
  .c-keyvisual.-magazine .c-keyvisual__title h1 {
    font-size: 2.9rem;
  }
}

.p-magazine__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem 11.5rem;
}

@media screen and (max-width: 768px) {
  .p-magazine__wrap {
    flex-direction: column;
    align-items: center;
  }
}

.p-magazine__item {
  position: relative;
  width: 33rem;
}

@media screen and (max-width: 768px) {
  .p-magazine__item {
    width: 28rem;
  }
}

.p-magazine__new {
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-size: 3.2rem;
  line-height: 1;
  color: #ff0000;
  transform: rotate(-30deg);
}

.p-magazine__img {
  display: block;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .p-magazine__img {
    margin-bottom: 1rem;
  }
}

.p-magazine__img img {
  width: 100%;
}

.p-magazine .c-button {
  min-width: auto;
  width: 100%;
  margin-top: 3rem !important;
}

@media screen and (max-width: 768px) {
  .p-magazine .c-button {
    margin-top: 2rem !important;
  }
}

.p-magazine .c-button+.c-button {
  margin-top: 2rem !important;
}

.p-recognize-keyvisual__inner {
  position: relative;
}

.p-recognize-keyvisual__img img {
  width: 100%;
}

.p-recognize-keyvisual__title {
  position: absolute;
  top: 13rem;
  left: 24rem;
}

@media screen and (max-width: 768px) {
  .p-recognize-keyvisual__title {
    top: 4rem;
    left: 2rem;
  }
}

.p-recognize-keyvisual__title h1 {
  font-size: 13rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p-recognize-keyvisual__title h1 {
    font-size: 4.2rem;
  }
}

.p-recognize-keyvisual__title h1 span {
  display: block;
}

.p-recognize-keyvisual__title h1 span strong {
  font-size: 17rem;
}

@media screen and (max-width: 768px) {
  .p-recognize-keyvisual__title h1 span strong {
    font-size: 5.6rem;
  }
}

.p-recognize-keyvisual__title h1 span+span {
  font-size: 12rem;
  margin-top: 8rem;
  margin-left: 3rem;
}

@media screen and (max-width: 768px) {
  .p-recognize-keyvisual__title h1 span+span {
    font-size: 4.2rem;
    margin-top: 1.5rem;
  }
}

.p-recognize-keyvisual__title h1 span+span strong {
  position: relative;
  top: 1rem;
  font-size: 14rem;
}

@media screen and (max-width: 768px) {
  .p-recognize-keyvisual__title h1 span+span strong {
    top: 0;
    font-size: 4.2rem;
  }
}

.p-recognize-keyvisual__title .p-recognize-keyvisual__copy {
  position: relative;
  right: -4.8rem;
  display: block;
  font-weight: 500;
  width: fit-content;
  margin-top: 4.8rem;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .p-recognize-keyvisual__title .p-recognize-keyvisual__copy {
    display: none;
  }
}

.p-recognize-section {
  margin-top: 12rem;
  margin-bottom: 12rem;
}

@media screen and (max-width: 768px) {
  .p-recognize-section {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

.p-recognize-section__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .p-recognize-section__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-recognize-section:nth-of-type(odd) .p-recognize__img {
  order: 2;
}

@media screen and (max-width: 768px) {
  .p-recognize-section:nth-of-type(odd) .p-recognize__img img {
    width: calc(100% - 4rem);
    margin-left: 4rem;
    clip-path: polygon(9rem 0%, 100% 0%, 100% 100%, 0% 100%);
  }

  .p-recognize-section:nth-of-type(odd) .p-recognize__img::before {
    clip-path: polygon(2.4rem 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.p-recognize-section:nth-of-type(odd) .p-recognize__text {
  order: 1;
}

.p-recognize-section:nth-of-type(even) .p-recognize__number {
  margin-left: auto;
  margin-right: 6.7rem;
  text-align: right;
}

.p-recognize-section:nth-of-type(even) .p-recognize__number::before {
  left: auto;
  right: 21rem;
}

@media screen and (max-width: 768px) {
  .p-recognize-section:nth-of-type(even) .p-recognize__number::before {
    left: auto;
    right: 4.3rem;
  }
}

@media screen and (max-width: 768px) {
  .p-recognize-section:nth-of-type(even) .p-recognize__img img {
    width: calc(100% - 4rem);
    margin-right: 4rem;
    padding-left: 0;
    clip-path: polygon(0% 0%, calc(100% - 9rem) 0%, 100% 100%, 0% 100%);
  }

  .p-recognize-section:nth-of-type(even) .p-recognize__img::before {
    clip-path: polygon(0% 0%, calc(100% - 2.4rem) 0%, 100% 100%, 0% 100%);
  }
}

.p-recognize-section:nth-of-type(even) .p-recognize__text-inner {
  margin-left: 0;
  padding-right: calc((100vw - 124rem) / 2);
}

@media screen and (min-width: 1620px) {
  .p-recognize-section:nth-of-type(even) .p-recognize__text-inner {
    padding-right: 18rem;
  }
}

.p-recognize-section:nth-of-type(even) .p-recognize__btn {
  margin-left: auto;
}

.p-recognize__number {
  position: relative;
  display: block;
  font-size: 30rem;
  font-weight: 900;
  width: 100%;
  height: 28rem;
  margin-top: -5rem;
  margin-left: 6.7rem;
  margin-bottom: -3.2rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p-recognize__number {
    font-size: 6.3rem;
    height: 5.8rem;
    margin-left: -0.3rem;
  }
}

.p-recognize__number::before {
  content: "";
  position: absolute;
  left: 3.3rem;
  top: 100%;
  width: 11rem;
  height: 1.3rem;
  background-color: #0072bc;
}

@media screen and (max-width: 768px) {
  .p-recognize__number::before {
    left: 0.6rem;
    width: 2.5rem;
    height: 0.5rem;
  }
}

.p-recognize__number img {
  width: auto;
  height: 22rem;
}

@media screen and (max-width: 768px) {
  .p-recognize__number img {
    height: 6.4rem;
  }
}

.p-recognize__img {
  position: relative;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .p-recognize__img {
    order: 1 !important;
    width: 100%;
    margin-bottom: 4rem;
    padding-bottom: 3rem !important;
  }
}

.p-recognize__img img {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-recognize__img img {
    height: 28rem;
    object-fit: cover;
  }
}

.p-recognize__img-athlete {
  position: absolute !important;
  bottom: calc(100% - 15rem);
  clip-path: unset !important;
}

@media screen and (max-width: 768px) {
  .p-recognize__img-athlete {
    width: 23rem !important;
    height: auto !important;
    bottom: calc(100% - 3rem);
    right: 0;
  }
}

.p-recognize__img::before {
  content: "";
  position: absolute;
  background-color: #0072bc;
}

@media screen and (max-width: 768px) {
  .p-recognize__img::before {
    height: 7.2rem !important;
  }
}

.p-recognize__img.-type01_right {
  padding-bottom: 6.4rem;
}

.p-recognize__img.-type01_right img {
  clip-path: polygon(17.4rem 0%, 100% 0%, 100% 100%, 0% 100%);
  margin-left: 8.8rem;
}

.p-recognize__img.-type01_right::before {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 16rem;
  clip-path: polygon(4.8rem 0%, 100% 0%, 100% 100%, 0% 100%);
}

.p-recognize__img.-type02_right {
  padding-bottom: 6.4rem;
}

.p-recognize__img.-type02_right img {
  clip-path: polygon(17.4rem 0%, 100% 0%, 100% 100%, 0% 100%);
  margin-left: 8.8rem;
}

.p-recognize__img.-type02_right::before {
  bottom: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 6.4rem);
  clip-path: polygon(17.4rem 0%, 100% 0%, 100% 100%, 0% 100%);
}

.p-recognize__img.-type01_left {
  padding-bottom: 6.4rem;
}

.p-recognize__img.-type01_left img {
  width: calc(100% - 13rem);
}

.p-recognize__img.-type01_left::before {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 16rem;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 4.8rem) 100%, 0% 100%);
}

.p-recognize__img.-type02_left {
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
}

.p-recognize__img.-type02_left img {
  width: calc(100% - 8rem);
  padding-left: 4.8rem;
}

.p-recognize__img.-type02_left::before {
  bottom: 0;
  left: 0;
  width: 95%;
  height: 100%;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 17.4rem) 100%, 0% 100%);
}

.p-recognize__img.-type03_left {
  padding-bottom: 6.4rem;
}

.p-recognize__img.-type03_left img {
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 17.4rem) 100%, 0% 100%);
  width: calc(100% - 3rem);
}

.p-recognize__img.-type03_left::before {
  bottom: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 6.4rem);
  clip-path: polygon(0% 0%, calc(100% - 17.4rem) 0%, 100% 100%, 0% 100%);
}

.p-recognize__text {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .p-recognize__text {
    order: 2 !important;
    width: 100%;
    padding: 0 1rem;
  }
}

.p-recognize__text-inner {
  width: 100%;
  margin-left: calc((100vw - 124rem) / 2);
}

@media screen and (max-width: 768px) {
  .p-recognize__text-inner {
    margin-left: 0;
  }
}

@media screen and (min-width: 1620px) {
  .p-recognize__text-inner {
    margin-left: 18rem;
  }
}

.p-recognize__text h2 {
  font-size: 5.2rem;
  line-height: 1.56;
}

@media screen and (max-width: 768px) {
  .p-recognize__text h2 {
    font-size: 2.3rem;
  }
}

.p-recognize__text h2.-small {
  font-size: 4.4rem;
}

@media screen and (max-width: 768px) {
  .p-recognize__text h2.-small {
    font-size: 2.4rem;
  }
}

.p-recognize__text p {
  font-weight: 500;
  margin-top: 5.6rem;
}

@media screen and (max-width: 768px) {
  .p-recognize__text p {
    margin-top: 2.4rem;
  }
}

.p-recognize__btn {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: fit-content;
  min-width: 36rem;
  min-height: 8.5rem;
  margin-top: 8rem;
  padding: 0 5rem 0 3rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.56;
  color: #ffffff;
  background-color: #000000;
  border: solid 2px #000000;
  transition: all 0.3s;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-recognize__btn {
    min-width: 30.8rem;
    min-height: 6rem;
    margin: 4rem auto 0;
    padding: 0 1rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

.p-recognize__btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  width: 0.8rem;
  height: 1.3rem;
  margin: auto;
  background: url(../img/common/ico_arrow_right.svg);
  background-size: cover;
  transition: all 0.3s;
}

@media screen and (min-width: 769px) {
  .p-recognize__btn:hover {
    color: #000000;
    background-color: #ffffff;
  }

  .p-recognize__btn:hover::after {
    background-image: url(../img/common/ico_arrow_right_on.svg);
  }
}

.p-recognize__big-copy {
  position: relative;
  left: calc(-1 * (100vw - 124rem) / 2);
  display: block;
  width: 100vw;
  font-size: 30rem;
  font-weight: 900;
  margin-bottom: 8rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p-recognize__big-copy {
    left: 0;
    font-size: 7.2rem;
    margin-bottom: 5rem;
  }
}

.p-recognize__big-copy.-entry {
  position: relative;
  top: -4rem;
  left: calc(-1 * (100vw - 121rem) / 2);
  margin-bottom: 4rem;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .p-recognize__big-copy.-entry {
    top: -0.5rem;
    left: -1rem;
    font-size: 7.2rem;
    margin-bottom: 5rem;
  }
}

.p-recognize-voice__title {
  font-size: 5.2rem;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 1rem;
  margin-bottom: 10rem;
  padding-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  .p-recognize-voice__title {
    font-size: 2.4rem;
    margin-bottom: 5rem;
  }
}

.p-recognize-entry {
  background-color: #0072bc;
  padding-bottom: 16rem;
}

@media screen and (max-width: 768px) {
  .p-recognize-entry {
    padding-bottom: 10rem;
  }
}

.p-recognize-entry__title {
  font-size: 5.2rem;
  color: #ffffff;
  margin-bottom: 10rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-recognize-entry__title {
    font-size: 2.4rem;
    margin-bottom: 5rem;
    line-height: 1.56;
  }
}

.p-recognize-entry__wrap {
  display: flex;
  gap: 4.8rem;
}

@media screen and (max-width: 768px) {
  .p-recognize-entry__wrap {
    display: block;
  }
}

.p-recognize-entry__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.8rem;
  width: 100%;
  height: 17.6rem;
  color: #ffffff;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .p-recognize-entry__btn {
    font-size: 2.4rem;
    height: 10rem;
  }
}

.p-recognize-entry__btn:focus-visible {
  outline: solid 2px #ffffff;
  outline-offset: 0.75rem;
}

.p-recognize-entry__btn span {
  display: inline-block;
  position: relative;
  padding-left: 4rem;
}

@media screen and (max-width: 768px) {
  .p-recognize-entry__btn span {
    padding-left: 3.2rem;
  }
}

.p-recognize-entry__btn span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1rem;
  height: 2rem;
  margin: auto;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #ffffff;
}

.p-recognize-entry__btn.-app {
  border: solid 0.4rem #ffffff;
}

@media screen and (min-width: 769px) {
  .p-recognize-entry__btn.-app:hover {
    color: #0072bc;
    background-color: #ffffff;
  }

  .p-recognize-entry__btn.-app:hover span::before {
    background-color: #0072bc;
  }
}

.p-recognize-entry__btn.-entry {
  border: solid 0.4rem #db3d23;
  background-color: #db3d23;
}

@media screen and (max-width: 768px) {
  .p-recognize-entry__btn.-entry {
    margin-top: 3rem;
  }
}

@media screen and (min-width: 769px) {
  .p-recognize-entry__btn.-entry:hover {
    color: #db3d23;
    background-color: #ffffff;
  }

  .p-recognize-entry__btn.-entry:hover span::before {
    background-color: #db3d23;
  }
}

.p-recruit-sec {
  position: relative;
  margin-top: 15rem;
  margin-bottom: 15rem;
  padding-bottom: 14.4rem;
}

@media screen and (max-width: 768px) {
  .p-recruit-sec {
    margin-top: 10rem;
    margin-bottom: 10rem;
    padding-bottom: 50rem;
  }
}

.p-recruit-sec__img01 {
  position: absolute;
  top: 5.5rem;
  right: 0;
  width: 44rem;
  height: 63rem;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-recruit-sec__img01 {
    top: auto;
    bottom: 10rem;
    width: 24rem;
    height: 34.3rem;
  }
}

.p-recruit-sec__img02 {
  position: absolute;
  top: 32.5rem;
  right: 30rem;
  width: 44rem;
  height: 56.2rem;
}

@media screen and (max-width: 768px) {
  .p-recruit-sec__img02 {
    top: auto;
    bottom: 0;
    left: -2.5rem;
    right: auto;
    width: 24rem;
    height: 30.7rem;
    z-index: 2;
  }
}

.p-single-header {
  margin: 10rem 0;
  padding-left: 3rem;
  border-left: solid 1rem #0072bc;
}

@media screen and (max-width: 768px) {
  .p-single-header {
    margin: 4rem 0;
    padding-left: 1.5rem;
    border-left-width: 0.5rem;
  }
}

.p-single-header__title {
  font-size: 4.8rem;
  line-height: 1.56;
}

@media screen and (max-width: 768px) {
  .p-single-header__title {
    font-size: 2.6rem;
  }
}

.p-single-header__date {
  display: block;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .p-single-header__date {
    font-size: 1.6rem;
  }
}

.p-single-contents>*+* {
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .p-single-contents>*+* {
    margin-top: 4rem;
  }
}

.p-single-contents h1 {
  position: relative;
  font-size: 3.8rem;
  margin-bottom: 7.2rem;
  padding-bottom: 1.5rem;
  padding-left: 6rem;
  line-height: 1.3;
  border-bottom: solid 0.4rem #0072bc;
}

@media screen and (max-width: 768px) {
  .p-single-contents h1 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
}

.p-single-contents h1::before {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 0;
  width: 3.5rem;
  height: 0.6rem;
  background-color: #0fc8f2;
}

.p-single-contents h1::after {
  content: "";
  position: absolute;
  top: 2.4rem;
  left: 0;
  width: 1.5rem;
  height: 0.6rem;
  background-color: #001973;
}

.p-single-contents h2 {
  position: relative;
  font-size: 3.8rem;
  margin-bottom: 4rem;
  padding-bottom: 1rem;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .p-single-contents h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
}

.p-single-contents h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 7rem;
  height: 0.4rem;
  background-color: #0072bc;
}

@media screen and (max-width: 768px) {
  .p-single-contents h2::after {
    width: 5rem;
  }
}

.p-single-contents h3 {
  position: relative;
  font-size: 3.2rem;
  margin-bottom: 4rem;
  padding: 0.4rem 0 0.8rem 3.5rem;
  line-height: 1.3;
  border-left: solid 0.6rem #0072bc;
}

.p-single-contents h4 {
  position: relative;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding: 1.9rem 1.5rem 1.9rem;
  line-height: 1.3;
  background-color: #f0f0f0;
}

.p-single-contents h5 {
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-single-contents p {
    font-size: 1.6rem;
  }
}

.p-single-contents p+p {
  margin-top: 2em;
}

.p-single-contents a {
  color: #0072bc;
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  .p-single-contents a:hover {
    text-decoration: none;
  }
}

.p-single-contents img {
  border-radius: 1rem;
  overflow: hidden;
}

.p-single-contents figcaption {
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .p-single-contents figcaption {
    font-size: 1.6rem;
  }
}

.p-single-contents ul li {
  position: relative;
  padding-left: 1.3em;
}

.p-single-contents ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.p-single-contents ol {
  list-style: decimal;
  margin-left: 1.3em;
}

.p-single-contents .wp-block-button__link {
  position: relative;
  display: block;
  width: fit-content;
  min-width: 36rem;
  padding: 2.3rem 5rem 2.3rem 3rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #ffffff;
  border-radius: 1000px;
  background-color: #001973;
  border: solid 2px #001973;
  transition: all 0.3s;
  overflow: hidden;
  outline-offset: 0.75rem;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .p-single-contents .wp-block-button__link {
    min-width: 30.8rem;
    margin: 5rem auto 0;
    padding: 1.1rem 1rem;
  }
}

@media screen and (min-width: 769px) {
  .p-single-contents .wp-block-button__link:hover {
    color: #001973;
    background-color: #ffffff;
  }
}

.p-single-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .p-single-pager {
    padding: 0 1rem;
  }
}

.p-single-pager>* {
  width: 33.333%;
}

@media screen and (max-width: 768px) {
  .p-single-pager__index {
    order: 1;
    width: 100%;
    margin-bottom: 6rem;
  }
}

.p-single-pager__index a {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .p-single-pager__next {
    order: 2;
    width: 50%;
  }
}

.p-single-pager__next a {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  padding-left: 5.6rem;
}

@media screen and (max-width: 768px) {
  .p-single-pager__next a {
    font-size: 1.4rem;
    padding-left: 3.2rem;
  }
}

@media screen and (min-width: 769px) {
  .p-single-pager__next a:hover {
    text-decoration: underline;
  }
}

.p-single-pager__next a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 3.6rem;
  height: 3.6rem;
  background: url(../img/common/ico_pager.svg);
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .p-single-pager__next a::after {
    width: 2.2rem;
    height: 2.2rem;
  }
}

.p-single-pager__prev {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .p-single-pager__prev {
    order: 3;
    width: 50%;
  }
}

.p-single-pager__prev a {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  padding-right: 5.6rem;
}

@media screen and (max-width: 768px) {
  .p-single-pager__prev a {
    font-size: 1.4rem;
    padding-right: 3.2rem;
  }
}

@media screen and (min-width: 769px) {
  .p-single-pager__prev a:hover {
    text-decoration: underline;
  }
}

.p-single-pager__prev a::after {
  content: "";
  position: absolute;
  right: 0;
  width: 3.6rem;
  height: 3.6rem;
  background: url(../img/common/ico_pager.svg);
  background-size: 100%;
  transform: scale(-1, 1);
}

@media screen and (max-width: 768px) {
  .p-single-pager__prev a::after {
    width: 2.2rem;
    height: 2.2rem;
  }
}

.p-sitemap__wrap {
  display: flex;
  flex-wrap: wrap;
}

.p-sitemap__wrap.-main {
  gap: 4rem 7.2rem;
}

@media screen and (max-width: 768px) {
  .p-sitemap__wrap.-main {
    flex-direction: column;
    gap: 3rem;
  }
}

.p-sitemap__wrap.-main .p-sitemap__btn {
  position: relative;
  width: calc(50% - 3.6rem);
  margin: 0;
}

@media screen and (max-width: 768px) {
  .p-sitemap__wrap.-main .p-sitemap__btn {
    width: 100%;
  }
}

.p-sitemap__wrap.-main .p-sitemap__btn::before {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: 3rem;
  width: 3.6rem;
  height: 3.6rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .p-sitemap__wrap.-main .p-sitemap__btn::before {
    top: 1.5rem;
    left: 1.75rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}

.p-sitemap__wrap.-main .p-sitemap__btn.-top::before {
  background-image: url(../img/sitemap/ico_top.svg);
}

.p-sitemap__wrap.-main .p-sitemap__btn.-top:hover::before {
  background-image: url(../img/sitemap/ico_top_on.svg);
}

.p-sitemap__wrap.-main .p-sitemap__btn.-recognize::before {
  background-image: url(../img/sitemap/ico_light.svg);
}

.p-sitemap__wrap.-main .p-sitemap__btn.-recognize:hover::before {
  background-image: url(../img/sitemap/ico_light_on.svg);
}

.p-sitemap__wrap.-main .p-sitemap__btn.-contact::before {
  background-image: url(../img/sitemap/ico_mail.png);
}

.p-sitemap__wrap.-main .p-sitemap__btn.-contact:hover::before {
  background-image: url(../img/sitemap/ico_mail_on.png);
}

.p-sitemap__wrap.-main .p-sitemap__btn.-barrierfree::before {
  background-image: url(../img/sitemap/ico_map.svg);
}

.p-sitemap__wrap.-main .p-sitemap__btn.-barrierfree:hover::before {
  background-image: url(../img/sitemap/ico_map_on.svg);
}

.p-sitemap__wrap.-sub {
  gap: 3rem;
}

@media screen and (max-width: 768px) {
  .p-sitemap__wrap.-sub {
    flex-direction: column;
    gap: 3rem;
  }
}

.p-sitemap__wrap.-sub .p-sitemap__btn {
  width: calc(33.333% - 2rem);
  min-width: auto;
  margin: 0;
  padding: 0 3rem 0 1rem;
}

@media screen and (max-width: 768px) {
  .p-sitemap__wrap.-sub .p-sitemap__btn {
    width: fit-content;
    font-size: 1.6rem;
    min-width: 30.8rem;
    margin: 0 auto;
  }
}

.p-sustainability {
  padding-bottom: 10rem;
  background: #c7e8e6;
}

.p-sustainability__inner {
  width: 142.5rem;
  margin: 0 auto;
  padding-top: 2.5rem;
  padding-bottom: 1px;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  .p-sustainability__inner {
    width: calc(100% - 2rem);
    padding: 0.1rem 0;
  }
}

.p-sustainability__title {
  position: relative;
  font-size: 4.8rem;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1.6rem;
  color: #ffffff;
  text-align: center;
  background: #008770;
}

@media screen and (max-width: 768px) {
  .p-sustainability__title {
    left: -2rem;
    font-size: 2.4rem;
    width: max-content;
    margin-left: 0;
    padding: 0 1rem;
  }
}

.p-sustainability__title::before,
.p-sustainability__title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}

.p-sustainability__title::before {
  content: "";
  top: 0.7rem;
  left: 0.7rem;
  background: #9adcc6;
}

.p-sustainability__title::after {
  content: "";
  top: 0rem;
  left: 0rem;
  background: #008770;
}

.p-sustainability__title.-sub {
  font-size: 2.8rem;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .p-sustainability__title.-sub {
    font-size: 2rem;
    margin-top: 2rem;
  }
}

.p-sustainability__title+.p-sustainability__title {
  margin-top: 0.5em;
}

.p-sustainability__title span {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-sustainability-figure__section {
    margin-top: 4rem;
  }
}

.p-sustainability-figure__group {
  padding: 3.2rem 2rem 2.7rem;
}

@media screen and (max-width: 768px) {
  .p-sustainability-figure__group {
    margin: 0 -1rem;
    padding: 2rem 1rem 3rem;
  }
}

.p-sustainability-figure__group+.p-sustainability-figure__group {
  margin-top: 12.8rem;
}

@media screen and (max-width: 768px) {
  .p-sustainability-figure__group+.p-sustainability-figure__group {
    margin-top: 8.5rem;
  }
}

.p-sustainability-figure__title {
  font-size: 2.8rem;
  margin-bottom: 2.4rem;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .p-sustainability-figure__title {
    font-size: 2.1rem;
    margin-bottom: 1.6rem;
  }
}

.p-sustainability-figure__wrap {
  display: flex;
  gap: 2rem;
}

@media screen and (max-width: 768px) {
  .p-sustainability-figure__wrap {
    flex-direction: column;
  }
}

.p-sustainability-figure__item {
  flex: 1;
  border-radius: 0.5rem;
  border: solid 1px #707070;
  background: #ffffff;
}

.p-sustainability-figure__item h4 {
  font-size: 2.2rem;
  padding: 1rem;
  text-align: center;
  border-radius: 0.5rem 0.5rem 0 0;
  background: #c7e8e6;
}

@media screen and (max-width: 768px) {
  .p-sustainability-figure__item h4 {
    font-size: 2rem;
  }
}

.p-sustainability-figure__item h4 span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}

.p-sustainability-figure__item ul {
  padding: 3rem 2.5rem;
}

@media screen and (max-width: 768px) {
  .p-sustainability-figure__item ul {
    padding: 2rem;
  }
}

.p-sustainability-figure__item ul li {
  position: relative;
  font-weight: 500;
  padding-left: 2em;
}

@media screen and (max-width: 768px) {
  .p-sustainability-figure__item ul li {
    font-size: 1.6rem;
  }
}

.p-sustainability-figure__item ul li::before {
  content: "(" attr(data-count) ")";
  position: absolute;
  left: 0;
}

.p-sustainability-figure__group.-thema {
  background: #008770;
}

.p-sustainability-figure__group.-thema .p-sustainability-figure__item {
  position: relative;
}

.p-sustainability-figure__group.-thema .p-sustainability-figure__item::after {
  content: "";
  position: absolute;
  bottom: -12.8rem;
  left: 0;
  right: 0;
  width: 9.5rem;
  height: 7.4rem;
  margin: auto;
  background: url(/assets/img/common/ico_arrow_sustainability.jpg);
  background-size: 100%;
}

@media screen and (max-width: 768px) {
  .p-sustainability-figure__group.-thema .p-sustainability-figure__item::after {
    bottom: -10rem;
    width: 7rem;
    height: 5.4rem;
  }
}

.p-sustainability-figure__group.-thema .p-sustainability-figure__item.-color01 h4 {
  background-color: #9adcc6;
}

.p-sustainability-figure__group.-thema .p-sustainability-figure__item.-color02 h4 {
  background-color: #bad2ed;
}

.p-sustainability-figure__group.-thema .p-sustainability-figure__item.-color03 h4 {
  background-color: #fcd4c9;
}

.p-sustainability-figure__group.-activity {
  background: #0072bc;
}

.p-sustainability-figure__group.-activity .p-sustainability-figure__item.-color01 {
  border-color: #9adcc6;
  border-width: 3px;
}

.p-sustainability-figure__group.-activity .p-sustainability-figure__item.-color02 {
  border-color: #bad2ed;
  border-width: 3px;
}

.p-sustainability-figure__group.-activity .p-sustainability-figure__item.-color03 {
  border-color: #fcd4c9;
  border-width: 3px;
}

.p-top-kv {
  position: relative;
}

@media screen and (max-width: 768px) {
  .p-top-kv {
    display: flex;
    flex-direction: column;
  }
}

.p-top-kv__img img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

@media screen and (max-width: 768px) {
  .p-top-kv__img img {
    order: 1;
    height: auto;
  }
}

.p-top-kv__title {
  position: absolute;
  top: 7rem;
  left: 50%;
  right: 0;
  font-size: 9.34rem;
  line-height: 1.45;
  letter-spacing: 0.09em;
  width: fit-content;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .p-top-kv__title {
    order: 2;
    font-size: 2.4rem;
    top: 24.5rem;
    left: 0;
    right: 0;
    margin: auto;
    letter-spacing: 0;
    text-align: center;
  }
}

.p-top-kv__title span {
  display: block;
  font-size: 4.8rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .p-top-kv__title span {
    font-size: 3.2rem;
    margin-top: 1.7rem;
    letter-spacing: 0.1em;
  }
}

.p-top-kv__recruit {
  position: absolute;
  top: 40rem;
  left: calc(50% + 10rem);
  padding: 3.2rem 2.4rem 3.2rem 3.2rem;
  background-color: #ffffff;
  border: solid 0.4rem #0265a6;
}

@media screen and (max-width: 768px) {
  .p-top-kv__recruit {
    order: 4;
    position: relative;
    top: 0;
    left: 0;
    padding: 4.8rem 2rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-kv__recruit span {
    position: relative;
  }

  .p-top-kv__recruit span::after {
    content: "";
    position: absolute;
    bottom: 0.5rem;
    right: -0.25rem;
    width: 0.6rem;
    height: 0.75rem;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: #ffffff;
  }
}

.p-top-kv__recruit-title {
  position: relative;
  font-size: 2.6rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .p-top-kv__recruit-title {
    margin-bottom: 1.8rem;
  }
}

.p-top-kv__recruit-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10rem;
  height: 0.5rem;
  background-color: #db3d23;
}

.p-top-kv__recruit-lead {
  font-weight: 500;
  line-height: 1.666;
}

.p-top-kv__recruit-btn {
  position: relative;
  display: block;
  width: fit-content;
  margin-top: 2rem;
  margin-left: auto;
  padding: 0.5rem 3.6rem 0.6rem 1.8rem;
  border-radius: 100rem;
  color: #ffffff;
  background-color: #db3d23;
  border: solid 1px #db3d23;
  outline-offset: 0.5rem;
}

@media screen and (max-width: 768px) {
  .p-top-kv__recruit-btn {
    width: 100%;
    margin-top: 4rem;
    padding: 1.2rem 2rem;
    text-align: center;
  }
}

.p-top-kv__recruit-btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5rem;
  width: 0.8rem;
  height: 1rem;
  margin: auto;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #ffffff;
}

@media screen and (min-width: 769px) {
  .p-top-kv__recruit-btn:hover {
    color: #db3d23;
    background-color: #ffffff;
  }

  .p-top-kv__recruit-btn:hover::after {
    background-color: #db3d23;
  }
}

.p-top-ticker {
  box-shadow: 0rem 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 768px) {
  .p-top-ticker {
    order: 3;
  }
}

.p-top-ticker__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 128rem;
  min-height: 10.4rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

@media screen and (max-width: 768px) {
  .p-top-ticker__inner {
    display: block;
    height: auto;
    padding: 2.1rem 1rem 2.7rem;
  }
}

.p-top-ticker__title {
  width: 16rem;
}

@media screen and (max-width: 768px) {
  .p-top-ticker__title {
    margin-bottom: 1rem;
  }
}

.p-top-ticker__item {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .p-top-ticker__item {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .p-top-ticker__date {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.25rem;
  }
}

.p-top-ticker__link {
  position: relative;
  font-weight: 500;
  padding-right: 4rem;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .p-top-ticker__link {
    line-height: 1.7;
  }
}

@media screen and (min-width: 769px) {
  .p-top-ticker__link:hover {
    opacity: 1;
    text-decoration: none;
  }
}

.p-top-ticker__link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2rem;
  height: 0.9rem;
  margin: auto;
  background: url(../img/common/ico_arrow_right02.svg);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .p-top-ticker__link::after {
    top: auto;
    bottom: 0.6rem;
    right: 1rem;
    width: 1.8rem;
  }
}

.p-top-about {
  position: relative;
  padding-top: 20rem;
  padding-bottom: 24rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-top-about {
    padding-top: 32.7rem;
    padding-bottom: 10rem;
  }
}

.p-top-about::before,
.p-top-about::after {
  content: "";
  position: absolute;
  background-size: cover;
}

.p-top-about::before {
  top: 0;
  left: 0;
  width: 54rem;
  height: 60.9rem;
  background-image: url(../img/top/bg_about01.png);
}

@media screen and (max-width: 768px) {
  .p-top-about::before {
    width: 13.4rem;
    height: 17.8rem;
    background-image: url(../img/top/bg_about01_sp.png);
  }
}

.p-top-about::after {
  bottom: 0;
  right: 0;
  width: 46rem;
  height: 60.9rem;
  background-image: url(../img/top/bg_about02.png);
}

@media screen and (max-width: 768px) {
  .p-top-about::after {
    top: 7rem;
    bottom: auto;
    width: 8.4rem;
    height: 21.6rem;
    background-image: url(../img/top/bg_about02_sp.png);
  }
}

.p-top-about__wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .p-top-about__wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-top-about__img {
  position: absolute;
  z-index: 1;
}

.p-top-about__img img {
  width: 100%;
  height: auto;
}

.p-top-about__img.-img01 {
  top: 13.5rem;
  left: 0;
  width: 42.7rem;
}

@media screen and (max-width: 768px) {
  .p-top-about__img.-img01 {
    top: 6rem;
    left: 0;
    right: 0;
    width: 20rem;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-top-about__img.-img01 img {
    border-radius: 50%;
    overflow: hidden;
    width: 20rem;
    height: 20rem;
    object-fit: cover;
    object-position: -4rem 0rem;
  }
}

.p-top-about__img.-img02 {
  top: 55rem;
  left: 0;
  width: 37.2rem;
}

@media screen and (max-width: 768px) {
  .p-top-about__img.-img02 {
    top: 18rem;
    left: -6rem;
    width: 19.3rem;
    height: 10.6rem;
  }

  .p-top-about__img.-img02 img {
    width: 100%;
    height: 100%;
  }
}

.p-top-about__img.-img03 {
  top: 26rem;
  right: 0;
  width: 37.2rem;
}

@media screen and (max-width: 768px) {
  .p-top-about__img.-img03 {
    top: 2.1rem;
    right: -4.5rem;
    width: 18.5rem;
    height: 10.1rem;
  }

  .p-top-about__img.-img03 img {
    width: 100%;
    height: 100%;
  }
}

.p-top-about__img.-img04 {
  top: 49.2rem;
  right: 0;
  width: 44rem;
}

@media screen and (max-width: 768px) {
  .p-top-about__img.-img04 {
    display: none;
  }
}

.p-top-about__text {
  text-align: center;
}

.p-top-about__text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 7.2rem;
}

@media screen and (max-width: 768px) {
  .p-top-about__text h2 {
    font-size: 2.4rem;
    margin-bottom: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-about__text p {
    font-size: 1.6rem;
    text-align: left;
  }
}

.p-top-about__text p+p {
  margin-top: 1.8em;
}

.p-top-news {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #bad2ed;
}

@media screen and (max-width: 768px) {
  .p-top-news {
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }
}

@media screen and (max-width: 768px) {
  .p-top-news .l-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-top-news__inner {
  padding: 6.8rem 11.8rem;
  background-color: #ffffff;
}

@media screen and (max-width: 768px) {
  .p-top-news__inner {
    padding: 5rem 1rem;
  }
}

.p-top-news .c-post.-news .c-post__item a {
  padding: 2rem 1rem;
}

@media screen and (max-width: 768px) {
  .p-top-news .c-post.-news .c-post__item a {
    padding: 2rem 0;
  }
}

.p-top-business {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

@media screen and (max-width: 768px) {
  .p-top-business {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

.p-top-sustainability {
  margin-top: 15rem;
  margin-bottom: 15rem;
}

@media screen and (max-width: 768px) {
  .p-top-sustainability {
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}

table.p-accessibility-value-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  vertical-align: middle;
  background-color: #ffffff;
}

table.p-accessibility-value-table thead tr {
  background-color: #1976d2;
  color: #ffffff;
}

table.p-accessibility-value-table thead th {
  padding: 1.5rem 2rem;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  border: 1px solid #ffffff;
}

table.p-accessibility-value-table thead th:first-child {
  width: 15rem;
}

table.p-accessibility-value-table tbody tr {
}

table.p-accessibility-value-table tbody th {
  background-color: #f7f7f7;
  padding: 1.5rem 2rem;
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  color: #333;
}

table.p-accessibility-value-table tbody td {
  padding: 1rem 2rem;
  text-align: center;
  font-weight: bold;
  font-size: 2.1rem;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

table.p-accessibility-value-table tbody td:nth-child(3) {
  border: 3px solid #d32f2f;
  color: #d32f2f;
  font-size: 2.4rem;
  font-weight: bold;
}

table.p-accessibility-value-table tbody tr:nth-child(1) td:nth-child(3) {
  border-bottom: solid 1px #000000;
}
table.p-accessibility-value-table tbody tr:nth-child(2) td:nth-child(3) {
  border-top: solid 1px #000000;
}

@media (max-width: 768px) {
  table.p-accessibility-value-table {
    font-size: 1.4rem;
    max-width: 100%;
  }
  
  table.p-accessibility-value-table thead th {
    padding: 1rem 1rem;
    font-size: 1.5rem;
  }
  
  table.p-accessibility-value-table thead th:first-child {
    width: 10rem;
  }
  
  table.p-accessibility-value-table tbody th {
    padding: 1rem 1rem;
    font-size: 1.5rem;
  }
  
  table.p-accessibility-value-table tbody td {
    padding: 1rem 1rem;
    font-size: 1.5rem;
  }
  
  table.p-accessibility-value-table tbody td:nth-child(3) {
    font-size: 1.8rem;
  }
}

.u-align-center {
  text-align: center;
}

.u-align-left {
  text-align: left;
}

.u-align-right {
  text-align: right;
}

.u-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.u-left {
  display: block;
  margin-right: auto;
}

.u-right {
  display: block;
  margin-left: auto;
}

.u-fit-center {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .u-align-center_sp {
    text-align: center;
  }

  .u-align-left_sp {
    text-align: left;
  }

  .u-align-right_sp {
    text-align: right;
  }

  .u-center_sp {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .u-left_sp {
    display: block;
    margin-right: auto;
  }

  .u-right_sp {
    display: block;
    margin-left: auto;
  }
}

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

.u-block_pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .u-block_sp {
    display: block !important;
  }
}

.u-hide_pc {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-hide_pc {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .u-hide_sp {
    display: none !important;
  }
}

.u-br_pc {
  display: inline-block !important;
}

@media screen and (max-width: 768px) {
  .u-br_pc {
    display: none !important;
  }
}

.u-br_sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .u-br_sp {
    display: inline-block !important;
  }
}

.u-flex {
  display: flex;
}

@media screen and (max-width: 768px) {
  .u-flex {
    flex-direction: column;
  }
}

.u-order1 {
  order: 1;
}

.u-order2 {
  order: 2;
}

.u-order3 {
  order: 3;
}

@media screen and (max-width: 768px) {
  .u-order1_sp {
    order: 1;
  }

  .u-order2_sp {
    order: 2;
  }

  .u-order3_sp {
    order: 3;
  }
}

.u-w100 {
  width: 100%;
}

.u-w20 {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .u-w100_sp {
    width: 100%;
  }
}

.u-w50 {
  width: 50% !important;
}

@media screen and (max-width: 768px) {
  .u-w50_sp {
    width: 50% !important;
  }
}

.u-fs10 {
  font-size: 1rem !important;
}

.u-fs12 {
  font-size: 1.2rem !important;
}

.u-fs14 {
  font-size: 1.4rem !important;
}

.u-fs15 {
  font-size: 1.5rem !important;
}

.u-fs16 {
  font-size: 1.6rem !important;
}

.u-fs18 {
  font-size: 1.8rem !important;
}

.u-fs20 {
  font-size: 2rem !important;
}

.u-fs22 {
  font-size: 2.2rem !important;
}

.u-fs28 {
  font-size: 2.8rem !important;
}

.u-fs38 {
  font-size: 3.8rem !important;
}

@media screen and (max-width: 768px) {
  .u-fs10_sp {
    font-size: 1rem !important;
  }

  .u-fs12_sp {
    font-size: 1.2rem !important;
  }

  .u-fs14_sp {
    font-size: 1.4rem !important;
  }

  .u-fs15_sp {
    font-size: 1.5rem !important;
  }

  .u-fs16_sp {
    font-size: 1.6rem !important;
  }

  .u-fs18_sp {
    font-size: 1.8rem !important;
  }

  .u-fs20_sp {
    font-size: 2rem !important;
  }

  .u-fs22_sp {
    font-size: 2.2rem !important;
  }

  .u-fs28_sp {
    font-size: 2.8rem !important;
  }

  .u-fs38_sp {
    font-size: 3.8rem !important;
  }
}

.u-fw400 {
  font-weight: 400 !important;
}

.u-fw500 {
  font-weight: 500 !important;
}

.u-fw700 {
  font-weight: 700 !important;
}

@media screen and (max-width: 768px) {
  .u-fw400_sp {
    font-weight: 400 !important;
  }

  .u-fw500_sp {
    font-weight: 500 !important;
  }

  .u-fw700_sp {
    font-weight: 700 !important;
  }
}

.u-lh-small {
  line-height: 1.3 !important;
}

.u-lh-normal {
  line-height: 1.56 !important;
}

.u-lh-wide {
  line-height: 1.87 !important;
}

.u-lh-widest {
  line-height: 2.25 !important;
}

@media screen and (max-width: 768px) {
  .u-lh-small_sp {
    line-height: 1.3 !important;
  }

  .u-lh-normal_sp {
    line-height: 1.56 !important;
  }

  .u-lh-wide_sp {
    line-height: 1.87 !important;
  }

  .u-lh-widest_sp {
    line-height: 2.25 !important;
  }
}

.u-color-blue {
  color: #0072bc !important;
}

.u-color-cyan {
  color: #0fc8f2 !important;
}

.u-color-darkblue {
  color: #001973 !important;
}

.u-color-creamblue {
  color: #bad2ed !important;
}

/* margin */
.u-mt0 {
  margin-top: 0 !important;
}

.u-mt05 {
  margin-top: 0.5rem !important;
}

.u-mt1 {
  margin-top: 1rem !important;
}

.u-mt2 {
  margin-top: 2rem !important;
}

.u-mt3 {
  margin-top: 3rem !important;
}

.u-mt4 {
  margin-top: 4rem !important;
}

.u-mt5 {
  margin-top: 5rem !important;
}

.u-mt6 {
  margin-top: 6rem !important;
}

.u-mt7 {
  margin-top: 7rem !important;
}

.u-mt8 {
  margin-top: 8rem !important;
}

.u-mt9 {
  margin-top: 9rem !important;
}

.u-mt10 {
  margin-top: 10rem !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb1 {
  margin-bottom: 1rem !important;
}

.u-mb2 {
  margin-bottom: 2rem !important;
}

.u-mb3 {
  margin-bottom: 3rem !important;
}

.u-mb4 {
  margin-bottom: 4rem !important;
}

.u-mb5 {
  margin-bottom: 5rem !important;
}

.u-mb6 {
  margin-bottom: 6rem !important;
}

.u-mb7 {
  margin-bottom: 7rem !important;
}

.u-mb8 {
  margin-bottom: 8rem !important;
}

.u-mb9 {
  margin-bottom: 9rem !important;
}

.u-mb10 {
  margin-bottom: 10rem !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mr1 {
  margin-right: 1rem !important;
}

.u-mr2 {
  margin-right: 2rem !important;
}

.u-mr3 {
  margin-right: 3rem !important;
}

.u-mr4 {
  margin-right: 4rem !important;
}

.u-mr5 {
  margin-right: 5rem !important;
}

.u-mr6 {
  margin-right: 6rem !important;
}

.u-mr7 {
  margin-right: 7rem !important;
}

.u-mr8 {
  margin-right: 8rem !important;
}

.u-mr9 {
  margin-right: 9rem !important;
}

.u-mr10 {
  margin-right: 10rem !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml1 {
  margin-left: 1rem !important;
}

.u-ml2 {
  margin-left: 2rem !important;
}

.u-ml3 {
  margin-left: 3rem !important;
}

.u-ml4 {
  margin-left: 4rem !important;
}

.u-ml5 {
  margin-left: 5rem !important;
}

.u-ml6 {
  margin-left: 6rem !important;
}

.u-ml7 {
  margin-left: 7rem !important;
}

.u-ml8 {
  margin-left: 8rem !important;
}

.u-ml9 {
  margin-left: 9rem !important;
}

.u-ml10 {
  margin-left: 10rem !important;
}

@media screen and (max-width: 768px) {
  .u-mt0_sp {
    margin-top: 0 !important;
  }

  .u-mt1_sp {
    margin-top: 1rem !important;
  }

  .u-mt2_sp {
    margin-top: 2rem !important;
  }

  .u-mt3_sp {
    margin-top: 3rem !important;
  }

  .u-mt4_sp {
    margin-top: 4rem !important;
  }

  .u-mt5_sp {
    margin-top: 5rem !important;
  }

  .u-mt6_sp {
    margin-top: 6rem !important;
  }

  .u-mt7_sp {
    margin-top: 7rem !important;
  }

  .u-mt8_sp {
    margin-top: 8rem !important;
  }

  .u-mt9_sp {
    margin-top: 9rem !important;
  }

  .u-mt10_sp {
    margin-top: 10rem !important;
  }

  .u-mb0_sp {
    margin-bottom: 0 !important;
  }

  .u-mb1_sp {
    margin-bottom: 1rem !important;
  }

  .u-mb2_sp {
    margin-bottom: 2rem !important;
  }

  .u-mb3_sp {
    margin-bottom: 3rem !important;
  }

  .u-mb4_sp {
    margin-bottom: 4rem !important;
  }

  .u-mb5_sp {
    margin-bottom: 5rem !important;
  }

  .u-mb6_sp {
    margin-bottom: 6rem !important;
  }

  .u-mb7_sp {
    margin-bottom: 7rem !important;
  }

  .u-mb8_sp {
    margin-bottom: 8rem !important;
  }

  .u-mb9_sp {
    margin-bottom: 9rem !important;
  }

  .u-mb10_sp {
    margin-bottom: 10rem !important;
  }

  .u-mr0_sp {
    margin-right: 0 !important;
  }

  .u-mr1_sp {
    margin-right: 1rem !important;
  }

  .u-mr2_sp {
    margin-right: 2rem !important;
  }

  .u-mr3_sp {
    margin-right: 3rem !important;
  }

  .u-mr4_sp {
    margin-right: 4rem !important;
  }

  .u-mr5_sp {
    margin-right: 5rem !important;
  }

  .u-mr6_sp {
    margin-right: 6rem !important;
  }

  .u-mr7_sp {
    margin-right: 7rem !important;
  }

  .u-mr8_sp {
    margin-right: 8rem !important;
  }

  .u-mr9_sp {
    margin-right: 9rem !important;
  }

  .u-mr10_sp {
    margin-right: 10rem !important;
  }

  .u-ml0_sp {
    margin-left: 0 !important;
  }

  .u-ml1_sp {
    margin-left: 1rem !important;
  }

  .u-ml2_sp {
    margin-left: 2rem !important;
  }

  .u-ml3_sp {
    margin-left: 3rem !important;
  }

  .u-ml4_sp {
    margin-left: 4rem !important;
  }

  .u-ml5_sp {
    margin-left: 5rem !important;
  }

  .u-ml6_sp {
    margin-left: 6rem !important;
  }

  .u-ml7_sp {
    margin-left: 7rem !important;
  }

  .u-ml8_sp {
    margin-left: 8rem !important;
  }

  .u-ml9_sp {
    margin-left: 9rem !important;
  }

  .u-ml10_sp {
    margin-left: 10rem !important;
  }
}

/* padding */
.u-pt0 {
  padding-top: 0rem !important;
}

.u-pt1 {
  padding-top: 1rem !important;
}

.u-pt2 {
  padding-top: 2rem !important;
}

.u-pt3 {
  padding-top: 3rem !important;
}

.u-pt4 {
  padding-top: 4rem !important;
}

.u-pt5 {
  padding-top: 5rem !important;
}

.u-pt6 {
  padding-top: 6rem !important;
}

.u-pt7 {
  padding-top: 7rem !important;
}

.u-pt8 {
  padding-top: 8rem !important;
}

.u-pb0 {
  padding-bottom: 0rem !important;
}

.u-pb1 {
  padding-bottom: 1rem !important;
}

.u-pb2 {
  padding-bottom: 2rem !important;
}

.u-pb3 {
  padding-bottom: 3rem !important;
}

.u-pb4 {
  padding-bottom: 4rem !important;
}

.u-pb5 {
  padding-bottom: 5rem !important;
}

.u-pb7 {
  padding-bottom: 7rem !important;
}

.u-pb8 {
  padding-bottom: 8rem !important;
}

.u-pr0 {
  padding-right: 0rem !important;
}

.u-pr1 {
  padding-right: 1rem !important;
}

.u-pr2 {
  padding-right: 2rem !important;
}

.u-pr3 {
  padding-right: 3rem !important;
}

.u-pr4 {
  padding-right: 4rem !important;
}

.u-pr5 {
  padding-right: 5rem !important;
}

.u-pr6 {
  padding-right: 6rem !important;
}

.u-pr7 {
  padding-right: 7rem !important;
}

.u-pr8 {
  padding-right: 8rem !important;
}

.u-pl0 {
  padding-left: 0rem !important;
}

.u-pl1 {
  padding-left: 1rem !important;
}

.u-pl2 {
  padding-left: 2rem !important;
}

.u-pl3 {
  padding-left: 3rem !important;
}

.u-pl4 {
  padding-left: 4rem !important;
}

.u-pl5 {
  padding-left: 5rem !important;
}

.u-pl6 {
  padding-left: 6rem !important;
}

.u-pl7 {
  padding-left: 7rem !important;
}

.u-pl8 {
  padding-left: 8rem !important;
}

@media screen and (max-width: 768px) {
  .u-pt0_sp {
    padding-top: 0rem !important;
  }

  .u-pt1_sp {
    padding-top: 1rem !important;
  }

  .u-pt2_sp {
    padding-top: 2rem !important;
  }

  .u-pt3_sp {
    padding-top: 3rem !important;
  }

  .u-pt4_sp {
    padding-top: 4rem !important;
  }

  .u-pt5_sp {
    padding-top: 5rem !important;
  }

  .u-pt6_sp {
    padding-top: 6rem !important;
  }

  .u-pb0_sp {
    padding-bottom: 0rem !important;
  }

  .u-pb1_sp {
    padding-bottom: 1rem !important;
  }

  .u-pb2_sp {
    padding-bottom: 2rem !important;
  }

  .u-pb3_sp {
    padding-bottom: 3rem !important;
  }

  .u-pb4_sp {
    padding-bottom: 4rem !important;
  }

  .u-pb5_sp {
    padding-bottom: 5rem !important;
  }

  .u-pb6_sp {
    padding-bottom: 6rem !important;
  }

  .u-pr0_sp {
    padding-right: 0rem !important;
  }

  .u-pr1_sp {
    padding-right: 1rem !important;
  }

  .u-pr2_sp {
    padding-right: 2rem !important;
  }

  .u-pr3_sp {
    padding-right: 3rem !important;
  }

  .u-pr4_sp {
    padding-right: 4rem !important;
  }

  .u-pr5_sp {
    padding-right: 5rem !important;
  }

  .u-pr6_sp {
    padding-right: 6rem !important;
  }

  .u-pl0_sp {
    padding-left: 0rem !important;
  }

  .u-pl1_sp {
    padding-left: 1rem !important;
  }

  .u-pl2_sp {
    padding-left: 2rem !important;
  }

  .u-pl3_sp {
    padding-left: 3rem !important;
  }

  .u-pl4_sp {
    padding-left: 4rem !important;
  }

  .u-pl5_sp {
    padding-left: 5rem !important;
  }

  .u-pl6_sp {
    padding-left: 6rem !important;
  }
}

.show_print {
  display: none !important;
}

.u-anchor-target-alone {
  display: block;
  padding-top: 10rem;
  margin-top: -10rem;
}

/*# sourceMappingURL=style.css.map */

/*2024.6.18 add
  - barrier free map */
.c-block-layout.-gap_medium {
  gap: 6rem;
}

.p-barrierfree-map__block .p-barrierfree-map__title {
  font-size: 2.4rem;
  padding-left: 3.4rem;
  margin-bottom: 2.4rem;
}

.p-barrierfree-map__block .p-barrierfree-map__title::before {
  left: 1rem;
  width: 1.5rem;
  height: 1.5rem;
}

.p-barrierfree-map__block .p-barrierfree-map__title::after {
  top: 1rem;
  width: 1.9rem;
  height: 1.9rem;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap {
  position: relative;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link {
  position: absolute;
  width: 3rem;
  height: 3rem;
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  color: transparent;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link.-link01 {
  top: 82%;
  left: 80%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link.-link02 {
  top: 67%;
  left: 80%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link.-link03 {
  top: 67%;
  left: 44%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link.-link04 {
  top: 48.5%;
  left: 10%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link.-link05 {
  top: 32%;
  left: 13%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link.-link06 {
  top: 57%;
  left: 52%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link.-link07 {
  top: 46.5%;
  left: 55%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link.-link08 {
  top: 25%;
  left: 46.5%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link.-link09 {
  top: 20%;
  left: 40%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link.-link10 {
  top: 8%;
  left: 35%;
}

.p-barrierfree-map__iconList {
  display: flex;
  justify-content: center;
  column-gap: 3rem;
}

.p-barrierfree-map__iconList .p-barrierfree-map__iconList-item {
  width: 10rem;
}

.p-barrierfree-map__iconList .p-barrierfree-map__iconList-item-text {
  font-size: 1.6rem;
  line-height: 1.375;
  text-align: center;
  font-feature-settings: "palt";
  margin-top: 0.4rem;
}

.p-barrierfree-map__cardList-note {
  text-align: center;
}

.p-barrierfree-map__cardList {
  counter-reset: number 0;
}

.p-barrierfree-map__cardList .c-box-layout__item {
  position: relative;
  list-style: none;
}

.p-barrierfree-map__cardList .c-box-layout__item::before {
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  top: 0rem;
  left: 0;
  width: 3rem;
  height: 3rem;
  background: #264296;
  color: #fff;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.8rem;
}

.p-barrierfree-map__cardList .c-box-layout__item.-notimg {
  padding-left: 4rem;
}

.p-barrierfree-map__cardList .c-box-layout__item.-notimg::before {
  top: 1.3rem;
}

.p-barrierfree-map__cardList .c-box-layout__item:last-child {
  width: 100%;
}

.p-barrierfree-map__cardList .c-box-layout__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

.p-barrierfree-map__cardList .c-box-layout__text {
  padding-bottom: 0;
  font-size: 1.8rem;
  line-height: 2;
  position: relative;
  font-feature-settings: "palt";
}

.p-barrierfree-map__cardList .c-box-layout__text span {
  font-weight: 700;
  text-decoration: underline;
}

.p-barrierfree-map__cardList .c-box-layout__text::before {}

.p-barrierfree-map__cardList .c-box-layout__text.-wide {
  margin-right: -3.2rem;
}

.p-barrierfree-map__cardModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: none;
  z-index: 110;
}

.p-barrierfree-map__cardModal .p-barrierfree-map__cardModal-bgClose {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}

.p-barrierfree-map__cardModal .p-barrierfree-map__cardModal-inner {
  width: 80rem;
  padding: 2rem;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.p-barrierfree-map__cardModal .p-barrierfree-map__cardModal-close {
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
}

.p-barrierfree-map__cardModal .p-barrierfree-map__cardModal-close:focus {
  outline: solid 2px #0072bc;
  outline-offset: 0.75rem;
}

.p-barrierfree-map__cardModal .p-barrierfree-map__cardModal-img {
  width: 100%;
  height: auto;
}

.p-barrierfree-map__action {
  padding: 4.6rem 0 4rem 6.8rem;
  background-color: rgba(228, 237, 248, 0.5);
  border-radius: 0 4rem 0 5rem;
}

.p-barrierfree-map__action .p-barrierfree-map__action-title {
  font-size: 3.2rem;
  margin-bottom: 3rem;
  line-height: 1;
}

.p-barrierfree-map__action .p-barrierfree-map__action-text {
  font-size: 1.8rem;
  line-height: 2;
}

.p-barrierfree-map__action .p-barrierfree-map__action-text span {
  font-weight: 700;
  color: #ce141d;
  text-decoration: underline;
}

.p-barrierfree-map__action-reference img {
  width: 40rem;
  display: inline-block;
}

.p-barrierfree-map__action-reference div:has(p) {
  flex: none;
}

.p-barrierfree-map__routeList {
  counter-reset: number 0;
}

.p-barrierfree-map__routeList li {
  position: relative;
  padding-left: 4rem;
}

.p-barrierfree-map__routeList li p span {
  color: #ce141d;
  text-decoration: underline;
}

.p-barrierfree-map__routeList li::before {
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 3rem;
  height: 3rem;
  background: #264296;
  color: #fff;
  border-radius: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.8rem;
}

.p-barrierfree-map__routeList li+li {
  margin-top: 3.5rem;
}

.p-barrierfree-map__routeList li div {
  margin-top: 1.7rem;
  padding: 3.7rem 4rem;
  background-color: rgba(228, 237, 248, 0.5);
  border-radius: 0 4rem 0 5rem;
}

.p-barrierfree-map__pritButton {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: fit-content;
  min-width: 36rem;
  min-height: 8rem;
  margin-top: 6rem;
  padding: 0 5rem 0 5rem;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.56;
  color: #ffffff;
  border-radius: 1000px;
  background-color: #0072bc;
  border: solid 2px #0072bc;
  box-shadow: 0 0.5rem 0 0.1rem rgba(4, 92, 150, 0.22);
  transition: all 0.3s;
  overflow: hidden;
  outline-offset: 0.75rem;
}

.p-barrierfree-map__pritButton span {
  font-weight: 700;
  color: #fff;
  transition: all 0.3s;
}

.p-barrierfree-map__pritButton:hover {
  background-color: #fff;
  box-shadow: unset;
}

.p-barrierfree-map__pritButton:hover span {
  color: #0072bc;
}

.u-pc-only {
  display: block;
}

.u-sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-pc-only {
    display: none;
  }

  .u-sp-only {
    display: block;
  }

  .p-barrierfree-map__block .p-barrierfree-map__title {
    font-size: 2rem;
  }

  .p-barrierfree-map__block .p-barrierfree-map__title::before {
    top: 1.5rem;
  }

  .p-barrierfree-map__block .p-barrierfree-map__title::after {
    top: 0.5rem;
  }

  .p-barrierfree-map__block .p-barrierfree-map__wrap .p-barrierfree-map__link {
    width: 2.4rem;
    height: 2.4rem;
  }

  .p-barrierfree-map__iconList {
    flex-wrap: wrap;
    row-gap: 1.6rem;
  }

  .p-barrierfree-map__iconList .p-barrierfree-map__iconList-item {
    width: 9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .p-barrierfree-map__iconList .p-barrierfree-map__iconList-item-text {
    font-size: 1.5rem;
  }

  .p-barrierfree-map__cardList-note {
    font-size: 1.6rem;
  }

  .p-barrierfree-map__cardList .c-box-layout__text {
    font-size: 1.6rem;
  }

  .p-barrierfree-map__cardList .c-box-layout__text.-wide {
    margin-right: 0;
  }

  .p-barrierfree-map__cardList .c-box-layout__text::before {
    font-size: 1.6rem;
    width: 2.6rem;
    height: 2.6rem;
  }

  .p-barrierfree-map__cardModal .p-barrierfree-map__cardModal-inner {
    width: 34rem;
    padding: 0.5rem;
  }

  .p-barrierfree-map__cardModal .p-barrierfree-map__cardModal-close {
    top: -1.2rem;
    right: -1.2rem;
    width: 4rem;
    height: 4rem;
  }

  .p-barrierfree-map__cardModal .p-barrierfree-map__cardModal-close::before {
    width: 3rem;
  }

  .p-barrierfree-map__cardModal .p-barrierfree-map__cardModal-close::after {
    width: 3rem;
  }

  .p-barrierfree-map__action {
    padding: 3.2rem 2rem;
    border-radius: 0 2rem 0 2.5rem;
  }

  .p-barrierfree-map__action .p-barrierfree-map__action-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .p-barrierfree-map__action .p-barrierfree-map__action-text {
    font-size: 1.6rem;
  }

  .p-barrierfree-map__intro {
    font-size: 1.6rem;
  }

  .p-barrierfree-map__routeList li {
    font-size: 1.6rem;
    padding-left: 3.2rem;
    font-feature-settings: "palt";
  }

  .p-barrierfree-map__routeList li::before {
    font-size: 1.6rem;
    width: 2.6rem;
    height: 2.6rem;
  }

  .p-barrierfree-map__routeList li div {
    padding: 1.6rem 2rem;
    border-radius: 0 2rem 0 2.5rem;
  }

  .p-barrierfree-map__pritButton {
    min-width: 30.8rem;
    min-height: 6rem;
    margin: 5rem auto 0;
    padding: 0 1rem;
    line-height: 1.3;
    letter-spacing: 0;
  }
}

/*2024.12.02 add
  - other barrier free map */

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 .p-barrierfree-map__link {
  width: 3.5rem;
  height: 3.5rem;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 .p-barrierfree-map__link.-link01 {
  top: 92.2%;
  left: 78%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 .p-barrierfree-map__link.-link02 {
  top: 92.2%;
  left: 62.3%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 .p-barrierfree-map__link.-link03 {
  top: 61.8%;
  left: 62.5%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 .p-barrierfree-map__link.-link04 {
  top: 54.4%;
  left: 55.2%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 .p-barrierfree-map__link.-link05 {
  top: 54.3%;
  left: 24.4%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 .p-barrierfree-map__link.-link06 {
  top: 36.7%;
  left: 18.3%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 .p-barrierfree-map__link.-link07 {
  top: 26.6%;
  left: 65.3%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 .p-barrierfree-map__link.-link08 {
  top: 38.1%;
  left: 62.5%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 .p-barrierfree-map__link.-link09 {
  top: 48.5%;
  left: 62.6%;
}

@media screen and (max-width: 768px) {
  .p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 {
    width: 100%;
  }

  .p-barrierfree-map__block .p-barrierfree-map__wrap.-map01 .p-barrierfree-map__link {
    width: 2rem;
    height: 2rem;
  }
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 {}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link {
  width: 2.6rem;
  height: 2.6rem;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link01 {
  top: 86%;
  left: 91.2%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link02 {
  top: 86%;
  left: 85%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link03 {
  top: 57.5%;
  left: 85.1%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link04 {
  top: 50.5%;
  left: 82.1%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link05 {
  top: 50.5%;
  left: 68.9%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link06 {
  top: 50.5%;
  left: 47.7%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link07 {
  top: 50.5%;
  left: 26.5%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link08 {
  top: 50.5%;
  left: 8.1%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link09 {
  top: 38.6%;
  left: 20.2%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link10 {
  top: 18.9%;
  left: 20.2%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link11 {
  top: 24.6%;
  left: 26.6%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link12 {
  top: 24.5%;
  left: 86.2%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link13 {
  top: 35.5%;
  left: 85.1%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link.-link14 {
  top: 45.2%;
  left: 85.1%;
}

@media screen and (max-width: 768px) {
  .p-barrierfree-map__block .p-barrierfree-map__wrap.-map02 .p-barrierfree-map__link {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 {}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link {
  width: 2.6rem;
  height: 2.6rem;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link01 {
  top: 86%;
  left: 91.2%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link02 {
  top: 86%;
  left: 85%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link03 {
  top: 57.5%;
  left: 85.1%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link04 {
  top: 50.5%;
  left: 82.1%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link05 {
  top: 50.5%;
  left: 68.9%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link06 {
  top: 50.5%;
  left: 47.7%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link07 {
  top: 50.5%;
  left: 26.5%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link08 {
  top: 51.2%;
  left: 22.3%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link09 {
  top: 49.6%;
  left: 19.8%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link10 {
  top: 41.9%;
  left: 17.4%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link11 {
  top: 24.5%;
  left: 86.2%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link12 {
  top: 35.5%;
  left: 85.1%;
}

.p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link.-link13 {
  top: 45.2%;
  left: 85.1%;
}

@media screen and (max-width: 768px) {
  .p-barrierfree-map__block .p-barrierfree-map__wrap.-map03 .p-barrierfree-map__link {
    width: 0.8rem;
    height: 0.8rem;
  }
}