@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/* general */
@import url(https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=block);
@import 'add.css';
body {
  background: #fff;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif !important;
}

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

/* common
-----------------------------------------*/
a[href^="tel:"] {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: fill;
  }
}

.c-header-gutter {
  height: 100px;
}
@media only screen and (max-width: 560px) {
  .c-header-gutter {
    height: 60px;
  }
}

.contents {
  overflow: hidden;
}

.contents img {
  vertical-align: top;
  max-width: 100%;
}

/*
.contents a > img {
  width: 100%;
}
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp5 {
  from {
    opacity: 0;
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp5 {
  animation-name: fadeInUp5;
}

@keyframes fadeInUp3 {
  from {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp3 {
  animation-name: fadeInUp3;
}

@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}

@keyframes fadeInUp1 {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp1 {
  animation-name: fadeInUp1;
}

@keyframes fadeInUp02 {
  from {
    opacity: 0;
    transform: translate3d(0, 2%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp02 {
  animation-name: fadeInUp02;
}

.c-button {
  background-color: #fff;
  border: none;
  cursor: pointer;
}
.c-button--icon {
  display: flex;
  gap: 6px;
}
.c-button--icon .label {
  text-decoration: underline;
  font-size: 16px;
}
.c-button--icon:hover {
  color: #EB7915;
}
.c-button--icon .material-symbols-outlined {
  text-decoration: none;
  font-variation-settings: "FILL" 1;
}

.c-table {
  width: 100%;
  border-top: 1px dotted #afafaf;
}
.c-table.-border-none {
  border-top: none;
}
@media only screen and (max-width: 560px) {
  .c-table {
    font-size: 14px;
  }
}
.c-table ~ .c-table {
  margin-top: 30px;
}
@media only screen and (max-width: 560px) {
  .c-table ~ .c-table {
    margin-top: 15px;
  }
}
.c-table tr {
  border-bottom: 1px dotted #afafaf;
}
@media only screen and (max-width: 560px) {
  .c-table tr {
    width: 100%;
    display: block;
  }
}
.c-table th,
.c-table td {
  line-height: 1.6;
  vertical-align: top;
}
@media only screen and (max-width: 560px) {
  .c-table th,
  .c-table td {
    width: 100%;
    display: block;
    padding: 1em 0.5em;
  }
}
.c-table th.-vertical-btm,
.c-table td.-vertical-btm {
  vertical-align: bottom;
}
.c-table th.-vertical-center,
.c-table td.-vertical-center {
  vertical-align: middle;
}
.c-table th {
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
  background-color: #FFECD5;
  padding: 1.25em 1em;
}
.c-table td {
  padding: 1.25em 2em;
}
@media only screen and (max-width: 560px) {
  .c-table td {
    padding: 1em 0.5em;
  }
}
@media only screen and (max-width: 560px) {
  .c-table--sp-table {
    display: table;
  }
}
@media only screen and (max-width: 560px) {
  .c-table--sp-table th,
  .c-table--sp-table td {
    width: auto;
    display: table-cell;
  }
}
@media only screen and (max-width: 560px) {
  .c-table--sp-table-scroll {
    overflow: auto;
    width: 200%;
  }
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.material-symbols-outlined.-deg45 {
  transform: rotate(45deg);
}
.material-symbols-outlined.-smaller {
  font-size: 1em;
}

.c-link-arrow {
  display: flex;
  gap: 3px;
  align-items: center;
  text-decoration: none;
}
.c-link-arrow--center {
  justify-content: center;
}
.c-link-arrow::before {
  font-family: "Material Symbols Outlined";
  content: "\e5cc";
  font-size: 1.15em;
  font-weight: bold;
  text-decoration: none;
}

.c-link-arrow-icon {
  display: flex;
  gap: 3px;
  align-items: center;
  text-decoration: none;
}
.c-link-arrow-icon::before {
  font-family: "Material Symbols Outlined";
  content: "\e5cc";
  font-size: 1.15em;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}
.c-link-arrow-icon:hover a {
  text-decoration: underline;
}

.c-btn-cover {
  display: flex;
  justify-content: center;
  gap: 1em;
}
@media only screen and (max-width: 560px) {
  .c-btn-cover {
    flex-direction: column;
  }
}

.c-btn-c span.material-symbols-outlined,
.c-btn-f span.material-symbols-outlined {
  font-size: 16px;
  padding-right: 3px;
}
.c-btn-c--larger > *,
.c-btn-f--larger > * {
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
  font-weight: bold;
}
.c-btn-c--larger .-label,
.c-btn-f--larger .-label {
  flex-basis: 85%;
  padding-right: 15%;
}
.c-btn-c--larger span.material-symbols-outlined,
.c-btn-f--larger span.material-symbols-outlined {
  font-size: 34px;
  font-variation-settings: "wght" 200;
  display: flex;
  flex-basis: 15%;
  justify-content: flex-end;
}

.c-btn-f > * {
  padding: 1em 1.5em 1em 1.5em;
  line-height: 1.3;
  border: 2px solid #EB7915;
  background: #EB7915;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  position: relative;
}
@media only screen and (max-width: 560px) {
  .c-btn-f > * {
    padding: 1em 0.8em;
    width: 100%;
  }
}
.c-btn-f > *:hover {
  opacity: 0.8;
}

.c-btn-c > * {
  padding: 1em 1.5em 1em 1.5em;
  line-height: 1.3;
  border: 2px solid #EB7915;
  background: #fff;
  display: flex;
  justify-content: center;
  gap: 3px;
  align-items: center;
  color: #EB7915;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
}
@media only screen and (max-width: 560px) {
  .c-btn-c > * {
    padding: 1em 0.8em;
    width: 100%;
  }
}
.c-btn-c > *:hover {
  opacity: 0.8;
}

.c-btn-arrow {
  text-align: center;
}
.c-btn-arrow > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #f58f36;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 15px;
  max-width: 320px;
  position: relative;
  box-sizing: border-box;
}
.c-btn-arrow > a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 560px) {
  .c-btn-arrow > a {
    width: 100%;
  }
}
.c-btn-arrow > a .arrow-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
.c-btn-arrow > a .arrow-icon::before {
  font-family: "Material Symbols Outlined";
  content: "\e5c8";
  color: #EB7915;
  font-size: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: normal;
}
.c-btn-arrow > a .mail {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  position: relative;
  margin-right: 5px;
}
.c-btn-arrow > a .mail::before {
  font-family: "Material Symbols Outlined";
  content: "\e158";
  color: #fff;
  font-size: 1.5em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-btn-larger > a {
  font-weight: bold;
  font-size: 18px;
}
@media only screen and (max-width: 560px) {
  .c-btn-larger > a {
    font-size: 16px;
  }
}

@media only screen and (max-width: 560px) {
  .c-btn-w-md {
    width: 100%;
  }
}
.c-btn-w-md > a {
  min-width: 250px;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 560px) {
  .c-btn-w-md > a {
    min-width: auto;
    width: 100%;
  }
}

.c-list li {
  line-height: 1.8;
  list-style-position: outside;
}
.c-list--height-wide li {
  line-height: 1.85;
}
.c-list--decimal {
  margin-left: 1.5em;
}
.c-list--decimal > li {
  list-style-type: decimal;
}
.c-list--disc {
  margin-left: 1.5em;
}
.c-list--disc > li {
  list-style-type: disc;
}
.c-list--circle {
  margin-left: 1.5em;
}
.c-list--circle > li {
  list-style-type: circle;
}
.c-list--roman {
  margin-left: 1.5em;
}
.c-list--roman > li {
  list-style-type: lower-roman;
}
.c-list--notice > li {
  margin-left: 1em;
  text-indent: -1em;
}
.c-list--notice > li::before {
  content: "※";
}
.c-list--indent > li {
  margin-left: 1em;
  text-indent: -1em;
}
.c-list--parentnum > li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.c-list--parentnum > li::before {
  display: marker;
  content: "(" counter(cnt) ") ";
}

.c-wrapper {
  width: 1200px;
  max-width: calc(100% - 20px);
  margin: auto;
}
@media only screen and (max-width: 560px) {
  .c-wrapper {
    max-width: calc(100% - 50px);
  }
}

.p-section {
  padding-top: 50px;
}
@media only screen and (max-width: 560px) {
  .p-section {
    padding-top: 13.3333333333vw;
  }
}
.p-section ~ .p-section {
  padding-top: 100px;
}
@media only screen and (max-width: 560px) {
  .p-section ~ .p-section {
    padding-top: 21.3333333333vw;
  }
}
.p-section .gutter {
  padding-top: 50px;
}
@media only screen and (max-width: 560px) {
  .p-section .gutter {
    padding-top: 13.3333333333vw;
  }
}
.p-section .gutter-s {
  padding-top: 50px;
}
@media only screen and (max-width: 560px) {
  .p-section .gutter-s {
    padding-top: 13.3333333333vw;
  }
}
.p-section--top {
  padding-top: 100px;
}
@media only screen and (max-width: 560px) {
  .p-section--top {
    padding-top: 21.3333333333vw;
  }
}
.p-section--bottom {
  padding-bottom: 100px;
}
@media only screen and (max-width: 560px) {
  .p-section--bottom {
    padding-bottom: 21.3333333333vw;
  }
}
.p-section--bg-gray {
  background-color: #ECEFF1;
}
.p-section--bg-academy {
  background: #ECEFF1 url(/assets/image/top/bg-academy.png.webp);
  background-size: cover;
}
@media only screen and (max-width: 560px) {
  .p-section--bg-academy {
    background-size: 1400px auto;
    background-position: center;
  }
}

.p-top-heading {
  font-size: clamp(1.125rem, 0.807rem + 1.59vw, 2rem);
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
.p-heading-secondary {
  font-size: clamp(0.938rem, 0.801rem + 0.68vw, 1.313rem);
  font-weight: bold;
}

.p-top-lead {
  margin-top: 50px;
  text-align: center;
}
@media only screen and (max-width: 560px) {
  .p-top-lead {
    margin-top: 30px;
  }
}

.p-card-services {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 560px) {
  .p-card-services {
    gap: 16px;
  }
}
.p-card-services > * {
  width: calc(33.3333333333% - 27px);
}
@media only screen and (max-width: 560px) {
  .p-card-services > * {
    width: 100%;
  }
}

.p-service-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 560px) {
  .p-service-box ~ .p-service-box {
    margin-top: 2.5em;
  }
}
@media only screen and (max-width: 560px) {
  .p-service-box {
    gap: 10px;
  }
}
.p-service-box__fig {
  background-color: #fff;
  padding: 0px 20px;
  max-width: 320px;
}
@media only screen and (max-width: 560px) {
  .p-service-box__fig {
    padding: 0px;
    max-width: 70%;
  }
}
.p-service-box__fig img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-service-box__top {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.p-service-box__ttl {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-top: 1.5em;
}
@media only screen and (max-width: 960px) {
  .p-service-box__ttl {
    font-size: 17px;
  }
}
@media only screen and (max-width: 560px) {
  .p-service-box__ttl {
    font-size: 16px;
  }
}
.p-service-box__txt {
  margin-top: 30px;
}
@media only screen and (max-width: 560px) {
  .p-service-box__txt {
    margin-top: 1em;
  }
}
.p-service-box__middle {
  text-align: center;
}
@media only screen and (max-width: 560px) {
  .p-service-box__middle {
    margin-top: 0.5em;
  }
}

.p-card-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media only screen and (max-width: 560px) {
  .p-card-cases {
    gap: 16px;
  }
}
.p-card-cases > * {
  width: calc(33.3333333333% - 16px);
}
@media only screen and (max-width: 560px) {
  .p-card-cases > * {
    width: 100%;
  }
}
.p-card-cases--double {
  gap: 30px 10%;
}
.p-card-cases--double > * {
  width: 45%;
}
@media only screen and (max-width: 560px) {
  .p-card-cases--double > * {
    width: 100%;
  }
}

.p-case-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: space-between;
}
.p-case-box__fig {
  background-color: #fff;
  padding: 0px 40px;
  margin-bottom: auto;
  border: 1px solid #ddd;
  position: relative;
  aspect-ratio: 38/20;
  overflow: hidden;
}
.p-case-box__fig img {
  position: absolute;
  top: 45%;
  left: 50%;
  max-width: 80%;
  transform: translateX(-50%) translateY(-50%);
  aspect-ratio: 38/20;
  object-fit: contain;
}
.p-case-box__fig.-new img {
  position: absolute;
  top: 50%;
}
.p-case-box__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-case-box__middle {
  padding: 0 0 0;
}
.p-case-box__ttl {
  line-height: 1.65;
}
.p-case-box__ttl a {
  font-weight: bold;
  font-size: 18px;
}
.p-case-box__ttl a:hover {
  color: #EB7915;
  text-decoration: none;
}
@media only screen and (max-width: 560px) {
  .p-case-box__ttl a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 560px) {
  .p-case-box__name {
    font-size: 14px;
  }
}
.p-case-box__tag {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.p-case-box__tag > * {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1;
  background-color: #fff;
  border: solid 1px #afafaf;
  border-radius: 5px;
}
@media only screen and (max-width: 560px) {
  .p-case-box__tag > * {
    font-size: 10px;
    padding: 0.35em 0.5em;
  }
}

.p-top-strong {
  margin-top: -50px;
}
.p-top-strong__row {
  margin-top: 50px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 560px) {
  .p-top-strong__row {
    flex-direction: column;
  }
}
.p-top-strong__left {
  flex: 1;
  padding-right: 40px;
}
@media only screen and (max-width: 560px) {
  .p-top-strong__left {
    padding-right: 0px;
  }
}
.p-top-strong__right {
  flex: 1;
  padding-right: 10px;
}
@media only screen and (max-width: 560px) {
  .p-top-strong__right {
    padding-right: 0;
    margin-top: 20px;
  }
}

.p-icon-ttl {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}
@media only screen and (max-width: 560px) {
  .p-icon-ttl {
    justify-content: center;
    margin-bottom: 12px;
  }
}
.p-icon-ttl__fig {
  flex: none;
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
}
@media only screen and (max-width: 560px) {
  .p-icon-ttl__fig {
    width: 40px;
    height: 40px;
  }
}
.p-icon-ttl__ttl {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
}
@media only screen and (max-width: 560px) {
  .p-icon-ttl__ttl {
    font-size: 16px;
  }
}

.p-academy-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: space-between;
}
.p-academy-box__fig {
  background-color: #fff;
  padding: 0px;
  margin-bottom: auto;
  border: 1px solid #ddd;
  position: relative;
  aspect-ratio: 380/254;
  padding-top: 66.8421052632%;
  border-radius: 10px;
  overflow: hidden;
}
.p-academy-box__fig img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-academy-box__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-academy-box__top .p-case-card-search-sponsor__name {
  padding-left: 1.5em;
  padding-right: 1.5em;
  text-align: center;
  display: flex;
  align-items: center;
}
.p-academy-box__middle {
  padding: 0 0 0;
}
.p-academy-box a:hover {
  color: #EB7915;
  text-decoration: none;
}
.p-academy-box__ttl {
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 960px) {
  .p-academy-box__ttl {
    font-size: 14px;
  }
}
@media only screen and (max-width: 560px) {
  .p-academy-box__ttl {
    font-size: 12px;
  }
}
.p-academy-box__date {
  margin-top: 0.5em;
}
.p-academy-box__tag {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.p-academy-box__tag > * {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1;
  background-color: #fff;
  border: solid 1px #afafaf;
  border-radius: 5px;
  text-decoration: none;
}
@media only screen and (max-width: 560px) {
  .p-academy-box__tag > * {
    font-size: 10px;
    padding: 0.35em 0.5em;
  }
}

.p-list-news {
  margin-top: 0.5em;
  padding: 0;
  border-radius: 5px;
  border-top: 1px solid #ccc;
}
@media only screen and (max-width: 560px) {
  .p-list-news {
    margin-top: 0em;
    padding: 5.3333333333vw 0 0;
  }
}
.p-list-news__item {
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  padding: 1em;
}
@media only screen and (max-width: 960px) {
  .p-list-news__item {
    padding: 1em;
  }
}
@media only screen and (max-width: 560px) {
  .p-list-news__item {
    display: block;
    padding: 10px 2.1333333333vw;
  }
}
.p-list-news__text {
  line-height: 1.65;
}
.p-list-news__title {
  display: flex;
  gap: 3px;
  position: relative;
  cursor: pointer;
  word-break: break-all;
  line-height: 1.65;
  flex: 1;
  margin-right: 26px;
  width: calc(100% - 26px);
  word-break: break-all;
}
@media only screen and (max-width: 560px) {
  .p-list-news__title {
    margin-top: 0;
    width: calc(100% - 22px);
  }
}
.p-list-news__date {
  margin-right: 1.5em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1em;
}
@media only screen and (max-width: 560px) {
  .p-list-news__date {
    margin-right: 0;
    justify-content: flex-start;
    margin-bottom: 0.75em;
  }
}
.p-list-news__date .-date {
  width: 95px;
  line-height: 1;
  font-weight: bold;
}
.p-list-news__date .-category {
  padding: 0.4em 0.6em;
  font-size: 12px;
  display: inline-block;
  white-space: nowrap;
  border-radius: 3px;
  background-color: #ECEFF1;
  border: 1px solid #ECEFF1;
  font-weight: bold;
  min-width: 7.5em;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 560px) {
  .p-list-news__date .-category {
    font-size: 10px;
  }
}

.p-mv {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
  background: #E3DFDB;
  height: 450px;
}
@media only screen and (max-width: 1400px) {
  .p-mv {
    height: auto;
    aspect-ratio: 1400/450;
  }
}
@media only screen and (max-width: 960px) {
  .p-mv {
    aspect-ratio: 1400/550;
  }
}
@media only screen and (max-width: 560px) {
  .p-mv {
    max-height: none;
    aspect-ratio: unset;
  }
}
.p-mv .fade-box {
  opacity: 0;
  transition: opacity 1s ease;
}
.p-mv .fade-in {
  opacity: 1;
}
.p-mv__visual {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.p-mv__visual img {
  max-width: none;
  height: 100%;
  aspect-ratio: 1601/450;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 560px) {
  .p-mv__visual img {
    left: 15%;
  }
}
.p-mv__inner {
  position: relative;
  width: 1200px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 3;
  display: flex;
  gap: 10%;
  justify-content: center;
}
@media only screen and (max-width: 560px) {
  .p-mv__inner {
    flex-direction: column;
    padding-left: 0;
  }
}
.p-mv__lead {
  font-weight: bold;
  transform: none;
  width: auto;
  letter-spacing: 0.1vw;
  font-size: 32px;
  line-height: 1.3;
}
@media only screen and (max-width: 1200px) {
  .p-mv__lead {
    font-size: 28px;
  }
}
@media only screen and (max-width: 960px) {
  .p-mv__lead {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .p-mv__lead {
    font-size: 23px;
  }
}
@media only screen and (max-width: 560px) {
  .p-mv__lead {
    font-size: 20px;
  }
}
.p-mv__copy {
  margin-top: 1em;
}
@media only screen and (max-width: 960px) {
  .p-mv__copy {
    margin-top: 0.5em;
  }
}
@media only screen and (max-width: 767px) {
  .p-mv__copy {
    font-size: 14px;
  }
}
.p-mv__btn {
  margin-top: 20px;
}
.p-mv__left {
  display: flex;
  position: relative;
  z-index: 2;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1200px) {
  .p-mv__left {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 960px) {
  .p-mv__left {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 0;
  }
}
@media only screen and (max-width: 560px) {
  .p-mv__left {
    padding-top: 10px;
    padding-bottom: 30px;
    order: 2;
  }
}
.p-mv__left .inbox {
  display: flex;
  flex-direction: column;
  height: 90%;
  width: 100%;
}
@media only screen and (max-width: 560px) {
  .p-mv__left .inbox {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-mv__left .inbox__catch {
  flex: 1;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 560px) {
  .p-mv__left .inbox__catch {
    justify-content: center;
    align-items: flex-start;
  }
}
.p-mv__right {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 560px) {
  .p-mv__right {
    order: 1;
    padding-top: 15px;
  }
}
.p-mv__right .-compass {
  aspect-ratio: 379/377;
  height: auto;
}
@media only screen and (max-width: 1400px) {
  .p-mv__right .-compass {
    height: 90%;
  }
}
@media only screen and (max-width: 560px) {
  .p-mv__right .-compass {
    width: 230px;
    height: auto;
  }
}

.p-common-mv {
  background: url(../image/bg-mv.png.webp) no-repeat;
  background-size: cover;
  background-position: center;
  height: 210px;
}
@media only screen and (max-width: 560px) {
  .p-common-mv {
    background: url(../image/bg-mv-sp.png.webp) no-repeat;
    height: auto;
    background-size: cover;
    background-position: center;
  }
}
.p-common-mv__inner {
  position: relative;
  width: 1200px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}
@media only screen and (max-width: 560px) {
  .p-common-mv__inner {
    aspect-ratio: 190/79;
  }
}
.p-common-mv__ttl {
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2.25rem);
  line-height: 1.3;
}
.p-common-mv__sub {
  font-weight: normal;
}
@media only screen and (max-width: 560px) {
  .p-common-mv__sub {
    font-size: 14px;
  }
}
@media only screen and (max-width: 560px) {
  .p-common-mv__body {
    font-size: 12px;
  }
}

.c-checkbox {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 10px;
  line-height: 1.5;
  cursor: pointer;
}
@media only screen and (max-width: 560px) {
  .c-checkbox {
    font-size: 14px;
  }
}
.c-checkbox:has(.checkbox_icon:disabled) {
  opacity: 0.4;
}

/* アイコン */
.c-checkbox-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
  -webkit-appearance: none;
          appearance: none;
  background: #FFFFFF;
  border: solid 2px #808080;
  border-radius: 4px;
  box-shadow: 0 0 0 0 transparent;
  transition-duration: 0.2s;
  transition-property: background-color, border, box-shadow, color;
  margin-top: 0.3em;
  /* チェックマーク */
  /* 強制カラーモードが有効のときは、既定のシステムカラー値を設定して、トランジションを無効にする */
  /* チェックマーク：選択済みの見た目 */
}
@media (forced-colors: active) {
  .c-checkbox-icon {
    transition: none;
    border-color: CanvasText;
  }
}
.c-checkbox-icon:checked {
  background: #4D4D4D;
  border-color: #4D4D4D;
  /* 強制カラーモードが有効のときは、システムカラーを設定 */
}
@media (forced-colors: active) {
  .c-checkbox-icon:checked {
    background-color: Canvas;
    border-color: CanvasText;
  }
}
@media (forced-colors: none) and (any-hover: hover) {
  .c-checkbox-icon:hover:enabled {
    border-color: #4D4D4D;
    box-shadow: 0 0 0 4px #ddd;
    /* 薄い紫色 */
  }
}
.c-checkbox-icon::before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  -webkit-mask-image: url(/assets/image/common/checkbox.svg);
          mask-image: url(/assets/image/common/checkbox.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #FFFFFF;
  transition: opacity 0.2s;
}
@media (forced-colors: active) {
  .c-checkbox-icon::before {
    transition: none;
    background-color: CanvasText;
  }
}
.c-checkbox-icon:checked::before {
  opacity: 1;
}

.p-movie {
  position: relative;
  width: 100%;
  overflow: auto;
  aspect-ratio: 16/9;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.p-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border: 0;
}

.p-check-row {
  display: flex;
  gap: 10px 24px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 560px) {
  .p-check-row {
    gap: 14px 20px;
  }
}
.p-check-row > * {
  width: calc(33% - 18px);
}
@media only screen and (max-width: 560px) {
  .p-check-row > * {
    width: calc(50% - 10px);
  }
}

.c-form-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.c-form-row--thin {
  gap: 12px;
}
.c-form-row--betw {
  justify-content: space-between;
}
.c-form-row--c {
  justify-content: center;
}
.c-form-row--r {
  justify-content: flex-end;
}
.c-form-row--col {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}
@media only screen and (max-width: 560px) {
  .c-form-row--sp-col {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

.p-search-table {
  display: flex;
  gap: 10px;
  border: none;
  border-top: 1px solid #afafaf;
  border-bottom: 1px solid #afafaf;
}
.p-search-table ~ .p-search-table {
  border-top: none;
}
@media only screen and (max-width: 560px) {
  .p-search-table {
    gap: 14px;
    flex-direction: column;
  }
}
.p-search-table legend {
  line-height: 1.65;
  font-weight: bold;
}
.p-search-table__ttl {
  flex-basis: 15%;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media only screen and (max-width: 560px) {
  .p-search-table__ttl {
    padding-bottom: 0;
  }
}
.p-search-table__body {
  flex: 1;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media only screen and (max-width: 560px) {
  .p-search-table__body {
    padding-top: 0;
  }
}
.p-search-table__sub-row {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 560px) {
  .p-search-table__sub-row {
    flex-direction: column;
    gap: 14px;
  }
}
.p-search-table__sub-row .-head {
  flex-basis: 140px;
}
@media only screen and (max-width: 560px) {
  .p-search-table__sub-row .-head {
    flex-basis: auto;
  }
}
.p-search-table__sub-row .-body {
  flex: 1;
}
@media only screen and (max-width: 560px) {
  .p-search-table__sub-row .-body .c-form-row {
    gap: 14px 20px;
  }
}

.p-fig-about01 {
  text-align: center;
}
.p-fig-about01 img {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1038/1157;
  height: auto;
}

.p-fig-about02 {
  text-align: center;
}
.p-fig-about02__headrow {
  display: flex;
  gap: 10%;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 1em;
}
.p-fig-about02__headrow > * {
  flex: 1;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.65;
}
@media only screen and (max-width: 560px) {
  .p-fig-about02__headrow > * {
    font-size: 15px;
  }
}
.p-fig-about02__footrow {
  display: flex;
  gap: 8%;
  width: 100%;
  max-width: 1000px;
  margin: 1em auto 0;
}
.p-fig-about02__footrow > * {
  flex: 1;
  text-align: center;
}
@media only screen and (max-width: 560px) {
  .p-fig-about02__footrow > * {
    font-size: 11px;
  }
}
.p-fig-about02 img {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 200/47;
  height: auto;
}

.p-about-logo-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: space-between;
  border: 3px solid #ddd;
  padding: 20px 20px 30px;
  gap: 20px;
}
@media only screen and (max-width: 560px) {
  .p-about-logo-box {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 30px;
  }
}
.p-about-logo-box__fig {
  background-color: #fff;
  padding: 0px;
  margin: auto;
  position: relative;
  width: 70px;
  height: 70px;
  overflow: hidden;
}
.p-about-logo-box__fig img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-about-logo-box__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-about-logo-box__middle {
  padding: 0 0 0;
}
@media only screen and (max-width: 560px) {
  .p-about-logo-box__middle {
    flex-grow: 1;
  }
}
.p-about-logo-box__ttl {
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media only screen and (max-width: 960px) {
  .p-about-logo-box__ttl {
    font-size: 14px;
  }
}
@media only screen and (max-width: 560px) {
  .p-about-logo-box__ttl {
    font-size: 15px;
  }
}

.p-about-service-mind {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 560px) {
  .p-about-service-mind ~ .p-about-service-mind {
    margin-top: 2.5em;
  }
}
@media only screen and (max-width: 560px) {
  .p-about-service-mind {
    gap: 10px;
  }
}
.p-about-service-mind__fig {
  padding: 0px 20px;
  max-width: 238px;
}
@media only screen and (max-width: 560px) {
  .p-about-service-mind__fig {
    padding: 0px;
    max-width: 60%;
  }
}
.p-about-service-mind__fig img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-about-service-mind__top {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.p-about-service-mind__ttl {
  font-weight: bold;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  text-align: center;
  margin-top: 1em;
}
@media only screen and (max-width: 960px) {
  .p-about-service-mind__ttl {
    font-size: 22px;
  }
}
@media only screen and (max-width: 560px) {
  .p-about-service-mind__ttl {
    font-size: 18px;
  }
}
.p-about-service-mind__subttl {
  font-size: 18px;
  text-align: center;
}
@media only screen and (max-width: 960px) {
  .p-about-service-mind__subttl {
    font-size: 17px;
  }
}
@media only screen and (max-width: 560px) {
  .p-about-service-mind__subttl {
    font-size: 16px;
  }
}
.p-about-service-mind__middle {
  text-align: left;
}
@media only screen and (max-width: 560px) {
  .p-about-service-mind__middle {
    margin-top: 0.5em;
  }
}

.p-media-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.p-media-box__fig {
  background-color: #fff;
  border: 1px solid #afafaf;
  padding: 0px;
  margin-bottom: auto;
  border: 1px solid #ddd;
  position: relative;
  aspect-ratio: 450/200;
  padding-top: 44.4444444444%;
  border-radius: 10px;
  overflow: hidden;
}
.p-media-box__fig img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50%;
  height: 50%;
  object-fit: contain;
}
.p-media-box__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-media-box__middle {
  padding: 0 0 0;
}
.p-media-box a:hover {
  color: #EB7915;
  text-decoration: none;
}
.p-media-box__link {
  display: flex;
  gap: 0.5em;
  align-items: flex-start;
  font-weight: bold;
  margin-top: 0.75em;
}
.p-media-box__link .-icon {
  aspect-ratio: 23/29;
  height: auto;
}
.p-media-box__txt {
  margin-top: 0.5em;
}
.p-media-box__tag {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.p-media-box__tag > * {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1;
  background-color: #ECEFF1;
  border: solid 1px #ECEFF1;
  border-radius: 5px;
  text-decoration: none;
}
@media only screen and (max-width: 560px) {
  .p-media-box__tag > * {
    font-size: 10px;
    padding: 0.35em 0.5em;
  }
}

.p-box-border {
  border: 2px solid #B8B8B8;
  padding: 60px 100px;
}
@media only screen and (max-width: 560px) {
  .p-box-border {
    padding: 20px 24px;
  }
}
.p-box-border--thin {
  border: 1px solid #B8B8B8;
  padding: 30px 50px;
}
@media only screen and (max-width: 560px) {
  .p-box-border--thin {
    padding: 15px 20px;
  }
}

.p-about-list {
  background-color: #ECEFF1;
  padding: 1.5em;
}
.p-about-list li ~ li {
  margin-top: 1.5em;
}

.p-knowhow {
  display: flex;
  gap: 86px;
  width: 1100px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
@media only screen and (max-width: 560px) {
  .p-knowhow {
    flex-direction: column;
    gap: 20px;
  }
}
.p-knowhow ~ .p-knowhow {
  margin-top: 80px;
}
@media only screen and (max-width: 560px) {
  .p-knowhow ~ .p-knowhow {
    margin-top: 10.6666666667vw;
  }
}
.p-knowhow__content {
  flex-basis: 51%;
}
@media only screen and (max-width: 560px) {
  .p-knowhow__content {
    order: 1;
  }
}
.p-knowhow__fig {
  flex-basis: calc(49% - 86px);
  aspect-ratio: 440/230;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 560px) {
  .p-knowhow__fig {
    order: 2;
    width: 80%;
  }
}
.p-knowhow__fig img {
  width: 80%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.p-knowhow__txt {
  margin-top: 2em;
}

.p-knowhow-numttl {
  display: flex;
  gap: 20px;
  align-items: center;
}
.p-knowhow-numttl .-num {
  display: flex;
  flex: none;
  width: 40px;
  font-weight: bold;
  font-size: 64px;
  line-height: 1;
}
.p-knowhow-numttl .-ttl {
  font-weight: bold;
  font-size: 28px;
  line-height: 1.2;
}
@media only screen and (max-width: 560px) {
  .p-knowhow-numttl .-ttl {
    font-size: 20px;
  }
}
.p-knowhow-numttl .-txt {
  font-size: 18px;
  margin-top: 0.5em;
  line-height: 1.3;
}
@media only screen and (max-width: 560px) {
  .p-knowhow-numttl .-txt {
    font-size: 14px;
  }
}

.p-card-checkmark {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 560px) {
  .p-card-checkmark {
    flex-direction: column;
  }
}
.p-card-checkmark__item {
  width: calc(25% - 13.5px);
  padding: 0.75em;
  display: flex;
  align-items: center;
  gap: 5px;
  text-align: left;
  font-size: 14px;
  background-color: rgba(253, 222, 98, 0.4);
}
@media only screen and (max-width: 560px) {
  .p-card-checkmark__item {
    width: 100%;
  }
}
.p-card-checkmark__item::before {
  font-family: "Material Symbols Outlined";
  content: "\e86c";
  font-size: 1.8em;
  line-height: 1;
  font-variation-settings: "FILL" 1;
}
.p-card-checkmark--c2 > * {
  background-color: rgba(245, 187, 115, 0.4);
}

.p-attitude-type {
  display: flex;
  gap: 30px 60px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 560px) {
  .p-attitude-type {
    gap: 24px;
    flex-direction: column;
  }
}
.p-attitude-type__item {
  width: calc(50% - 30px);
}
@media only screen and (max-width: 560px) {
  .p-attitude-type__item {
    width: 100%;
  }
}
.p-attitude-type__row {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}
.p-attitude-type__row .-icon {
  flex-basis: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 560px) {
  .p-attitude-type__row .-icon {
    font-size: 13px;
  }
}
.p-attitude-type__row .-ttl {
  flex: calc(100% - 120px);
  text-align: center;
  font-size: 20px;
}
@media only screen and (max-width: 560px) {
  .p-attitude-type__row .-ttl {
    font-size: 15px;
  }
}
.p-attitude-type__txt {
  padding: 1em 0.5em;
  font-size: 18px;
}
@media only screen and (max-width: 560px) {
  .p-attitude-type__txt {
    font-size: 14px;
  }
}
.p-attitude-type__ttl {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  background-color: #FDD63B;
  font-weight: bold;
  font-size: 22px;
  padding: 1em 10px;
  border-radius: 10px;
}
.p-attitude-type__ttl.-orange {
  background-color: #F5BB73;
}
@media only screen and (max-width: 560px) {
  .p-attitude-type__ttl {
    font-size: 18px;
  }
}
.p-attitude-type__ttl .num {
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
}
@media only screen and (max-width: 560px) {
  .p-attitude-type__ttl .num {
    font-size: 28px;
  }
}

.p-seller-flow-box__item {
  position: relative;
  margin-bottom: 70px;
}
@media only screen and (max-width: 560px) {
  .p-seller-flow-box__item {
    margin-bottom: 40px;
  }
}
.p-seller-flow-box__item::after {
  font-family: "Material Symbols Outlined";
  content: "\f1e3";
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  color: #4D4D4D;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
}
@media only screen and (max-width: 560px) {
  .p-seller-flow-box__item::after {
    bottom: -34px;
    font-size: 26px;
  }
}
.p-seller-flow-box__item:last-child {
  margin-bottom: 25px;
}
.p-seller-flow-box__item:last-child::after {
  content: none;
}

.p-seller-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5em;
  overflow: visible;
  background-color: #F2F2F2;
  min-height: 100px;
  position: relative;
}
@media only screen and (max-width: 560px) {
  .p-seller-flow {
    flex-direction: column;
    padding-bottom: 100px;
  }
}
.p-seller-flow__fig {
  aspect-ratio: 230/118;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -30px;
  left: 30px;
  max-width: 230px;
}
.p-seller-flow__fig.-r2 {
  aspect-ratio: 200/100;
  max-width: 200px;
}
@media screen and (max-width: 1000px) {
  .p-seller-flow__fig {
    max-width: 150px;
  }
}
@media only screen and (max-width: 560px) {
  .p-seller-flow__fig {
    width: auto;
    height: 80px;
    top: unset;
    bottom: 15px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
}
.p-seller-flow__fig img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-seller-flow__body {
  width: 100%;
  padding-left: 260px;
  align-items: center;
  padding: 20px;
}
@media only screen and (max-width: 560px) {
  .p-seller-flow__body {
    padding: 0.5em 1em 1em;
  }
}
.p-solution-fig-round {
  text-align: center;
}
.p-solution-fig-round img {
  aspect-ratio: 1/1;
  height: auto;
  width: 500px;
  max-width: 80%;
}

.p-card-four {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media only screen and (max-width: 560px) {
  .p-card-four {
    gap: 30px;
  }
}
.p-card-four > * {
  width: calc(25% - 24px);
}
@media only screen and (max-width: 560px) {
  .p-card-four > * {
    width: 100%;
  }
}

.p-solution-box {
  display: flex;
  flex-direction: column;
}
.p-solution-box__fig {
  background-color: #fff;
  margin-bottom: auto;
  position: relative;
  aspect-ratio: 26/15;
}
.p-solution-box__fig img {
  aspect-ratio: 26/15;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-solution-box__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-solution-box__middle {
  margin-top: 1em;
}
@media only screen and (max-width: 560px) {
  .p-solution-box__middle {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 560px) {
  .p-solution-box__txt {
    font-size: 14px;
  }
}
.p-solution-box__ttl {
  font-weight: bold;
  font-size: 18px;
  min-height: 3.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media only screen and (max-width: 560px) {
  .p-solution-box__ttl {
    min-height: auto;
    font-size: 16px;
  }
}

.p-manual-example {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media only screen and (max-width: 560px) {
  .p-manual-example {
    gap: 30px;
    flex-direction: column;
  }
}
.p-manual-example ~ .p-manual-example {
  margin-top: 40px;
}
@media only screen and (max-width: 560px) {
  .p-manual-example ~ .p-manual-example {
    gap: 20px;
  }
}
.p-manual-example__img {
  width: 27%;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 560px) {
  .p-manual-example__img {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
.p-manual-example__img img {
  max-width: 250px;
  aspect-ratio: 250/165;
  height: auto;
  object-fit: contain;
  object-position: center;
}
@media only screen and (max-width: 560px) {
  .p-manual-example__img img {
    width: 70%;
    margin: auto;
  }
}
.p-manual-example__txt {
  flex: 1;
}
.p-manual-example__ttl {
  font-weight: bold;
  font-size: 16px;
}

.p-business-box {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.p-business-box__top {
  position: relative;
}
.p-business-box__fig {
  background-color: #000;
  margin-bottom: auto;
  aspect-ratio: 49/16;
}
.p-business-box__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-business-box__ttl {
  font-size: 18px;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
@media only screen and (max-width: 960px) {
  .p-business-box__ttl {
    font-size: 14px;
  }
}
@media only screen and (max-width: 560px) {
  .p-business-box__ttl {
    font-size: 12px;
  }
}
.p-business-box__txt {
  font-size: 14px;
}
@media only screen and (max-width: 560px) {
  .p-business-box__txt {
    font-size: 12px;
  }
}

.p-business-flowchart {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media only screen and (max-width: 560px) {
  .p-business-flowchart {
    gap: 24px;
  }
}
.p-business-flowchart > * {
  width: calc(25% - 45px);
}
@media only screen and (max-width: 560px) {
  .p-business-flowchart > * {
    width: 100%;
  }
}

.p-business-flowchart-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em;
  background-color: rgba(253, 222, 98, 0.4);
  position: relative;
  text-align: center;
  border-radius: 10px;
}
@media only screen and (max-width: 560px) {
  .p-business-flowchart-card {
    padding: 1em;
  }
}
.p-business-flowchart-card::before {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #808080;
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 560px) {
  .p-business-flowchart-card::before {
    width: 2px;
    height: 24px;
    top: unset;
    right: unset;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%);
  }
}
.p-business-flowchart-card::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #808080;
  border-right: 2px solid #808080;
  position: absolute;
  top: 50%;
  right: -58px;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 560px) {
  .p-business-flowchart-card::after {
    width: 6px;
    height: 6px;
    top: unset;
    right: unset;
    left: 50%;
    bottom: -24px;
    transform: translateX(-50%) rotate(135deg);
  }
}
.p-business-flowchart-card.-next::before, .p-business-flowchart-card.-next::after {
  content: none;
}
@media only screen and (max-width: 560px) {
  .p-business-flowchart-card.-next::before, .p-business-flowchart-card.-next::after {
    content: "";
  }
}
.p-business-flowchart-card.-last::before, .p-business-flowchart-card.-last::after {
  content: none;
}

.p-business-flowchart-hook {
  width: 80%;
  margin: 0 auto;
  height: 74px;
  position: relative;
}
@media only screen and (max-width: 560px) {
  .p-business-flowchart-hook {
    height: 30px;
  }
}
.p-business-flowchart-hook .line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #808080;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 560px) {
  .p-business-flowchart-hook .line {
    display: none;
  }
}
.p-business-flowchart-hook .arrow {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  position: absolute;
  bottom: 0;
  left: -5px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 560px) {
  .p-business-flowchart-hook .arrow {
    display: none;
  }
}
.p-business-flowchart-hook::before {
  content: "";
  width: 2px;
  height: 36px;
  background-color: #808080;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 560px) {
  .p-business-flowchart-hook::before {
    content: none;
  }
}
.p-business-flowchart-hook::after {
  content: "";
  width: 2px;
  height: 36px;
  background-color: #808080;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 560px) {
  .p-business-flowchart-hook::after {
    content: none;
  }
}

.p-faq-card__item ~ .p-faq-card__item {
  border-top: #ddd solid 1px;
}
.p-faq-card .accordion-header {
  padding: 20px 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1em;
  justify-content: space-between;
}
.p-faq-card .accordion-header .ac-ttl {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.65;
  gap: 16px;
}
@media only screen and (max-width: 960px) {
  .p-faq-card .accordion-header .ac-ttl {
    font-size: 16px;
  }
}
@media only screen and (max-width: 560px) {
  .p-faq-card .accordion-header .ac-ttl {
    font-size: 14px;
  }
}
.p-faq-card .accordion-header .ac-icon {
  background-color: #4D4D4D;
  flex: none;
  width: 20px;
  height: 20px;
  line-height: 1;
  border-radius: 200px;
  color: #fff;
  position: relative;
}
.p-faq-card .accordion-header .ac-icon::before {
  content: "＋";
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.p-faq-card .accordion-header.is-open .ac-icon::before {
  content: "ー";
}
.p-faq-card .accordion-content {
  display: none;
  padding: 0 0 20px;
}
.p-faq-card .ac-a {
  display: flex;
  gap: 16px;
}
.p-faq-card .ac-a__icon {
  font-weight: bold;
  font-size: 22px;
  color: #EB7915;
}
@media only screen and (max-width: 960px) {
  .p-faq-card .ac-a__icon {
    font-size: 20px;
  }
}
@media only screen and (max-width: 560px) {
  .p-faq-card .ac-a__icon {
    font-size: 16px;
  }
}
.p-faq-card .ac-a__detail {
  flex: 1;
  padding-top: 0.25em;
  font-size: 16px;
}
@media only screen and (max-width: 960px) {
  .p-faq-card .ac-a__detail {
    font-size: 15px;
  }
}
@media only screen and (max-width: 560px) {
  .p-faq-card .ac-a__detail {
    font-size: 12px;
  }
}
.p-faq-card .mt {
  margin-top: 1em;
}
.p-faq-card .ac-cate {
  display: flex;
  gap: 0.5em;
  margin-top: 1em;
  flex-wrap: wrap;
}
.p-faq-card .ac-cate > * {
  font-size: 12px;
  background-color: #ECEFF1;
  line-height: 1;
  padding: 0.85em 1.5em;
  border-radius: 5px;
}

.p-recruit-heading {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  text-align: center;
  color: #EB7915;
}

.p-recruit-copy {
  text-align: center;
}
.p-recruit-copy img {
  aspect-ratio: 7/2;
  height: auto;
}

.p-rec-vision-card {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-rec-vision-card__item {
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  background-color: rgba(253, 222, 98, 0.4);
  text-align: center;
  padding: 1em;
  border-radius: 8px;
}
@media only screen and (max-width: 560px) {
  .p-rec-vision-card__item {
    width: 100%;
  }
}
.p-rec-vision-card__item.-large {
  width: 100%;
  background-color: rgba(245, 187, 115, 0.4);
}
.p-rec-vision-card__item.-large .-text {
  min-height: 1em;
}
.p-rec-vision-card__item .-ttl {
  font-weight: bold;
  font-size: 22px;
}
@media only screen and (max-width: 560px) {
  .p-rec-vision-card__item .-ttl {
    font-size: 18px;
  }
}
.p-rec-vision-card__item .-text {
  display: flex;
  align-items: center;
  min-height: 3em;
}
@media only screen and (max-width: 560px) {
  .p-rec-vision-card__item .-text {
    font-size: 14px;
  }
}

.p-rec-biz-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 560px) {
  .p-rec-biz-box ~ .p-rec-biz-box {
    margin-top: 2.5em;
  }
}
@media only screen and (max-width: 560px) {
  .p-rec-biz-box {
    gap: 10px;
  }
}
.p-rec-biz-box__fig {
  background-color: #fff;
  padding: 0px;
  max-width: 370px;
  width: 100%;
}
@media only screen and (max-width: 560px) {
  .p-rec-biz-box__fig {
    padding: 0px;
    width: 70%;
  }
}
.p-rec-biz-box__fig img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-rec-biz-box__top {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.p-rec-biz-box__ttl {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-top: 1.5em;
}
@media only screen and (max-width: 960px) {
  .p-rec-biz-box__ttl {
    font-size: 17px;
  }
}
@media only screen and (max-width: 560px) {
  .p-rec-biz-box__ttl {
    font-size: 16px;
  }
}
.p-rec-biz-box__txt {
  margin-top: 30px;
}
@media only screen and (max-width: 560px) {
  .p-rec-biz-box__txt {
    margin-top: 1em;
  }
}

.p-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #4D4D4D;
}
@media only screen and (max-width: 560px) {
  .p-tabs {
    gap: 10px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.p-tabs__item {
  max-width: 100%;
  width: 286px;
  border: 1px solid #4D4D4D;
  color: #4D4D4D;
  border-radius: 8px 8px 0 0;
  border-bottom: none;
  background-color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s ease all;
  position: relative;
}
@media only screen and (max-width: 560px) {
  .p-tabs__item {
    font-size: 13px;
    width: calc(33.3% - 7px);
    padding: 10px;
  }
}
.p-tabs__item:hover {
  background-color: #eee;
}

.tab-content {
  display: none;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.tab-content.active {
  display: block;
}

.tab.active::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.p-recruit-table tbody th {
  width: 30%;
}
@media only screen and (max-width: 560px) {
  .p-recruit-table tbody th {
    width: 100% !important;
  }
}

.p-case-main {
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 560px) {
  .p-case-main {
    flex-direction: column;
  }
}
.p-case-main__fig {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-case-main__data {
  flex: 1;
}
.p-case-main dl {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  align-items: flex-start;
}
@media only screen and (max-width: 560px) {
  .p-case-main dl {
    flex-direction: column;
  }
}
.p-case-main dl dt {
  color: #fff;
  background-color: #4D4D4D;
  padding: 6px;
  text-align: center;
  flex-basis: 150px;
}
@media only screen and (max-width: 560px) {
  .p-case-main dl dt {
    flex-basis: 100%;
    width: 100%;
    font-size: 13px;
    text-align: left;
  }
}
.p-case-main dl dd {
  padding: 6px;
  flex-basis: calc(100% - 165px);
}
@media only screen and (max-width: 560px) {
  .p-case-main dl dd {
    flex-basis: 100%;
    width: 100%;
    font-size: 13px;
    padding: 0 0 6px;
  }
}
.p-case-main .ac-cate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.p-case-main .ac-cate > * {
  font-size: 12px;
  background-color: #ECEFF1;
  line-height: 1;
  padding: 0.85em 1.5em;
  border-radius: 5px;
}

.p-case-three {
  display: flex;
  gap: 30px;
}
@media only screen and (max-width: 560px) {
  .p-case-three {
    flex-direction: column;
  }
}
.p-case-three__item {
  width: calc(33.3% - 20px);
}
@media only screen and (max-width: 560px) {
  .p-case-three__item {
    width: 100%;
  }
}

.p-case-type {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-case-type__head {
  text-align: center;
}
.p-case-type__head .-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  object-position: center;
}
@media only screen and (max-width: 560px) {
  .p-case-type__head .-icon img {
    width: 40px;
    height: 40px;
  }
}
.p-case-type__head .-label {
  font-weight: bold;
  margin-top: 10px;
}
.p-case-type__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  grid-area: 10px;
  background-color: #ECEFF1;
  border-radius: 8px;
  padding: 24px;
}
@media only screen and (max-width: 560px) {
  .p-case-type__body {
    border-radius: 5px;
    padding: 16px;
  }
}
.p-case-type__body.-c2 {
  background-color: #FEEFB1;
}
.p-case-type__body.-c3 {
  background-color: #FBE4C7;
}
.p-case-type__body .-main {
  min-height: 6em;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  line-height: 1.65;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 560px) {
  .p-case-type__body .-main {
    font-size: 16px;
    min-height: auto;
  }
}
@media only screen and (max-width: 560px) {
  .p-case-type__body ul {
    margin-top: 1em;
    font-size: 13px;
  }
}

.p-case-section {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.p-case-section ~ .p-case-section {
  margin-top: 100px;
}
@media only screen and (max-width: 560px) {
  .p-case-section ~ .p-case-section {
    margin-top: 13.3333333333vw;
  }
}
.p-case-section__content {
  padding: 30px 30px 0 80px;
}
@media only screen and (max-width: 560px) {
  .p-case-section__content {
    padding: 15px 15px 0 15px;
  }
}
.p-case-section__row {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 560px) {
  .p-case-section__row {
    flex-direction: column;
    font-size: 14px;
  }
}
.p-case-section__row > * {
  flex: 1;
}
.p-case-section__point {
  border: 1px solid #E89C9C;
  background-color: #FFF0F0;
  padding: 1em;
  border-radius: 8px;
  margin-top: 30px;
}
@media only screen and (max-width: 560px) {
  .p-case-section__point {
    margin-top: 15px;
    font-size: 14px;
  }
}
.p-case-section__point .-mark {
  font-weight: bold;
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}
.p-case-section__point .-mark .material-symbols-outlined {
  color: #E89C9C;
}

.p-case-numttl {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background-color: #ECEFF1;
  padding: 10px 30px;
}
@media only screen and (max-width: 560px) {
  .p-case-numttl {
    padding: 10px 16px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.p-case-numttl__heading {
  display: flex;
  gap: 10px;
  align-items: center;
}
.p-case-numttl__range {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 560px) {
  .p-case-numttl__range {
    font-size: 14px;
  }
}
.p-case-numttl .-num {
  display: flex;
  flex: none;
  width: 40px;
  font-weight: bold;
  font-size: 60px;
  line-height: 1;
}
@media only screen and (max-width: 560px) {
  .p-case-numttl .-num {
    font-size: 40px;
    width: 30px;
  }
}
.p-case-numttl .-ttl {
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}
@media only screen and (max-width: 560px) {
  .p-case-numttl .-ttl {
    line-height: 1.4;
    font-size: 16px;
  }
}

.p-service-numttl {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(253, 214, 59, 0.4);
  padding: 10px 30px;
  border-radius: 8px;
}
@media only screen and (max-width: 560px) {
  .p-service-numttl {
    padding: 10px 16px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.p-service-numttl__heading {
  display: flex;
  gap: 10px;
  align-items: center;
}
.p-service-numttl__range {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 560px) {
  .p-service-numttl__range {
    font-size: 14px;
  }
}
.p-service-numttl .-num {
  display: flex;
  flex: none;
  width: 34px;
  font-weight: bold;
  font-size: 52px;
  line-height: 1;
}
@media only screen and (max-width: 560px) {
  .p-service-numttl .-num {
    font-size: 30px;
    width: 25px;
  }
}
.p-service-numttl .-ttl {
  font-weight: bold;
  font-size: 22px;
  line-height: 1;
}
@media only screen and (max-width: 560px) {
  .p-service-numttl .-ttl {
    line-height: 1.4;
    font-size: 18px;
  }
}

.p-service-flow-numttl {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: rgba(253, 214, 59, 0.4);
  padding: 10px 30px;
  border-radius: 8px;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-numttl {
    padding: 10px 16px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.p-service-flow-numttl__heading {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 25%;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-numttl__heading {
    width: 100%;
  }
}
.p-service-flow-numttl__range {
  width: 75%;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-numttl__range {
    width: 100%;
    font-size: 14px;
  }
}
.p-service-flow-numttl .-num {
  display: flex;
  flex: none;
  width: 50px;
  gap: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-service-flow-numttl .-num .-text {
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-numttl .-num .-text {
    font-size: 16px;
  }
}
.p-service-flow-numttl .-num .-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-numttl .-num .-icon {
    width: 30px;
    height: 30px;
  }
}
.p-service-flow-numttl .-ttl {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.4;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-numttl .-ttl {
    font-size: 16px;
  }
}

.p-service-range-section {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.p-service-range-section ~ .p-service-range-section {
  margin-top: 100px;
}
@media only screen and (max-width: 560px) {
  .p-service-range-section ~ .p-service-range-section {
    margin-top: 13.3333333333vw;
  }
}
.p-service-range-section__content {
  padding: 30px 30px 0 80px;
}
@media only screen and (max-width: 560px) {
  .p-service-range-section__content {
    padding: 15px 15px 0 15px;
  }
}
.p-service-range-section__sub-head {
  font-size: 18px;
}
@media only screen and (max-width: 560px) {
  .p-service-range-section__sub-head {
    font-size: 16px;
  }
}
.p-service-range-section__text {
  margin-top: 24px;
}
@media only screen and (max-width: 560px) {
  .p-service-range-section__text {
    font-size: 13px;
  }
}
.p-service-range-section__example {
  border: 1px solid #4D4D4D;
  padding: 1em;
  border-radius: 8px;
  margin-top: 30px;
  width: 55%;
}
@media only screen and (max-width: 560px) {
  .p-service-range-section__example {
    width: 100%;
  }
}
.p-service-range-section__example ul {
  margin-top: 0.5em;
  display: flex;
  gap: 0 10px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 560px) {
  .p-service-range-section__example ul {
    gap: 0 10px;
  }
}
.p-service-range-section__example ul > li {
  width: calc(50% - 5px);
}
@media only screen and (max-width: 560px) {
  .p-service-range-section__example ul > li {
    width: 100%;
    font-size: 14px;
  }
}
@media only screen and (max-width: 560px) {
  .p-service-range-section__example {
    margin-top: 15px;
    font-size: 14px;
  }
}

.p-service-flow-section {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.p-service-flow-section ~ .p-service-flow-section {
  margin-top: 100px;
  position: relative;
}
.p-service-flow-section ~ .p-service-flow-section::before {
  content: "";
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 12px solid #ECEFF1;
  border-bottom: 0;
  position: absolute;
  top: -50px;
  left: calc(50% + 20px);
  transform: translateX(-50%);
}
@media only screen and (max-width: 560px) {
  .p-service-flow-section ~ .p-service-flow-section::before {
    left: 50%;
    top: -8vw;
  }
}
@media only screen and (max-width: 560px) {
  .p-service-flow-section ~ .p-service-flow-section {
    margin-top: 13.3333333333vw;
  }
}
.p-service-flow-section__content {
  padding: 10px 30px 0 80px;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-section__content {
    padding: 15px 15px 0 15px;
  }
}
.p-service-flow-section__text {
  margin-top: 24px;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-section__text {
    font-size: 13px;
  }
}
.p-service-flow-section__example {
  border: 1px solid #4D4D4D;
  padding: 1em;
  border-radius: 8px;
  margin-top: 30px;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-section__example {
    width: 100%;
  }
}
.p-service-flow-section__example ul {
  margin-top: 0.5em;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-section__example ul > li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 560px) {
  .p-service-flow-section__example {
    margin-top: 15px;
    font-size: 14px;
  }
}
.p-service-flow-section__point {
  border: 1px solid #E89C9C;
  background-color: #FFF0F0;
  padding: 1em;
  border-radius: 8px;
  margin-top: 30px;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-section__point {
    margin-top: 15px;
    font-size: 14px;
  }
}
.p-service-flow-section__point .-mark {
  font-weight: bold;
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}
.p-service-flow-section__point .-mark .material-symbols-outlined {
  color: #E89C9C;
}

.p-service-flow-txt-end {
  text-align: center;
  font-weight: bold;
  color: #DC000C;
}

.p-service-flow-pager {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media only screen and (max-width: 560px) {
  .p-service-flow-pager {
    flex-direction: column;
  }
}

.p-tool-row {
  gap: 40px;
  display: flex;
}
@media only screen and (max-width: 560px) {
  .p-tool-row {
    gap: 30px;
    flex-direction: column;
  }
}
.p-tool-row ~ .p-tool-row {
  margin-top: 100px;
}
@media only screen and (max-width: 560px) {
  .p-tool-row ~ .p-tool-row {
    margin-top: 13.3333333333vw;
  }
}
@media only screen and (max-width: 560px) {
  .p-tool-row {
    flex-direction: column;
  }
}
.p-tool-row__content {
  width: 50%;
}
@media only screen and (max-width: 560px) {
  .p-tool-row__content {
    width: 100%;
  }
}
.p-tool-row__content p ~ p {
  margin-top: 1em;
}
.p-tool-row__content .-ttl {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.5;
}
@media only screen and (max-width: 560px) {
  .p-tool-row__content .-ttl {
    font-size: 20px;
  }
}
.p-tool-row__fig {
  width: calc(50% - 40px);
}
@media only screen and (max-width: 560px) {
  .p-tool-row__fig {
    width: 100%;
  }
}

.p-card-manual-style {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media only screen and (max-width: 960px) {
  .p-card-manual-style {
    gap: 30px;
  }
}
@media only screen and (max-width: 560px) {
  .p-card-manual-style {
    gap: 24px;
  }
}
.p-card-manual-style > * {
  width: calc(33.3333333333% - 40px);
}
@media only screen and (max-width: 960px) {
  .p-card-manual-style > * {
    width: calc(33.3333333333% - 20px);
  }
}
@media only screen and (max-width: 560px) {
  .p-card-manual-style > * {
    width: 100%;
  }
}

.p-manual-style-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 560px) {
  .p-manual-style-box ~ .p-manual-style-box {
    margin-top: 2.5em;
  }
}
@media only screen and (max-width: 560px) {
  .p-manual-style-box {
    gap: 10px;
  }
}
.p-manual-style-box__fig {
  background-color: #fff;
  padding: 0px;
  max-width: 360px;
  width: 100%;
}
.p-manual-style-box__fig img {
  aspect-ratio: 36/15;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-manual-style-box__fig img.-fig-contain {
  object-fit: contain;
}
.p-manual-style-box__top {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.p-manual-style-box__ttl {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin-top: 1.5em;
  min-height: 3em;
  line-height: 1.65;
}
@media only screen and (max-width: 960px) {
  .p-manual-style-box__ttl {
    font-size: 17px;
  }
}
@media only screen and (max-width: 560px) {
  .p-manual-style-box__ttl {
    min-height: auto;
    font-size: 16px;
  }
}
.p-manual-style-box__ttl .sub {
  font-weight: normal;
  font-size: 16px;
}
@media only screen and (max-width: 960px) {
  .p-manual-style-box__ttl .sub {
    font-size: 14px;
  }
}
@media only screen and (max-width: 560px) {
  .p-manual-style-box__ttl .sub {
    font-size: 13px;
  }
}
.p-manual-style-box__txt {
  margin-top: 20px;
}
@media only screen and (max-width: 560px) {
  .p-manual-style-box__txt {
    margin-top: 1em;
  }
}

.p-pricing-table {
  border-top: none;
}
.p-pricing-table th,
.p-pricing-table td {
  font-size: 16px;
}
@media only screen and (max-width: 560px) {
  .p-pricing-table th,
  .p-pricing-table td {
    font-size: 14px;
  }
}
@media only screen and (max-width: 560px) {
  .p-pricing-table thead {
    display: none;
  }
}
.p-pricing-table thead tr {
  border-bottom: none;
}
.p-pricing-table thead th,
.p-pricing-table thead td {
  background-color: #FDD63B;
  font-weight: bold;
}
.p-pricing-table tbody tr {
  border-bottom: 1px solid #afafaf;
}
.p-pricing-table tbody th {
  font-weight: bold;
  background-color: #fff;
}
.p-pricing-table tbody th,
.p-pricing-table tbody td {
  vertical-align: middle;
  padding: 1.25em 1em;
}
@media only screen and (max-width: 560px) {
  .p-pricing-table tbody th {
    padding: 1em 0 1em;
  }
}
@media only screen and (max-width: 560px) {
  .p-pricing-table tbody td {
    padding: 0 0 1em;
  }
}
@media only screen and (max-width: 560px) {
  .p-pricing-table .-sp-hide {
    display: none;
  }
}
.p-pricing-table .-sp-num {
  display: none;
}
@media only screen and (max-width: 560px) {
  .p-pricing-table .-sp-num {
    display: inline-block;
  }
}
.p-pricing-table .-sp-ttl {
  display: none;
}
@media only screen and (max-width: 560px) {
  .p-pricing-table .-sp-ttl {
    padding: 0.5em;
    background-color: #FDD63B;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5em;
  }
}

.p-pricing-calc-section {
  width: 960px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}
@media only screen and (max-width: 560px) {
  .p-pricing-calc-section {
    margin-top: 13.3333333333vw;
  }
}
.p-pricing-calc-section ~ .p-pricing-calc-section {
  margin-top: 50px;
}
@media only screen and (max-width: 560px) {
  .p-pricing-calc-section ~ .p-pricing-calc-section {
    margin-top: 8vw;
  }
}

.p-pricing-ttl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  border-left: 4px solid #FDD63B;
  padding: 3px 10px;
  margin-bottom: 1em;
}
@media only screen and (max-width: 560px) {
  .p-pricing-ttl {
    gap: 5px 10px;
  }
}
.p-pricing-ttl .-ttl {
  font-size: 22px;
  word-break: break-word;
  overflow-wrap: break-word;
}
@media only screen and (max-width: 560px) {
  .p-pricing-ttl .-ttl {
    font-size: 17px;
  }
}
.p-pricing-ttl .-count {
  display: flex;
  gap: 5px;
  align-items: center;
}
@media only screen and (max-width: 560px) {
  .p-pricing-ttl .-count {
    font-size: 14px;
  }
}
.p-pricing-ttl .-label {
  font-size: 14px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 4px;
  background-color: #FFDADA;
}
@media only screen and (max-width: 560px) {
  .p-pricing-ttl .-label {
    font-size: 12px;
  }
}
.p-pricing-ttl .-label.-c2 {
  background-color: #ECEFF1;
}

.p-pricing-calc {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
@media only screen and (max-width: 560px) {
  .p-pricing-calc {
    flex-direction: column;
  }
}
@media only screen and (max-width: 560px) {
  .p-pricing-calc dt {
    font-size: 14px;
  }
}
.p-pricing-calc dd {
  text-align: right;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 560px) {
  .p-pricing-calc dd {
    flex-wrap: wrap;
    gap: 5px 10px;
    justify-content: flex-end;
    font-size: 14px;
  }
}
.p-pricing-calc .-result {
  font-weight: bold;
  font-size: 22px;
}
@media only screen and (max-width: 560px) {
  .p-pricing-calc .-result {
    font-size: 18px;
  }
}

.p-sitemap {
  display: flex;
  gap: 40px 18px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 560px) {
  .p-sitemap {
    flex-direction: column;
    gap: 20px;
  }
}
.p-sitemap__item {
  width: calc(25% - 13.5px);
}
@media only screen and (max-width: 960px) {
  .p-sitemap__item {
    width: calc(50% - 9px);
  }
}
@media only screen and (max-width: 560px) {
  .p-sitemap__item {
    width: 100%;
  }
}
.p-sitemap__item .-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1200px) {
  .p-sitemap__item .-heading {
    font-size: 18px;
  }
}
@media only screen and (max-width: 560px) {
  .p-sitemap__item .-heading {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.p-sitemap .-empty {
  height: 60px;
}
@media only screen and (max-width: 560px) {
  .p-sitemap .-empty {
    display: none;
  }
}

.p-recruit-points {
  display: flex;
  gap: 30px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
@media only screen and (max-width: 560px) {
  .p-recruit-points {
    flex-direction: column;
    gap: 20px;
  }
}
.p-recruit-points ~ .p-recruit-points {
  margin-top: 80px;
}
@media only screen and (max-width: 560px) {
  .p-recruit-points ~ .p-recruit-points {
    margin-top: 10.6666666667vw;
  }
}
.p-recruit-points__content {
  flex-basis: 50%;
}
@media only screen and (max-width: 560px) {
  .p-recruit-points__content {
    order: 1;
  }
}
.p-recruit-points__fig {
  flex-basis: calc(50% - 30px);
  aspect-ratio: 570/300;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 560px) {
  .p-recruit-points__fig {
    order: 2;
    width: 80%;
  }
}
.p-recruit-points__fig img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.p-recruit-points__fig img.-cover {
  object-fit: cover;
}
.p-recruit-points__txt {
  margin-top: 2em;
}

.p-recruit-points-numttl {
  display: flex;
  gap: 20px;
  align-items: center;
}
.p-recruit-points-numttl .-num {
  display: flex;
  flex: none;
  width: 40px;
  font-weight: bold;
  font-size: 64px;
  line-height: 1;
}
.p-recruit-points-numttl .-ttl {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4;
}
@media only screen and (max-width: 560px) {
  .p-recruit-points-numttl .-ttl {
    font-size: 18px;
  }
}
.p-recruit-points-numttl .-txt {
  font-size: 18px;
  margin-top: 0.5em;
  line-height: 1.3;
}
@media only screen and (max-width: 560px) {
  .p-recruit-points-numttl .-txt {
    font-size: 14px;
  }
}

.p-service-arrow-wrap {
  display: flex;
  gap: 80px;
  justify-content: space-around;
}
@media only screen and (max-width: 560px) {
  .p-service-arrow-wrap {
    gap: 50px;
  }
}
@media only screen and (max-width: 560px) {
  .p-service-arrow-wrap {
    flex-direction: column;
  }
}
.p-service-arrow-wrap > * {
  flex: 1;
}

.p-service-arrow-row {
  display: flex;
  gap: 0;
}
.p-service-arrow-row__item {
  position: relative;
  flex: 1;
  background-color: #ECEFF1;
  padding: 20px 30px;
}
@media only screen and (max-width: 560px) {
  .p-service-arrow-row__item {
    padding: 15px 15px;
  }
}
.p-service-arrow-row__item::after {
  font-family: "Material Symbols Outlined";
  content: "\e5c8";
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  color: #4D4D4D;
  font-size: 43px;
  font-weight: bold;
  line-height: 1;
  z-index: 1;
}
@media only screen and (max-width: 560px) {
  .p-service-arrow-row__item::after {
    right: -15px;
    transform: translateY(-40%);
    font-size: 26px;
  }
}
.p-service-arrow-row__item:last-child {
  background-color: #FEEFB1;
  color: #EB7915;
}
.p-service-arrow-row__item:last-child::after {
  content: none;
}

.p-foot-contact-btn {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding-top: 50px;
}
@media only screen and (max-width: 560px) {
  .p-foot-contact-btn {
    padding-top: 13.3333333333vw;
    flex-direction: column;
  }
}
.p-foot-contact-btn > * {
  flex-basis: 415px;
  max-width: 100%;
}
@media only screen and (max-width: 560px) {
  .p-foot-contact-btn > * {
    flex-basis: auto;
  }
}
.p-foot-contact-btn__copy {
  font-size: 14px;
  text-align: center;
  line-height: 1.65;
  margin-top: 1.25em;
}

.p-foot-contact {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
}
.p-foot-contact .-icon {
  aspect-ratio: 23/29;
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
}
.p-foot-contact .-num {
  text-decoration: none;
  line-height: 1;
  font-size: clamp(1.5rem, 1.273rem + 1.14vw, 2.125rem);
  font-weight: bold;
}
@media only screen and (max-width: 560px) {
  .p-foot-contact .-num {
    text-decoration: underline;
  }
}
.p-foot-contact .-info {
  margin-left: 1em;
  font-size: 14px;
}
@media only screen and (max-width: 560px) {
  .p-foot-contact .-info {
    width: 100%;
    text-align: center;
  }
}

.p-footer {
  background-color: #4D4D4D;
  color: #fff;
  font-size: 12px;
}
.p-footer__inner {
  display: flex;
  gap: 3%;
  width: 1400px;
  margin: 0 auto;
  max-width: calc(100% - 20px);
  padding: 50px 0;
}
.p-footer__inner ~ .p-footer__inner {
  padding-top: 0;
}
@media only screen and (max-width: 1200px) {
  .p-footer__inner {
    padding: 50px 20px;
  }
}
@media only screen and (max-width: 960px) {
  .p-footer__inner {
    padding: 30px 15px;
  }
}
@media only screen and (max-width: 560px) {
  .p-footer__inner {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 10.6666666667vw 5.3333333333vw;
    gap: 20px;
  }
}
.p-footer__head {
  flex-basis: 25%;
}
@media only screen and (max-width: 560px) {
  .p-footer__head {
    text-align: center;
  }
}
.p-footer__body {
  flex-basis: 75%;
}
.p-footer__logo a {
  display: block;
}
.p-footer__logo img {
  aspect-ratio: 145/44;
  height: auto;
}
.p-footer__info {
  margin-top: 1em;
}
.p-footer__copy {
  font-size: 12px;
}
@media only screen and (max-width: 560px) {
  .p-footer__copy {
    font-size: 10px;
  }
}
.p-footer__row {
  display: flex;
  gap: 3%;
}
@media only screen and (max-width: 560px) {
  .p-footer__row {
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: column;
  }
}
.p-footer a {
  color: #fff !important;
  text-decoration: none;
}
.p-footer a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.p-footer .-heading {
  font-weight: bold;
  margin-bottom: 1em;
}
.p-footer__list {
  list-style: none;
  padding-left: 0;
}
@media only screen and (max-width: 560px) {
  .p-footer__list {
    display: flex;
    gap: 0.5em 1.5em;
    flex-wrap: wrap;
  }
}
.p-footer__list > li {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 560px) {
  .p-footer__list > li {
    width: calc(50% - 0.75em);
  }
}
.p-footer__list > li::before {
  content: "•";
  margin-right: 0.5em;
  font-size: 1.2em;
  color: #fff;
  line-height: 1.5;
}
.p-footer__sublink {
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
}
@media only screen and (max-width: 560px) {
  .p-footer__sublink {
    gap: 10px 1.5em;
    justify-content: center;
  }
}
.p-footer__sublink > a {
  padding-right: 1.5em;
  position: relative;
}
.p-footer__sublink > a::after {
  content: "|";
  position: absolute;
  top: 0;
  right: 0;
}
.p-footer__sublink > a.-last::after {
  content: none;
}

.u-br-sp {
  display: none;
}
@media only screen and (max-width: 560px) {
  .u-br-sp {
    display: inline-block;
  }
}

.u-br-tab {
  display: none;
}
@media only screen and (max-width: 960px) {
  .u-br-tab {
    display: inline-block;
  }
}
@media only screen and (max-width: 560px) {
  .u-br-tab--only {
    display: none;
  }
}
.u-br-tab--up {
  display: inline-block;
}
@media only screen and (max-width: 560px) {
  .u-br-tab--up {
    display: none;
  }
}

@media only screen and (max-width: 960px) {
  .u-br-pc {
    display: none;
  }
}

.sp-only {
  display: none !important;
}
@media only screen and (max-width: 560px) {
  .sp-only {
    display: block !important;
  }
}

@media only screen and (max-width: 560px) {
  .pc-only {
    display: none !important;
  }
}

.u-bold {
  font-weight: bold;
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-nm {
  margin: 0 !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mtem {
  margin-top: 1em !important;
}

.u-mt5 {
  margin-top: 5px !important;
}
@media only screen and (max-width: 560px) {
  .u-mt5 {
    margin-top: 1.3333333333vw !important;
  }
}

.u-mt10 {
  margin-top: 10px !important;
}
@media only screen and (max-width: 560px) {
  .u-mt10 {
    margin-top: 2.6666666667vw !important;
  }
}

.u-mt20 {
  margin-top: 20px !important;
}
@media only screen and (max-width: 560px) {
  .u-mt20 {
    margin-top: 5.3333333333vw !important;
  }
}

.u-mt30 {
  margin-top: 30px !important;
}
@media only screen and (max-width: 560px) {
  .u-mt30 {
    margin-top: 8vw !important;
  }
}

.u-mt40 {
  margin-top: 40px !important;
}
@media only screen and (max-width: 560px) {
  .u-mt40 {
    margin-top: 10.6666666667vw !important;
  }
}

.u-mt50 {
  margin-top: 50px !important;
}
@media only screen and (max-width: 560px) {
  .u-mt50 {
    margin-top: 13.3333333333vw !important;
  }
}

.u-mtb10 {
  margin: 10px 0 !important;
}
@media only screen and (max-width: 560px) {
  .u-mtb10 {
    margin: 2.6666666667vw 0 !important;
  }
}

.u-mtb20 {
  margin: 20px 0 !important;
}
@media only screen and (max-width: 560px) {
  .u-mtb20 {
    margin: 5.3333333333vw 0 !important;
  }
}

.u-mtb30 {
  margin: 30px 0 !important;
}
@media only screen and (max-width: 560px) {
  .u-mtb30 {
    margin: 8vw 0 !important;
  }
}

.u-mbem {
  margin-bottom: 1em !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}
@media only screen and (max-width: 560px) {
  .u-mb5 {
    margin-bottom: 1.3333333333vw !important;
  }
}

.u-mb10 {
  margin-bottom: 10px !important;
}
@media only screen and (max-width: 560px) {
  .u-mb10 {
    margin-bottom: 2.6666666667vw !important;
  }
}

.u-mb15 {
  margin-bottom: 15px !important;
}
@media only screen and (max-width: 560px) {
  .u-mb15 {
    margin-bottom: 4vw !important;
  }
}

.u-mt15 {
  margin-top: 15px !important;
}
@media only screen and (max-width: 560px) {
  .u-mt15 {
    margin-top: 4vw !important;
  }
}

.u-mb20 {
  margin-bottom: 20px !important;
}
@media only screen and (max-width: 560px) {
  .u-mb20 {
    margin-bottom: 5.3333333333vw !important;
  }
}

.u-mb25 {
  margin-bottom: 25px !important;
}
@media only screen and (max-width: 560px) {
  .u-mb25 {
    margin-bottom: 6.6666666667vw !important;
  }
}

.u-mt25 {
  margin-top: 25px !important;
}
@media only screen and (max-width: 560px) {
  .u-mt25 {
    margin-top: 6.6666666667vw !important;
  }
}

.u-mb30 {
  margin-bottom: 30px !important;
}
@media only screen and (max-width: 560px) {
  .u-mb30 {
    margin-bottom: 8vw !important;
  }
}

.u-mb35 {
  margin-bottom: 35px !important;
}
@media only screen and (max-width: 560px) {
  .u-mb35 {
    margin-bottom: 9.3333333333vw !important;
  }
}

.u-mb40 {
  margin-bottom: 40px !important;
}
@media only screen and (max-width: 560px) {
  .u-mb40 {
    margin-bottom: 10.6666666667vw !important;
  }
}

.u-mb50 {
  margin-bottom: 50px !important;
}
@media only screen and (max-width: 560px) {
  .u-mb50 {
    margin-bottom: 13.3333333333vw !important;
  }
}

.u-mb60 {
  margin-bottom: 60px !important;
}
@media only screen and (max-width: 560px) {
  .u-mb60 {
    margin-bottom: 16vw !important;
  }
}

.u-ml15 {
  margin-left: 15px !important;
}
@media only screen and (max-width: 560px) {
  .u-ml15 {
    margin-left: 4vw !important;
  }
}

@media only screen and (max-width: 560px) {
  .u-mb15-sm {
    margin-bottom: 4vw !important;
  }
}

@media only screen and (max-width: 560px) {
  .u-mb30-sm {
    margin-bottom: 8vw !important;
  }
}

@media only screen and (max-width: 560px) {
  .u-mt30-sm {
    margin-top: 8vw !important;
  }
}

.u-width5 {
  width: 5% !important;
}

.u-width10 {
  width: 10% !important;
}

.u-width13 {
  width: 13% !important;
}

.u-width15 {
  width: 15% !important;
}

.u-width18 {
  width: 18% !important;
}

.u-width20 {
  width: 20% !important;
}

.u-width25 {
  width: 25% !important;
}

.u-width30 {
  width: 30% !important;
}

.u-width35 {
  width: 35% !important;
}

.u-width33 {
  width: 33% !important;
}

.u-width40 {
  width: 40% !important;
}

.u-width45 {
  width: 45% !important;
}

.u-width50 {
  width: 50% !important;
}

.u-width55 {
  width: 55% !important;
}

.u-width60 {
  width: 60% !important;
}

.u-width65 {
  width: 65% !important;
}

.u-width70 {
  width: 70% !important;
}

.u-width75 {
  width: 75% !important;
}

.u-width80 {
  width: 80% !important;
}

.u-width85 {
  width: 85% !important;
}

.u-width90 {
  width: 90% !important;
}

.u-width95 {
  width: 95% !important;
}

.u-width100 {
  width: 100% !important;
}