/*==================================================
sub about
===================================*/
.page_message {
  padding: 2rem 0;
  position: relative;
  margin-bottom: 12rem;
}

@media screen and (max-width: 767px) {
  .page_message {
    margin-bottom: 0;
    padding: 4rem 0;
  }
}

.page_message::before {
  content: "";
  width: 95%;
  height: 70vw;
  background-color: #f7f7f7;
  position: absolute;
  top: 30%;
  right: 0;
  z-index: -1;
  max-height: 1050px;
}

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

.page_message::after {
  content: "Message";
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 10rem;
  letter-spacing: 0.08em;
  color: #f2f2f2;
  text-transform: uppercase;
  transform: rotate(90deg) translateY(-50%);
  position: absolute;
  top: 8%;
  right: -5rem;
}

@media screen and (max-width: 767px) {
  .page_message::after {
    top: 16%;
  }
}

.page_message__content {
  position: relative;
  z-index: 1;
}

.page_message__title {
  margin-bottom: 3rem;
  position: absolute;
  top: 5rem;
  left: 0;
}

@media screen and (max-width: 767px) {
  .page_message__title {
    margin-bottom: 2rem;
    top: 0;
  }
}

.page_message__title .section__jp {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.06rem;
  background-color: #005293;
  color: #fff;
  width: fit-content;
  padding: 0.5rem 1.5rem 1rem;
}

@media screen and (max-width: 767px) {
  .page_message__title .section__jp {
    font-size: 2rem;
  }
}

.page_message__title .section__en {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  line-height: 1.8rem;
  text-transform: uppercase;
  color: #005293;
}

@media screen and (max-width: 767px) {
  .page_message__title .section__en {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
}

.page_message__img {
  position: relative;
  margin-bottom: 2.5rem;
}

.page_message__lead {
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .page_message__lead {
    font-size: 2.4rem;
  }
}

.page_message__lead span {
  background-color: #298dde;
  display: inline-block;
  width: fit-content;
  padding: 0.2rem 1.5rem;
  margin-bottom: 1rem;
}

.page_message__text {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 3rem;
  margin-bottom: 2rem;
}

.page_message__qualification {
  border: solid 1px #003056;
  background-color: #fff;
  padding: 4.5rem 3.5rem;
}

@media screen and (max-width: 767px) {
  .page_message__qualification {
    padding: 3rem 2rem;
  }
}

.page_message__qualification h3 {
  font-size: 2.4rem;
  font-weight: 600;
  padding-left: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.8rem;
  border-bottom: solid 1px #003056;
  position: relative;
}

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

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

@media screen and (max-width: 767px) {
  .page_message__qualification_wrapper {
    flex-direction: column;
  }
}

.page_message__qualification h3:before {
  content: "";
  display: block;
  width: 0.4rem;
  height: 2.5rem;
  background-color: #ff7600;
  position: absolute;
  top: calc(50% - 0.75rem);
  left: 0;
  transform: translateY(-50%);
}

.page_message__qualification_list_item {
  font-size: 1.5rem;
  letter-spacing: 0.12rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  position: relative;
}

.page_message__qualification_list_item:last-of-type {
  margin-bottom: 0;
}

.page_message__qualification_list_item::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 5rem;
  background-color: #003056;
  position: absolute;
  top: 50%;
  left: 0;
}

.page_message__qualification_list p {
  line-height: 3.4rem;
}

/*==================================================
page_about_feature
===================================*/

.page_about_feature {
  padding: 4rem 0;
}

.page_about_feature .section__title {
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .page_about_feature .section__title {
    margin-bottom: 2rem;
  }
}

.page_about_feature .title {
  width: 100%;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background-color: #298dde;
  padding: 1rem 1.5rem;
  margin: 0 auto 3rem;
}

@media screen and (max-width: 767px) {
  .page_about_feature .title {
    font-size: 2rem;
    line-height: 2.6rem;
  }
}

.page_about_feature__container {
  counter-reset: num;
}

.page_about_feature__block {
  position: relative;
  margin: 2rem 0;
}

.page_about_feature__block:nth-of-type(n + 2) {
  margin-top: 3.6rem;
}

.page_about_feature__block::after {
  display: none;
  counter-increment: num;
  content: "Feature 0" counter(num);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  position: absolute;
  transform: translateY(-50%);
  right: 0;
  height: 100%;
  white-space: nowrap;
  top: 53%;
  font-family: "Oswald", sans-serif;
  font-weight: normal;
  font-size: 60px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #f7f7f7;
}

.page_about_feature__block:nth-child(even)::after {
  right: auto;
  left: 0;
}

.page_about_feature__wrap {
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  position: relative;
  z-index: 1;
  max-width: 60rem;
  align-items: center;
}

.page_about_feature__img::before {
  padding-top: 57.145%;
}

.page_about_feature__box {
  position: relative;
}

.page_about_feature__num {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.13em;
  text-align: left;
  color: #298dde;
  text-transform: uppercase;
}

.page_about_feature__theme {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  line-height: 2.5rem;
  text-align: left;
  color: #222;
  border-bottom: 1px solid #000;
  margin-top: 0;
  padding-bottom: 14px;
  margin-bottom: 11px;
}

.page_about_feature__text {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 30px;
  text-align: left;
  color: #3f3f3f;
}

.page_about_feature__fiveContainer {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.page_about_feature__fiveBox {
  background-color: #ffffff;
  padding-left: 100px;
  padding-right: 99.7px;
  padding-top: 54px;
  padding-bottom: 67px;
}

.page_about_feature__fiveNum {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.13em;
  text-transform: capitalize;
  text-align: center;
  color: #ea4a1a;
  margin-bottom: 5px;
}

.page_about_feature__fiveTitle {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.04em;
  text-align: center;
  color: #222;
  margin-bottom: 18px;
}

.page_about_feature__fiveImage {
  width: 100%;
  margin-bottom: 32px;
}

.page_about_feature__fiveContent {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 30px;
  text-align: left;
  color: #3f3f3f;
}

.page_about_feature__btn {
  padding-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .page_about_feature {
    padding: 0 0 8rem;
  }

  .page_about_feature__title {
    margin-bottom: 7.5rem;
  }

  .page_about_feature__title::before,
  .page_about_feature__title::after {
    position: absolute;
    top: -5.5rem;
    content: "";
  }

  .page_about_feature__title::before {
    left: -20rem;
  }

  .page_about_feature__title::after {
    right: -20rem;
  }

  .page_about_feature__theme {
    font-size: 2.4rem;
    line-height: 3.5rem;
  }

  .page_about_feature__btn {
    padding-top: 6.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .page_about_feature__block:nth-of-type(n + 2) {
    margin-top: -5px;
    padding-bottom: 5px;
  }

  .page_about_feature__block:nth-child(4) {
    margin-top: 24px;
  }

  .page_about_feature__block::after {
    display: block;
    font-size: 66px;
    text-align: center;
    right: 0;
  }

  .page_about_feature__block:nth-child(even)::after {
    left: 0;
  }

  .page_about_feature__wrap {
    max-width: 160rem;
    padding-right: 0;
    padding-left: 0;
    flex-direction: row;
    gap: 0 7rem;
  }

  .page_about_feature__block:nth-child(even) .page_about_feature__wrap {
    flex-direction: row-reverse;
  }

  .page_about_feature__img {
    max-width: 63rem;
  }

  .page_about_feature__img img {
    object-fit: cover !important;
  }

  .page_about_feature__box {
    margin-top: 1px;
    padding-left: 1px;
    width: 40%;
    max-width: 57rem;
    align-items: center;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .page_about_feature__title::before {
    left: -20rem;
  }

  .page_about_feature__title::after {
    right: -20rem;
  }

  .page_about_feature__block::after {
    display: none;
  }

  .page_about_feature__theme {
    padding-bottom: 5px;
    margin-bottom: 5px;
    margin-top: -5px;
  }

  .page_about_feature__text {
    font-size: 13px;
    line-height: 1.75;
  }

  .page_about_feature__five {
    padding-top: 30px;
    margin-top: 30px;
    padding-bottom: 30px;
  }

  .page_about_feature__fiveContainer {
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .page_about_feature__fiveBox {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .page_about_feature__fiveImage {
    margin-bottom: 6px;
  }

  .page_about_feature__bottom {
    margin-top: 30px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .page_about_feature__container {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .page_about_feature__block {
    margin-top: 0;
  }

  .page_about_feature__block:nth-of-type(n + 2) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .page_about_feature__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .page_about_feature__block:nth-of-type(n + 2) {
    margin-top: 0;
  }
}

/*==================================================
page_about_flow
===================================*/
.page_about_flow {
  background-color: #f3f6f8;
  padding: 7.5rem 0;
  position: relative;
}

@media screen and (max-width: 1320px) {
  .page_about_flow {
    padding: 6rem 0;
  }
}

.page_about_flow::before {
  content: "";
  width: 25.5rem;
  height: 22rem;
  background: url(../img/page_about_flow_bottom.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 7rem;
}

@media screen and (max-width: 1320px) {
  .page_about_flow::before {
    display: none;
  }
}

.page_about_flow .section__title {
  margin-bottom: 4rem;
}

@media screen and (max-width: 1320px) {
  .page_about_flow .section__title {
    margin-bottom: 2rem;
  }
}

.page_about_flow__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.page_about_flow__list_item {
  display: flex;
  align-items: center;
  gap: 4rem;
}

@media screen and (max-width: 767px) {
  .page_about_flow__list_item {
    flex-direction: column;
    gap: 2rem;
  }
}

.page_about_flow__list_image {
  width: 23rem;
  height: 23rem;
  flex-shrink: 0;
  position: relative;
}

.page_about_flow__list_image::after {
  content: "";
  width: 1px;
  height: 10rem;
  display: block;
  background-color: #003056;
  position: absolute;
  bottom: -10rem;
  left: 50%;
  transform: translateX(-50%);
}

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

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

.page_about_flow__list_content {
  max-width: 65rem;
}

@media screen and (max-width: 1320px) {
  .page_about_flow__list_content {
    max-width: unset;
  }
}

.page_about_flow__list_lead {
  padding-bottom: 2rem;
  border-bottom: solid 1px #003056;
  margin-bottom: 2rem;
}

.page_about_flow__list_lead label {
  display: block;
  font-family: "Oswald", sans-serif;
  color: #2dace5;
  font-size: 1.4rem;
  letter-spacing: 0.13rem;
}

.page_about_flow__list_lead span {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.06rem;
}

@media screen and (max-width: 1320px) {
  .page_about_flow__list_lead span {
    font-size: 1.8rem;
  }
}

.page_about_flow__list_text {
  letter-spacing: 0.06rem;
  line-height: 3rem;
}

/*==================================================
sub about END
===================================*/
