@charset "UTF-8";
.background-color--blue-light {
  background-color: #EFF9FF;
}

.background-color--green-light {
  background-color: #FAFFFC;
}

.background-color--blue {
  background-color: #009EFF;
}

.background-color--yellow-light {
  background-color: #FFFDF6;
}

.background-color--yellow {
  background-color: #FCBF02;
}

.background-color--orange {
  background-color: #FF5A10;
}

.background-color--orange-pink {
  background-color: #FF8767;
}

.color--blue {
  color: #009EFF;
}

.border-color--blue {
  border-color: #009EFF !important;
}

.border-color--green {
  border-color: #00C752 !important;
}

.border-color--yellow {
  border-color: #FCBF02 !important;
}

.border-color--orange-pink {
  border-color: #FF8767 !important;
}

p {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 1rem;
  }
}

h1 {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.3rem;
  }
}

.font-weight-700 {
  font-weight: 700 !important;
}

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

.g-section {
  max-width: 90rem;
  margin: auto;
  margin-bottom: 10rem;
  padding: 1rem;
}
.margin-auto {
  margin: auto;
}

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

.margin-top-3rem {
  margin-top: 3rem;
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.pulsate {
  animation: pulsate 1.5s infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.c-card-top-blog {
  border-radius: 1.125rem;
  -webkit-box-shadow: 0.5rem 0.5rem 3.25rem rgba(0, 0, 0, 0.07);
  box-shadow: 0.5rem 0.5rem 3.25rem rgba(0, 0, 0, 0.07);
  max-width: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-card-top-blog {
    width: 340px;
    margin: 0 auto;
  }
}

.c-card-blog__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 300/200;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.125rem 1.125rem 0 0;
}

.c-card-blog__body {
  background-color: #fff;
  padding: 2.125rem 1.5rem 1.6875rem;
  border-radius: 0 0 1.125rem 1.125rem;
}

.c-card-blog__meta {
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-card-blog__date {
  font-size: 1rem;
}

.c-card-blog__category {
  padding: 0.2rem 0.5rem;
  color: #FF5A10;
  border: 1px solid #FF5A10;
  border-radius: 100vh;
  font-size: 1.125rem;
  font-weight: 600;
}

.c-card-blog__title {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.375;
}

.c-card-blog__contents {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.c-btn {
  padding: 0.875rem 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.375;
  border-radius: 3.125rem;
  border: 1px solid #009EFF;
}
@media screen and (max-width: 1024px) {
  .c-btn {
    font-size: 1.25rem;
    font-weight: 500;
    padding: 14px 36px;
  }
}

.c-btn--white {
  color: #009EFF;
}

.c-btn--orange {
  background-color: #FF5A10;
  color: #fff;
  border: none;
}

.c-btn--blue {
  background-color: #009EFF;
  color: #fff;
  border: none;
}

.c-btn--yellow {
  background-color: #FCBF02;
  color: #fff;
  border: none;
}

.c-btn--green {
  background-color: #00C752;
  color: #fff;
  border: none;
}

.c-btn--white-green {
  border: 1px solid #00C752;
  color: #00C752;
}

.c-card-feature {
  background-color: #fff;
  border-radius: 1rem;
  height: 18.75rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  box-shadow: 0 0.25rem 1.875rem rgba(149, 149, 149, 0.2);
}
@media screen and (max-width: 767px) {
  .c-card-feature {
    flex-direction: row;
    height: 6.75rem;
    gap: 1.25rem;
    padding: 1.5rem;
    justify-content: flex-start;
  }
}

.c-card-feature:nth-child(3n-2) {
  border-top: 5px solid #009EFF;
}
@media screen and (max-width: 767px) {
  .c-card-feature:nth-child(3n-2) {
    border-top: none;
    border-left: 5px solid #009EFF;
  }
}

.c-card-feature:nth-child(3n-1) {
  border-top: 5px solid #FF7A64;
}
@media screen and (max-width: 767px) {
  .c-card-feature:nth-child(3n-1) {
    border-top: none;
    border-left: 5px solid #FF7A64;
  }
}

.c-card-feature:nth-child(3n) {
  border-top: 5px solid #FCBF02;
}
@media screen and (max-width: 767px) {
  .c-card-feature:nth-child(3n) {
    border-top: none;
    border-left: 5px solid #FCBF02;
  }
}

.c-card-feature__img {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .c-card-feature__img {
    width: 3.75rem;
  }
}

.c-card-feature__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card-feature__title {
  font-size: 1.375rem;
  line-height: 1.3636363636;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-card-feature__title {
    font-size: 1.125rem;
    text-align: left;
  }
}

.c-card-flow {
  display: flex;
  align-items: center;
  height: 37.5625rem;
  border-radius: 1.25rem;
  box-shadow: 0.5rem 0.5rem 3.125rem rgba(31, 31, 31, 0.07);
  counter-increment: num;
}
@media screen and (max-width: 767px) {
  .c-card-flow {
    flex-direction: column-reverse;
    height: auto;
  }
}

.c-card-flow__body {
  width: 57.0714285714%;
  height: 100%;
  background-color: #fff;
  border-radius: 1.25rem 0 0 1.25rem;
  padding: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-card-flow__body {
    width: 100%;
    border-radius: 0 0 1.25rem 1.25rem;
    padding: 1.875rem 0.8125rem 2.5rem;
    position: relative;
    border-top: 5px solid #FF5A10;
  }
}

@media screen and (max-width: 767px) {
  .c-card-flow__body--blue {
    border-top: 5px solid #009EFF;
  }
}

@media screen and (max-width: 767px) {
  .c-card-flow__body--yellow {
    border-top: 5px solid #FCBF02;
  }
}

@media screen and (max-width: 767px) {
  .c-card-flow__body--green {
    border-top: 5px solid #00C752;
  }
}

.c-card-flow__label {
  color: #fff;
  width: 11.3125rem;
  height: 3.75rem;
  background-color: #FF5A10;
  padding: 0.5rem 2.6875rem;
  font-weight: bold;
  font-size: 1.9375rem;
  border-radius: 6.25rem;
}
@media screen and (max-width: 767px) {
  .c-card-flow__label {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    width: 6.0625rem;
    height: 2rem;
    padding: 0.25rem 1.4375rem;
    font-size: 0.9375rem;
  }
}

.c-card-flow__label--blue {
  background-color: #009EFF;
}

.c-card-flow__label--yellow {
  background-color: #FCBF02;
}

.c-card-flow__label--green {
  background-color: #00C752;
}

.c-card-flow__label::before {
  content: "Step";
}

.c-card-flow__label::after {
  content: counter(num);
}

.c-card-flow__title {
  margin-top: 6.875rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.35;
  color: #FF5A10;
}
@media screen and (max-width: 767px) {
  .c-card-flow__title {
    margin-top: 0;
    font-size: 1.375rem;
  }
}

.c-card-flow__title--blue {
  color: #009EFF;
}

.c-card-flow__title--yellow {
  color: #FCBF02;
}

.c-card-flow__title--green {
  color: #00C752;
}

.c-card-flow__text {
  margin-top: 2.375rem;
  font-size: 2.125rem;
  line-height: 1.3529411765;
}
@media screen and (max-width: 767px) {
  .c-card-flow__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.c-card-flow__img {
  width: 42.9285714286%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .c-card-flow__img {
    width: 100%;
  }
}

.c-card-flow__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 1.25rem 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .c-card-flow__img img {
    aspect-ratio: 345/254;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.c-card-greeting {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .c-card-greeting {
    flex-direction: column;
    align-items: center;
  }
}

.c-card-greeting__body {
  width: 37.1875rem;
  flex-shrink: 0;
  background-color: #fff;
  padding: 5rem 3.75rem;
  border-radius: 1.25rem;
  border: 1px solid #E9F5FF;
  box-shadow: 0 0.25rem 1.875rem rgba(149, 149, 149, 0.2);
}
@media screen and (max-width: 767px) {
  .c-card-greeting__body {
    display: contents;
  }
}

.c-card-greeting__type {
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 1.3695652174;
}
@media screen and (max-width: 767px) {
  .c-card-greeting__type {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
  }
}

.c-card-greeting__name {
  margin-top: 1.5rem;
  font-size: 2.375rem;
  font-weight: bold;
  line-height: 1.3684210526;
  color: #009EFF;
}
@media screen and (max-width: 767px) {
  .c-card-greeting__name {
    margin-top: 0.3125rem;
    font-size: 1.5rem;
    text-align: center;
  }
}

.c-card-greeting__text-box {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-card-greeting__text-box {
    order: 3;
    margin-top: 1.4375rem;
  }
}

.c-card-greeting__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.375;
  color: #FF5A10;
}
@media screen and (max-width: 767px) {
  .c-card-greeting__title {
    font-size: 1.125rem;
    text-align: center;
  }
}

.c-card-greeting__text {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .c-card-greeting__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.c-card-greeting__img {
  width: 73.3125rem;
  margin-right: -17.25rem;
}
@media screen and (max-width: 767px) {
  .c-card-greeting__img {
    width: 100%;
    max-width: 25rem;
    margin-right: 0;
    margin-inline: auto;
    order: 2;
  }
}

.c-card-info {
  padding: 3rem 3rem 2.625rem;
  background-color: #fff;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  box-shadow: 0 0.25rem 1.875rem rgba(149, 149, 149, 0.2);
}
@media screen and (max-width: 767px) {
  .c-card-info {
    padding: 1.5rem;
    flex-direction: row;
    gap: 1.25rem;
    justify-content: flex-start;
  }
}

.c-card-info:nth-child(3n-2) {
  border-top: 5px solid #009EFF;
}
@media screen and (max-width: 767px) {
  .c-card-info:nth-child(3n-2) {
    border-top: none;
    border-left: 5px solid #009EFF;
  }
}

.c-card-info:nth-child(3n-1) {
  border-top: 5px solid #FF5A10;
}
@media screen and (max-width: 767px) {
  .c-card-info:nth-child(3n-1) {
    border-top: none;
    border-left: 5px solid #FF5A10;
  }
}

.c-card-info:nth-child(3n) {
  border-top: 5px solid #FCBF02;
}
@media screen and (max-width: 767px) {
  .c-card-info:nth-child(3n) {
    border-top: none;
    border-left: 5px solid #FCBF02;
  }
}

.c-card-info__icon {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .c-card-info__icon {
    width: 3.75rem;
  }
}

.c-card-info__title {
  font-size: 1.375rem;
  line-height: 1.3636363636;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .c-card-info__title {
    font-size: 1.125rem;
  }
}

.c-card-offer-point {
  padding: 3.125rem 3.125rem 4.5625rem;
  background-color: #fff;
  border-top: 0.625rem solid #FF5A10;
  border-radius: 1.25rem;
  box-shadow: 0.5rem 0.5rem 3.125rem rgba(31, 31, 31, 0.07);
}
@media screen and (max-width: 767px) {
  .c-card-offer-point {
    padding: 2rem 1.5rem;
  }
}

.c-card-offer-point__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.35;
  color: #FF5A10;
}

.c-card-offer-point__wrap {
  margin-top: 2.5rem;
  display: flex;
  gap: 5.4375rem;
}
@media screen and (max-width: 767px) {
  .c-card-offer-point__wrap {
    margin-top: 1.5rem;
    flex-direction: column;
    gap: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .c-card-offer-point__wrap--fufkuri {
    gap: 1.25rem;
  }
}

.c-card-offer-point__list {
  width: 50%;
  font-size: 1.75rem;
  line-height: 1.3571428571;
  padding-right: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .c-card-offer-point__list {
    width: 100%;
    font-size: 1.3125rem;
    padding-right: 0;
  }
}

.c-card-offer-point__list-title {
  display: block;
}

.c-card-offer-point__list-title:nth-of-type(n+2) {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .c-card-offer-point__list-title:nth-of-type(n+2) {
    margin-top: 1.25rem;
  }
}

.c-card-offer-point__item {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-card-offer-point__item {
    gap: 0.625rem;
    font-size: 1.125rem;
  }
}

.c-card-offer-point__item::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../images/icon_point.svg) no-repeat center/cover;
  margin-top: 0.3em;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .c-card-offer-point__item::before {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.c-card-offer-point__item:nth-of-type(1) {
  margin-top: 1.6875rem;
}

@media screen and (max-width: 767px) {
  .c-card-offer-point__item.c-card-offer-point__item--fukuri:nth-of-type(1) {
    margin-top: 0;
  }
}

.c-card-offer-point__item:nth-of-type(n+2) {
  margin-top: 1.125rem;
}

@media screen and (max-width: 767px) {
  .c-card-offer-point__item--fukuri {
    margin-top: 0;
  }
}

.c-card-parking {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-card-parking {
    flex-direction: column-reverse;
    gap: 1.25rem;
  }
}

.c-card-parking__name {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3666666667;
}
@media screen and (max-width: 767px) {
  .c-card-parking__name {
    font-size: 1.5rem;
  }
}

.c-card-parking__time {
  margin-top: 0.875rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .c-card-parking__time {
    font-size: 1.375rem;
  }
}

.c-card-parking__price {
  margin-top: 0.875rem;
  font-size: 1.125rem;
  line-height: 1.3888888889;
}
@media screen and (max-width: 767px) {
  .c-card-parking__price {
    font-size: 1rem;
  }
}

.c-card-parking__img img {
  aspect-ratio: 649/377;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
}

.c-card-point {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-card-point {
    flex-direction: column-reverse;
    justify-content: flex-start;
    gap: 1.875rem;
    padding-bottom: 3.75rem;
    border-bottom: 1px solid #CDCDCD;
  }
}

.c-card-point:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.c-card-point__body {
  width: 40.8571428571%;
}
@media screen and (max-width: 767px) {
  .c-card-point__body {
    width: 100%;
  }
}

.c-card-point__title {
  font-size: 2.375rem;
  font-weight: bold;
  line-height: 1.3684210526;
  color: #FF5A10;
}
@media screen and (max-width: 767px) {
  .c-card-point__title {
    font-size: 1.6875rem;
    text-align: center;
  }
}

.c-card-point__text {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  .c-card-point__text {
    font-size: 1rem;
    text-align: center;
    letter-spacing: -0.05em;
  }
}

.c-card-point__img {
  width: 49.2857142857%;
}
@media screen and (max-width: 767px) {
  .c-card-point__img {
    width: 100%;
  }
}

.c-card-point__img img {
  aspect-ratio: 69/40;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
}

.c-card-program {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .c-card-program {
    gap: 1.875rem;
  }
}

.c-card-program__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.375;
  color: #FF5A10;
  text-align: center;
}

.c-card-program__text {
  margin-top: 1.875rem;
  line-height: 1.75;
  text-align: center;
}

.c-card-result {
  padding: 1.875rem;
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0.625rem 0.625rem 3.75rem rgba(0, 0, 0, 0.07);
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-card-result {
    padding: 0 0 2.5rem;
    border-radius: 0;
    box-shadow: none;
  }
}

.c-card-result--flex {
  display: flex;
  align-items: flex-start;
  gap: 6.25rem;
  padding: 1.875rem 7.875rem 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-card-result--flex {
    flex-direction: column;
    padding: 0;
    gap: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .c-card-result:last-child {
    padding: 0;
  }
}

.c-card-result::after {
  content: "";
  width: 87.7%;
  height: 2px;
  background-color: #EBF2F4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.c-card-result--flex::after {
  display: none;
}

.c-card-result:last-child::after {
  display: none;
}

.c-card-result__img-box {
  display: flex;
  gap: 0.1875rem;
  position: relative;
}

.c-card-result__img-box--flex {
  width: 40.192926045%;
}
@media screen and (max-width: 767px) {
  .c-card-result__img-box--flex {
    width: 100%;
  }
}

.c-card-result__img {
  position: relative;
  width: 100%;
}

.c-card-result__img img {
  aspect-ratio: 195/340;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card-result__img--flex img {
  aspect-ratio: 248/500;
}

.c-card-result__img-text {
  width: 4.375rem;
  height: 1.75rem;
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 31.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  position: absolute;
  bottom: 1.5rem;
}

.c-card-result__img-text--before {
  left: 1.5rem;
}

.c-card-result__img-text--after {
  right: 1.5rem;
}

.c-card-result__result {
  height: 2.9375rem;
  padding: 0 1.0625rem;
  background-color: #FF5A10;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.2857142857;
  border-radius: 62.5rem;
  position: absolute;
  left: 50%;
  bottom: 5rem;
  transform: translateX(-50%);
}

.c-card-result__body {
  padding: 1.875rem 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .c-card-result__body {
    max-width: 28.125rem;
    margin-inline: auto;
  }
}

.c-card-result__body--flex {
  padding: 0;
  width: 51.768488746%;
}
@media screen and (max-width: 767px) {
  .c-card-result__body--flex {
    width: 100%;
    padding: 0 1.5rem;
  }
}

.c-card-result__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-card-result__head--flex {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-card-result__head--flex {
    flex-direction: row;
    justify-content: space-between;
  }
}

.c-card-result__num {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.3571428571;
  color: #FF5A10;
}

.c-card-result__num--flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.3611111111;
  color: #fff;
  padding: 0.375rem 1rem;
  border-radius: 0.625rem;
  background-color: #FF5A10;
}
@media screen and (max-width: 767px) {
  .c-card-result__num--flex {
    padding: 0;
    background-color: transparent;
    color: #FF5A10;
    font-size: 1.75rem;
  }
}

.c-card-result__meta {
  padding: 0.3125rem 0.875rem;
  line-height: 1.375;
  font-weight: bold;
  background-color: #FFE4CF;
  border-radius: 6.25rem;
}

.c-card-result__meta--flex {
  padding: 0.375rem 1rem;
  font-size: 1.5rem;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .c-card-result__meta--flex {
    padding: 0.3125rem 0.875rem;
    font-size: 1rem;
  }
}

.c-card-result__meta span {
  font-weight: normal;
}

.c-card-result__text {
  margin-top: 1.0625rem;
  line-height: 1.625;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-card-result__text--flex {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-card-result__text--flex {
    margin-top: 1.25rem;
  }
}

.c-card-result__text.expanded {
  display: block;
}

.c-card-result__btn {
  margin-top: 1.0625rem;
  line-height: 1.2941176471;
  color: #787878;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.c-card-result__btn::after {
  content: "";
  width: 0.8125rem;
  height: 0.5rem;
  background: url(../images/icon_arrow.svg) no-repeat center/cover;
  transition: 0.3s;
}

.c-card-result__btn.active:after {
  transform: rotate(180deg);
}

.c-card-result__table {
  margin-top: 1.4375rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.c-card-result__table--flex {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-card-result__table--flex {
    margin-top: 1.4375rem;
  }
}

.c-card-result__table-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.c-card-result__table-box--flex {
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-card-result__table-box--flex {
    gap: 1.5rem;
  }
}

.c-card-result__table-box dt {
  width: 4rem;
  font-weight: bold;
  line-height: 1.375;
}

.c-card-result__table-box--flex dt {
  width: 6rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-card-result__table-box--flex dt {
    width: 4rem;
    font-size: 1rem;
  }
}

.c-card-result__table-box dd {
  flex-grow: 1;
  display: flex;
  gap: 0.625rem;
}

.c-card-result__table-box--flex dd {
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-card-result__table-box--flex dd {
    gap: 0.625rem;
  }
}

.c-card-result__table-box dd span {
  padding: 0.3125rem 0.625rem;
  background-color: #EBF2F4;
  border-radius: 0.625rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.375;
}

.c-card-result__table-box--flex dd span {
  padding: 0.625rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-card-result__table-box--flex dd span {
    padding: 0.3125rem 0.625rem;
    font-size: 1rem;
  }
}

.c-card-result__table-box dd span.bold {
  font-weight: 600;
}

.c-card-result02 {
  display: flex;
  gap: 6.25rem;
  padding: 1.875rem;
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0.5rem 0.5rem 3.125rem rgba(31, 31, 31, 0.07);
}

.c-card-result02__img-box {
  display: flex;
  gap: 0.25rem;
  position: relative;
}

.c-card-result02__img {
  position: relative;
}

.c-card-result02__img img {
  aspect-ratio: 195/340;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card-result02__img-text {
  width: 4.375rem;
  height: 1.75rem;
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 31.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  position: absolute;
  bottom: 1.5rem;
}

.c-card-result02__img-text--before {
  left: 1.5rem;
}

.c-card-result02__img-text--after {
  right: 1.5rem;
}

.c-card-result02__result {
  height: 2.9375rem;
  padding: 0 1.0625rem;
  background-color: #FF5A10;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.2857142857;
  border-radius: 62.5rem;
  position: absolute;
  left: 50%;
  bottom: 5rem;
  transform: translateX(-50%);
}

.c-card-result02__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.3611111111;
  color: #fff;
  padding: 0.375rem 1rem;
  border-radius: 0.625rem;
  background-color: #FF5A10;
}

.c-card-staff {
  border-radius: 1.125rem;
  box-shadow: 0.5rem 0.5rem 3.25rem rgba(0, 0, 0, 0.07);
}

.c-card-staff__img img {
  aspect-ratio: 300/400;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.125rem 1.125rem 0 0;
}

.c-card-staff__body {
  background-color: #fff;
  padding: 2.125rem 1.5rem 1.6875rem;
  border-radius: 0 0 1.125rem 1.125rem;
}

.c-card-staff__name {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.375;
  color: #FF5A10;
  text-align: center;
}

.c-card-staff__name-roman {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3333333333;
  text-align: center;
}

.c-card-staff__store {
  margin-top: 0.375rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.c-card-staff__btn {
  margin-top: 2.3125rem;
}

.c-card-staff__btn--archive {
  margin-top: 0.4375rem;
}

.c-card-staff__btn a {
  width: 100%;
  height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.125rem;
  border: 2px solid #009EFF;
  font-size: 1.125rem;
  font-weight: 600;
  color: #009EFF;
}

.c-card-store {
  display: flex;
  flex-direction: column;
  border-radius: 1.125rem;
  box-shadow: 0.5625rem 0.5625rem 3.25rem rgba(0, 0, 0, 0.07);
}

@media screen and (max-width: 767px) {
  .c-card-store__inner {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5625rem;
    box-shadow: 0.5625rem 0.5625rem 3.25rem rgba(0, 0, 0, 0.07);
  }
}

.c-card-store__map {
  width: 100%;
  height: 13.875rem;
}

.c-card-store__map iframe {
  aspect-ratio: 335/222;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.125rem 1.125rem 0 0;
}

.c-card-store__body {
  background-color: #fff;
  padding: 1.375rem 0.6875rem 2.0625rem;
  border-radius: 0 0 1.125rem 1.125rem;
  position: relative;
}

.c-card-store__map-btn a {
  width: 4.625rem;
  height: 2.1875rem;
  border-radius: 6.25rem;
  border: 1px solid #00C752;
  color: #00C752;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

.c-card-store__map-btn a::before {
  content: "";
  width: 1rem;
  height: 1.5rem;
  background: url(../images/icon_map.png) no-repeat center/cover;
}

.c-card-store__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.375;
  color: #FF5A10;
}

.c-card-store__table {
  margin-top: 2.125rem;
  margin-left: 0.6875rem;
}

.c-card-store__table-box {
  display: flex;
  align-items: flex-start;
  gap: 0.5625rem;
}

.c-card-store__table-box:nth-child(n+2) {
  margin-top: 1.1875rem;
}

.c-card-store__table-box:nth-child(2) {
  margin-top: 0.8125rem;
}

.c-card-store__table-box dt {
  width: 25.3333333333%;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3333333333;
}

.c-card-store__table-box dd {
  width: 71.6666666667%;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}

.c-card-store__table-box dd.address {
  height: 6rem;
}
@media screen and (max-width: 767px) {
  .c-card-store__table-box dd.address {
    height: auto;
  }
}

.c-card-store__table-box dd span {
  font-weight: bold;
  line-height: 1.7777777778;
}

.c-card-store__table-box dd.c-card-store__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-card-store__btn {
  margin-top: 2.1875rem;
  margin-left: 0.6875rem;
}

.c-card-store__btn a {
  width: 11.375rem;
  height: 2.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #009EFF;
  color: #fff;
  border-radius: 3.125rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2.2222222222;
}

.c-card-store__btn--other a {
  background-color: #fff;
  border: 1px solid #009EFF;
  color: #051F2C;
  width: 100%;
}

.c-info-staff {
  display: flex;
  gap: 8.625rem;
}
@media screen and (max-width: 767px) {
  .c-info-staff {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.c-info-staff__img {
  width: 38.8984509466%;
}
@media screen and (max-width: 767px) {
  .c-info-staff__img {
    width: 100%;
  }
}

.c-info-staff__img img {
  aspect-ratio: 451/651;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.125rem;
}

.c-info-staff__body {
  width: 49.2254733219%;
}
@media screen and (max-width: 767px) {
  .c-info-staff__body {
    width: 100%;
    text-align: center;
  }
}

.c-info-staff__category {
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 1.3548387097;
}
@media screen and (max-width: 767px) {
  .c-info-staff__category {
    font-size: 1.5rem;
  }
}

.c-info-staff__name-wrap {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-info-staff__name-wrap {
    flex-direction: column;
  }
}

.c-info-staff__name {
  margin-top: 1.0625rem;
  font-size: 1.9375rem;
  font-weight: bold;
  line-height: 1.3548387097;
  color: #FF5A10;
}
@media screen and (max-width: 767px) {
  .c-info-staff__name {
    margin-top: 1.25rem;
    font-size: 1.5rem;
  }
}

.c-info-staff__name-roman {
  margin-top: 0.75rem;
  font-size: 1.9375rem;
  font-weight: bold;
  line-height: 1.3548387097;
  color: #FF5A10;
}
@media screen and (max-width: 767px) {
  .c-info-staff__name-roman {
    margin-top: 1.25rem;
    font-size: 1.5rem;
  }
}

.c-info-staff__icon {
  width: 5.875rem;
  height: 5.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-info-staff__icon {
    display: none;
  }
}

.c-info-staff__icon-num {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  font-weight: bold;
}

.c-info-staff__old {
  margin-top: 1.875rem;
  border-radius: 2.4375rem;
  border: 2px solid #009EFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 2.125rem;
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 1.3548387097;
}
@media screen and (max-width: 767px) {
  .c-info-staff__old {
    margin-top: 1.25rem;
    font-size: 1.5rem;
    padding: 0.8125rem 1.625rem;
  }
}

.c-info-staff__textarea {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .c-info-staff__textarea {
    margin-top: 3.75rem;
  }
}

.c-info-staff__text-title {
  font-size: 1.9375rem;
  font-weight: bold;
  line-height: 1.3548387097;
}
@media screen and (max-width: 767px) {
  .c-info-staff__text-title {
    font-size: 1.5rem;
  }
}

.c-info-staff__text {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .c-info-staff__text {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .c-info {
    box-shadow: 0.5rem 0.5rem 3.25rem rgba(0, 0, 0, 0.07);
    border-radius: 1.25rem;
  }
}

.c-info__map {
  aspect-ratio: 1400/328;
  width: 100%;
  object-fit: cover;
  box-shadow: 0.5rem 0.5rem 3.25rem rgba(0, 0, 0, 0.07);
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-info__map {
    aspect-ratio: 345/172;
    box-shadow: none;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.c-info__meta {
  margin-top: 1.25rem;
  display: flex;
  padding: 2rem 1.875rem;
  border-radius: 1.25rem;
  background-color: #fff;
  box-shadow: 0.5rem 0.5rem 3.25rem rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 767px) {
  .c-info__meta {
    margin-top: 0;
    flex-direction: column;
    gap: 1.25rem;
    border-radius: 0 0 1.25rem 1.25rem;
    padding: 1.875rem 1.5rem 1.5rem;
  }
}

.c-info__address {
  width: 29.7014925373%;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  padding-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-info__address {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 1.25rem;
  }
}

.c-info__station {
  width: 26.4179104478%;
  padding-left: 3.5625rem;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .c-info__station {
    width: 100%;
    padding-left: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 1.25rem;
  }
}

.c-info__time {
  width: 22.9850746269%;
  padding-left: 4.875rem;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .c-info__time {
    width: 100%;
    padding-left: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-bottom: 1.25rem;
  }
}

.c-info__holiday {
  width: 20.8955223881%;
  padding-left: 3.875rem;
}
@media screen and (max-width: 767px) {
  .c-info__holiday {
    width: 100%;
    padding-left: 0;
  }
}

.c-info__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: #FF5A10;
}

.c-info__text {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.c-info__text span {
  font-weight: bold;
  padding-left: 2em;
}

.c-list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-list {
    gap: 1.125rem;
  }
}

.c-list--concept {
  gap: 0;
}

.c-list__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2857142857;
}
@media screen and (max-width: 767px) {
  .c-list__item {
    font-size: 1.375rem;
    gap: 0.4375rem;
  }
}

.c-list__item--concept {
  font-size: 1.375rem;
  line-height: 1.6363636364;
}

.c-list__item::before {
  content: "";
  width: 2.875rem;
  height: 2.875rem;
}
@media screen and (max-width: 767px) {
  .c-list__item::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.c-list__item--concept::before {
  width: 1.5rem;
  height: 1.5rem;
}

.c-list__item:nth-child(1)::before {
  background: url(../images/icon_fv01.png) no-repeat center/cover;
}

.c-list__item:nth-child(2)::before {
  background: url(../images/icon_fv02.png) no-repeat center/cover;
}

.c-list__item:nth-child(3)::before {
  background: url(../images/icon_fv03.png) no-repeat center/cover;
}

.c-list__item:nth-child(4)::before {
  background: url(../images/icon_fv04.png) no-repeat center/cover;
}

.c-recruit {
  display: flex;
  gap: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .c-recruit {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.c-recruit__img {
  width: 45.5%;
}
@media screen and (max-width: 767px) {
  .c-recruit__img {
    width: 100%;
  }
}

.c-recruit__img img {
  aspect-ratio: 637/524;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-recruit__img img {
    aspect-ratio: 345/217;
  }
}

.c-recruit__body {
  width: 49.2857142857%;
}
@media screen and (max-width: 767px) {
  .c-recruit__body {
    width: 100%;
  }
}

.c-recruit__title {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.3571428571;
}
@media screen and (max-width: 767px) {
  .c-recruit__title {
    font-size: 1.5rem;
  }
}

.c-recruit__text {
  margin-top: 2.75rem;
  font-size: 1.75rem;
  line-height: 1.3571428571;
}
@media screen and (max-width: 767px) {
  .c-recruit__text {
    margin-top: 1.875rem;
    font-size: 1.125rem;
  }
}

.c-section-title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3695652174;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 1.5rem;
  }
}

.c-support {
  display: flex;
  gap: 7.0625rem;
}
@media screen and (max-width: 767px) {
  .c-support {
    flex-direction: column;
    gap: 3.75rem;
    align-items: center;
  }
}

.c-support__img {
  width: 36.4179104478%;
}
@media screen and (max-width: 767px) {
  .c-support__img {
    width: 100%;
    max-width: 17.875rem;
  }
}

.c-support__body {
  width: 51.4925373134%;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-support__body {
    margin-top: 0;
    width: 100%;
  }
}

.c-support__text {
  font-size: 1.75rem;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  .c-support__text {
    font-size: 1.125rem;
    text-align: center;
  }
}

.c-support__text a {
  font-weight: bold;
  color: #009EFF;
  text-decoration: underline;
}

.l-about {
  padding: 7.3125rem 0 13.5625rem;
}
@media screen and (max-width: 767px) {
  .l-about {
    padding: 0.6875rem 0 7.3125rem;
  }
}

.l-blog-top {
  padding: 8.75rem 0;
}

.l-bottom-cta {
  width: 100%;
}

.l-campaign {
  padding: 8.125rem 0;
}
@media screen and (max-width: 767px) {
  .l-campaign {
    padding: 5rem 0;
  }
}

.l-concept {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .l-concept {
    padding: 4rem 0 0;
  }
}

.l-cta {
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .l-cta {
    padding: 9.875rem 0 7.5625rem;
  }
}

.l-faq {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-faq {
    padding-bottom: 5rem;
  }
}

.l-feature {
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .l-feature {
    padding: 6.25rem 0 10.5625rem;
  }
}

.l-flow {
  margin-top: -2.375rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .l-flow {
    margin-top: -9.8125rem;
    padding-bottom: 0;
  }
}

.l-footer {
  padding: 3.75rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 5.375rem 0 2.875rem;
  }
}

.l-form {
  padding: 4rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-form {
    padding: 1.6875rem 0 8rem;
  }
}

@media screen and (max-width: 767px) {
  .l-fv {
    height: auto;
  }
}

.l-header {
  width: 100%;
  height: 8rem;
}
@media screen and (max-width: 1024px) {
  .l-header {
    height: 60px;
  }
}

.l-header-top-bar-holder {
  width: 100%;
  height: 8rem;
}
@media screen and (max-width: 1024px) {
  .l-header-top-bar-holder {
    height: 60px;
  }
}

.l-header-top-bar-campaign {
  height: 70px;
  background: #f3f3f3;
  background-image: url("../images/campaign-bckg.png"), linear-gradient(to right, #fff505, #f8ae4b);
  background-size: contain, cover;
  background-repeat: repeat;
}

.l-header-top-bar-campaign-image {
  height: 100%;
  text-align: center;
}

.l-header-top-bar-campaign-image img {
  max-height: 100%;
  margin: auto;
}

.l-info {
  padding: 11.125rem 0;
}
@media screen and (max-width: 767px) {
  .l-info {
    padding: 3.75rem 0 7.375rem;
  }
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.l-license {
  padding-bottom: 7rem;
}

.l-offer-point {
  padding: 10.4375rem 0 13.5rem;
}
@media screen and (max-width: 767px) {
  .l-offer-point {
    padding: 1.875rem 0 3.9375rem;
  }
}

.l-page-fv {
  padding: 15rem 0;
}
@media screen and (max-width: 767px) {
  .l-page-fv {
    padding: 7.5rem 0 13.5625rem;
  }
}

.l-page-fv--support {
  padding: 15rem 0 3.375rem;
}
@media screen and (max-width: 767px) {
  .l-page-fv--support {
    padding: 7.5rem 0 3.75rem;
  }
}

.l-page-fv--result {
  padding: 15rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-page-fv--result {
    padding: 7.5rem 0 0;
  }
}

.l-page-fv--recruit {
  padding: 15rem 0 7.0625rem;
}
@media screen and (max-width: 767px) {
  .l-page-fv--recruit {
    padding: 7.5rem 0 3.75rem;
  }
}

.l-parking {
  margin-top: -1.125rem;
}
@media screen and (max-width: 767px) {
  .l-parking {
    margin-top: -0.8125rem;
  }
}

.l-picture {
  padding: 6.4375rem 0 10.1875rem;
}
@media screen and (max-width: 767px) {
  .l-picture {
    padding: 6.4375rem 0 2.5rem;
  }
}

.l-plan {
  margin-top: -6rem;
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .l-plan {
    margin-top: -12rem;
  }
}

.l-point {
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .l-point {
    padding: 6.25rem 0 8.5rem;
  }
}

.l-program {
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .l-program {
    padding: 5rem 0 4.375rem;
  }
}

.l-represent {
  padding: 13.5rem 0 8.75rem;
  margin-top: -7.5rem;
}
@media screen and (max-width: 767px) {
  .l-represent {
    padding: 5.125rem 0 7.3125rem;
    margin-top: 0;
  }
}

.l-reservation {
  padding-bottom: 11.25rem;
}

.l-result-archive {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-result-archive {
    padding-bottom: 5rem;
  }
}

.l-result {
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .l-result {
    padding: 7rem 0 0;
  }
}

.l-single-top {
  padding: 15rem 0 4.25rem;
}
@media screen and (max-width: 767px) {
  .l-single-top {
    padding: 7.5rem 0 15.9375rem;
  }
}

.l-staff-archive {
  margin-top: -8.125rem;
  padding: 0 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .l-staff-archive {
    margin-top: -11.25rem;
    padding: 0 0 5.5rem;
  }
}

.l-staff {
  padding: 17.5rem 0 7.875rem;
}
@media screen and (max-width: 767px) {
  .l-staff {
    padding: 8.75rem 0 5.625rem;
  }
}

.l-station {
  padding: 16.75rem 0 18.625rem;
}
@media screen and (max-width: 767px) {
  .l-station {
    padding: 9.3125rem 0 9.5625rem;
    margin-top: -13.4375rem;
  }
}

.l-store {
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .l-store {
    padding: 5.625rem 0 5.5rem;
  }
}

.l-store--archive {
  margin-top: -8.125rem;
  padding: 0 0 8.75rem;
}
@media screen and (max-width: 767px) {
  .l-store--archive {
    margin-top: -11.25rem;
    padding: 0 0 5.5rem;
  }
}

.l-store--plan {
  padding-bottom: 15.9375rem;
}
@media screen and (max-width: 767px) {
  .l-store--plan {
    padding-bottom: 5.625rem;
  }
}

.l-store--flow {
  padding-bottom: 15.9375rem;
}
@media screen and (max-width: 767px) {
  .l-store--flow {
    padding-bottom: 6.25rem;
  }
}

.l-trainer {
  padding: 8.75rem 0 0;
}

.l-training {
  padding: 14.0625rem 0 10.9375rem;
}
@media screen and (max-width: 767px) {
  .l-training {
    padding: 5rem 0 13.5rem;
  }
}

.l-voice {
  padding: 8.75rem 0;
}
@media screen and (max-width: 767px) {
  .l-voice {
    padding: 8.125rem 0 4.375rem;
  }
}

.l-voice--store {
  padding-bottom: 13.9375rem;
}
@media screen and (max-width: 767px) {
  .l-voice--store {
    padding-bottom: 5.625rem;
  }
}

html {
  font-size: 100%;
}
@media (max-width: 1920px) {
  html {
    font-size: max(10px, 0.8333333333vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 393px) {
  html {
    font-size: 4.0712468193vw;
  }
}

body {
  font-family: "Noto Sans", sans-serif;
  color: #051F2C;
  background-color: #FFFEFE;
}

body.no-scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

a,
button {
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a,
  button {
    opacity: 1;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
.page-top-hero-landing {
  background-image: url("../images/top-hero-desktop.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  height: 800px;
  position: relative;
}
.page-top-hero-landing div {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: max-content;
  width: 45rem;
  margin-left: 10rem;
  text-align: center;
}
.page-top-hero-landing div a {
  margin-top: 2rem;
  width: 60%;
  height: 50px;
  font-size: 18px;
}

.page-top-hero__btn {
  margin-top: 1.5rem;
  text-align: center;
}
.page-top-hero__btn a {
  margin-top: 1.5rem;
}
.page-top-hero__btn p {
  line-height: 40px;
  font-size: 23px;
}

.p-about__inner {
  max-width: 60.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    max-width: 28.125rem;
  }
}

.p-about__box-content {
  background: linear-gradient(0deg, rgba(255, 90, 16, 0) 0%, rgb(255, 90, 16) 100%);
  border-radius: 1.5rem;
  padding: 2px;
  position: relative;
}

.p-about__box {
  background-color: #fff;
  box-shadow: 0.5rem 0.5rem 3.125rem rgba(0, 0, 0, 0.07);
  border-radius: 1.5rem;
  padding: 4.5625rem 7.375rem;
}
@media screen and (max-width: 767px) {
  .p-about__box {
    padding: 2.5rem 1.5rem;
  }
}

.p-about__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
}

.p-about__title::before {
  content: "";
  width: 4.375rem;
  height: 5.6875rem;
  background: url(../images/icon_logo.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-about__title::before {
    width: 3.0625rem;
    height: 4rem;
  }
}

.p-about__text {
  margin-top: 1.875rem;
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 1rem;
  }
}

.p-blog-top-cards {
  margin: 0 auto;
  margin-top: 5rem;
  gap: 1rem;
  width: 100%;
  max-width: 86.875rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-blog-top-cards {
    margin: 0 auto;
    margin-top: 5rem;
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}

.p-bottom-cta {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-bottom-cta {
    position: fixed;
    bottom: 0;
    z-index: 5000;
  }
}

.p-bottom-fixed-ad {
  transform: translateY(2px);
}

.p-bottom-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  height: 100%;
  background-color: #fff;
  height: 65px;
}

.p-bottom-cta__circle {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #FF5A10;
  flex-shrink: 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.05rem;
  background-color: #fff;
}

.p-bottom-cta__btn a {
  width: 12.875rem;
  height: 3.125rem;
  padding: 0;
  font-size: 1rem;
}

.p-campaign__inner {
  max-width: 87.5rem;
}

.p-campaign__content {
  display: flex;
  flex-direction: row;
  gap: 5.6rem;
  align-items: center;
  margin-top: 5.56rem;
}
@media screen and (max-width: 767px) {
  .p-campaign__content {
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    align-items: center;
    margin-top: 3rem;
  }
}

.p-campaign__image {
  max-width: 38rem;
  border-radius: 18px;
}
.p-campaign__image img {
  aspect-ratio: 1/1;
  object-fit: cover;
  height: 100%;
}

.p-campaign__body {
  max-width: 40rem;
}

.p-campaign-subtitle {
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FF5A10;
}
@media screen and (max-width: 767px) {
  .p-campaign-subtitle {
    font-weight: 700;
    font-size: 2.125rem;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
  }
}

.p-campaign__text {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: #051F2C;
  margin-top: 1.875rem;
  max-width: 37rem;
}
.p-campaign__text p {
  margin-bottom: 1.5rem;
}

.p-campaign__btn {
  margin-top: 4.56rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-campaign__btn {
    text-align: center;
  }
}

.p-card-plan {
  align-items: center;
  border-radius: 1.25rem;
  box-shadow: 0.5rem 0.5rem 3.125rem rgba(31, 31, 31, 0.07);
}

.p-card-plan:nth-child(1) {
  border-top: 0.8rem solid #00C752;
}

.p-card-plan:nth-child(2) {
  border-top: 0.8rem solid #009EFF;
}

.p-card-plan:nth-child(3) {
  border-top: 0.8rem solid #FCBF02;
}

.p-card-plan:nth-child(4) {
  border-top: 0.8rem solid #FF8767;
}

.p-card-plan__body {
  height: 100%;
  padding: 6rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-card-plan__body {
    width: 100%;
    padding: 2.5rem 1rem;
  }
}

.p-card-badge {
  border: 3px solid #fff;
  position: absolute;
  border-radius: 100%;
  height: 130px;
  width: 130px;
  text-align: center;
  align-content: center;
  top: -60px;
  left: 10rem;
  color: #fff;
}
.p-card-badge p {
  line-height: 3.3rem;
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-card-badge {
    top: -60px;
    left: 20px;
    height: 100px;
    width: 100px;
  }
  .p-card-badge p {
    line-height: 1.8rem;
    font-size: 1.3rem;
    font-weight: 600;
  }
}

.p-card-plan__stars {
  width: 12rem;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-card-plan__stars {
    width: 8rem;
  }
}

.p-card-plan__title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.15;
  color: #051F2C;
  text-align: center;
  margin-top: 1.7rem;
}
.p-card-plan__title span {
  font-size: 2.7rem;
}
@media screen and (max-width: 767px) {
  .p-card-plan__title {
    font-size: 2rem;
    line-height: 1.15;
  }
  .p-card-plan__title span {
    font-size: 1.5rem;
  }
}

.p-card-plan__text {
  margin-top: 1.875rem;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-card-plan__text {
    margin-top: 1.25rem;
    font-size: 1.2rem;
  }
}

.p-card-plan-free__text {
  margin-top: 0.8rem;
  font-size: 2.2rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  color: #FF5A10;
}
@media screen and (max-width: 767px) {
  .p-card-plan-free__text {
    margin-top: 0.5rem;
    font-size: 1.4rem;
  }
}

.p-card-plan-subtitle__title {
  text-align: center;
  margin-top: 5rem;
  font-size: 2.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-card-plan-subtitle__title {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
}

.p-card-plan-subtitle__wave {
  width: 40%;
  margin: auto;
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-card-plan-subtitle__wave {
    width: 80%;
  }
}

.p-card-plan-recommended__box-content {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-card-plan-recommended__box-content div {
  flex: 25%;
  padding: 1.5rem;
  max-width: 20rem;
}
.p-card-plan-recommended__box-content p {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-card-plan-recommended__box-content {
    margin-top: 2rem;
  }
  .p-card-plan-recommended__box-content div {
    flex: 50%;
    padding: 0.7rem;
    max-width: 12rem;
  }
  .p-card-plan-recommended__box-content p {
    text-align: center;
    margin-top: 0.8rem;
    font-size: 1.1rem;
  }
}

.p-card-plan-recommended__box-content-img img {
  border-radius: 2.5rem;
}

.p-card-plan-price__title {
  text-align: center;
  margin-top: 3rem;
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-card-plan-price__title {
    font-size: 1.8rem;
    margin-top: 3rem;
  }
}

.p-card-plan-price__offer {
  width: 350px;
  margin: auto;
  margin: 2.5rem auto 0 auto;
}
@media screen and (max-width: 767px) {
  .p-card-plan-price__offer {
    width: 100%;
    margin: 1.2rem auto 0 auto;
  }
}

.p-card-plan__price-area {
  border: solid 3px;
  border-radius: 1.25rem;
  padding: 1.3rem;
  margin: auto;
  margin-top: 2.5rem;
  width: 400px;
}
@media screen and (max-width: 767px) {
  .p-card-plan__price-area {
    width: 100%;
  }
}

.p-card-plan__course {
  font-size: 1.375rem;
  line-height: 1.3636363636;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  font-size: 2.1rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-card-plan__course {
    gap: 1.1rem;
    font-size: 1.6rem;
  }
}

.p-card-plan__course::before {
  content: "";
  width: 3rem;
  height: 2.0625rem;
  background: url(../images/icon_en.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-card-plan__course::before {
    width: 2.5625rem;
    height: 1.75rem;
  }
}

.p-card-plan__icon--blue::before {
  background: url(../images/icon_en-blue.webp) no-repeat center/cover;
}

.p-card-plan__icon--yellow::before {
  background: url(../images/icon_en-yellow.webp) no-repeat center/cover;
}

.p-card-plan__icon--green::before {
  background: url(../images/icon_en-green.webp) no-repeat center/cover;
}

.p-card-plan__icon--orange-pink::before {
  background: url(../images/icon_en-orange.webp) no-repeat center/cover;
}

.p-card-plan__sale {
  margin-top: 0.4rem;
  font-size: 1.7rem;
  text-align: center;
  font-weight: 600;
}
.p-card-plan__sale span {
  color: #FF5A10;
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .p-card-plan__sale {
    font-size: 1.25rem;
  }
  .p-card-plan__sale span {
    color: #FF5A10;
    font-size: 1.35rem;
  }
}

.p-card-plan__price {
  margin-top: 1.5rem;
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
}
.p-card-plan__price .p-card-plan__price__monthly {
  font-size: 4rem;
}
.p-card-plan__price .p-card-plan__price__tax {
  font-size: 1.8 rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-card-plan__price {
    margin-top: 1.2rem;
    font-size: 1.2rem;
  }
  .p-card-plan__price .p-card-plan__price__monthly {
    font-size: 2.5rem;
  }
  .p-card-plan__price .p-card-plan__price__tax {
    font-size: 1.1rem;
    font-weight: 300;
  }
}

.p-card-plan__price__full {
  width: 180px;
  margin: auto;
  margin-top: 1rem;
  color: #fff;
  text-align: center;
  padding: 0.4rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-card-plan__price__full {
    width: 60%;
    font-size: 0.9rem;
  }
}

.p-card-plan__disclaimer {
  text-align: center;
  font-size: 1rem;
  margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
  .p-card-plan__disclaimer {
    font-size: 0.7rem;
  }
}

.p-card-plan__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.p-card-plan__list div {
  flex: 25%;
  padding: 1.5rem;
  max-width: 20rem;
}
.p-card-plan__list p {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.p-card-plan__list img {
  max-width: 80%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-card-plan__list {
    margin-top: 2rem;
  }
  .p-card-plan__list div {
    flex: 50%;
    padding: 0.7rem;
    max-width: 10rem;
  }
  .p-card-plan__list p {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

.p-concept__inner {
  max-width: 88.125rem;
}
@media screen and (max-width: 767px) {
  .p-concept__inner {
    max-width: 28.125rem;
  }
}

.p-concept__wrap {
  display: flex;
  align-items: center;
  gap: 10.625rem;
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-concept__wrap {
    flex-direction: column-reverse;
    gap: 2.1875rem;
    margin-top: 3.75rem;
  }
}

.p-concept__body {
  width: 36.1764705882%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-concept__body {
    width: 100%;
  }
}

.p-concept__lead {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3529411765;
  color: #FF5A10;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-concept__lead {
    font-size: 2.125rem;
  }
}

.p-concept__catch {
  margin-top: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-concept__catch {
    margin-top: 0.6875rem;
    font-size: 1.625rem;
    font-weight: bold;
  }
}

.p-concept__catch span {
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-concept__catch span {
    font-size: 1.25rem;
  }
}

.p-concept__list {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-concept__list {
    margin-top: 1.5625rem;
  }
}

.p-concept__tag-list {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1875rem 0.8125rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-concept__tag-list {
    margin-top: 2.5rem;
    gap: 1.1875rem 0.625rem;
  }
}

.p-concept__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.875rem;
  height: 3.25rem;
  font-size: 1.25rem;
  background-color: #FFF3EA;
}
@media screen and (max-width: 767px) {
  .p-concept__tag {
    font-size: 1.0625rem;
  }
}

.p-concept__tag:nth-child(4n+1),
.p-concept__tag:nth-child(4n+2) {
  background-color: #FFF3EA;
}

.p-concept__tag:nth-child(4n+3),
.p-concept__tag:nth-child(4n+4) {
  background-color: #E9F5FF;
}

.p-concept__img {
  width: 51.1764705882%;
}
@media screen and (max-width: 767px) {
  .p-concept__img {
    width: 100%;
  }
}

.p-concept__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.125rem;
}

.p-company-flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}

.p-company-name {
  padding-right: 3rem;
  width: 50%;
  text-align: end;
}
@media screen and (max-width: 767px) {
  .p-company-name {
    width: 35%;
    padding-right: 1rem;
  }
}

.p-company-value {
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .p-company-value {
    font-size: 1.1rem;
  }
}

.p-cta {
  position: relative;
}

.p-cta__line {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-cta__line {
    display: block;
    position: absolute;
    top: 0;
  }
}

.p-cta__inner {
  max-width: 88.125rem;
  display: flex;
  align-items: center;
  gap: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    flex-direction: column;
    gap: 0;
    max-width: 28.125rem;
  }
}

.p-cta__img {
  width: 48.2352941176%;
}
@media screen and (max-width: 767px) {
  .p-cta__img {
    width: 100%;
  }
}

.p-cta__body {
  width: 44.8529411765%;
}
@media screen and (max-width: 767px) {
  .p-cta__body {
    width: 100%;
    margin-top: -7.6875rem;
  }
}

.p-cta__title {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    text-align: center;
  }
}

.p-cta__text {
  margin-top: 2.125rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.34375;
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    margin-top: 1.875rem;
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;
  }
}

.p-cta__list {
  margin-top: 2.125rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-cta__list {
    margin-top: 1.875rem;
    gap: 1.25rem;
  }
}

.p-cta__item {
  width: 100%;
  height: 6.25rem;
  background-color: #FFF3EA;
  display: inline-flex;
  align-items: center;
  padding: 1.875rem 1.25rem;
  border-radius: 0.875rem;
  font-size: 1.125rem;
  font-weight: 500;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-cta__item {
    padding: 1.25rem;
    height: 5rem;
    font-size: 1rem;
  }
}

.p-cta__item::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  background: url(../images/icon_question.svg) no-repeat center/contain;
  flex-shrink: 0;
}

.p-cta__caption {
  margin-top: 2.125rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-cta__caption {
    margin-top: 1.875rem;
    font-size: 1rem;
    text-align: center;
  }
}

.p-cta__btn {
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    margin-top: 1.875rem;
    text-align: center;
  }
}

.p-faq {
  position: relative;
}

.p-faq::after {
  content: "";
  width: 17.8125rem;
  height: 44.375rem;
  background: url(../images/picture_bg.png) no-repeat center/contain;
  position: absolute;
  top: 58.625rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-faq::after {
    display: none;
  }
}

.p-faq::before {
  content: "";
  width: 17.8125rem;
  height: 44.375rem;
  background: url(../images/info_bg01.png) no-repeat center/contain;
  position: absolute;
  bottom: 6.25rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-faq::before {
    display: none;
  }
}

.p-faq__inner {
  max-width: 75.875rem;
}
@media screen and (max-width: 767px) {
  .p-faq__inner {
    max-width: 28.125rem;
  }
}

.p-faq__block:nth-child(n+2) {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__block:nth-child(n+2) {
    margin-top: 3.75rem;
  }
}

.p-faq__title {
  text-align: center;
  font-size: 2.375rem;
  font-weight: bold;
  line-height: 1.3684210526;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 1.75rem;
  }
}

.p-faq__list {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    margin-top: 1.25rem;
  }
}

.p-faq__item {
  background-color: #fff;
  padding: 1.875rem;
  box-shadow: 0.5rem 0.5rem 3.125rem rgba(31, 31, 31, 0.07);
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    padding: 0.6875rem 0.875rem;
  }
}

.p-faq__item:nth-child(n+2) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item:nth-child(n+2) {
    margin-top: 1.25rem;
  }
}

.p-faq__q {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  font-size: 1.125rem;
  line-height: 1.3888888889;
  padding-right: 5.625rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    gap: 0.6875rem;
    font-size: 0.875rem;
    padding-right: 1.9375rem;
  }
}

.p-faq__q::before,
.p-faq__q::after {
  content: "";
  width: 1.5rem;
  height: 0.375rem;
  background-color: #FF5A10;
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-faq__q::before,
  .p-faq__q::after {
    width: 0.9375rem;
    height: 0.1875rem;
    right: 0.875rem;
  }
}

.p-faq__q--blue::before,
.p-faq__q--blue::after {
  background-color: #009EFF;
}

.p-faq__q--yellow::before,
.p-faq__q--yellow::after {
  background-color: #FCBF02;
}

.p-faq__q--purple::before,
.p-faq__q--purple::after {
  background-color: #AF52DE;
}

.p-faq__q--green::before,
.p-faq__q--green::after {
  background-color: #00C752;
}

.p-faq__q::before {
  transform: translateY(-50%) rotate(90deg);
}

.p-faq__q.close::before {
  transform: translateY(-50%) rotate(135deg);
}

.p-faq__q.close::after {
  transform: translateY(-50%) rotate(45deg);
}

.p-faq__q span {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #FF5A10;
  border: 1px solid #FF5A10;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-faq__q span {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.p-faq__q--blue span {
  color: #009EFF;
  border: 1px solid #009EFF;
}

.p-faq__q--yellow span {
  color: #FCBF02;
  border: 1px solid #FCBF02;
}

.p-faq__q--purple span {
  color: #AF52DE;
  border: 1px solid #AF52DE;
}

.p-faq__q--green span {
  color: #00C752;
  border: 1px solid #00C752;
}

.p-faq__a {
  display: none;
}

.p-faq__a-wrap {
  margin-top: 2.0625rem;
  display: flex;
  align-items: flex-start;
  font-size: 1.125rem;
  line-height: 1.3888888889;
  gap: 1.875rem;
  padding-right: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-faq__a-wrap {
    font-size: 0.875rem;
    gap: 0.6875rem;
    padding-right: 1.9375rem;
  }
}

.p-faq__a-wrap span {
  font-weight: bold;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #051F2C;
  border-radius: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-faq__a-wrap span {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.p-feature {
  background: linear-gradient(180deg, rgba(255, 243, 234, 0) 0%, rgba(255, 243, 234, 0.8) 22.2%, rgba(255, 243, 234, 0.8) 80.39%, rgba(255, 243, 234, 0) 100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-feature::after {
    content: "";
    width: 100%;
    height: 5.6875rem;
    background: url(../images/feature_line.png) no-repeat center/contain;
    position: absolute;
    bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-feature::before {
    content: "";
    width: 4.125rem;
    height: 3.125rem;
    background: url(../images/about_bg03.png) no-repeat center/contain;
    position: absolute;
    left: 33%;
    bottom: 2.3125rem;
  }
}

.p-feature__inner {
  max-width: 78.125rem;
}
@media screen and (max-width: 767px) {
  .p-feature__inner {
    max-width: 28.125rem;
  }
}

.p-feature__cards {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-feature__cards {
    margin-top: 4.0625rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}

.p-flow__inner {
  max-width: 90.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    max-width: 28.125rem;
  }
}

.p-flow__bg01,
.p-flow__bg02,
.p-flow__bg03,
.p-flow__bg04 {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-flow__bg01,
  .p-flow__bg02,
  .p-flow__bg03,
  .p-flow__bg04 {
    display: none;
  }
}

.p-flow__bg01 {
  width: 16.875rem;
  top: -8.375rem;
  right: 0;
  transform: translateX(90%);
}

.p-flow__bg02 {
  width: 13.6875rem;
  top: 20.75rem;
  left: 0;
  transform: translateX(-80%);
}

.p-flow__bg03 {
  width: 12.125rem;
  bottom: 12rem;
  right: 0;
  transform: translateX(75%);
}

.p-flow__bg04 {
  width: 18.75rem;
  bottom: 3.75rem;
  left: 0;
  transform: translateX(-90%);
}

.p-flow__card {
  position: relative;
}

.p-flow__card:not(:last-child)::after {
  content: "";
  width: 2.75rem;
  height: 1.625rem;
  background: url(../images/icon_arrow-orange.svg) no-repeat center/cover;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, calc(100% + 2.5rem));
}
@media screen and (max-width: 767px) {
  .p-flow__card:not(:last-child)::after {
    transform: translate(-50%, calc(100% + 1.875rem));
  }
}

.p-flow__card:nth-child(n+2) {
  margin-top: 6.625rem;
}
@media screen and (max-width: 767px) {
  .p-flow__card:nth-child(n+2) {
    margin-top: 5.375rem;
  }
}

.p-footer {
  background-color: #051F2C;
  color: #FDFDFD;
}

.p-footer__inner {
  max-width: 90.625rem;
}

.p-footer__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.p-footer__logo-area {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-area {
    align-items: center;
    gap: 3.75rem;
  }
}

.p-footer__logo {
  width: 12.5rem;
}

.p-footer__instagram {
  width: 1.9375rem;
}

.p-footer__nav {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__list {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__list:nth-child(n+2) {
    margin-top: 2.75rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__list:not(:last-child) {
    padding-bottom: 2.75rem;
    border-bottom: 1px solid #546269;
    width: 100%;
  }
}

.p-footer__list:nth-child(1) {
  width: 8.9375rem;
  margin-right: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__list:nth-child(1) {
    width: 100%;
    margin-right: 0;
  }
}

.p-footer__list:nth-child(2) {
  width: 12.0625rem;
  margin-right: 4.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__list:nth-child(2) {
    width: 100%;
    margin-right: 0;
  }
}

.p-footer__list-title {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.1666666667;
  margin-bottom: 2.5625rem;
}

.p-footer__item {
  font-weight: 500;
  line-height: 1.3125;
}

.p-footer__item:nth-child(n+2) {
  margin-top: 1.875rem;
}

.p-footer__line-area {
  width: 21.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-footer__line-area {
    width: 100%;
    gap: 1.875rem;
  }
}

.p-footer__line-img {
  width: 13.4375rem;
}

.p-footer__copyright {
  margin-top: 3.4375rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 2.625rem;
    margin-bottom: 6rem;
    text-align: center;
  }
}

.p-form__inner {
  max-width: 73.125rem;
}
@media screen and (max-width: 767px) {
  .p-form__inner {
    max-width: 28.125rem;
  }
}

.p-form__area {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-form__area {
    margin-top: 2.5rem;
  }
}

.p-form__box {
  display: flex;
  align-items: center;
  gap: 8.0625rem;
}
@media screen and (max-width: 767px) {
  .p-form__box {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.p-form__box:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__box:nth-child(n+2) {
    margin-top: 1.25rem;
  }
}

.p-form__box dt {
  width: 24.1964285714%;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3571428571;
}
@media screen and (max-width: 767px) {
  .p-form__box dt {
    width: 100%;
    font-size: 1.25rem;
  }
}

.p-form__box dt span {
  color: #FF5A10;
}

.p-form__box dd {
  width: 63.9285714286%;
}
@media screen and (max-width: 767px) {
  .p-form__box dd {
    width: 100%;
  }
}

.p-form__box dd input,
.p-form__box dd select {
  width: 100%;
  height: 5.75rem;
  border-radius: 0.9375rem;
  border: 1px solid #797979;
  font-size: 1.75rem;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form__box dd input,
  .p-form__box dd select {
    height: 3.875rem;
    font-size: 1.125rem;
    padding: 0 0.625rem;
  }
}

.p-form__gender {
  display: flex;
  gap: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .p-form__gender {
    gap: 2.5rem;
  }
}

.p-form__gender-list {
  display: flex;
  align-items: center;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-form__gender-list {
    gap: 0.5rem;
  }
}

.p-form__box dd input[type=radio] {
  position: relative;
  appearance: none;
  margin: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background-color: rgba(255, 90, 16, 0.2);
}
@media screen and (max-width: 767px) {
  .p-form__box dd input[type=radio] {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.p-form__box dd input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  background: #FF5A10;
}

.wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 3.125rem;
}

.p-form__box dd label {
  font-size: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-form__box dd label {
    font-size: 1.125rem;
  }
}

.p-form__box dd textarea {
  width: 100%;
  height: 12rem;
  border: 1px solid #797979;
  border-radius: 0.9375rem;
  font-size: 1.75rem;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form__box dd textarea {
    height: 13.5rem;
    font-size: 1.125rem;
    padding: 0.625rem;
  }
}

.p-form__btn {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__btn {
    margin-top: 1.25rem;
  }
}

.p-form__btn input {
  border: 2px solid #009EFF;
  width: 16.3125rem;
  height: 3.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 3.125rem;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-form__btn input {
    width: 21.5625rem;
    height: 2.875rem;
    font-size: 1.125rem;
  }
}

.wpcf7-spinner {
  display: none;
}

.p-fv_swiper {
  height: 100%;
}

.p-fv__content {
  position: relative;
}

.p-fv__pagination.swiper-pagination {
  bottom: 6.6875rem;
  width: auto;
  left: 16.25rem;
}
@media screen and (max-width: 767px) {
  .p-fv__pagination.swiper-pagination {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}

.p-header {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 200;
  box-shadow: 0 0.25rem 1.875rem rgba(197, 197, 197, 0.2);
}

.p-header__inner {
  height: 100%;
  padding: 0 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .p-header__inner {
    padding: 0 1.5rem;
    position: relative;
    z-index: 200;
  }
}

.p-header__logo {
  width: 16.5rem;
}
@media screen and (max-width: 1024px) {
  .p-header__logo {
    width: 200px;
    position: relative;
    z-index: 200;
  }
}

.p-header__nav-area {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .p-header__nav-area {
    height: auto;
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    overflow-y: auto;
  }
}

.p-header__nav-contents {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 1024px) {
  .p-header__nav-contents {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 37px;
  }
}

@media screen and (max-width: 1024px) {
  .p-header__nav-contents::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F2F9FF 0%, rgba(242, 249, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

.p-header__btns {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .p-header__btns {
    margin-top: 0;
    flex-direction: column;
  }
}

.p-header__instagram {
  width: 2.1875rem;
}

.p-header__nav {
  flex-grow: 1;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .p-header__nav {
    flex-grow: 0;
    margin-top: 1.5rem;
    font-size: 18px;
  }
}

.p-header__menu {
  display: flex;
  gap: 2.3rem;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .p-header__menu {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
}

.p-header__item--sub {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.p-header__item--sub::after {
  content: "";
  width: 0.625rem;
  height: 0.3125rem;
  background: url(../images/icon_arrow-blue.svg) no-repeat center/cover;
  margin-top: -0.5rem;
}
@media screen and (max-width: 1024px) {
  .p-header__item--sub::after {
    margin-top: 0;
  }
}

.p-header__item span {
  transition: 0.3s;
}

.p-header__item a:hover,
.p-header__item span:hover {
  color: #009EFF;
  opacity: 1;
}

.p-header__item.current a,
.p-header__item.current span {
  color: #009EFF;
}

.p-header__sub-list {
  display: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 7.5rem;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 6.625rem;
  box-shadow: 0 1px 0.75rem rgba(0, 0, 0, 0.09);
}
@media screen and (max-width: 1024px) {
  .p-header__sub-list {
    position: static;
    background-color: transparent;
    height: auto;
    box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    position: static;
    background-color: transparent;
    height: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.p-header__sub-item {
  padding: 0 6.25rem;
  height: 3.375rem;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-header__sub-item {
    height: auto;
    padding: 0;
  }
}

.p-header__sub-item:not(:last-child) {
  border-right: 1px solid #AEB9BC;
}
@media screen and (max-width: 1024px) {
  .p-header__sub-item:not(:last-child) {
    border-right: none;
  }
}

.p-header__toggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-header__toggle {
    display: block;
    width: 24px;
    height: 19px;
    position: relative;
  }
}

.p-header__toggle span {
  width: 100%;
  height: 3px;
  background-color: #009EFF;
  position: absolute;
  left: 0;
}

.p-header__toggle span:nth-child(1) {
  top: 0;
}

.p-header__toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.p-header__toggle span:nth-child(3) {
  bottom: 0;
}

.p-header__toggle.show span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.p-header__toggle.show span:nth-child(2) {
  opacity: 0;
}

.p-header__toggle.show span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

.p-info {
  background: linear-gradient(180deg, rgba(255, 243, 234, 0) 0%, rgba(255, 243, 234, 0.8) 22.2%, rgba(255, 243, 234, 0.8) 80.39%, rgba(255, 243, 234, 0) 100%);
  position: relative;
}

.p-info::after {
  content: "";
  width: 21.6875rem;
  height: 45.875rem;
  background: url(../images/info_bg01.png) no-repeat center/cover;
  position: absolute;
  top: -6.25rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-info::after {
    display: none;
  }
}

.p-info__inner {
  max-width: 78.125rem;
  position: relative;
}

.p-info__inner::after {
  content: "";
  width: 7.3125rem;
  height: 5.5625rem;
  background: url(../images/about_bg03.png) no-repeat center/cover;
  position: absolute;
  top: 26.875rem;
  left: 0;
  transform: translateX(calc(-100% - 8.5rem));
}
@media screen and (max-width: 767px) {
  .p-info__inner::after {
    width: 4.3125rem;
    height: 3.25rem;
    top: auto;
    bottom: 0;
    left: 34%;
    transform: translate(0, calc(100% + 5.125rem));
  }
}

.p-info__cards {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-info__cards {
    margin-top: 3.75rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.875rem;
  }
}

.p-license {
  overflow: hidden;
}

.p-license__inner {
  max-width: 90.625rem;
}

.p-license__tab-list {
  margin-top: 2.5rem;
}

.p-license__tab-wrapper {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-license__tab-wrapper {
    flex-direction: column;
  }
}

.p-license__tab {
  width: 20.9375rem;
  height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-top: 5px solid #009EFF;
  border-radius: 1.125rem;
  padding: 0 1.125rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  box-shadow: 0.5rem 0.5rem 3.25rem rgba(0, 0, 0, 0.07);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-license__tab {
    width: 100%;
    height: 5rem;
    padding: 0 1.375rem;
    font-size: 1.125rem;
    border-top: 3px solid #009EFF;
  }
}

.p-license__tab:nth-child(4n-2) {
  border-top: 5px solid #FF5A10;
}
@media screen and (max-width: 767px) {
  .p-license__tab:nth-child(4n-2) {
    border-top: 3px solid #FF5A10;
  }
}

.p-license__tab:nth-child(4n-1) {
  border-top: 5px solid #FCBF02;
}
@media screen and (max-width: 767px) {
  .p-license__tab:nth-child(4n-1) {
    border-top: 3px solid #FCBF02;
  }
}

.p-license__tab:nth-child(4n) {
  border-top: 5px solid #00C752;
}
@media screen and (max-width: 767px) {
  .p-license__tab:nth-child(4n) {
    border-top: 3px solid #00C752;
  }
}

.p-license__content {
  margin-top: 4.375rem;
  margin-right: calc(50% - 50vw);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-license__content {
    margin-top: 2.5rem;
    margin-right: 0;
  }
}

.p-license__img {
  width: auto;
  height: 33.4375rem;
  margin-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-license__img {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
}

.p-license__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

.p-license__pagination.swiper-pagination {
  bottom: 0;
  transform: translateY(68px);
}
@media screen and (max-width: 767px) {
  .p-license__pagination.swiper-pagination {
    transform: translateY(42px);
  }
}

.p-license__pagination .swiper-pagination-bullet,
.p-fv__pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: rgba(255, 90, 16, 0.2);
  margin: 0 0.9375rem !important;
}
@media screen and (max-width: 767px) {
  .p-license__pagination .swiper-pagination-bullet,
  .p-fv__pagination .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-license__pagination .swiper-pagination-bullet-active,
.p-fv__pagination .swiper-pagination-bullet-active {
  background-color: #FF5A10;
}

.p-license__prev.swiper-button-prev,
.p-license__next.swiper-button-next {
  display: flex;
  top: 50%;
  width: 2.5625rem;
  height: 2.5625rem;
  background-color: #009EFF;
  border-radius: 50%;
}

.p-license__prev.swiper-button-prev {
  left: 0;
  transform: translateX(-50%);
}

.p-license__next.swiper-button-next {
  right: 3%;
}
@media screen and (max-width: 767px) {
  .p-license__next.swiper-button-next {
    right: 0;
    transform: translateX(50%);
  }
}

.p-license__prev.swiper-button-prev::after,
.p-license__next.swiper-button-next::after {
  content: "";
  width: 0.5625rem;
  height: 1rem;
  background: url(../images/icon_arrow-white.svg) no-repeat center/cover;
}

.p-license__prev.swiper-button-prev::after {
  transform: scale(-1, 1);
}

.p-offer-point {
  background: linear-gradient(180deg, rgba(242, 249, 255, 0) 0%, #F2F9FF 9.79%, #F2F9FF 89.63%, rgba(242, 249, 255, 0) 100%);
  position: relative;
}

.p-offer-point::after {
  content: "";
  width: 17.8125rem;
  height: 44.375rem;
  background: url(../images/offer_bg.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-offer-point::after {
    display: none;
  }
}

.p-offer-point::before {
  content: "";
  width: 17.8125rem;
  height: 44.375rem;
  background: url(../images/picture_bg.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(50%);
}
@media screen and (max-width: 767px) {
  .p-offer-point::before {
    display: none;
  }
}

.p-offer-point__inner {
  max-width: 90.625rem;
}
@media screen and (max-width: 767px) {
  .p-offer-point__inner {
    max-width: 28.125rem;
  }
}

.p-offer-point__cards {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-offer-point__cards {
    margin-top: 2.5rem;
  }
}

.p-offer-point__card:nth-child(n+2) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-offer-point__card:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}

.p-page-fv {
  background: linear-gradient(179.47deg, #FFF2E7 2.96%, rgba(255, 242, 231, 0) 99.57%);
}

.p-page-fv--support {
  position: relative;
}

.p-page-fv--support::after {
  content: "";
  width: 21.6875rem;
  height: 45.875rem;
  background: url(../images/info_bg01.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-page-fv--support::after {
    display: none;
  }
}

.p-page-fv--blue {
  background: linear-gradient(179.47deg, #E9F5FF 2.96%, rgba(233, 245, 255, 0) 99.57%);
}

@media screen and (max-width: 767px) {
  .p-page-fv--each {
    background: linear-gradient(179.47deg, #E9F5FF 2.96%, rgba(233, 245, 255, 0) 99.57%);
  }
}

.p-page-fv__title {
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 1.3695652174;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-fv__title {
    font-size: 1.8125rem;
    font-weight: 800;
    white-space: nowrap;
  }
}

.p-page-fv__lead {
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 1.347826087;
  color: #FF5A10;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-fv__lead {
    font-size: 1.875rem;
  }
}

.p-page-fv__btn {
  text-align: center;
  margin-top: 1.875rem;
}

.p-page-fv__sub-title {
  margin-top: 1.875rem;
  font-size: 1.9375rem;
  font-weight: 600;
  line-height: 1.3548387097;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-fv__sub-title {
    font-size: 1.3125rem;
    font-weight: 500;
  }
}

.p-page-fv__text {
  margin-top: 1.875rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-page-fv__text {
    font-size: 1.3125rem;
  }
}

.p-page-fv__text--recruit {
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-page-fv__text--recruit {
    font-size: 1.125rem;
  }
}

.p-page-fv__support {
  max-width: 83.75rem;
  margin-inline: auto;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-page-fv__support {
    margin-top: 2.5rem;
    max-width: 28.125rem;
  }
}

.p-page-fv__result {
  margin-top: 5rem;
  max-width: 72.75rem;
  margin-inline: auto;
}

.p-page-fv__result iframe {
  aspect-ratio: 1164/633;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
}

.p-page-fv__recruit {
  max-width: 90.625rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-page-fv__recruit {
    margin: 2.5rem auto 0;
    max-width: 28.125rem;
  }
}

.p-parking {
  position: relative;
}

.p-parking::after {
  content: "";
  width: 22.75rem;
  height: 51.875rem;
  background: url(../images/parking_bg.png) no-repeat center/cover;
  position: absolute;
  top: 25rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-parking::after {
    display: none;
  }
}

.p-parking__inner {
  max-width: 90.625rem;
}
@media screen and (max-width: 767px) {
  .p-parking__inner {
    max-width: 28.125rem;
  }
}

.p-parking__cards {
  margin-top: 4.5625rem;
  display: flex;
  gap: 6.5rem;
}
@media screen and (max-width: 767px) {
  .p-parking__cards {
    margin-top: 2.5rem;
    flex-direction: column;
    gap: 3.75rem;
  }
}

.p-picture {
  position: relative;
}

.p-picture--support::after {
  content: "";
  width: 17.8125rem;
  height: 44.375rem;
  background: url(../images/picture_bg.png) no-repeat center/contain;
  position: absolute;
  top: 22.0625rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-picture--support::after {
    display: none;
  }
}

.p-picture__line {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-picture__line {
    display: block;
    position: absolute;
    top: 0;
    transform: translateY(-50%);
  }
}

.p-picture__inner {
  max-width: 90.625rem;
}

.p-picture__content {
  position: relative;
  margin-top: 5rem;
}

.p-picture__swiper {
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .p-picture__swiper {
    margin-right: 0;
  }
}

.p-picture__img img {
  aspect-ratio: 572/464;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
}

.p-picture__pagination.swiper-pagination {
  bottom: 0;
  transform: translateY(68px);
}
@media screen and (max-width: 767px) {
  .p-picture__pagination.swiper-pagination {
    transform: translateY(42px);
  }
}

.p-picture__pagination .swiper-pagination-bullet,
.p-fv__pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background-color: rgba(255, 90, 16, 0.2);
  margin: 0 0.9375rem !important;
}
@media screen and (max-width: 767px) {
  .p-picture__pagination .swiper-pagination-bullet,
  .p-fv__pagination .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-picture__pagination .swiper-pagination-bullet-active,
.p-fv__pagination .swiper-pagination-bullet-active {
  background-color: #FF5A10;
}

.p-picture__prev.swiper-button-prev,
.p-picture__next.swiper-button-next {
  display: flex;
  top: 50%;
  width: 2.5625rem;
  height: 2.5625rem;
  background-color: #009EFF;
  border-radius: 50%;
}

.p-picture__prev.swiper-button-prev {
  left: 0;
  transform: translateX(-50%);
}

.p-picture__next.swiper-button-next {
  right: -10rem;
}
@media screen and (max-width: 767px) {
  .p-picture__next.swiper-button-next {
    right: 0;
    transform: translateX(50%);
  }
}

.p-picture__prev.swiper-button-prev::after,
.p-picture__next.swiper-button-next::after {
  content: "";
  width: 0.5625rem;
  height: 1rem;
  background: url(../images/icon_arrow-white.svg) no-repeat center/cover;
}

.p-picture__prev.swiper-button-prev::after {
  transform: scale(-1, 1);
}

.p-plan__inner {
  max-width: 90.625rem;
}

@media screen and (max-width: 767px) {
  .p-plan__cards {
    margin-inline: auto;
  }
}

.p-plan__card {
  margin-top: 10.75rem;
}
@media screen and (max-width: 767px) {
  .p-plan__card {
    margin-top: 5.75rem;
  }
}

.p-plan-campaign {
  margin: auto;
  margin-bottom: 5rem;
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .p-plan-campaign {
    margin-bottom: 2rem;
    padding: 0 1.25rem;
    max-width: 80rem;
  }
}

.p-point {
  background: linear-gradient(180deg, rgba(242, 249, 255, 0) 0%, rgba(242, 249, 255, 0.9) 13.9%, rgba(242, 249, 255, 0.9) 86.19%, rgba(242, 249, 255, 0) 100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-point::after {
    content: "";
    width: 3.125rem;
    height: 5rem;
    background: url(../images/result_bk02.png) no-repeat center/contain;
    position: absolute;
    top: 0;
    right: 16%;
    transform: rotate(45deg);
  }
}

.p-point__line {
  margin-top: 3rem;
}

.p-point__inner {
  max-width: 90.625rem;
}
@media screen and (max-width: 767px) {
  .p-point__inner {
    max-width: 28.125rem;
  }
}

.p-point__cards {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-point__cards {
    margin-top: 3.75rem;
  }
}

.p-point__card:nth-child(n+2) {
  margin-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-point__card:nth-child(n+2) {
    margin-top: 3.75rem;
  }
}

.p-point__card:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-point__card:nth-child(even) {
    flex-direction: column-reverse;
  }
}

.p-point__btn {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-point__btn {
    margin-top: 1.875rem;
  }
}

.p-program {
  position: relative;
}

.p-program::after {
  content: "";
  width: 22.3125rem;
  height: 51.625rem;
  background: url(../images/program_bg.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 12.8125rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-program::after {
    display: none;
  }
}

.p-program__line {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-program__line {
    display: block;
    position: absolute;
    top: -9.375rem;
    z-index: -1;
  }
}

.p-program__inner {
  max-width: 86.875rem;
}
@media screen and (max-width: 767px) {
  .p-program__inner {
    max-width: 28.125rem;
  }
}

.p-program__text {
  margin-top: 1.875rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.34375;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-program__text {
    font-size: 1.125rem;
    font-weight: normal;
  }
}

.p-program__cards {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.9375rem;
}
@media screen and (max-width: 767px) {
  .p-program__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 3.75rem;
  }
}

.p-represent {
  background: linear-gradient(180deg, rgba(242, 249, 255, 0) 0%, #F2F9FF 29.5%, #F2F9FF 63.5%, rgba(242, 249, 255, 0) 100%);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-represent {
    background: none;
  }
}

.p-represent__inner {
  max-width: 90.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-represent__inner {
    max-width: 28.125rem;
  }
}

.p-represent__inner::after {
  content: "";
  width: 7.375rem;
  height: 5.5625rem;
  background: url(../images/about_bg03.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  bottom: 10rem;
  transform: translateX(100%);
}
@media screen and (max-width: 767px) {
  .p-represent__inner::after {
    display: none;
  }
}

.p-represent__greeting {
  overflow: hidden;
}

.p-represent__btn {
  margin-top: 5.3125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-represent__btn {
    margin-top: 3.0625rem;
  }
}

.p-reservation__inner {
  max-width: 90.625rem;
}

.p-reservation__list {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-reservation__list {
    margin-top: 2.1875rem;
    gap: 1.125rem;
  }
}

.p-reservation__item {
  width: 7.125rem;
  height: 7.125rem;
  border-radius: 50%;
  border: 2px solid #FF5A10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reservation__item {
    width: 6.375rem;
    height: 6.375rem;
    font-size: 1.25rem;
  }
}

.p-reservation__text {
  margin-top: 1.875rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.375;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reservation__text {
    margin-top: 3.125rem;
    font-size: 1.375rem;
  }
}

.p-reservation__caption {
  margin-top: 0.6875rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reservation__caption {
    margin-top: 1.5625rem;
    font-size: 1rem;
  }
}

.p-reservation__form {
  margin-top: 3.75rem;
  max-width: 75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-reservation__form {
    margin-top: 4.6875rem;
  }
}

.p-result-archive {
  position: relative;
}

.p-result-archive::after {
  content: "";
  width: 17.8125rem;
  height: 44.375rem;
  background: url(../images/picture_bg.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-80%);
}
@media screen and (max-width: 767px) {
  .p-result-archive::after {
    display: none;
  }
}

.p-result-archive::before {
  content: "";
  width: 17.8125rem;
  height: 44.375rem;
  background: url(../images/offer_bg.png) no-repeat center/contain;
  position: absolute;
  bottom: 40rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-result-archive::before {
    display: none;
  }
}

.p-result-archive__inner {
  max-width: 90.625rem;
}
@media screen and (max-width: 767px) {
  .p-result-archive__inner {
    padding: 0;
    max-width: 28.125rem;
  }
}

.p-result-archive__cards {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-result-archive__cards {
    margin-top: 2.5rem;
  }
}

.p-result-archive__card:nth-child(n+2) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-result-archive__card:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}

.p-result {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-result {
    overflow: auto;
  }
}

.p-result::before {
  content: "";
  width: 5.125rem;
  height: 6.875rem;
  background: url(../images/result_bk01.png) no-repeat center/cover;
  position: absolute;
  top: 22.9375rem;
  right: 11.3125rem;
}
@media screen and (max-width: 767px) {
  .p-result::before {
    display: none;
  }
}

.p-result::after {
  content: "";
  width: 4.375rem;
  height: 6.875rem;
  background: url(../images/result_bk02.png) no-repeat center/contain;
  position: absolute;
  bottom: 13.0625rem;
  left: 11.625rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-result::after {
    display: none;
  }
}

.p-result__back-circle {
  width: 42.3125rem;
  height: 42.3125rem;
  background-color: rgba(255, 90, 16, 0.14);
  filter: blur(274.4px);
  position: absolute;
  top: 38.1875rem;
  right: -15.3125rem;
}
@media screen and (max-width: 767px) {
  .p-result__back-circle {
    display: none;
  }
}

.p-result__back-line {
  position: absolute;
  width: 17.6875rem;
  top: 48.75rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-result__back-line {
    display: none;
  }
}

.p-result__inner {
  max-width: 63.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-result__inner {
    padding: 0;
    max-width: 28.125rem;
  }
}

.p-result__sub-title {
  margin-top: 1.875rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-result__sub-title {
    font-size: 1.3125rem;
  }
}

.p-result__youtube {
  margin-top: 5rem;
  text-align: center;
}

.p-result__youtube iframe {
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 926/504;
  height: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-result__youtube iframe {
    border-radius: 0;
  }
}

.p-result__text {
  margin-top: 7.5rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-result__text {
    margin-top: 3.75rem;
    font-size: 1.125rem;
  }
}

.p-result__cards {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-result__cards {
    margin-top: 1.875rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.p-result__btn {
  margin-top: 5rem;
  text-align: center;
}

.p-single-top {
  background: linear-gradient(179.47deg, #E9F5FF 2.96%, rgba(233, 245, 255, 0) 99.57%);
}

.p-single-top--trainer {
  background: linear-gradient(179.47deg, #FFF2E7 2.96%, rgba(255, 242, 231, 0) 99.57%);
}
@media screen and (max-width: 767px) {
  .p-single-top--trainer {
    background: linear-gradient(179.47deg, #E9F5FF 2.96%, rgba(233, 245, 255, 0) 99.57%);
  }
}

.p-single-top__inner {
  max-width: 90.625rem;
}
@media screen and (max-width: 767px) {
  .p-single-top__inner {
    max-width: 28.125rem;
  }
}

.p-single-top__inner--trainer {
  max-width: 75.75rem;
}

.p-single-top__info {
  margin-top: 3.125rem;
}

.p-slide {
  position: relative;
  background: linear-gradient(177.41deg, #F2F9FF 24.66%, rgba(242, 249, 255, 0) 97.84%);
}
@media screen and (max-width: 767px) {
  .p-slide {
    padding-bottom: 3rem;
  }
}

.p-slide--orange {
  background: linear-gradient(179.47deg, #FFF2E7 2.96%, rgba(255, 242, 231, 0) 99.57%);
  position: relative;
}

.p-slide--orange::after {
  content: "";
  width: 58.6979166667%;
  height: 100%;
  background: url(../images/fv_bg.png) no-repeat center/cover;
  position: absolute;
  right: 0;
  top: 0;
}

.p-slide__inner {
  max-width: 90.625rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.p-slide__body {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -10rem;
}

.p-slide__body--third {
  width: 50%;
}

.p-slide__title {
  font-size: 4.875rem;
  font-weight: 800;
  line-height: 1.358974359;
  color: #FF5A10;
}
@media screen and (max-width: 767px) {
  .p-slide__title {
    font-size: 1.8125rem;
    text-align: center;
    margin-top: 0.8125rem;
  }
}

.p-slide__text {
  margin-top: 3.75rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .p-slide__text {
    margin-top: 0.875rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
  }
}

.p-slide__list {
  margin-top: 1.875rem;
}

.p-slide__lead {
  margin-top: 1.875rem;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.3529411765;
}
@media screen and (max-width: 767px) {
  .p-slide__lead {
    margin-top: 0.625rem;
    font-size: 1.375rem;
    text-align: center;
  }
}

.p-slide__text--third {
  margin-top: 1.875rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.3571428571;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-slide__text--third {
    margin-top: 0.5625rem;
    font-size: 1.125rem;
    text-align: center;
  }
}

.p-slide__btn {
  margin-top: 3.75rem;
}

.p-slide__img {
  width: 46.6145833333%;
  height: 60.25rem;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-slide__img {
    width: 100%;
    height: auto;
    position: relative;
  }
}

.p-slide__img img {
  aspect-ratio: 895/964;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-slide__img img {
    aspect-ratio: 393/485;
  }
}

.p-slide__img--sec {
  width: 32.385786802%;
  right: 10.6598984772%;
  top: auto;
  bottom: 0;
  z-index: 10;
}

.p-slide__img--sec img {
  aspect-ratio: 638/938;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-slide__img--third {
  width: 50%;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-slide__img--third {
    width: 100%;
    margin-top: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-slide__img--third img {
    aspect-ratio: 393/319;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.p-slide__img::after {
  content: "";
  width: 100%;
  height: 20.25rem;
  position: absolute;
  bottom: 0;
  background: linear-gradient(359.46deg, #000000 0.63%, rgba(102, 102, 102, 0) 99.71%);
}
@media screen and (max-width: 767px) {
  .p-slide__img::after {
    height: 13.125rem;
  }
}

.p-slide__img--sec::after,
.p-slide__img--third::after {
  display: none;
}

.p-slide__catch {
  position: absolute;
  left: 50%;
  bottom: 7.4375rem;
  transform: translateX(-50%);
  font-size: 4.375rem;
  font-weight: bold;
  color: #F2F9FF;
  text-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.04);
  width: 100%;
  text-align: center;
  z-index: 1;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .p-slide__catch {
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-slide__catch {
    font-size: 3.25rem;
    line-height: 1.25;
    left: 6.125rem;
    bottom: 2.375rem;
    transform: none;
    width: fit-content;
  }
}

.p-slide__head {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FF5A10;
  font-weight: 800;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-slide__head {
    margin-top: 1.75rem;
    gap: 0.625rem;
  }
}

.p-slide__head span:first-child {
  font-size: 6.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .p-slide__head span:first-child {
    font-size: 5.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-slide__head span:first-child {
    text-align: right;
    font-size: 2.25rem;
    line-height: 1.3611111111;
  }
}

.p-slide__head span:nth-child(2) {
  font-size: 4.875rem;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .p-slide__head span:nth-child(2) {
    font-size: 4.375rem;
    line-height: 1.3571428571;
  }
}

.p-staff-archive__inner {
  max-width: 90.625rem;
}
@media screen and (max-width: 767px) {
  .p-staff-archive__inner {
    max-width: 28.125rem;
  }
}

.p-staff-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.p-staff {
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-staff::after {
    content: "";
    width: 4.375rem;
    height: 5.875rem;
    background: url(../images/trainer_bg.png) no-repeat center/contain;
    position: absolute;
    top: 0;
    right: 10%;
  }
}

.p-staff__line {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-staff__line {
    display: block;
    position: absolute;
    top: 0;
  }
}

.p-staff__inner {
  max-width: 90.625rem;
}
@media screen and (max-width: 767px) {
  .p-staff__inner {
    max-width: 28.125rem;
  }
}

.p-staff__cards {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-staff__cards {
    margin-top: 2.5rem;
  }
}

.p-staff__card {
  width: calc(25% - 1.0625rem);
}
@media screen and (max-width: 767px) {
  .p-staff__card {
    width: 100%;
  }
}

.p-station {
  background: linear-gradient(180deg, rgba(255, 243, 234, 0) 0%, rgba(255, 243, 234, 0.8) 22.2%, rgba(255, 243, 234, 0.8) 80.39%, rgba(255, 243, 234, 0) 100%);
  position: relative;
}

.p-station::after {
  content: "";
  width: 5.625rem;
  height: 8.125rem;
  background: url(../images/station_bg.png) no-repeat center/contain;
  position: absolute;
  top: -2.8125rem;
  right: 7%;
}
@media screen and (max-width: 767px) {
  .p-station::after {
    display: none;
  }
}

.p-station__line {
  position: absolute;
  top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-station__line {
    top: 0;
  }
}

.p-station__inner {
  max-width: 79rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-station__inner {
    flex-direction: column-reverse;
    gap: 2.5rem;
    max-width: 28.125rem;
  }
}

.p-station__body {
  width: 32.7018121911%;
}
@media screen and (max-width: 767px) {
  .p-station__body {
    width: 100%;
  }
}

.p-station__title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .p-station__title {
    font-size: 1.75rem;
  }
}

.p-station__walk {
  margin-top: 1rem;
  font-size: 1.375rem;
  line-height: 1.0909090909;
}
@media screen and (max-width: 767px) {
  .p-station__walk {
    margin-top: 1.25rem;
  }
}

.p-station__text {
  margin-top: 2.3125rem;
  font-size: 1.125rem;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .p-station__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-station__img {
  width: 49.5881383855%;
}
@media screen and (max-width: 767px) {
  .p-station__img {
    width: 100%;
  }
}

.p-station__img img {
  aspect-ratio: 602/472;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-store {
  background: linear-gradient(180deg, rgba(242, 249, 255, 0) 0%, #F2F9FF 29.5%, #F2F9FF 63.5%, rgba(242, 249, 255, 0) 100%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-store {
    background: linear-gradient(180deg, rgba(242, 249, 255, 0) 0%, #F2F9FF 9.79%, #F2F9FF 89.63%, rgba(242, 249, 255, 0) 100%);
  }
}

.p-store--archive {
  background: transparent;
}

.p-store__line {
  position: absolute;
  top: -3.75rem;
}
@media screen and (max-width: 767px) {
  .p-store__line {
    top: -2.3125rem;
  }
}

.p-store__line--sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-store__line--sp {
    display: block;
  }
}

.p-store__inner {
  max-width: 90.625rem;
  position: relative;
}

.p-store__inner::after {
  content: "";
  width: 8.5625rem;
  height: 5.6875rem;
  background: url(../images/store_bg.png) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}
@media screen and (max-width: 767px) {
  .p-store__inner::after {
    width: 4.125rem;
    height: 3.125rem;
    background: url(../images/about_bg03.png) no-repeat center/contain;
    right: auto;
    left: 14%;
    transform: translateY(calc(-100% - 2.5rem));
  }
}

@media screen and (max-width: 767px) {
  .p-store__inner--plan::after {
    display: none;
  }
}

.p-store__inner--flow::after {
  display: none;
}

.p-store__inner--home::after {
  display: none;
}

.p-store__inner--trainer::after {
  width: 5.625rem;
  height: 8.125rem;
  background: url(../images/station_bg.png) no-repeat center/contain;
  right: auto;
}
@media screen and (max-width: 767px) {
  .p-store__inner--trainer::after {
    display: none;
  }
}

.p-store__tab-list {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-store__tab-list {
    display: block;
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-store__tab-list--archive {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-store__tab-wrapper.swiper-wrapper {
    display: flex;
    gap: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-store__tab-list--archive .p-store__tab-wrapper {
    display: flex;
    gap: 0.875rem;
  }
}

.p-store__tab.swiper-slide {
  width: auto;
  padding: 0.625rem 0.875rem;
  border: 1px solid #009EFF;
  border-radius: 6.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: 1.3125;
}

.p-store__tab-list--archive .p-store__tab {
  width: auto;
  padding: 0.625rem 0.875rem;
  border: 1px solid #009EFF;
  border-radius: 6.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: 1.3125;
}

.p-store__tab-wrapper.swiper-slide-thumb-active {
  color: #fff;
  background-color: #009EFF;
}

.p-store__content {
  position: relative;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-store__content {
    margin-top: 1.875rem;
  }
}

.p-store__cards {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-store__cards {
    overflow: hidden;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

@media screen and (max-width: 767px) {
  .p-store__cards--home {
    overflow: visible;
    margin-top: 1.875rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-store__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-store__wrapper {
    display: flex;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-store__wrapper--archive {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.p-store__pagination.swiper-pagination {
  bottom: 0;
  transform: translateY(30px);
}

.p-store__pagination .swiper-pagination-bullet,
.p-fv__pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background-color: rgba(255, 90, 16, 0.2);
  margin: 0 0.9375rem !important;
}

.p-store__pagination .swiper-pagination-bullet-active,
.p-fv__pagination .swiper-pagination-bullet-active {
  background-color: #FF5A10;
}

.p-store__prev.swiper-button-prev,
.p-store__next.swiper-button-next {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-store__prev.swiper-button-prev,
  .p-store__next.swiper-button-next {
    display: flex;
    top: 11.25rem;
    width: 2.5625rem;
    height: 2.5625rem;
    background-color: #009EFF;
    border-radius: 50%;
  }
}

.p-store__prev.swiper-button-prev {
  left: 0;
  transform: translateX(-50%);
}

.p-store__next.swiper-button-next {
  right: 0;
  transform: translateX(50%);
}

.p-store__prev.swiper-button-prev::after,
.p-store__next.swiper-button-next::after {
  content: "";
  width: 0.5625rem;
  height: 1rem;
  background: url(../images/icon_arrow-white.svg) no-repeat center/cover;
}

.p-store__prev.swiper-button-prev::after {
  transform: scale(-1, 1);
}

.p-store__new {
  margin-top: 3.75rem;
  box-shadow: 0.5625rem 0.5625rem 3.25rem rgba(0, 0, 0, 0.07);
  border-radius: 1.125rem;
}

.p-store__map iframe {
  aspect-ratio: 1400/222;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.125rem 1.125rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-store__map iframe {
    aspect-ratio: 344/200;
  }
}

.p-store__body {
  background-color: #fff;
  border-radius: 0 0 1.125rem 1.125rem;
  padding: 3rem 0;
}

.p-store__name {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.35;
  color: #FF5A10;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-store__name {
    font-size: 1.625rem;
  }
}

.p-store__text {
  margin-top: 1.1875rem;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 0.9230769231;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-store__text {
    margin-top: 1.8125rem;
    font-size: 1.375rem;
    font-weight: normal;
  }
}

.p-trainer {
  position: relative;
}

.p-trainer__line {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-trainer__line {
    display: block;
    position: absolute;
    top: -5rem;
    z-index: -1;
  }
}

.p-trainer::after {
  content: "";
  width: 5.625rem;
  height: 5.75rem;
  background: url(../images/trainer_bg.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 12%;
}
@media screen and (max-width: 767px) {
  .p-trainer::after {
    top: 1.25rem;
    left: 27%;
    width: 3.75rem;
    height: 4.375rem;
  }
}

@media screen and (max-width: 767px) {
  .p-trainer__inner {
    max-width: 28.125rem;
  }
}

.p-trainer__text {
  margin-top: 1.875rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-trainer__text {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    font-weight: normal;
  }
}

.p-trainer__img {
  margin-top: 5rem;
  max-width: 72.625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-trainer__img {
    margin-top: 1.5rem;
  }
}

.p-trainer__img img {
  aspect-ratio: 1162/643;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-trainer__img img {
    aspect-ratio: 345/363;
    border-radius: 1.125rem;
  }
}

.p-training {
  background: linear-gradient(180deg, rgba(242, 249, 255, 0) 0%, #F2F9FF 9.79%, #F2F9FF 89.63%, rgba(242, 249, 255, 0) 100%);
  position: relative;
}

.p-training__line {
  position: absolute;
  top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-training__line {
    top: 0;
    transform: translateY(-100%);
  }
}

.p-training__inner {
  max-width: 61rem;
}

.p-training__text {
  margin-top: 1.25rem;
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 1.3548387097;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-training__text {
    font-size: 1.125rem;
  }
}

.p-training__img {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-training__img {
    margin-top: 2.5rem;
  }
}

.p-training__img img {
  aspect-ratio: 926/496;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-training__img img {
    aspect-ratio: 345/552;
  }
}

.p-voice {
  position: relative;
}

@media screen and (max-width: 767px) {
  .p-voice::after {
    content: "";
    width: 5.6875rem;
    height: 3.75rem;
    background: url(../images/store_bg.png) no-repeat center/contain;
    position: absolute;
    top: 1.5625rem;
    right: 9%;
  }
}

@media screen and (max-width: 767px) {
  .p-voice--store::after {
    display: none;
  }
}

.p-voice__line {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-voice__line {
    display: block;
    position: absolute;
    top: 0;
  }
}

.p-voice__line--store {
  display: block;
  position: absolute;
  top: 0;
}

.p-voice__inner {
  max-width: 90.625rem;
}

.p-voice__text {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .p-voice__text {
    font-size: 1.125rem;
    font-weight: normal;
  }
}

.p-voice__content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-voice__content {
    margin-top: 3.75rem;
  }
}

/*# sourceMappingURL=styles.css.map */
