@charset "UTF-8";

/* CSS Document */
.padding_top {
  margin-top: 100px;
}

.top_img {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url(../image/photo/top_image_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  aspect-ratio: 1440 / 973;
}

.top_img::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 22%;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  background: #123765;
  z-index: 1;
}

.top_heading {
  position: absolute;
  top: 45%;
  left: 52%;
  transform: translate(-52%, -45%);
}

.top_heading {
  font-family: "Noto Serif JP";
  font-size: 2.986vw;
  font-weight: 500;
  line-height: 1.6em;
  color: #FFF;
}

@media(max-width:1200px) {
  .padding_top {
    margin-top: 60px;
  }

  .top_img {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url(../image/photo/top_image_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio: 1440 / 973;
  }

}

@media(max-width:896px) {
  .top_img {
    background-image: url(../image/photo/top_image_sp.jpg);
    aspect-ratio: 375 / 537;
  }

  .top_img::after {
    height: 13%;
  }

  .top_heading {
    top: 47%;
    left: 52%;
    transform: translate(-52%, -47%);
  }

  .top_heading h2 {
    font-size: 3.5vw;
    letter-spacing: 0.08em;
  }
}

/* president */
.president_wrapper {
  position: relative;
  padding-bottom: 150px;
  ;
}

.president_wrapper::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  left: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #123765;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 70%);
}

.president_content {
  max-width: 1200px;
  margin: 0 auto;
}

.president_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.president_img_pc {
  width: 470px;
}

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

.president_img_sp {
  display: none;
}

.president_right {
  width: 660px;
  color: #FFF;
}

.president_p {
  text-align: left;
  font-weight: 400;
  font-size: 1.125em;
  line-height: 1.8em;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}

.president_name {
  text-align: right;
  font-family: "Noto Serif JP";
  font-size: 1.625em;
}

.president_name span {
  font-size: 1.8rem;
  margin-right: 12px;
}


@media(max-width:1200px) {
  .president_wrapper {
    padding-bottom: 150px;
  }

  .president_content {
    max-width: 92%;
  }

  .president_img_pc {
    width: 36%;
  }

  .president_right {
    width: 60%;
  }

  .president_p {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .president_name {
    font-size: 2.4rem;
  }

  .president_name span {
    font-size: 1.6rem;
  }
}

@media(max-width:896px) {
  .president_wrapper {
    padding-bottom: 120px;
  }

  .president_wrapper::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 89%);
  }

  .president_inner {
    flex-direction: column;
  }

  .president_left {
    margin-bottom: 20px;
  }

  .president_right {
    width: 100%;
  }

  .president_name {
    font-size: 2rem;
  }

  .president_name span {
    font-size: 1.4rem;
  }
}

/* service */
.section_service {
  margin-bottom: 20px;
}

.service_wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.service_wrapper p {
  text-align: left;
  font-size: 1.125em;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  margin-bottom: 64px;
}

.service_content {}

.service_list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.service_list_item {
  position: relative;
  width: 565px;
  position: relative;
  padding: 90px 80px 70px;
  border: solid 1px #123765;
}

.service_heading {
  position: absolute;
  width: 275px;
  height: auto;
  top: -16px;
  left: 50%;
  transform: translate(-50%, 0);
}

.service_text {
  font-size: 1.375em;
  color: #6B96C6;
  letter-spacing: 0.08em;
  line-height: 2em;
  font-weight: 600;
  margin-top: 42px;
}

.service_text span {
  font-size: 2.8rem;
  color: #123765;
  font-weight: 700;
  line-height: 1.8em;
  padding-bottom: 1px;
  border-bottom: 5px dotted #123765;
}



@media(max-width:1200px) {
  .section_service {
    margin-bottom: 20px;
  }

  .service_wrapper {
    max-width: 92%;
  }

  .service_wrapper p {
    font-size: 1.6rem;
    margin-bottom: 50px;
  }

  .service_list {
    gap: 50px;
  }

  .service_list_item {
    width: 46%;
    padding: 70px 32px 50px;
  }

  .service_heading {
    width: 200px;
    top: -12px;
  }

  .service_text {
    font-size: 1.375em;
    margin-top: 20px;
  }

  .service_text span {
    font-size: 2.8rem;
  }
}

@media(max-width:896px) {
  .section_service {
    margin-bottom: 30px;
  }

  .service_wrapper p {
    margin-bottom: 40px;
  }

  .service_list {
    gap: 40px;
    flex-direction: column;
  }

  .service_list_item {
    width: 100%;
    padding: 70px 32px 46px;
  }

  .service_heading {
    width: 200px;
    top: -12px;
  }

  .service_text {
    font-size: 1.8rem;
    margin-top: 20px;
  }

  .service_text span {
    font-size: 2.1rem;
    border-bottom: 4px dotted #123765;
  }
}

/* number */
/*.section_number {
  margin-bottom: 140px;
}*/

.number_wrapper {
  position: relative;
  margin-bottom: -100px;
  padding-bottom: 170px;
}

.number_wrapper::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #123765;
  clip-path: polygon(0 16%, 100% 0, 100% 100%, 0% 100%);
}

.number_content {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 220px;
}

.data_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 32px;
  margin-top: 80px;
}

.box_inner {
  display: flex;
  height: 200px;
  width: auto;
  background-color: #FEF4E7;
  padding-top: 40px;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.box_inner_01 {
  width: 372px;
}

.box_inner_02 {
  width: 360px;
}

.box_inner_03 {
  width: 410px;
}

.box_inner_04 {
  width: 100%;
  height: 480px;
  align-items: flex-start;
  gap: 0;
}

.box_inner h4 {
  font-size: 1.75em;
  font-weight: 600;
}

.box_inner_04 img {
  margin: 0 auto;
}

.box_inner_04 h4 {
  margin: 10px 0 0 70px
}

.box_gap {
  gap: 20px;
}



@media(max-width: 1200px) {
  .number_wrapper {
    margin-bottom: -100px;
    padding-bottom: 170px;
  }

  .number_wrapper::before {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
  }

  .number_content {
    max-width: 92%;
    padding-top: 160px;
  }

  .data_box {
    row-gap: 32px;
    width: 80%;
    margin: 80px auto 0;
  }

  .box_inner {
    display: flex;
    height: 200px;
    width: auto;
    background-color: #FEF4E7;
    padding-top: 40px;
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .box_inner_01 {
    width: 48%;
  }

  .box_inner_02 {
    width: 48%;
  }

  .box_inner_03 {
    width: 100%;
  }

  .box_inner_04 {
    height: auto;
    align-items: flex-start;
    gap: 10px;
    padding: 40px 0 40px;
  }

  .box_inner_04 img {
    width: 80%;
    margin: 0 auto;
  }
}

@media(max-width: 896px) {
  .number_wrapper {
    margin-bottom: -40px;
    padding-bottom: 90px;
  }

  .number_wrapper::before {
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0% 100%);
  }

  .number_content {
    padding-top: 100px;
  }

  .data_box {
    row-gap: 20px;
    width: 100%;
    margin: 24px auto 0;
  }

  .box_inner {
    display: flex;
    height: 120px;
    padding-top: 16px;
    gap: 16px;
  }

  .box_inner h4 {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
  }

  .box_img_01 {
    height: 42px;
  }

  .box_img_02 {
    height: 52px;
  }

  .box_img_03 {
    height: 53px;
  }

  .box_inner_04 {
    height: auto;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0 25px;
  }

  .box_inner_04 h4 {
    margin: 0 0 0 20px
  }

  .box_inner_04 img {
    width: 86%;
    margin: 0 auto;
  }
}

/* employee */
.section_employee {
  max-width: 1200px;
  margin: 0 auto;
}

.section_employee .employee_title {
  position: relative;
}

.section_employee .employee_title:before {
  content: "";
  position: absolute;
  height: 100%;
  width: calC((100vw - 1200px) / 2);
  background-color: #fff;
  top: 1px;
  right: 100%;
}

.section_employee .title_bg {
  position: relative;
  clip-path: none;
  background-color: inherit;
  height: auto;
  padding-top: 60px;
  height: 100px;
  margin-bottom: 16px;
  ;
}

.section_employee .title_bg:before {
  content: "";
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  background: #FFF;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 1px;
  left: -1px;
}

.section_employee .title_bg h3 {
  position: relative;
}

.section_employee .en_title {
  color: #123765;
}

.employee_wrapper {
  position: relative;
  padding-bottom: 220px;
}

.employee_wrapper_p {
  text-align: left;
  line-height: 1.75em;
  letter-spacing: 0.15em;
  margin-bottom: 50px;
}

.employee_content {
  width: 1056px;
  margin: 0 auto 30px;
}

.employee_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 14px;
  row-gap: 20px;
}

.employee_list_item {
  width: 200px;
  list-style: none;
  display: flex;
  align-items: center;
}

.employee_image {
  width: 100px;
  height: auto;
}

.employee_image img {
  width: 100%;
}

.dark03 {
  display: none;
}

.dark04 {
  display: none;
}

.dark05 {
  display: none;
}

.pale06 {
  display: none;
}

.pale07 {
  display: none;
}

.pale08 {
  display: none;
}

.pale09 {
  display: none;
}

.pale10 {
  display: none;
}

.dark11 {
  display: none;
}

.dark12 {
  display: none;
}

.dark13 {
  display: none;
}

.dark14 {
  display: none;
}

.dark15 {
  display: none;
}


.employee_list_item p {
  font-size: 1.125em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.15em;
  padding-left: 6px;
  margin-bottom: 0;
  text-align: left;
}

.label_container_pc {
  width: 1056px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #123765;
}

.label_container_sp {
  display: none;
}

.label {
  padding: 14px 80px 10px 50px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  background: #93AFD4;
  font-size: 1.5em;
  color: #FFF;
}

.label_list {
  list-style: none;
  margin-left: 30px;
  padding: 0;
  display: flex;
  gap: 30px;
}

.label_list_item {
  position: relative;
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-left: 20px;
}

.label_list_item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  width: 14px;
  height: 14px;
  border-radius: 10px;
  background-color: #93AFD4;
}

.br_sp {
  display: none;
}


@media(max-width: 1200px) {
  .section_employee {
    max-width: 92%;
    margin: 0 auto;
  }

  .section_employee .employee_title:before {
    width: calC((100vw - 92%) / 2);
  }

  .employee_wrapper {
    position: relative;
    padding-bottom: 220px;
  }

  .employee_content {
    width: 842px;
  }

  .employee_list {
    justify-content: flex-start;
  }

  .pale05 {
    display: none;
  }

  .dark05 {
    display: block;
  }

  .pale09 {
    display: block;
  }

  .dark09 {
    display: none;
  }

  .pale10 {
    display: block;
  }

  .dark10 {
    display: none;
  }

  .pale13 {
    display: none;
  }

  .dark13 {
    display: block;
  }

  .pale14 {
    display: none;
  }

  .dark14 {
    display: block;
  }

  .pale15 {
    display: none;
  }

  .dark15 {
    display: block;
  }

  .label_container {
    width: 100%;
  }

}

@media(max-width: 960px) {
  .employee_content {
    width: 630px;
  }

  .pale04 {
    display: none;
  }

  .dark04 {
    display: block;
  }

  .pale07 {
    display: block;
  }

  .dark07 {
    display: none;
  }

  .pale08 {
    display: block;
  }

  .dark08 {
    display: none;
  }


  .pale10 {
    display: none;
  }

  .dark10 {
    display: block;
  }

  .pale11 {
    display: none;
  }

  .dark11 {
    display: block;
  }

  .pale12 {
    display: none;
  }

  .dark12 {
    display: block;
  }

  .pale13 {
    display: block;
  }

  .dark13 {
    display: none;
  }

  .pale14 {
    display: block;
  }

  .dark14 {
    display: none;
  }

  .pale15 {
    display: block;
  }

  .dark15 {
    display: none;
  }
}

@media(max-width:896px) {
  .employee_wrapper {
    padding-bottom: 100px;
  }

  .section_employee .title_bg {
    padding-top: 18px;
    height: 40px;
    margin-bottom: 12px;
  }

  .section_employee .en_title {
    line-height: 38px;
  }

  .employee_wrapper_p {
    margin-bottom: 30px;
  }

  .label_container_pc {
    display: none;
  }

  .label_container_sp {
    display: block;
  }

  .border {
    border-bottom: solid 1px #123765;
    margin-bottom: 14px;
  }

  .label {
    position: relative;
    padding: 8px 40px 6px 20px;
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    width: 152px;
  }

  .label_list {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10px;
    gap: 8px;
  }

  .label_list_item {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    margin-left: 16px;
  }

  .label_list_item::before {
    content: "";
    left: -17px;
    width: 12px;
    height: 12px;
  }
}

@media(max-width: 700px) {
  .employee_content {
    width: 335px;
  }

  .employee_list {
    row-gap: 12px;
  }

  .employee_list_item {
    width: 156px;
  }

  .employee_list_item p {
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 5px;
  }

  .employee_image {
    width: 87px;
  }

  .pale03 {
    display: none;
  }

  .dark03 {
    display: block;
  }

  .pale05 {
    display: block;
  }

  .dark05 {
    display: none;
  }

  .pale06 {
    display: block;
  }

  .dark06 {
    display: none;
  }

  .pale07 {
    display: none;
  }

  .dark07 {
    display: block;
  }

  .pale08 {
    display: none;
  }

  .dark08 {
    display: block;
  }

  .pale09 {
    display: block;
  }

  .dark09 {
    display: none;
  }

  .pale10 {
    display: block;
  }

  .dark10 {
    display: none;
  }

  .pale15 {
    display: none;
  }

  .dark15 {
    display: block;
  }

  .br_sp {
    display: block;
  }
}

/* strengths */
.section_strengths {
  background-color: #6B96C6;
  margin-bottom: 130px;
  margin-bottom: -100px;
}

.strengths_content {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 200px;

}

.section_strengths .strengths_title {
  position: relative;
  margin-bottom: -100px;
}

.strengths_title {
  top: -100px;
}

.section_strengths .strengths_title:before {
  content: "";
  position: absolute;
  height: 100%;
  width: calC((100vw - 1200px) / 2);
  background-color: #6B96C6;
  top: 1px;
  left: 100%;
}

.section_strengths .title_bg {
  position: relative;
  clip-path: none;
  background-color: inherit;
  height: auto;
  padding-top: 60px;
  height: 100px;
  margin-bottom: 16px;
  margin-left: auto;
}

.section_strengths .title_bg:before {
  content: "";
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  background: #6B96C6;
  position: absolute;
  width: 101%;
  height: 100%;
  top: 1px;
  left: -1px;
}

.section_strengths .title_bg h3 {
  position: relative;
  flex-flow: row-reverse;
}

.section_strengths .title_bg h3 span {
  color: #fff;
}

.section_strengths .title_bg h3 span:before {
  background-color: #fff;
}

.section_strengths .en_title {
  color: #fff;
  margin-bottom: 100px;
  text-align: right;
}

.strengths_wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.strengths_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 97px;
}

.strengths_list_item {
  position: relative;
  width: 560px;
  height: auto;
  background-color: #FFF;
  list-style: none;
}

.strengths_list_item_01 {
  height: 333px;
}

.strengths_list_item_02 {
  height: 389px;
}

.strengths_list_item_03 {
  width: 100%;
  height: 512px;
}

.strengths_number {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: -50px;
  left: 65px;
}

.strengths_number_top {
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.strengths_number_bottom {
  font-size: 3.5em;
  letter-spacing: 0;
}

.strengths_inner {
  text-align: left;
  padding: 50px 80px;
}

.strengths_inner h4 {
  font-size: 1.5em;
  line-height: 1.7em;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.strengths_inner .strengths_heading {
  font-size: 1.75em;
  line-height: 1.8em;

}

.strengths_inner .strengths_heading span {
  position: relative;
  font-size: 5.2rem;
  letter-spacing: 0;
  margin-left: 8px;
}

.strengths_inner .strengths_heading span::after {
  content: '';
  position: absolute;
  left: -8px;
  bottom: 7px;
  height: 12px;
  width: 130px;
  background-color: #F6B054;
  z-index: -1;
}

.strengths_inner h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46px;
  height: 3px;
  background: linear-gradient(to right, #F6B054 50%, #E9E9E9 50%);
}

.strengths_inner p {
  width: 382px;
  line-height: 1.75em;
  letter-spacing: 0.08em;
}

.strengths_inner_04 p {
  width: 396px;
}

.qualification {
  display: flex;
  justify-content: space-between;
}

.qualification_inner {
  width: 468px;
  display: flex;
}

.qualification_inner h5 {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #123765;
}

.qualification_list {
  margin-left: 24px;

}

.qualification_list_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.qualification_list_item dt {
  width: 170px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.qualification_list_item .qualification_name {
  width: 135px;
}

.qualification_list_item dd {
  width: 192px;
  text-align: left;
}

.qualification_list_item dd span {
  font-size: 1.5em;
  font-weight: 600;
  color: #6B96C6;
}

.qualification_list_item .number_part {
  font-size: 2rem;
  letter-spacing: 0;
}

@media(max-width: 1200px) {
  .section_strengths {
    margin-bottom: 130px;
    margin-bottom: -100px;
  }

  .strengths_content {
    max-width: 92%;
    padding-bottom: 200px;
  }

  .section_strengths .strengths_title {
    margin-bottom: -100px;
  }

  .strengths_title {
    top: -100px;
  }

  .section_strengths .strengths_title:before {
    width: calC((100vw - 92%) / 2);
  }

  .section_strengths .en_title {
    color: #fff;
    margin-bottom: 100px;
  }

  .strengths_wrapper {
    width: 100%;
  }

  .strengths_list {
    row-gap: 97px;
  }

  .strengths_list_item {
    width: 46%;
  }

  .strengths_list_item_03 {
    width: 100%;
  }

  .strengths_number {
    left: 28px;
  }

  .strengths_inner {
    padding: 40px 40px;
  }

  .strengths_inner p {
    width: 100%;
  }

  .qualification_inner {
    width: 468px;
    display: flex;
  }

  .qualification_list {
    margin-left: 24px;
  }
}

@media(max-width: 1140px) {
  .strengths_list {
    flex-direction: column;
    align-items: center;
  }

  .strengths_list_item {
    width: 560px;
    height: auto;
  }

  .strengths_inner_04 h4 {
    margin-bottom: 24px;
  }

  .qualification {
    flex-direction: column;
  }

  .qualification_inner {
    flex-direction: column;
  }

  .qualification_inner:first-of-type {
    margin-bottom: 24px;
  }

  .qualification_inner h5 {
    margin-bottom: 10px;
  }

  .qualification_list {
    margin-left: 0;
  }

  .qualification_list_item {
    justify-content: flex-start;
  }

  .qualification_list_item .qualification_name:last-of-type {
    margin-right: 34px;
  }
}

@media(max-width: 896px) {
  .section_strengths {
    margin-bottom: 0px;
  }

  .strengths_content {
    padding-bottom: 100px;
  }

  .strengths_title {
    top: -40px;
  }

  .section_strengths .strengths_title {
    margin-bottom: -40px;
  }

  .section_strengths .title_bg {
    padding-top: 18px;
    height: 40px;
    margin-bottom: 12px;
  }

  .section_strengths .en_title {
    line-height: 38px;
    margin-bottom: 50px;
  }

  .strengths_list {
    row-gap: 72px;
  }

  .strengths_list_item {
    width: 100%;
  }

  .strengths_inner {
    padding: 36px 20px 34px;
  }

  .strengths_number {
    top: -46px;
    left: 14px
  }

  .strengths_number_top {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .strengths_number_bottom {
    font-size: 5rem;
  }

  .strengths_inner h4 {
    font-size: 1.8rem;
    line-height: 1.6em;
  }

  .strengths_inner .strengths_heading {
    font-size: 2rem;
    line-height: 1.8em;
  }

  .strengths_inner .strengths_heading span {
    font-size: 3.6rem;
  }

  .strengths_inner .strengths_heading span::after {
    left: -7px;
    bottom: 3px;
    height: 10px;
    width: 100px;
  }

  .qualification_inner {
    width: 100%;
  }

  .qualification_inner h5 {
    font-size: 1.6rem;
  }

  .qualification_list_item dt {
    width: 145px;
    letter-spacing: 0.08em;
    font-weight: 500;
    font-size: 1.4rem;
  }

  .qualification_list_item dd {
    width: auto;
    font-size: 1.4rem;
  }

  .qualification_list_item dd span {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  .qualification_list_item .number_part {
    font-size: 1.6rem;
  }

  .qualification_list_item .qualification_name:last-of-type {
    margin-right: 11px;
  }



}

/* department */
.section_department {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 130px;
}

.section_department .department_title {
  position: relative;
}

.section_department .department_title:before {
  content: "";
  position: absolute;
  height: 100%;
  width: calC((100vw - 1200px) / 2);
  background-color: #fff;
  top: 1px;
  right: 100%;
}

.section_department .title_bg {
  position: relative;
  clip-path: none;
  background-color: inherit;
  height: auto;
  padding-top: 60px;
  height: 100px;
  margin-bottom: 16px;
}

.section_department .title_bg:before {
  content: "";
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  background: #FFF;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 1px;
  left: -1px;
}

.department_wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;

}

.section_department .title_bg h3 {
  position: relative;
}

.section_department .en_title {
  color: #123765;
}

.department_p {
  width: 1200px;
  text-align: left;
  line-height: 1.75em;
  letter-spacing: 0.15em;
  margin: 0 auto 60px;
}

.department_division {
  position: relative;
}

.department_division:not(:last-child) {
  margin-bottom: 100px;
}

.department_bg {
  position: relative;
}

.department_division_heading {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.department_division_inner {
  text-align: left;
  color: #FFF;
  padding: 70px 40px 310px 0;
  margin-bottom: -260px;
  width: 60%;
  background-color: #123765;
  position: relative;
  border-radius: 0 15px 0 0;
}

.department_division_inner_reverse {
  width: 64%;
  border-radius: 15px 0 0 15px;
  padding: 70px 0 310px 60px;
  margin-left: auto;
}

.department_division_inner:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: calc(100vw - (1000px / 2));
  background-color: #123765;
}

.department_division_inner_reverse:before {
  left: 100%;
}

.department_division_inner h4 {
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 40px;
}

.department_division_inner p {
  font-weight: 400;
}

.department_division_content {
  position: relative;
  z-index: 0;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 50px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 2px 50px 10px rgba(0, 0, 0, 0.05);
}

.department_list {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.department_list_reverse {
  flex-direction: row-reverse;
}

.department_list_item .department_image {
  width: 400px;
  height: auto;
}

.department_list_item .department_image img {
  width: 100%
}

.department_body {
  text-align: left;
}

.department_body h5 {
  position: relative;
  font-size: 1.125em;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding-bottom: 16px;
}

.department_body h5:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: linear-gradient(to right, #F6B054 50%, #E9E9E9 50%);
}

.department_body h6 {
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #123765;
  margin: 24px 0 16px;
}

.department_body p {
  width: 450px;
  letter-spacing: 0.06em;
  line-height: 1.8em;
  margin-bottom: 0;
}


@media(max-width: 1200px) {
  .section_department {
    max-width: 92%;
    margin-bottom: 100px;
  }

  .section_department .department_title:before {
    width: calC((100vw - 92%) / 2);
  }

  .department_wrapper {
    width: 100%;
  }

  .department_p {
    width: 100%;
    margin-bottom: 50px;
  }

  .department_division_inner .br_sp {
    display: none;
  }

  .department_division_heading {
    width: 100%;
  }

  .department_division_inner {
    text-align: left;
    color: #FFF;
    padding: 70px 40px 310px 0;
    margin-bottom: -260px;
    width: 60%;
    background-color: #123765;
    position: relative;
    border-radius: 0 15px 0 0;
  }

  .department_division_inner_reverse {
    width: 64%;
    border-radius: 15px 0 0 15px;
    padding: 70px 0 310px 60px;
    margin-left: auto;
  }

  .department_division_inner:before {
    width: calc(100vw - (92% / 2));
  }

  .department_division_inner h4 {
    font-size: 3.6rem;
  }

  .department_list {
    align-items: center;
  }

  .department_list_item_left {
    width: 40%;
  }

  .department_list_item_right {
    width: 55%;
  }

  .department_list_item .department_image {
    width: 100%;
  }

  .department_list_item .department_image img {
    width: 100%
  }

  .department_body p {
    width: 100%;
  }
}

@media(max-width: 896px) {
  .section_department {
    margin-bottom: 50px;
  }

  .department_title {
    top: -40px;
  }

  .section_department .department_title {
    margin-bottom: -40px;
  }

  .section_department .title_bg {
    padding-top: 18px;
    height: 40px;
    margin-bottom: 12px;
  }

  .section_department .en_title {
    margin-bottom: 28px;
  }

  .department_p {
    margin-bottom: 32px;
  }

  .department_division_heading {
    width: 96%;
    margin: 0 0 0 4%;
  }

  .department_division_inner {
    padding: 32px 30px 730px 0;
    margin-bottom: -700px;
    width: 100%;
    border-radius: 0 10px 10px 0;
  }

  .department_division_inner:before {
    width: calc(100vw - (88% / 2));
  }

  .department_division_inner h4 {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }

  .department_division_inner p {
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }

  .department_division_content {
    max-width: 92%;
    padding: 30px 20px;
    border-radius: 10px;
  }

  .department_list {
    align-items: center;
    flex-direction: column;
  }

  .department_list_item_left {
    width: auto;
    margin-bottom: 16px;
  }

  .department_list_item_right {
    width: auto;
  }

  .department_body h5 {
    font-size: 1.5rem;
    padding-bottom: 14px;
  }

  .department_body h6 {
    font-size: 1.7rem;
    margin: 16px 0 12px;
  }

  .department_body p {
    font-size: 1.5rem;
  }

  .department_division:not(:last-child) {
    margin-bottom: 50px;
  }

  .department_division_inner_reverse {
    width: 100%;
    border-radius: 15px 0 0 15px;
    padding: 32px 0 760px 30px;
    margin-bottom: -730px;
    margin-left: auto;
  }

  .department_division_heading_reserve {
    width: 96%;
    margin: 0 4% 0 0;
  }

}

/* interview */
.section_interview {
  padding: 110px 0 220px;
  background-color: #123765;
  margin-bottom: -100px;
}

.interview_wrapper {
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

.interview_01 {
  width: 100%;
  margin-bottom: 70px;
}

.interview_02 {
  width: 100%;
}

.interview_top {
  position: relative;
  width: 100%;
}

.interview_image {
  width: 100%;
  height: 480px;
  background-size: cover;
}

.interview_image_01 {
  background-image: url(../image/photo/interview_01_pc.jpg);
}

.interview_image_02 {
  background-image: url(../image/photo/interview_02_pc.jpg);
  left: auto;
  right: 150px;
}

.interview_profile {
  position: absolute;
  bottom: -50px;
  width: 313px;
  height: 200px;
  background-color: #123765;
  color: #FFF;
  padding: 32px 50px;
  text-align: left;
}

.interview_profile_01 {
  left: 150px;
}

.interview_profile_02 {
  right: 150px;
}

.interview_profile dl {
  margin-bottom: 20px;
}

.interview_profile dl dt {
  position: relative;
  font-size: 0.875em;
  letter-spacing: 0.1em;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.interview_profile dl dt:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(to right, #F6B054 50%, #E9E9E9 50%);
}

.interview_profile dl dd {
  font-size: 2em;
}

.interview_profile dl dd span {
  font-size: 3rem;
  letter-spacing: 0.02em;
}

.profile_year {
  font-size: 0.875em;
}

.interview_bottom {
  padding: 110px 0 80px;
  background-color: #FFF;
}

.interview_inner {
  max-width: 900px;
  height: auto;
  margin: 0 auto;
}

.interview_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  row-gap: 50px;
}

.interview_list_item {
  width: 400px;
  height: auto;
}

.interview_q {
  position: relative;
  width: 100%;
  background-color: #FEF4E7;
  padding: 16px 0 12px 62px;
  margin-bottom: 12px;
}

.interview_q::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 35px solid #F6B054;
  /* 三角形の高さと色 */
  border-right: 35px solid transparent;
  /* 三角形の底辺 */
}

.interview_q h4 {
  font-size: 1.125em;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-align: left;
}

.interview_q h4::before {
  position: absolute;
  font-size: 2.8rem;
  top: 13px;
  left: 10px
}

.interview_q .interview_q_01::before {
  content: "Q1";
}

.interview_q .interview_q_02::before {
  content: "Q2";
}

.interview_q .interview_q_03::before {
  content: "Q3";
}

.interview_q .interview_q_04::before {
  content: "Q4";
}

.interview_list_item p {
  text-align: left;
  letter-spacing: 0.044em;
  line-height: 1.75em;
}

@media(max-width: 1200px) {
  .section_interview {
    padding: 100px 0 220px;
    margin-bottom: -100px;
  }

  .interview_wrapper {
    max-width: 92%;
  }

  .interview_top {
    position: relative;
    width: 100%;
  }

  .interview_image {
    height: 400px;
  }

  .interview_profile_01 {
    margin-left: 4%;
    left: 0;
  }

  .interview_profile_02 {
    margin-right: 4%;
    right: 0;
  }

  .interview_image_01 {
    background-position: right;
  }

  .interview_image_02 {
    background-position: left;
  }

  .interview_bottom {
    padding: 110px 0 60px;
  }

  .interview_inner {
    max-width: 92%;
  }

  .interview_list {
    row-gap: 40px;
  }

  .interview_list_item {
    width: 46%;
  }

  .interview_q {
    padding: 16px 10px 12px 62px;
  }
}

@media(max-width: 1140px) {
  .interview_profile {
    position: absolute;
    bottom: -70px;
    width: 250px;
    height: 170px;
    padding: 24px;
  }

  .interview_profile dl {
    margin-bottom: 10px;
  }

  .interview_profile dl dt {
    font-size: 1.2rem;
    padding-bottom: 6px;
    margin-bottom: 16px;
  }

  .interview_profile dl dt:after {
    height: 1px;
  }

  .interview_profile dl dd {
    font-size: 2rem;
  }

  .interview_profile dl dd span {
    font-size: 2rem;
  }

  .interview_profile p {
    font-size: 1.2rem;
    margin-bottom: -5px;
  }

  .profile_year {
    font-size: 1.2rem;
  }

  .interview_bottom {
    padding: 110px 0 40px;
  }

  .interview_list {
    flex-direction: column;
  }

  .interview_list_item {
    width: 100%;
  }

  .interview_q {
    padding: 10px 10px 10px 48px;
  }

  .interview_q::before {
    border-top: 30px solid #F6B054;
    border-right: 30px solid transparent;
  }

  .interview_q h4::before {
    font-size: 2.2rem;
    top: 9px;
    left: 10px;
  }

  .interview_q h4 {
    font-size: 1.6rem;
  }
}

@media(max-width: 896px) {
  .section_interview {
    padding: 40px 0 90px;
    margin-bottom: -40px;
  }

  .interview_image {
    width: 100%;
    height: 285px;
    background-size: cover;
  }

  .interview_profile {
    width: 240px;
    height: 155px;
    padding: 18px 24px;
  }
}

@media(max-width:500px) {
  .interview_image_01 {
    background-image: url(../image/photo/interview_01_sp.jpg);
  }

  .interview_image_02 {
    background-image: url(../image/photo/interview_02_sp.jpg);
    left: auto;
    right: 150px;
  }
}

/* career */
.section_career {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 130px;
}

.section_career .career_title {
  position: relative;
}

.section_career .career_title:before {
  content: "";
  position: absolute;
  height: 100%;
  width: calC((100vw - 1200px) / 2);
  background-color: #fff;
  top: 1px;
  right: 100%;
}

.section_career .title_bg {
  position: relative;
  clip-path: none;
  background-color: inherit;
  height: auto;
  padding-top: 60px;
  height: 100px;
  margin-bottom: 16px;
}

.section_career .title_bg:before {
  content: "";
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  background: #FFF;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 1px;
  left: -1px;
}

.career_wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;

}

.section_career .title_bg h3 {
  position: relative;
}

.section_career .en_title {
  color: #123765;
}

.career_wrapper_p {
  text-align: left;
  line-height: 1.75em;
  letter-spacing: 0.08em;
  margin: 0 auto;
  margin-bottom: 60px;
}


.career_box {
  background-color: #FFF;
  border-radius: 15px;
  box-shadow: 0 2px 50px 10px rgba(0, 0, 0, 0.05);
}

.career_box_title {
  position: relative;
  margin-bottom: 90px;
  padding: 30px 10px;
  border-radius: 15px 15px 0 0;
  background-color: #123765;
  text-align: center;
  color: #fff;
  font-size: 1.5em;
  font-weight: 600;
}

.career_box_title::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 27px 18px 0 18px;
  border-style: solid;
  border-color: #123765 transparent transparent transparent;
}

.career_flow {
  position: relative;
  width: 730px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.career_flow::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 45px;
  width: 1px;
  height: calc(100% - 115px);
  background-color: #123765;
}

.career_flow::after {
  content: '';
  position: absolute;
  top: 0;
  right: 250px;
  width: 1px;
  height: calc(100% - 155px);
  border-right: dashed 1px #123765;
}

.career_flow_item {
  overflow: hidden;
  position: relative;
}

.career_flow_item:not(:last-child) {
  margin: 0 auto 30px;
  padding-bottom: 50px;
  border-bottom: dashed 1px #123765;
}

.career_list {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  text-align: left;
}

.career_list_left {
  width: 365px;
  margin-left: 80px;
}

.career_list p {
  font-size: 0.875em;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.8em;
}

.career_list_left::before,
.career_flow_item_p::before {
  content: '';
  position: absolute;
  background: url(../image/icon/item_01.png) no-repeat 50% 50% / cover;
  top: 0;
  left: 33px;
  width: 25px;
  height: 25px;
}

.career_list_left h5 {
  font-size: 1.25em;
  margin-bottom: 16px;
}

.career_list_left p {
  margin-bottom: 10px;
}

.career_list_right {
  margin-left: 64px;
}

.career_list_right h6 {
  font-size: 1.125em;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.career_list_right_01 {
  margin-top: 16px;
}

.career_list_right_02 {
  margin-top: 40px;
}

.career_flow_item_p {
  text-align: left;
  font-size: 1.125em;
  color: #123765;
  margin-left: 80px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media(max-width: 1200px) {
  .section_career {
    max-width: 92%;
    margin-bottom: 130px;
  }

  .section_career .career_title:before {
    width: calC((100vw - 92%) / 2);
  }

  .career_wrapper {
    width: 100%;
  }

  .career_flow {
    padding-bottom: 80px;
  }

  .career_flow::before {
    height: calc(100% - 100px);
  }

  .career_flow::after {
    height: calc(100% - 135px);
  }
}

@media(max-width: 896px) {
  .section_career {
    margin-bottom: 50px;
  }

  .section_career .title_bg {
    padding-top: 18px;
    height: 40px;
    margin-bottom: 12px;
  }

  .section_career .en_title {
    margin-bottom: 28px;
  }

  .career_wrapper_p {
    margin-bottom: 32px;
  }

  .career_box {
    border-radius: 10px;
  }

  .career_box_title {
    margin-bottom: 45px;
    padding: 20px 10px;
    border-radius: 10px 10px 0 0;
    font-size: 1.6rem;
  }

  .career_box_title::before {
    bottom: -19px;
    border-width: 19px 11px 0 11px;
  }

  .career_flow {
    padding-bottom: 40px;
    width: 92%;
  }

  .career_flow::before {
    left: 20px;
    height: calc(100% - 115px);
  }

  .career_flow_item:not(:last-child) {
    margin: 0 auto 28px;
    padding-bottom: 28px;
  }

  .career_list {
    flex-direction: column;
    width: 100%;
  }

  .career_list_left::before,
  .career_flow_item_p::before {
    top: 0;
    left: 11px;
    width: 19px;
    height: 19px;
  }

  .career_list_left {
    width: auto;
    margin-left: 40px;
  }

  .career_list_left h5 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
  }

  .career_list_right_01 {
    margin-top: 0;
  }

  .career_list_right_02 {
    margin-top: 0;
  }

  .career_list_right {
    margin-left: 40px;
    display: flex;
    align-items: center;
    width: 240px;
    height: 30px;
  }

  .career_list_right h6 {
    font-size: 1.3rem;
    background-color: #F6B054;
    padding: 3px 9px;
    width: 20%;
    height: 100%;
  }

  .career_list_right p {
    font-size: 1.4rem;
    background-color: #FEF4E7;
    width: 80%;
    height: 100%;
    padding: 3px 10px;
  }

  .list_right_part {
    height: 62px;
  }

  .list_right_part h6 {
    padding: 19px 9px;
  }

  .list_right_part p {
    padding: 7px 10px;
  }

  .career_flow::after {
    display: none;
  }

  .career_flow_item_p {
    font-size: 1.6rem;
    margin-left: 40px;
    font-weight: 600;
  }

  .career_flow::before {
    height: calc(100% - 8%);
  }
}

@media(max-width:675px) {
  .career_flow::before {
    height: calc(100% - 10%);
  }
}

@media(max-width:370px) {
  .career_flow::before {
    height: calc(100% - 12%);
  }
}


/* suitable */
.section_suitable {
  background-color: #123765;
}

.suitable_wrapper {
  width: 100%;
  height: 100%;
  background-image: url("../image/photo/suitable_person_pc.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
  aspect-ratio: 1440 / 808;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.suitable_wrapper::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 17%;
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  background: #123765;
  z-index: 1;
}

.suitable_wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 17%;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
  background: #123765;
  z-index: 1;
}

.suitable_p {
  position: relative;
}

.suitable_wrapper p {
  font-size: 30px;
  margin-bottom: 72px;
}

.suitable_wrapper p span {
  font-size: 42px;
}

.suitable_wrapper p::before {
  content: url(../image/icon/item_03.png);
  position: absolute;
  left: -50px;
  top: 6px;
}

.suitable_wrapper p::after {
  content: url(../image/icon/item_03.png);
  position: absolute;
  right: -45px;
  top: 6px;
  transform: scaleX(-1);
}

.suitable_wrapper ul {
  font-size: 24px;
  font-weight: 400;
  width: 520px;
  margin: 0 auto;
  text-align: left;
}

.suitable_wrapper ul li {
  padding-left: 34px;
  list-style-type: none;
  position: relative;
  background-image: url("../image/icon/item_02.png");
  background-repeat: no-repeat;
  background-size: 22px;
  background-position: left top;
  margin-bottom: 20px;
}

.sui_sp {
  display: none;
}

@media(max-width: 1140px) {
  .suitable_wrapper {
    margin-bottom: 40px;
  }

  .suitable_wrapper p {
    font-size: 26px;
    margin-bottom: 72px;
  }

  .suitable_wrapper p span {
    font-size: 38px;
  }

  .suitable_wrapper p::before {
    left: -34px;
    top: 0;
  }

  .suitable_wrapper p::after {
    right: -20px;
    top: 0;
  }

  .suitable_wrapper ul {
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-left: 48px;
  }

  .suitable_wrapper ul li {
    margin-bottom: 18px;
  }
}

@media(max-width: 1000px) {
  .suitable_wrapper {
    background-image: url("../image/photo/suitable_person_sp.jpg");
    aspect-ratio: 375 / 498;
    margin-bottom: 20px;
    padding-bottom: 30px;
  }

  .suitable_wrapper::before {
    height: 12%;
  }

  .suitable_wrapper::after {
    height: 12%;
  }
}

@media(max-width: 896px) {
  .suitable_wrapper p::before {
    left: -34px;
    top: 0;
  }

  .suitable_wrapper p::after {
    right: -20px;
    top: 0;
  }

  .suitable_wrapper ul {
    font-size: 22px;
    letter-spacing: 0.08em;
    margin-left: 48px;
  }

  .suitable_wrapper ul li {
    margin-bottom: 18px;
  }
}

@media(max-width: 680px) {
  .sui_sp {
    display: block;
  }

  .suitable_wrapper p {
    font-size: 1.6rem;
    line-height: 1.8em;
    margin-bottom: 30px;
  }

  .suitable_wrapper p span {
    font-size: 2.3rem;
  }

  .suitable_wrapper p::before {
    left: 0;
    top: 15px;
  }

  .suitable_wrapper p::after {
    right: 4px;
    top: 16px;
  }

  .suitable_wrapper ul {
    letter-spacing: 0.08em;
    margin-left: 188px;
    width: 300px;
    margin: 0 auto;
  }

  .suitable_wrapper ul li {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }

  .suitable_wrapper ul li {
    padding-left: 24px;
    background-size: 16px;
    margin-bottom: 9px;
    background-position: left top 3px;
  }
}




/* flow */
.section_flow {
  background-color: #123765;
  padding: 120px 0 100px;
}

.flow_wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.flow_content_01 {
  margin: 90px 0 100px;
}

.flow_content h4 {
  position: relative;
  text-align: left;
  font-size: 1.625em;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding-left: 50px;
  z-index: 1
}

.flow_content h4::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 328px;
  height: 52px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  background: #FFF;
  z-index: -1;
}

.flow_inner {
  background-color: #FFF;
  width: 100%;
  padding: 80px 0;
}

.step_list {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  list-style: none;
}

.step_list_item {
  position: relative;
  width: 100%;
  height: 110px;
  display: flex;
}

.step_list_item:not(:last-child) {
  margin-bottom: 32px;
}

.step {
  position: relative;
  width: 14%;
  height: 100%;
  background-color: #F6B054;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step_triangle::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 16px 12px 0 12px;
  border-style: solid;
  border-color: #F6B054 transparent transparent transparent;
}

.step:last-of-type::after {
  display: none;
}

.step_number p {
  font-size: 2.625em;
  color: #FFF;
}

.step_number p span {
  font-size: 2rem;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 8px;
}

.step_body {
  width: 86%;
  border: solid 1px #939393;
  border-left: none;
  display: flex;
  align-items: center;
}

.step_body p {
  text-align: left;
  margin-left: 60px;
  font-size: 1.25em;
  font-weight: 400;
  letter-spacing: 0.08em;
  width: 86%;
}

@media(max-width: 1200px) {
  .section_flow {
    padding: 120px 0 100px;
  }

  .flow_wrapper {
    max-width: 92%;
  }

  .flow_content_01 {
    margin: 90px 0 100px;
  }

  .flow_inner {
    padding: 60px 0;
  }

  .step_list {
    width: 92%;
  }
}

@media(max-width: 896px) {
  .section_flow {
    padding: 70px 0 40px;
  }

  .flow_content_01 {
    margin: 40px 0 50px;
  }

  .flow_content h4::before {
    width: 198px;
    height: 40px;
    clip-path: polygon(0 0, 78% 0, 100% 100%, 0 100%);
  }

  .flow_content h4 {
    font-size: 1.6rem;
    padding-left: 4%;
    font-weight: 500;
  }

  .flow_inner {
    padding: 20px 0;
  }

  .step_list_item {
    height: 80px;
  }

  .step_list_item:not(:last-child) {
    margin-bottom: 20px;
  }

  .step_number p {
    font-size: 2.4rem;
  }

  .step_number p span {
    font-size: 1.1rem;
    margin-bottom: -6px;
  }

  .step_triangle::after {
    bottom: -14px;
    border-width: 14px 9px 0 9px;
  }

  .step_body p {
    margin-left: 20px;
    font-size: 1.4rem;
    line-height: 1.5em;
  }
}



/* form */
.section_form {
  position: relative;
  background-color: #FFF;
  padding-top: 190px;
}

.section_form h3 {
  position: relative;
  z-index: 1;
  bottom: 30px;
  margin-bottom: 30px;
}

.section_form h3::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 413px;
  height: 90px;
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  background: #F6F6F6;
  z-index: -1;
}

.form_wrapper {
  background-color: #F6F6F6;
  max-width: 1200px;
  margin: 0 auto 110px;
  padding-bottom: 90px;
}

.form_content {
  width: 1000px;
  margin: 0 auto;
}

.form_content p {
  text-align: left;
  letter-spacing: 0.08em;
  line-height: 1.75em;
  margin-bottom: 40px;
}

#wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.form_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.form_item_last {
  align-items: flex-start;
}

form#mailformpro label {
  letter-spacing: 0.1em;
}

.textarea_last {
  margin-top: 12px;
}

.input_area {
  width: 76%;
  text-align: left;
}

.form_item input {
  width: 100%;
  padding: 20px;
  margin: 0;
  box-shadow: none;
  border: none;
  font-size: 0.9em;
  color: #949494;
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.03);
}

.form_item .must {
  display: inline-block;
  font-size: 0.75em;
  padding: 1px 10px;
  margin-left: 14px;
  background-color: #F23A3C;
  color: #FFF;
  vertical-align: 2px;
  float: none;
  border: none;
  text-shadow: none;
  box-shadow: none;
  background-image: none;
  border-radius: 0;
}

.form_item .input_area #textarea {
  width: 100% !important;
  height: 160px !important;
  padding: 20px;
  margin: 0;
  box-shadow: none;
  border: none;
  font-size: 1.1em;
  box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.03);
}

.contact_form p {
  font-size: 0.75em;
  text-align: left;
  letter-spacing: 0.08em;
}

.contact_form p a {
  color: #03568E;
}

.input_area .mfp_err {
  background-image: none;
  padding: 0;
  color: #F23A3C;
  font-size: 0.8em;
  letter-spacing: 0.1em;
}

.section_form .button .action-btn span {
  font-size: 2.0rem;
}

@media(max-width:1200px) {
  .section_form {
    padding-top: 170px;
  }

  .form_wrapper {
    max-width: 92%;
    margin: 0 auto 100px;
    padding-bottom: 70px;
  }

  .form_content {
    width: 92%;
  }

  .form_content p {
    margin-bottom: 30px;
  }

  .form_item {
    justify-content: normal;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
    gap: 8px;
  }

  .input_area {
    width: 100%;
  }
}

@media(max-width:896px) {
  .section_form {
    padding-top: 72px;
  }

  .form_wrapper {
    margin: 0 auto 50px;
    padding-bottom: 40px;
  }

  .section_form h3::before {
    top: -10px;
    width: 202px;
    height: 40px;
  }

  .section_form h3 {
    margin-bottom: -10px;
  }

  .form_content p {
    margin-bottom: 20px;
  }

  form#mailformpro label {
    font-size: 1.4rem;
  }

  .form_item input {
    height: 48px;
    font-size: 1.2rem;
    padding-left: 12px;
  }

  .form_item .input_area #textarea {
    height: 200px !important;
    padding-left: 12px;
  }

  .form_item {
    margin-bottom: 18px;
  }

  button[type='submit'].action-btn {
    width: 295px;
    padding: 10px 0px 10px 47px;
  }

  .section_form .button .action-btn span {
    font-size: 1.6rem;
  }
}