@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;900&family=Zen+Kurenaido&display=swap");
:root {
  --base: #333333;
  --gray1: #A9A9A9;
  --gray2: #ADADAD;
  --gray3: #E9E9E9;
  --orange1: #FF8C00;
  --orange2: #FF6A00;
  --blue1: #0052A5;
  --blue2: #E9F7F9;
}

/*-- リセット --*/
h1,
h2,
h3,
h4,
h5,
p,
b,
dt,
dd,
li,
span,
a,
strong {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  min-height: 0%;
  vertical-align: top;
}

figure {
  width: 100%;
  min-height: 0%;
  line-height: 0;
  margin: 0 auto;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  backface-visibility: hidden;
  transition: 0.3s;
}
a img {
  display: inline-block;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  margin: 0;
  padding: 0;
  background-size: 100%;
  position: relative;
  overflow-x: hidden;
  font-feature-settings: "palt";
  font-family: "Arial", "Noto Sans JP", sans-serif;
  text-align: center;
  color: var(--base);
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
    overflow-y: scroll;
  }
}

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

.tab {
  display: none;
}
@media only screen and (max-width: 1400px) {
  .tab {
    display: block;
  }
}

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

.inline-pc {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .inline-pc {
    display: none;
  }
}

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

.l-header__image {
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
}

.l-footer {
  padding: 12.9rem 0 0.7rem;
}
.l-footer__logo {
  display: block;
  margin: 0 auto 1.4rem;
  text-decoration: none;
}
.l-footer__logo img {
  width: 14rem;
  margin: 0 auto;
}
.l-footer__logo_caption {
  display: block;
  margin: 0.95rem auto 0;
  line-height: 1.2857142857;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--base);
}
.l-footer__copy {
  margin: 1.4rem auto 0;
  line-height: 1.5;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}

.l-global {
  display: none;
  width: 100%;
  height: calc(100% - 8.4rem);
  background: rgba(46, 56, 64, 0.9);
  position: fixed;
  top: 8.4rem;
  left: 0;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .l-global {
    height: calc(100% - 6rem);
    top: 6rem;
  }
}
.l-global-nav {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
}
.l-global-nav__list_item + .l-global-nav__list_item {
  border-top: 1px solid var(--green1);
}
.l-global-nav__list_link {
  display: block;
  padding: 1.5rem 0;
  background: var(--beige1);
  line-height: 1.5;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--base);
}

.l-section--bg-yellow1 {
  background: var(--yellow1);
}
.l-section--bg-beige1 {
  background: var(--beige1);
}
.l-section--bg-beige2 {
  background: var(--beige2);
}

.l-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .l-container {
    padding: 0 1.5rem;
  }
}
.l-container--ptn1 {
  max-width: 84rem;
}
.l-container--ptn2 {
  max-width: 98rem;
}
.l-container--ptn3 {
  max-width: 68rem;
}

.l-job__item {
  border: 0.42rem solid var(--green1);
  box-sizing: border-box;
  background: #FFF;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-job__item {
    padding-top: 2.1rem;
    border-width: 0.3rem;
  }
}
.l-job__item_num {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  background: var(--green1);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.2;
  font-size: 5.7rem;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .l-job__item_num {
    width: 4.2rem;
    height: 4.2rem;
    top: -2.25rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
  }
}
.l-job__head {
  padding: 9.6rem 4.6rem 6.5rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-job__head {
    padding: 4rem 1.2rem 2.5rem;
  }
}
.l-job__head_title {
  display: flex;
  justify-content: flex-start;
  line-height: 1.3333333333;
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .l-job__head_title {
    justify-content: center;
    margin: 0 auto 2rem;
    line-height: 1.3076923077;
    font-size: 2.6rem;
  }
}
.l-job__head_image {
  width: 44.1rem;
  position: absolute;
  top: -0.42rem;
  right: -0.42rem;
}
@media only screen and (max-width: 767px) {
  .l-job__head_image {
    width: 100%;
    position: static;
  }
}
.l-job__body {
  padding: 0 1.8rem 3rem;
}
@media only screen and (max-width: 767px) {
  .l-job__body {
    padding: 0 1.2rem 1.2rem;
  }
}
.l-job__body_flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2.4rem auto 0;
}
@media only screen and (max-width: 767px) {
  .l-job__body_flex {
    width: 100%;
    margin-top: 1.5rem;
  }
}
.l-job__body_lead {
  margin: 2.2rem auto 0;
  line-height: 1.75;
  font-size: 2.1rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .l-job__body_lead {
    margin-top: 1.5rem;
    text-align: left;
    font-size: 1.5rem;
  }
}
.l-job__body_point {
  width: 100%;
  margin: 3rem auto 0;
}
@media only screen and (max-width: 767px) {
  .l-job__body_point {
    margin-top: 2rem;
  }
}
.l-job__box {
  border: 0.42rem solid var(--green1);
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .l-job__box {
    border-width: 0.3rem;
  }
}
.l-job__box + .l-job__box {
  margin-top: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .l-job__box + .l-job__box {
    margin-top: 1rem;
  }
}
.l-job__box_title {
  padding: 1rem 0;
  background: var(--green1);
  line-height: 1.5;
  font-size: 2.5rem;
  font-weight: 900;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .l-job__box_title {
    padding: 0.8rem 0;
    font-size: 1.8rem;
  }
}
.l-job__box_content {
  padding: 1.5rem;
  box-sizing: border-box;
  line-height: 1.7368421053;
  text-align: left;
  font-size: 1.9rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .l-job__box_content {
    padding: 1.2rem;
    line-height: 1.7142857143;
    font-size: 1.4rem;
  }
}
.l-job__list {
  margin: 0;
  line-height: 1.4;
  text-align: left;
  font-size: 2.1rem;
}
@media only screen and (max-width: 767px) {
  .l-job__list {
    width: 100%;
    font-size: 1.5rem;
  }
}
.l-job__list_item {
  padding-left: 2.7rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-job__list_item {
    padding-left: 1.5rem;
  }
}
.l-job__list_item + .l-job__list_item {
  margin-top: 0.5em;
}
.l-job__list_item::before {
  content: "";
  width: 1.87803rem;
  height: 1.46006rem;
  background: url(../img/icon_check.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0.4em;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .l-job__list_item::before {
    width: 1.34141rem;
    height: 1.04287rem;
  }
}

.c-title--ptn1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.3rem;
  margin: 0 auto 4.9rem;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 {
    row-gap: 1.2rem;
    margin-bottom: 4rem;
  }
}
.c-title--ptn1 .c-title__main {
  line-height: 1;
  font-size: 4.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1 .c-title__main {
    font-size: 2.4rem;
  }
}
.c-title--ptn1 .c-title__sub {
  line-height: 2.0833333333;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  color: var(--orange1);
}

.c-text--size-18 {
  line-height: 1.555555;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .c-text--size-18 {
    line-height: 1.7142857;
    font-size: 1.4rem;
  }
}
.c-text--size-18 + .c-text--size-18 {
  margin-top: 1.6em;
}
.c-text--color-red1 {
  color: var(--red1);
}
.c-text--color-red2 {
  color: var(--red2);
}
.c-text--color-orange1 {
  color: var(--orange1);
}
.c-text--marker-yellow1 {
  background: linear-gradient(to top, var(--yellow1) 0.3684210526em, rgba(255, 255, 255, 0) 0.3684210526em);
}
.c-text--marker-yellow2 {
  background: linear-gradient(to top, var(--yellow2) 0.3684210526em, rgba(255, 255, 255, 0) 0.3684210526em);
}
.c-text--weight-bold {
  font-weight: 700;
}
.c-text--weight-black {
  font-weight: 900;
}
.c-text--family-arial {
  font-family: "Arial", sans-serif;
}
.c-text--underline {
  text-decoration: underline;
}

.c-btn {
  text-decoration: none;
}
.c-btn--ptn1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 31.5rem;
  height: 7rem;
  margin: 0 auto;
  padding: 0.6em 0 0;
  border-radius: 0.6rem;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.24);
  box-sizing: border-box;
  background: var(--orange2);
  position: relative;
  color: #FFF;
}
.c-btn--ptn1::after {
  content: "";
  border-width: 0.6rem 0 0.6rem 0.8rem;
  border-style: solid;
  border-color: transparent transparent transparent #FFF;
  position: absolute;
  top: 50%;
  right: 2.3rem;
  transform: translateY(-50%);
}
.c-btn--ptn1 .c-btn__main {
  line-height: 1.1363636364;
  letter-spacing: 0.075em;
  font-size: 2.2rem;
  font-weight: 700;
}
.c-btn--ptn1 .c-btn__sub {
  line-height: 2.5;
  letter-spacing: 0.4em;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Arial", sans-serif;
}

.p-form {
  padding: 5.8rem 0 9rem;
}
@media only screen and (max-width: 767px) {
  .p-form {
    padding: 6rem 0 6.3rem;
  }
}
.p-form__title {
  margin: 0 auto 0.9rem;
  line-height: 1.6666666667;
  font-size: 2.4rem;
  font-weight: 700;
}
.p-form__title span {
  color: var(--orange1);
}
.p-form__title strong {
  font-size: 3.6rem;
}
.p-form__copy {
  margin: 0 auto 3.8rem;
  line-height: 2.2222222222;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue1);
}
.p-form__wrap {
  max-width: 54.5rem;
  width: 100%;
  margin: 0 auto;
  padding: 2.7rem 4rem 5.1rem;
  border-radius: 4rem;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  background: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-form__wrap {
    padding: 2.7rem 2rem 5.1rem;
  }
}
.p-form__block {
  display: none;
}
.p-form__block--ptn1 {
  display: block;
}
.p-form__step {
  display: flex;
  justify-content: space-between;
  max-width: 22rem;
  width: 100%;
  margin: 0 auto 2.4rem;
  position: relative;
}
.p-form__step::before {
  content: "";
  width: 100%;
  height: 0.2rem;
  background: var(--gray3);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .p-form__step::before {
    height: 0.2rem;
  }
}
.p-form__step_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  box-sizing: border-box;
  background: var(--gray3);
  position: relative;
  counter-increment: step;
}
.p-form__step_item::before {
  content: counter(step);
  line-height: 1.25;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gray2);
}
.p-form__step_item.current {
  background: var(--orange1);
}
.p-form__step_item.current::before {
  color: #FFF;
}
.p-form__lead {
  margin: 0 auto 0.9rem;
  line-height: 1.625;
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-form__lead {
    margin-bottom: 1.6rem;
    font-size: 1.5rem;
  }
}
.p-form__radios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  max-width: 46.1rem;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-form__radios {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.p-form__radios_label input[type=radio] {
  display: none;
}
.p-form__radios_label input[type=radio] + .p-form__radios_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 5rem;
  border: 0.3rem solid var(--gray3);
  border-radius: 1rem;
  box-sizing: border-box;
  line-height: 1.625;
  font-size: 1.6rem;
  font-weight: 400;
  cursor: pointer;
}
.p-form__radios_label input[type=radio]:checked + .p-form__radios_btn {
  border-color: var(--blue1);
  color: var(--blue1);
}
.p-form__radios_caption {
  padding: 1.7rem 0;
  line-height: 1.2;
  font-size: 3.22253rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-form__radios_caption {
    padding: 0.8rem 0;
    font-size: 1.2rem;
  }
}
.p-form__radios_att {
  margin: 2rem auto 0;
  line-height: 2;
  font-size: 2.9465rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-form__radios_att {
    margin-top: 0.8rem;
    font-size: 1.2rem;
  }
}
.p-form__college {
  max-width: 46.4rem;
  width: 100%;
  margin: 0 auto;
}
.p-form__college input[type=text] {
  width: 100%;
  padding: 1.3rem 1.5rem;
  border: 0.3rem solid var(--gray3);
  border-radius: 1rem;
  box-sizing: border-box;
  line-height: 1.625;
  font-size: 1.6rem;
  font-weight: 500;
}
.p-form__select {
  max-width: 70%;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-form__select {
    max-width: initial;
  }
}
.p-form__select select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--base);
  border-radius: 1rem;
  box-sizing: border-box;
  line-height: 1.6;
  font-size: 3.71831rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-form__select select {
    font-size: 1.5rem;
  }
}
.p-form__box {
  display: grid;
  grid-template-columns: 11.3rem 1fr;
  align-items: center;
  max-width: 46.5rem;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-form__box {
    grid-template-columns: 9.2rem 1fr;
    max-width: initial;
  }
}
.p-form__box + .p-form__box {
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-form__box + .p-form__box {
    margin-top: 1.5rem;
  }
}
.p-form__box_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin: 0 0 0.2rem;
  line-height: 1.25;
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-form__box_title {
    font-size: 1.5rem;
  }
}
.p-form__box_content input[type=text],
.p-form__box_content input[type=tel],
.p-form__box_content input[type=email],
.p-form__box_content textarea {
  width: 100%;
  padding: 1.3rem 1.5rem;
  border: 0.3rem solid var(--gray3);
  border-radius: 1rem;
  box-sizing: border-box;
  line-height: 1.625;
  font-size: 1.6rem;
  font-weight: 500;
}
.p-form__btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.9rem;
  max-width: 70%;
  width: 100%;
  margin: 3.3rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-form__btns {
    max-width: initial;
    margin-top: 2.8rem;
  }
}
.p-form__btns_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 21.2rem;
  height: 5rem;
  border-radius: 1rem;
  box-sizing: border-box;
  line-height: 1.625;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-form__btns_item {
    height: 4.6rem;
    font-size: 1.5rem;
  }
}
.p-form__btns_submit {
  background: var(--orange1);
}
.p-form__btns_return {
  line-height: 1.625;
  font-size: 1.6rem;
  font-weight: 700;
  color: #CCCCCC;
}

.p-faq {
  padding: 6.8rem 0 0;
}
@media only screen and (max-width: 767px) {
  .p-faq {
    padding-top: 7.3rem;
  }
}
.p-faq__group {
  margin: 0;
  padding: 0 0 2.15rem;
  text-align: left;
}
.p-faq__group + .p-faq__group {
  padding-top: 2.15rem;
  border-top: 0.066rem solid var(--gray1);
}
.p-faq__group_title, .p-faq__group_content {
  display: flex;
  align-items: center;
  min-height: 4rem;
  padding: 0 0 0 5.1rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-faq__group_title, .p-faq__group_content {
    display: block;
  }
}
.p-faq__group_title::before, .p-faq__group_content::before {
  content: "";
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  line-height: 1;
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Arial", sans-serif;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-faq__group_title::before, .p-faq__group_content::before {
    top: 0;
    transform: translateY(-0.2em);
  }
}
.p-faq__group_title {
  margin: 0 0 1rem;
  line-height: 1.3888888889;
  font-size: 1.8rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-faq__group_title {
    line-height: 1.5625;
    font-size: 1.6rem;
  }
}
.p-faq__group_title::before {
  content: "Q";
  background: var(--orange1);
}
.p-faq__group_content {
  line-height: 1.625;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-faq__group_content {
    line-height: 1.4285714286;
    font-size: 1.4rem;
  }
}
.p-faq__group_content::before {
  content: "A";
  background: var(--blue1);
}
.p-faq__btn {
  margin: 5.21rem auto 0;
}
@media only screen and (max-width: 767px) {
  .p-faq__btn {
    margin-top: 4rem;
  }
}

.p-message {
  padding: 12rem 0 0;
}
@media only screen and (max-width: 767px) {
  .p-message {
    padding: 6.3rem 0 0;
  }
}
.p-message__copy {
  margin: 0 auto 3.3rem;
  line-height: 1.1538461538;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blue1);
}
@media only screen and (max-width: 767px) {
  .p-message__copy {
    width: calc(100% + 3rem);
    margin: 0 -1.5rem 3.4rem;
    font-size: 2.1rem;
  }
}
.p-message__lead {
  line-height: 1.9375;
  font-size: 1.6rem;
  font-weight: 500;
}
.p-message__lead + .p-message__lead {
  margin-top: 1.6em;
}

.p-why {
  padding: 6.5rem 0 9.6rem;
  background: var(--blue2);
}
@media only screen and (max-width: 767px) {
  .p-why {
    padding: 7rem 0 5.9rem;
  }
}
.p-why__title {
  margin: 0 auto 5rem;
  padding: 0 0 2.67rem;
  position: relative;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange1);
}
@media only screen and (max-width: 767px) {
  .p-why__title {
    margin-bottom: 3.05rem;
    padding: 0 0 1.85rem;
    font-size: 2rem;
  }
}
.p-why__title b {
  font-size: 3.64rem;
}
@media only screen and (max-width: 767px) {
  .p-why__title b {
    font-size: 2.6rem;
  }
}
.p-why__title strong {
  font-size: 5.04rem;
}
@media only screen and (max-width: 767px) {
  .p-why__title strong {
    font-size: 3.6rem;
  }
}
.p-why__title::after {
  content: "";
  width: 24.5rem;
  height: 1.88rem;
  background: url(../img/why_title.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .p-why__title::after {
    width: 17.5rem;
    height: 1.25rem;
  }
}
.p-why-card {
  padding: 4.08rem 4rem 4rem;
  border-radius: 2rem;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
  background: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-why-card {
    padding: 1.6rem 0 1.5rem;
  }
}
.p-why-card + .p-why-card {
  margin-top: 4rem;
}
.p-why-card__title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto 3rem;
}
@media only screen and (max-width: 767px) {
  .p-why-card__title {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 1.5rem;
    padding: 0 0 0 8.9rem;
    position: relative;
  }
}
.p-why-card__title_num {
  display: block;
  margin-right: 5.18rem;
  position: relative;
  line-height: 0.8;
  font-size: 5.6rem;
  font-weight: 400;
  font-family: "Arial", sans-serif;
  color: var(--blue1);
}
@media only screen and (max-width: 767px) {
  .p-why-card__title_num {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 1.95rem;
    transform: translateY(-50%);
    font-size: 4.6rem;
  }
}
.p-why-card__title_num::after {
  content: "";
  width: 1px;
  height: 8.9rem;
  background: var(--blue1);
  position: absolute;
  top: 50%;
  left: calc(100% + 2rem);
  transform: translateY(-50%) rotate(25deg);
}
@media only screen and (max-width: 767px) {
  .p-why-card__title_num::after {
    height: 7.5rem;
  }
}
.p-why-card__title_sub {
  line-height: 1.25;
  font-size: 2.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-why-card__title_sub {
    font-size: 2rem;
  }
}
.p-why-card__title_main {
  display: block;
  margin-left: 0.5rem;
  line-height: 1;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--orange1);
}
@media only screen and (max-width: 767px) {
  .p-why-card__title_main {
    margin: 0;
    line-height: 1.25;
    font-size: 3rem;
  }
}
.p-why-card__body {
  display: grid;
  grid-template-columns: 40rem 1fr;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-why-card__body {
    grid-template-columns: 100%;
    row-gap: 2.32rem;
  }
}
.p-why-card__body_content {
  line-height: 1.75;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-why-card__body_content {
    padding: 0 1.5rem;
    line-height: 1.6666666667;
    font-size: 1.5rem;
  }
}
.p-why-card__comment {
  display: grid;
  grid-template-columns: 23.7rem 1fr;
  -moz-column-gap: 3.8rem;
       column-gap: 3.8rem;
  margin: 2.95rem auto 0;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-sizing: border-box;
  background: var(--blue2);
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-why-card__comment {
    display: block;
    margin: 4rem 1.5rem 0;
    padding: 8.72rem 1.5rem 1.5rem;
    position: relative;
  }
}
.p-why-card__comment_image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-why-card__comment_image {
    display: block;
    width: 23.7rem;
    position: absolute;
    left: 50%;
    top: -2.5rem;
    transform: translateX(-50%);
  }
}
.p-why-card__comment_image::after {
  content: "";
  width: 16.35rem;
  height: 2.6rem;
  background: url(../img/comment-arrow.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  right: 0;
  bottom: 2.15rem;
}
.p-why-card__comment_image img {
  width: 10rem;
  margin: auto 0;
}
.p-why-card__comment_caption {
  line-height: 1.75;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-why-card__comment_caption {
    line-height: 1.6666666667;
    font-size: 1.5rem;
  }
}

.p-application {
  padding: 6.7rem 0 8.5rem;
}
@media only screen and (max-width: 767px) {
  .p-application {
    padding: 7rem 0;
  }
}
.p-application__group {
  margin: 0 auto;
  padding: 0 0 1.75rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-application__group {
    padding: 0 0 1.85rem;
  }
}
.p-application__group + .p-application__group {
  padding-top: 1.75rem;
  border-top: 1px solid var(--gray1);
}
@media only screen and (max-width: 767px) {
  .p-application__group + .p-application__group {
    padding-top: 1.85rem;
  }
}
.p-application__group_title {
  margin: 0 0 1.04rem;
  line-height: 1.625;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue1);
}
@media only screen and (max-width: 767px) {
  .p-application__group_title {
    margin-bottom: 1.1rem;
    line-height: 1.5714285714;
    font-size: 1.4rem;
  }
}
.p-application__group_sub {
  margin: 0 0 0.3rem;
  line-height: 1.625;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-application__group_sub {
    margin-bottom: 0.5rem;
    line-height: 1.5714285714;
    font-size: 1.4rem;
  }
}
.p-application__group_caption {
  line-height: 1.625;
  font-size: 1.6rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-application__group_caption {
    line-height: 1.5384615385;
    font-size: 1.3rem;
  }
}

.p-flow {
  padding: 8.1rem 0 8.14rem;
  background: var(--blue2);
}
@media only screen and (max-width: 767px) {
  .p-flow {
    padding: 6.7rem 0 7.2rem;
  }
}
.p-flow__image {
  max-width: 70rem;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-flow__image {
    max-width: 31.5rem;
  }
}
.p-flow__att {
  margin: 3.76rem auto 0;
  line-height: 1.625;
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-flow__att {
    margin: 2.7rem auto 0;
    line-height: 1.6666666667;
    font-size: 1.5rem;
  }
}