/* ABOUT */
.about .container {
  padding: 0;
}

.about__banner {
  width: 100%;
}

.about__row {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  background-color: var(--color-white);
}

@media only screen and (min-width: 768px) {
  .about__row {
    flex-direction: row;
    gap: 20px;
    max-width: calc(50% + 666px);
    margin-left: auto;
    align-items: unset;
  }
}

@media only screen and (min-width: 992px) {
  .about__row {
    gap: 54px;
  }
}

.about__left {
  width: 100%;
  padding: 60px 15px 0;
}

@media only screen and (min-width: 768px) {
  .about__left {
    padding: 0;
    padding-left: 30px;
    padding-block: 60px;
  }
}

@media only screen and (min-width: 992px) {
  .about__left {
    padding-block: 144px;
    padding-left: 54px;
  }
}

@media only screen and (min-width: 1200px) {
  .about__left {
    max-width: calc(100% - 638px);
  }
}

@media only screen and (min-width: 768px) {
  .about__content {
    padding-left: 38px;
  }
}

.about__ttl {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 1.8px;
}

@media only screen and (min-width: 768px) {
  .about__ttl {
    letter-spacing: 2.4px;
  }
}

@media only screen and (min-width: 992px) {
  .about__ttl {
    font-size: 24px;
    line-height: 29px;
  }
}

.about__ttl .bg {
  background-position-y: 0;
  background-image: linear-gradient(
    transparent 12px,
    var(--color-highlight-y) 0
  );
}

@media only screen and (min-width: 768px) {
  .about__ttl .bg {
    background-image: linear-gradient(
      transparent 22px,
      var(--color-highlight-y) 0
    );
  }
}

.about__txt {
  font-weight: 400;
  margin-top: 15px;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 1.3px;
}

@media only screen and (min-width: 768px) {
  .about__txt {
    letter-spacing: 1.6px;
    font-size: 16px;
    line-height: 24px;
  }
}

@media only screen and (min-width: 992px) {
  .about__txt {
    margin-top: 20px;
    font-size: 16px;
    line-height: 32px;
  }
}

.about__img img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .about__img img {
    height: 100.1%;
    object-fit: cover;
  }
}

@media only screen and (min-width: 768px) {
  .about__img {
    max-width: 50%;
  }
}

@media only screen and (min-width: 1200px) {
  .about__img {
    max-width: auto;
  }
}

.about__btn {
  text-align: end;
  margin-top: 30px;
}

@media only screen and (min-width: 992px) {
  .about__btn {
    margin-top: 52px;
  }
}

/* FLOW */
.flow .c-heading-primary {
  margin-bottom: 40px;
}

.flow__block {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
  gap: 30px;
}

@media only screen and (min-width: 768px) {
  .flow__block {
    flex-direction: row;
    gap: 50px;
    padding-inline: 20px;
  }
}

@media only screen and (min-width: 992px) {
  .flow__block {
    flex-direction: row;
    gap: 105px;
  }
}

@media only screen and (min-width: 1200px) {
  .flow__block {
    flex-direction: row;
    gap: 105px;
    padding: 0;
  }
}

@media only screen and (min-width: 768px) {
  .flow__left {
    max-width: 495px;
  }
}

.flow__right {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .flow__right {
    max-width: 60%;
  }
}

@media only screen and (min-width: 992px) {
  .flow__right {
    max-width: 50%;
  }
}

.flow__box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

@media only screen and (min-width: 768px) {
  .flow__box {
    align-items: center;
    gap: 15px;
  }
}

@media only screen and (min-width: 992px) {
  .flow__box {
    gap: 30px;
  }
}

.flow__box:not(:last-of-type) {
  padding-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .flow__box:not(:last-of-type) {
    padding-bottom: 40px;
  }
}

.flow__box:not(:last-of-type) .flow__img {
  position: relative;
}

.flow__box:not(:last-of-type) .flow__img::after {
  content: "";
  width: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1px;
  background-color: var(--color-black);
  z-index: -1;
  height: calc(100% + 60px);
}

@media only screen and (min-width: 768px) {
  .flow__box:not(:last-of-type) .flow__img::after {
    height: calc(100% + 40px);
  }
}

.flow__left-txt {
  font-weight: 400;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 1.3px;
}

@media only screen and (min-width: 768px) {
  .flow__left-txt {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 1.6px;
  }
}

.flow__btn {
  text-align: end;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) {
  .flow__btn {
    margin-top: 40px;
    text-align: start;
  }
}

.flow__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media only screen and (min-width: 768px) {
  .flow__head {
    gap: 20px;
    align-items: center;
    flex-direction: row;
  }
}

.flow__num {
  font-family: var(--font-lato);
  font-size: 30px;
  font-weight: 900;
  line-height: 36px;
  letter-spacing: 1.5px;
}

@media only screen and (min-width: 768px) {
  .flow__num {
    line-height: 60px;
    font-size: 50px;
    letter-spacing: 2.5px;
  }
}

.flow__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 1.6px;
}

@media only screen and (min-width: 768px) {
  .flow__title {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 1.8px;
  }
}

.flow__txt {
  font-weight: 400;
  margin-top: 8.6px;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 1.3px;
}

@media only screen and (min-width: 768px) {
  .flow__txt {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 1.6px;
    margin-top: 10px;
  }
}

.flow__img {
  max-width: 100px;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .flow__img {
    max-width: 120px;
  }
}

/* STRATEGIC */
.strategic__block {
  max-width: 1200px;
  margin: 0 auto;
}

.strategic__top-txt {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 1.3px;
}

@media only screen and (min-width: 768px) {
  .strategic__top-txt {
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 2px;
  }
}

.strategic__row {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px 45px;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) {
  .strategic__row {
    margin-top: 40px;
  }
}

.strategic__box {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .strategic__box {
    width: calc((100% / 3) - (45px * 2) / 3);
  }
}

.strategic__ttl {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 2px;
}

@media only screen and (min-width: 768px) {
  .strategic__ttl {
    margin-top: 20px;
    line-height: 31px;
    letter-spacing: 2.6px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--color-black);
    font-size: 18px;
  }
}

@media only screen and (min-width: 992px) {
  .strategic__ttl {
    font-size: 26px;
  }
}

.strategic__txt {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .strategic__txt {
    font-size: 16px;
    line-height: 26px;
  }
}

.strategic__box-top {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--color-black);
  gap: 10px;
  padding-bottom: 4px;
}

@media only screen and (min-width: 768px) {
  .strategic__box-top {
    padding-bottom: 0;
    gap: 0;
    display: block;
    border-bottom: 0;
  }
}

.strategic__img {
  max-width: 80px;
}

@media only screen and (min-width: 768px) {
  .strategic__img {
    max-width: 100%;
  }
}

.strategic__top-box {
  max-width: 728px;
  text-align: center;
  border: 2.145px solid var(--color-black);
  padding: 29px 0 14px;
  margin: 0 auto 30px;
}

@media only screen and (min-width: 768px) {
  .strategic__top-box {
    margin: 0 auto 40px;
    padding: 56px 0 26px;
    border: 4px solid var(--color-black);
  }
}

.strategic__top-box-txt {
  font-weight: 700;
  position: relative;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1.6px;
}

@media only screen and (min-width: 768px) {
  .strategic__top-box-txt {
    font-size: 30px;
    line-height: 51px;
    letter-spacing: 3px;
  }
}

.strategic__top-box-txt::after {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background-color: var(--color-black);
  width: 1px;
  height: 16px;
  top: -21px;
}

@media only screen and (min-width: 768px) {
  .strategic__top-box-txt::after {
    top: -40px;
    width: 2px;
    height: 30px;
  }
}

.strategic__top-box-txt .color {
  color: #003968;
}

.strategic__top-box-txt .lg {
  font-weight: 700;
  line-height: 1;
  font-size: 22px;
  letter-spacing: 2.2px;
}

@media only screen and (min-width: 768px) {
  .strategic__top-box-txt .lg {
    font-size: 40px;
    letter-spacing: 4px;
  }
}

/* STOP */
.stop {
  background-color: var(--color-white2);
}

.stop__ttl {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 3px;
}

.stop__ttl .ls {
  letter-spacing: normal;
  line-height: 1;
}

@media only screen and (min-width: 768px) {
  .stop__ttl {
    font-size: 36px;
    line-height: 60px;
    letter-spacing: 5px;
  }
}

@media only screen and (min-width: 992px) {
  .stop__ttl {
    font-size: 50px;
  }
}

.stop__txt {
  font-weight: 400;
  font-size: 13px;
  line-height: 23px;
  margin-top: 20px;
}

@media only screen and (min-width: 678px) {
  .stop__txt {
    text-align: center;
    font-size: 18px;
    margin-top: 40px;
    line-height: 32px;
  }
}

.stop__sec {
  max-width: 1075px;
  margin: 30px -15px 0;
}

.stop__sec img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .stop__sec {
    margin: 60px auto 0;
  }
}

.aim {
	 background-color: #fff;
}
 .aim .aim__wrapper {
	 max-width: 1200px;
	 margin: 20px auto 0px;
}
 .aim .aim__row {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 flex-direction: column;
	 gap: 20px;
	 margin-bottom: 20px;
}
 .aim .aim__content {
	 max-width: 100%;
	 width: 100%;
	 padding-inline: 15px;
}
 .aim .aim__h3 {
	 color: #000;
	 font-size: 18px;
	 font-weight: 700;
	 line-height: 120%;
	 letter-spacing: 1.8px;
	 padding-bottom: 5px;
	 border-bottom: 1.552px solid #000;
	 margin-bottom: 5px;
}
 .aim .aim__point {
	 color: #000;
	 font-size: 14px;
	 font-weight: 700;
	 line-height: 180%;
	 letter-spacing: 1.4px;
	 margin-bottom: 3px;
	 display: flex;
	 gap: 3px;
	 align-items: center;
	 justify-content: flex-start;
}
 .aim .aim__point::before {
	 content: "";
	 background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 18C10.1819 18 11.3522 17.7672 12.4442 17.3149C13.5361 16.8626 14.5282 16.1997 15.364 15.364C16.1997 14.5282 16.8626 13.5361 17.3149 12.4442C17.7672 11.3522 18 10.1819 18 9C18 7.8181 17.7672 6.64778 17.3149 5.55585C16.8626 4.46392 16.1997 3.47177 15.364 2.63604C14.5282 1.80031 13.5361 1.13738 12.4442 0.685084C11.3522 0.232792 10.1819 -1.76116e-08 9 0C6.61305 3.55683e-08 4.32387 0.948211 2.63604 2.63604C0.948212 4.32387 0 6.61305 0 9C0 11.3869 0.948212 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM8.768 12.64L13.768 6.64L12.232 5.36L7.932 10.519L5.707 8.293L4.293 9.707L7.293 12.707L8.067 13.481L8.768 12.64Z' fill='black'/%3E%3C/svg%3E");
	 background-size: cover;
	 background-repeat: no-repeat;
	 width: 13px;
	 height: 13px;
	 display: inline-block;
	 flex-shrink: 0;
}
 .aim .aim__content-box:not(:last-child) {
	 margin-bottom: 20px;
}
 .aim .aim__note {
	 color: #000;
	 text-align: center;
	 font-size: 20px;
	 font-weight: 700;
	 line-height: normal;
	 letter-spacing: 2px;
}
 .aim .aim__note-sm {
	 font-size: 18px;
	 letter-spacing: 3px;
}
 .aim .aim__note-bg {
	 background-image: linear-gradient(transparent 12px, var(--color-highlight-y) 0);
	 display: inline-block;
	 line-height: 1;
}
 .aim .c-heading-primary__main {
	 font-size: 26px;
	 line-height: 1;
}
 .aim .c-heading-primary__main::before {
	 height: 100%;
	 top: 0;
	 transform: unset;
}
 .aim .aim__box {
	 max-width: 1076px;
	 margin: 0 auto;
	 background-color: #f0f0f0;
	 padding: 30px 15px;
	 margin-top: 25px;
}
 .aim .aim__box-wrapper {
	 max-width: 740px;
	 margin: 0 auto;
}
 .aim .aim__box-row {
	 display: flex;
	 align-items: center;
}
 .aim .aim__box-first {
	 text-align: center;
	 margin-right: 20px;
}
 .aim .aim__box-title {
	 background: #000;
	 padding: 5px;
	 color: #fff;
	 text-align: center;
	 font-size: 12px;
	 font-weight: 700;
	 line-height: 15px;
	 letter-spacing: 1px;
	 margin-bottom: 10px;
}
 .aim .aim__box-img-text {
	 color: #000;
	 text-align: center;
	 font-size: 20px;
	 font-weight: 700;
	 line-height: 24.781px;
	 letter-spacing: 2.6px;
	 margin-top: 20px;
}
 .aim .aim__box-middle {
	 margin-right: 20px;
	 margin-bottom: 0;
}
 .aim .aim__box-last .aim__box-img-text {
	 font-size: 18px;
}
 .end.aim .aim__wrapper {
	 max-width: 1076px;
	 margin-bottom: 0;
}
 @media (max-width: 767px) {
	 .end.aim .c-heading-primary__main {
		 font-size: 22px;
	}
}
 .end {
	 background-color: #f0f0f0;
}
 .end .end__row {
	 display: flex;
	 align-items: stretch;
	 justify-content: center;
	 flex-direction: column;
	 gap: 10px;
	 margin-bottom: 20px;
}
 .end .end__col {
	 width: 100%;
	 background: #fff;
	 border: 2.736px solid #f6d600;
	 padding-bottom: 14px;
}
 .end .end__col:first-child {
	 border: 2.736px solid #777;
}
 .end .end__col:first-child .end__title {
	 background-color: #777;
}
 .end .end__col:first-child .end__desc {
	 background: #e2e2e2;
}
 .end .end__title {
	 color: #fff;
	 font-size: 14px;
	 font-weight: 700;
	 line-height: 1.5;
	 letter-spacing: 2px;
	 padding: 10px 0;
	 background-color: #f6d600;
	 min-height: 54px;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 margin-bottom: 14px;
}
 .end .end__title img {
	 max-width: 133px;
	 aspect-ratio: 3.9970032964;
}
 .end .end__col-wrapper {
	 padding-inline: 14px;
}
 .end .end__img {
	 margin-bottom: 14px;
	 padding-inline: 7px;
}
 .end .end__subtitle {
	 color: #000;
	 text-align: center;
	 font-size: 14px;
	 font-weight: 700;
	 line-height: 150%;
	 margin-bottom: 13px;
}
 .end .end__desc {
	 background: #f3ff14;
}
 .end .end__desc-text {
	 color: #000;
	 text-align: center;
	 font-size: 12px;
	 font-weight: 700;
	 line-height: 150%;
	 padding: 14px;
}
 .end .end__desc-text-md {
	 font-size: 14px;
}
 .end .end__desc-text-lg {
	 font-size: 17px;
}
 .end .stop__ttl {
	 font-size: 23px;
}
 @media only screen and (min-width: 768px) {
	 .aim .aim__wrapper {
		 max-width: 1200px;
		 margin: 40px auto 40px;
	}
	 .aim .aim__row {
		 display: flex;
		 align-items: center;
		 justify-content: center;
		 flex-direction: row;
		 gap: 38px;
		 margin-bottom: 40px;
	}
	 .aim .aim__content {
		 max-width: 50%;
		 width: auto;
	}
	 .aim .aim__img {
		 max-width: 40%;
	}
	 .aim .aim__h3 {
		 font-size: 24px;
		 line-height: 120%;
		 letter-spacing: 2.6px;
		 padding-bottom: 8px;
		 border-bottom: 2px solid #000;
		 margin-bottom: 16px;
	}
	 .aim .aim__point {
		 color: #000;
		 font-size: 16px;
		 font-weight: 700;
		 line-height: 180%;
		 letter-spacing: 1.8px;
		 margin-bottom: 4px;
		 display: flex;
		 gap: 4px;
		 align-items: center;
		 justify-content: flex-start;
	}
	 .aim .aim__point::before {
		 width: 18px;
		 height: 18px;
	}
	 .aim .aim__content-box:not(:last-child) {
		 margin-bottom: 40px;
	}
	 .aim .aim__box {
		 margin-top: 45px;
		 padding: 50px 15px;
	}
	 .aim .aim__box-img img {
		 max-width: 250px;
		 height: 150px;
	}
	 .aim .aim__box-row {
		 display: flex;
		 align-items: flex-end;
		 justify-content: center;
	}
	 .aim .aim__box-middle {
		 margin-right: 27px;
		 margin-bottom: 60px;
	}
	 .aim .aim__box-last .aim__box-img-text {
		 font-size: 24px;
	}
	 .aim .aim__box-first {
		 text-align: center;
		 margin-right: 53px;
	}
	 .aim .aim__box-title {
		 padding: 14.12px;
		 font-size: 20px;
		 line-height: 24.781px;
		 letter-spacing: 2px;
		 margin-bottom: 20px;
	}
	 .aim .aim__box-img-text {
		 font-size: 26px;
		 line-height: 24.781px;
		 letter-spacing: 2.6px;
		 margin-top: 14px;
	}
	 .end .c-heading-primary__main {
		 font-size: 23px;
	}
	 .end .end__title {
		 font-size: 16px;
	}
	 .end .end__subtitle {
		 font-size: 16px;
	}
	 .end .end__row {
		 gap: 20px;
		 flex-direction: row;
	}
	 .end .end__col {
		 width: calc(100% / 2 - ((20px * 1) / 2));
	}
	 .aim__block {
		 padding-left: 15px;
	}
}
 @media only screen and (min-width: 992px) {
	 .aim .aim__content {
		 max-width: calc(100% - 619px);
		 flex-grow: 1;
		 padding-inline: unset;
	}
	 .aim .aim__img {
		 max-width: 100%;
	}
	 .aim .aim__h3 {
		 font-size: 26px;
		 line-height: 120%;
		 letter-spacing: 2.6px;
		 padding-bottom: 8px;
		 border-bottom: 2px solid #000;
		 margin-bottom: 16px;
	}
	 .aim .aim__point {
		 font-size: 18px;
		 line-height: 180%;
		 letter-spacing: 1.8px;
		 margin-bottom: 4px;
		 display: flex;
		 gap: 4px;
		 align-items: center;
		 justify-content: flex-start;
	}
	 .aim .aim__note {
		 color: #000;
		 text-align: center;
		 font-size: 32px;
		 font-weight: 700;
		 line-height: 44px;
		 letter-spacing: 3.2px;
	}
	 .aim .aim__note-sm {
		 font-size: 30px;
		 letter-spacing: 3px;
	}
	 .aim .aim__note-bg {
		 background-image: linear-gradient(transparent 14px, var(--color-highlight-y) 0);
	}
	 .aim .aim__content-box:not(:last-child) {
		 margin-bottom: 40px;
	}
	 .aim .c-heading-primary__main {
		 font-size: 50px;
	}
	 .aim .c-heading-primary__main::before {
		 height: 72px;
		 top: 0;
		 transform: unset;
	}
	 .end .end__title {
		 font-size: 20px;
		 min-height: 80px;
		 margin-bottom: 20px;
		 padding: 15px 0;
	}
	 .end .end__title img {
		 max-width: 195px;
		 aspect-ratio: 3.9967206395;
	}
	 .end .end__subtitle {
		 font-size: 19px;
		 margin-bottom: 20px;
	}
	 .end .end__row {
		 gap: 67px;
		 margin-bottom: 40px;
	}
	 .end .end__col {
		 width: calc(100% / 2 - ((67px * 1) / 2));
		 background: #fff;
		 border: 4px solid #f6d600;
		 padding-bottom: 20px;
	}
	 .end .end__col:first-child {
		 border: 4px solid #777;
	}
	 .end .end__col:first-child .end__title {
		 background-color: #777;
	}
	 .end .end__col:first-child .end__desc {
		 background: #e2e2e2;
	}
	 .end .end__col-wrapper {
		 padding-inline: 20px;
	}
	 .end .end__img {
		 margin-bottom: 20px;
		 padding-inline: 8px;
	}
	 .end .end__desc-text {
		 font-size: 20px;
		 padding: 11px;
	}
	 .end .end__desc-text-md {
		 font-size: 20px;
	}
	 .end .end__desc-text-lg {
		 font-size: 24px;
	}
}
 @media (min-width: 1200px) {
	 .aim__block {
		 padding-left: 120px;
	}
}
 @supports (-webkit-backdrop-filter: none) {
	.aim .aim__note-bg {
		 background-image: linear-gradient(transparent 6px, var(--color-highlight-y) 0);
	}
	 @media only screen and (min-width: 768px) {
		.aim .aim__note-bg {
			 background-image: linear-gradient(transparent 14px, var(--color-highlight-y) 0);
		}
	}
}
 