.button-circle--blue {
  position: relative;
  display: block;
  background-color: var(--color-navy);
  border-radius: 50%;
}
.button-circle--blue__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--blue__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.button-circle--blue__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--blue:hover, .button-circle--blue:active {
  border: solid 1px var(--color-navy);
}
.button-circle--blue:hover .button-circle--blue__arrow svg, .button-circle--blue:active .button-circle--blue__arrow svg {
  color: var(--color-navy);
}
.button-circle--blue:hover .button-circle--blue__inner, .button-circle--blue:active .button-circle--blue__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-circle--blue--diagonal {
  position: relative;
  display: block;
  background-color: var(--color-navy);
  border-radius: 50%;
}
.button-circle--blue--diagonal__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--blue--diagonal__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  transition: color 0.3s ease;
  transform: rotate(-45deg);
}
.button-circle--blue--diagonal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--blue--diagonal:hover, .button-circle--blue--diagonal:active {
  border: solid 1px var(--color-navy);
}
.button-circle--blue--diagonal:hover .button-circle--blue--diagonal__arrow svg, .button-circle--blue--diagonal:active .button-circle--blue--diagonal__arrow svg {
  color: var(--color-navy);
}
.button-circle--blue--diagonal:hover .button-circle--blue--diagonal__inner, .button-circle--blue--diagonal:active .button-circle--blue--diagonal__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-circle--red {
  position: relative;
  display: block;
  background-color: var(--color-red);
  border-radius: 50%;
}
.button-circle--red__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--red__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.button-circle--red__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--red:hover, .button-circle--red:active {
  border: solid 1px var(--color-red);
}
.button-circle--red:hover .button-circle--red__arrow svg, .button-circle--red:active .button-circle--red__arrow svg {
  color: var(--color-red);
}
.button-circle--red:hover .button-circle--red__inner, .button-circle--red:active .button-circle--red__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-circle--white {
  position: relative;
  display: block;
  background-color: var(--color-white);
  border-radius: 50%;
}
.button-circle--white__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 36.67%;
  transform: translate(-50%, -50%);
  aspect-ratio: 22/17;
}
.button-circle--white__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--color-navy);
  transition: color 0.3s ease;
}
.button-circle--white__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-navy);
  border-radius: 50%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
}
.button-circle--white:hover .button-circle--white__arrow svg, .button-circle--white:active .button-circle--white__arrow svg {
  color: var(--color-white);
}
.button-circle--white:hover .button-circle--white__inner, .button-circle--white:active .button-circle--white__inner {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.button-plus--blue {
  position: relative;
  background: #0e0e8f;
  border-radius: 50%;
}
.button-plus--blue__plus {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 10px;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
}
.button-plus--blue__plus svg {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: color 0.3s ease;
}
@media (width < 1440px) {
  .button-plus--blue__plus {
    width: 0.69vw;
  }
}
@media (width <= 767px) {
  .button-plus--blue__plus {
    width: 6px;
  }
}

.pdf-link__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 160px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #6c6c6c;
  border-radius: 100px;
  cursor: pointer;
}
@media (width < 1440px) {
  .pdf-link__link {
    gap: 0.69vw;
    width: 12vw;
    height: 2.64vw;
    padding: 0.56vw 1.53vw 0.56vw 1.78vw;
  }
}
@media (width <= 767px) {
  .pdf-link__link {
    gap: 8px;
    width: 120px;
    height: 28px;
    padding: 6px 16px 6px 18px;
  }
}
.pdf-link__link-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
  color: var(--color-black);
  white-space: nowrap;
}
@media (width < 1440px) {
  .pdf-link__link-text {
    font-size: 0.97vw;
  }
}
@media (width <= 767px) {
  .pdf-link__link-text {
    font-size: 10px;
  }
}
.pdf-link__link-icon {
  width: 29px;
  aspect-ratio: 29/16;
}
@media (width < 1440px) {
  .pdf-link__link-icon {
    width: 2.01vw;
  }
}
@media (width <= 767px) {
  .pdf-link__link-icon {
    width: 16px;
  }
}

.message__bg {
  position: sticky;
  top: 0;
  z-index: -1;
  width: 100%;
  background-image: image-set(url("../images/bg_comp-message.png") 1x, url("../images/bg_comp-message@2x.png") 2x);
  background-size: cover;
  background-position: center;
  margin-top: calc(-1 * min(12.85vw, 185px));
  will-change: transform;
  aspect-ratio: 1440/1021;
  margin-bottom: calc(-1 * min(58.06vw, 836px));
}
@media (width <= 767px) {
  .message__bg {
    background-image: image-set(url("../images/bg_comp-message--sp.png") 1x, url("../images/bg_comp-message--sp@2x.png") 2x);
    margin-top: -12.85%;
    aspect-ratio: 720/1021;
    margin-bottom: -128.96%;
  }
}

.message {
  position: relative;
}
.message__container {
  position: relative;
  padding-top: min(9.03vw, 130px);
}
@media (width <= 767px) {
  .message__container {
    padding-top: 60px;
  }
}
.message .anchor-links {
  display: flex;
  justify-content: center;
}
.message .anchor-links__list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 928px;
  max-width: 100%;
  background: var(--color-white);
  border: 1px solid var(--blue-01);
  border-radius: 10px;
}
@media (width < 1440px) {
  .message .anchor-links__list {
    width: 62.5vw;
    border-radius: 0.7vw;
  }
}
@media (width <= 767px) {
  .message .anchor-links__list {
    flex-direction: column;
    width: 100%;
    max-width: 345px;
    border-radius: 5px;
  }
}
.message .anchor-links__list-item {
  position: relative;
  flex: 1;
  height: 59px;
}
.message .anchor-links__list-item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 1px;
  height: 72.88%;
  background: var(--blue-01);
  transform: translateY(-50%);
  content: "";
}
@media (width <= 767px) {
  .message .anchor-links__list-item:not(:last-child)::after {
    top: unset;
    right: 50%;
    bottom: 0;
    width: 72.88%;
    height: 1px;
    transform: translateX(50%);
  }
}
@media (width < 1440px) {
  .message .anchor-links__list-item {
    height: 4.1vw;
  }
}
@media (width <= 767px) {
  .message .anchor-links__list-item {
    flex: auto;
    width: 100%;
    height: 42px;
  }
}
.message .anchor-links__list-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
}
.message .anchor-links__list-link::after {
  display: block;
  width: 10px;
  height: 5px;
  background-image: url("../images/icon_keyboard-arrow-down.svg");
  background-size: cover;
  content: "";
}
@media (width < 1440px) {
  .message .anchor-links__list-link::after {
    width: 0.7vw;
    height: 0.35vw;
  }
}
@media (width <= 767px) {
  .message .anchor-links__list-link::after {
    width: 7px;
    height: 3.5px;
  }
}
@media (width < 1440px) {
  .message .anchor-links__list-link {
    gap: 0.7vw;
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .message .anchor-links__list-link {
    gap: 5px;
    font-size: 14px;
  }
}
.message__content {
  margin-top: 98px;
}
@media (width < 1440px) {
  .message__content {
    margin-top: 6.81vw;
  }
}
@media (width <= 767px) {
  .message__content {
    margin-top: 60px;
  }
}
.message__title {
  font-size: 30px;
  font-weight: 900;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .message__title {
    font-size: 2.08vw;
  }
}
@media (width < 1440px) {
  .message__title {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .message__title {
    font-size: 24px;
  }
}
.message__text-wrapper {
  margin-top: 40px;
}
@media (width < 1440px) {
  .message__text-wrapper {
    margin-top: 2.78vw;
  }
}
@media (width <= 767px) {
  .message__text-wrapper {
    margin-top: 20px;
  }
}
.message__subtitle {
  font-size: 26px;
  font-weight: 700;
  line-height: 180%;
  color: var(--color-black);
  margin-bottom: 22px;
}
@media (width < 1440px) {
  .message__subtitle {
    font-size: 1.81vw;
    margin-bottom: 1.53vw;
  }
}
@media (width <= 767px) {
  .message__subtitle {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.message__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
}
@media (width < 1440px) {
  .message__text {
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .message__text {
    font-size: 14px;
  }
}
.message__ceo-name {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 31px;
}
.message__ceo-name span {
  display: flex;
  gap: 26px;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
}
.message__ceo-name span img {
  width: 130px;
}
@media (width < 1440px) {
  .message__ceo-name span img {
    width: 9.03vw;
  }
}
@media (width <= 767px) {
  .message__ceo-name span img {
    width: 100px;
  }
}
@media (width < 1440px) {
  .message__ceo-name span {
    gap: 1.81vw;
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .message__ceo-name span {
    gap: 20px;
    font-size: 14px;
  }
}
@media (width < 1440px) {
  .message__ceo-name {
    margin-top: 1.94vw;
  }
}
@media (width <= 767px) {
  .message__ceo-name {
    margin-top: 24px;
  }
}

.comp-info {
  margin-top: min(13.19vw, 190px);
}
.comp-info__container {
  position: relative;
  background-color: var(--color-white);
  border-radius: min(2.78vw, 40px) min(2.78vw, 40px) 0 0;
  padding-top: min(4.39vw, 60px);
  padding-bottom: min(11.6vw, 167px);
}
.comp-info__container::before {
  position: absolute;
  top: 91px;
  right: -92px;
  z-index: 1;
  display: block;
  width: 260px;
  /* prettier-ignore */
  background-image: image-set(url("../images/decoration_comp-comp-info.png") 1x, url("../images/decoration_comp-comp-info@2x.png") 2x);
  background-size: cover;
  background-position: center;
  aspect-ratio: 260/243;
  content: "";
}
@media (width < 1440px) {
  .comp-info__container::before {
    top: 6.32vw;
    right: -6.39vw;
    width: 18.13vw;
  }
}
@media (width <= 767px) {
  .comp-info__container::before {
    top: clamp(5rem, 1.8680089485rem + 15.6599552573vw, 9.375rem);
    right: clamp(-6.25rem, -8.0397091723rem + 8.9485458613vw, -3.75rem);
    width: 130px;
  }
}
@media (width <= 767px) {
  .comp-info__container {
    border-radius: 20px 20px 0 0;
    padding-top: 40px;
    padding-bottom: 107px;
  }
}
.comp-info .section-title--line {
  font-size: 30px;
  font-weight: 900;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .comp-info .section-title--line {
    font-size: 2.08vw;
  }
}
@media (width < 1440px) {
  .comp-info .section-title--line {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .comp-info .section-title--line {
    font-size: 24px;
  }
}
.comp-info__content {
  margin-top: 28px;
}
@media (width < 1440px) {
  .comp-info__content {
    margin-top: 1.94vw;
  }
}
@media (width <= 767px) {
  .comp-info__content {
    margin-top: 20px;
  }
}
.comp-info__table {
  margin-left: 4px;
}
@media (width <= 767px) {
  .comp-info__table {
    margin-left: 0;
  }
}
.comp-info__head, .comp-info__data {
  padding-block: 11px;
}
@media (width < 1440px) {
  .comp-info__head, .comp-info__data {
    padding-block: 0.76vw;
  }
}
@media (width <= 767px) {
  .comp-info__head, .comp-info__data {
    padding-block: 8px;
  }
}
.comp-info__head {
  width: 212px;
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  color: var(--color-black);
  text-align: left;
  vertical-align: top;
}
@media (width < 1440px) {
  .comp-info__head {
    width: 14.72vw;
    font-size: 1.11vw;
  }
}
@media (width <= 767px) {
  .comp-info__head {
    width: 95px;
    font-size: 13px;
  }
}
.comp-info__data {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: var(--color-black);
  padding-inline: 1.4em;
}
@media (width < 1440px) {
  .comp-info__data {
    font-size: 1.11vw;
    padding-inline: 1.4em;
  }
}
@media (width <= 767px) {
  .comp-info__data {
    font-size: 13px;
    padding-inline: 1.2em;
  }
}
.comp-info__list--ordered {
  list-style-type: decimal;
  padding-inline-start: 24px;
}
@media (width < 1440px) {
  .comp-info__list--ordered {
    padding-inline-start: 1.67vw;
  }
}
@media (width <= 767px) {
  .comp-info__list--ordered {
    padding-inline-start: 16px;
  }
}
@media (width <= 767px) {
  .comp-info {
    margin-top: 80px;
  }
}

.comp-history__container {
  position: relative;
  background-color: var(--color-white);
  margin-top: -1px;
  /*
  &::before {
    position: absolute;
    top: min(61.18vw, 881px);
    left: -92px;
    z-index: 1;
    display: block;
    width: 260px;
    /* prettier-ignore */ /*
  background-image: image-set(url("/images/decoration_comp-history-container-01.png") 1x,url("/images/decoration_comp-history-container-01@2x.png") 2x);
  background-size: cover;
  background-position: center;
  aspect-ratio: 260/243;
  content: "";
  @media (width < 1440px) {
    right: -6.39vw;
    width: 18.13vw;
  }
  @media (width <= 767px) {
    top: util.rclamp(80, 150, 320, 767);
    right: util.rclamp(-100, -60, 320, 767);
    width: 130px;
  }
}
*/
}
.comp-history__container::after {
  position: absolute;
  top: min(100.49vw, 1447px);
  right: calc(-1 * min(13.13vw, 189px));
  z-index: 1;
  display: block;
  width: min(27.08vw, 390px);
  /* prettier-ignore */
  background-image: image-set(url("../images/decoration_comp-history-container-02.png") 1x, url("../images/decoration_comp-history-container-02@2x.png") 2x);
  background-size: cover;
  background-position: center;
  aspect-ratio: 390/364;
  content: "";
}
@media (width < 1440px) {
  .comp-history__container::after {
    top: 6.32vw;
  }
}
@media (width <= 767px) {
  .comp-history__container::after {
    top: clamp(5rem, 1.8680089485rem + 15.6599552573vw, 9.375rem);
    right: clamp(-6.25rem, -8.0397091723rem + 8.9485458613vw, -3.75rem);
    width: 130px;
  }
}
.comp-history__title-text {
  font-size: 30px;
  font-weight: 900;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .comp-history__title-text {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .comp-history__title-text {
    font-size: 24px;
  }
}

.time-line {
  position: relative;
  z-index: 5;
  margin-top: min(2.78vw, 40px);
}
.time-line__tag-list {
  display: flex;
  gap: min(0.97vw, 14px);
}
@media (width <= 767px) {
  .time-line__tag-list {
    flex-direction: column;
    gap: 8px;
  }
}
.time-line__tag-item {
  display: flex;
  align-items: center;
  gap: min(0.56vw, 8px);
  font-size: min(1.11vw, 16px);
  font-weight: 400;
  line-height: 180%;
  color: #000;
}
@media (width <= 767px) {
  .time-line__tag-item {
    gap: 6px;
    font-size: 12px;
  }
}
.time-line__tag--danboru {
  display: inline-block;
  width: min(1.88vw, 27px);
  /* prettier-ignore */
  background-image: image-set(url("../images/icon_tag--danboru.png") 1x, url("../images/icon_tag--danboru@2x.png") 2x);
  background-size: cover;
  background-position: center;
  aspect-ratio: 27/29;
}
@media (width <= 767px) {
  .time-line__tag--danboru {
    width: 16.2px;
  }
}
.time-line__tag--flex {
  display: inline-block;
  width: min(1.74vw, 25px);
  /* prettier-ignore */
  background-image: image-set(url("../images/icon_tag--flex.png") 1x, url("../images/icon_tag--flex@2x.png") 2x);
  background-size: cover;
  background-position: center;
  aspect-ratio: 25/29;
}
@media (width <= 767px) {
  .time-line__tag--flex {
    width: 15px;
  }
}
.time-line__tag--coating {
  display: inline-block;
  width: min(1.74vw, 25px);
  /* prettier-ignore */
  background-image: image-set(url("../images/icon_tag--coating.png") 1x, url("../images/icon_tag--coating@2x.png") 2x);
  background-size: cover;
  background-position: center;
  aspect-ratio: 25/29;
}
@media (width <= 767px) {
  .time-line__tag--coating {
    width: 15px;
  }
}
.time-line__inner {
  position: relative;
  margin-top: min(2.08vw, 30px);
  padding-bottom: min(6.11vw, 88px);
}
.time-line__inner::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #0e0e8f;
  transform: translateX(-50%);
  content: "";
}
@media (width <= 767px) {
  .time-line__inner::before {
    left: 7.5%;
  }
}
@media (width <= 767px) {
  .time-line__inner {
    max-width: 600px;
    margin-top: 20px;
    padding-bottom: 60px;
    margin-inline: auto;
  }
}
.time-line__item--highlight--01 .time-line__highlight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: linear-gradient(142.23deg, #516ed6 12.3%, #3620c7 89.4%);
  border-radius: min(1.39vw, 20px);
  padding-block: min(0.9vw, 13px) min(1.53vw, 22px);
  margin-bottom: min(3.54vw, 51px);
}
@media (width <= 767px) {
  .time-line__item--highlight--01 .time-line__highlight-content {
    border-radius: 15px;
    padding-block: 10px 20px;
    margin-bottom: 10px;
  }
}
.time-line__item--highlight--02 .time-line__highlight-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background: linear-gradient(142.23deg, #516ed6 12.3%, #3620c7 89.4%);
  border-radius: min(1.39vw, 20px);
  margin-top: min(1.88vw, 27px);
  padding-block: min(0.49vw, 7px) min(1.53vw, 22px);
  margin-bottom: min(3.54vw, 51px);
}
@media (width <= 767px) {
  .time-line__item--highlight--02 .time-line__highlight-content {
    border-radius: 15px;
    padding-block: 10px 20px;
    margin-bottom: 10px;
    margin-top: clamp(3.75rem, 2.6314317673rem + 5.5928411633vw, 5.3125rem);
  }
}
.time-line__item--highlight--03 .time-line__highlight-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background: linear-gradient(142.23deg, #516ed6 12.3%, #3620c7 89.4%);
  border-radius: min(1.39vw, 20px);
  margin-top: min(3.61vw, 52px);
  padding-block: min(0.49vw, 7px) min(1.53vw, 22px);
  margin-bottom: min(3.54vw, 51px);
}
.time-line__item--highlight--03 .time-line__highlight-content::after {
  position: absolute;
  top: calc(-1 * min(3.82vw, 55px));
  right: min(1.74vw, 25px);
  display: block;
  width: min(24.03vw, 346px);
  /* prettier-ignore */
  background-image: image-set(url("../images/img_comp-time-line-item--highlight--02.png") 1x, url("../images/img_comp-time-line-item--highlight--02@2x.png") 2x);
  background-size: cover;
  background-position: center;
  aspect-ratio: 346/173;
  content: "";
}
@media (width <= 767px) {
  .time-line__item--highlight--03 .time-line__highlight-content::after {
    top: calc(-1 * clamp(2.1875rem, 0.3977908277rem + 8.9485458613vw, 4.6875rem));
    right: 10px;
    width: clamp(7.208125rem, 0.7575657159rem + 32.2527964206vw, 16.21875rem);
  }
}
@media (width <= 767px) {
  .time-line__item--highlight--03 .time-line__highlight-content {
    border-radius: 15px;
    padding-block: 10px 20px;
    margin-bottom: 10px;
    margin-top: clamp(3.75rem, 2.6314317673rem + 5.5928411633vw, 5.3125rem);
  }
}
.time-line__highlight-date {
  font-size: min(2.08vw, 30px);
  font-weight: 700;
  line-height: 180%;
  color: var(--color-white);
}
.time-line__item--highlight--02 .time-line__highlight-date, .time-line__item--highlight--03 .time-line__highlight-date {
  align-self: center;
}
.time-line__highlight-date .number {
  font-size: min(2.22vw, 32px);
}
.time-line__highlight-date .number span {
  font-size: min(1.39vw, 20px);
}
@media (width <= 767px) {
  .time-line__highlight-date .number span {
    font-size: 14px;
  }
}
@media (width <= 767px) {
  .time-line__highlight-date .number {
    font-size: 26px;
  }
}
@media (width <= 767px) {
  .time-line__highlight-date {
    font-size: 24px;
  }
}
.time-line__highlight-text {
  font-size: 16px;
  font-size: min(1.11vw, 16px);
  font-weight: 400;
  line-height: 180%;
  color: var(--color-white);
}
.time-line__item--highlight--02 .time-line__highlight-text, .time-line__item--highlight--03 .time-line__highlight-text {
  padding-left: min(16.81vw, 242px);
}
.time-line__item--highlight--02 .time-line__highlight-text:nth-child(2), .time-line__item--highlight--03 .time-line__highlight-text:nth-child(2) {
  display: flex;
  align-items: center;
  gap: min(0.35vw, 5px);
  margin-top: calc(-1 * min(0.35vw, 5px));
}
@media (width <= 767px) {
  .time-line__item--highlight--02 .time-line__highlight-text:nth-child(2), .time-line__item--highlight--03 .time-line__highlight-text:nth-child(2) {
    justify-content: center;
  }
}
@media (width <= 767px) {
  .time-line__item--highlight--02 .time-line__highlight-text:nth-child(2), .time-line__item--highlight--03 .time-line__highlight-text:nth-child(2) {
    text-align: center;
    padding-left: 0;
  }
}
@media (width <= 767px) {
  .time-line__item--highlight--02 .time-line__highlight-text, .time-line__item--highlight--03 .time-line__highlight-text {
    text-align: center;
    padding-inline: 5%;
  }
}
@media (width <= 767px) {
  .time-line__highlight-text {
    font-size: 11px;
  }
}
.time-line__item {
  position: relative;
  display: flex;
  width: 100%;
}
.time-line__item--right {
  width: 100%;
  padding-left: 50%;
}
@media (width <= 767px) {
  .time-line__item--right {
    width: 92.5%;
    margin-left: 7.5%;
    padding-left: 0;
    border-bottom: 1px solid #e0e0e0;
  }
}
.time-line__item--left {
  width: 100%;
  padding-right: 50%;
}
@media (width <= 767px) {
  .time-line__item--left {
    width: 92.5%;
    margin-left: 7.5%;
    padding-right: 0;
    border-bottom: 1px solid #e0e0e0;
  }
}
.time-line__center {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (width <= 767px) {
  .time-line__center {
    left: 0;
    transform: translateX(0);
  }
}
.time-line__dot {
  position: absolute;
  top: calc(-1 * min(0.35vw, 5px));
  left: 50%;
  width: min(0.69vw, 10px);
  background: #0e0e8f;
  border-radius: 50%;
  transform: translateX(-50%);
  aspect-ratio: 10/10;
}
@media (width <= 767px) {
  .time-line__dot {
    top: -3px;
    width: 6px;
  }
}
.time-line__content {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: min(1.04vw, 15px);
}
.time-line__item--11 .time-line__content {
  padding-bottom: min(0.56vw, 8px);
}
.time-line__item--right .time-line__content {
  gap: min(1.04vw, 15px);
  padding-left: min(1.04vw, 15px);
}
@media (width <= 767px) {
  .time-line__item--right .time-line__content {
    gap: 0;
    padding-left: 5%;
  }
}
.time-line__item--left .time-line__content {
  gap: min(1.74vw, 25px);
}
@media (width <= 767px) {
  .time-line__item--left .time-line__content {
    gap: 0;
    padding-left: 5%;
  }
}
@media (width <= 767px) {
  .time-line__content {
    flex-direction: column;
    border-bottom: none;
  }
}
.time-line__date {
  font-size: min(1.67vw, 24px);
  font-weight: 500;
  line-height: 180%;
  color: var(--color-black);
}
.time-line__item--11 .time-line__date, .time-line__item--14 .time-line__date, .time-line__item--16 .time-line__date, .time-line__item--17 .time-line__date, .time-line__item--19 .time-line__date, .time-line__item--20 .time-line__date, .time-line__item--21 .time-line__date, .time-line__item--22 .time-line__date, .time-line__item--23 .time-line__date, .time-line__item--24 .time-line__date, .time-line__item--25 .time-line__date {
  transform: translateY(calc(-1 * min(0.49vw, 7px)));
}
@media (width <= 767px) {
  .time-line__date {
    font-size: 14.4px;
  }
}
.time-line__text {
  position: relative;
  font-size: min(1.11vw, 16px);
  font-weight: 400;
  line-height: 180%;
  color: #1e1e1e;
}
.time-line__text:has(.time-line__tag) {
  text-indent: 2em;
}
.time-line__text .time-line__tag {
  position: absolute;
  top: 0.1em;
  left: 0;
}
@media (width <= 767px) {
  .time-line__text {
    font-size: 11px;
  }
}
.time-line__item--02 {
  margin-top: calc(-1 * min(1.11vw, 16px));
}
@media (width <= 767px) {
  .time-line__item--02 {
    margin-top: 0;
  }
}
.time-line__item--03 {
  position: relative;
  margin-top: calc(-1 * min(3.96vw, 57px));
}
.time-line__item--03::after {
  position: absolute;
  top: calc(-1 * min(0.35vw, 5px));
  right: 0;
  display: block;
  width: min(13.75vw, 198px);
  /* prettier-ignore */
  background-image: image-set(url("../images/img_comp-time-line-item--03.png") 1x, url("../images/img_comp-time-line-item--03@2x.png") 2x);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 198/104;
  content: "";
}
@media (width <= 767px) {
  .time-line__item--03::after {
    position: relative;
    top: unset;
    right: unset;
    width: clamp(4.333125rem, 0.6342435682rem + 18.4944071588vw, 9.5rem);
    margin-top: 5px;
    margin-bottom: 5px;
    flex-shrink: 0;
  }
}
@media (width <= 767px) {
  .time-line__item--03 {
    margin-top: 0;
  }
}
.time-line__item--04 {
  position: relative;
  margin-top: calc(-1 * min(0.83vw, 12px));
}
@media (width <= 767px) {
  .time-line__item--04 {
    margin-top: 0;
  }
}
.time-line__item--05 {
  margin-top: calc(-1 * min(2.85vw, 41px));
}
@media (width <= 767px) {
  .time-line__item--05 {
    margin-top: 0;
  }
}
.time-line__item--06 {
  margin-top: calc(-1 * min(1.81vw, 26px));
}
@media (width <= 767px) {
  .time-line__item--06 {
    margin-top: 0;
  }
}
.time-line__item--08 {
  margin-top: calc(-1 * min(1.46vw, 21px));
}
@media (width <= 767px) {
  .time-line__item--08 {
    margin-top: 0;
  }
}
.time-line__item--09 {
  margin-top: calc(-1 * min(4.31vw, 62px));
}
@media (width <= 767px) {
  .time-line__item--09 {
    margin-top: 0;
  }
}
.time-line__item--10 {
  margin-top: calc(-1 * min(1.04vw, 15px));
}
@media (width <= 767px) {
  .time-line__item--10 {
    margin-top: 0;
  }
}
.time-line__item--11 {
  margin-top: calc(-1 * min(1.04vw, 15px));
}
@media (width <= 767px) {
  .time-line__item--11 {
    margin-top: 0;
  }
}
.time-line__item--12 {
  margin-top: min(0.28vw, 4px);
}
@media (width <= 767px) {
  .time-line__item--12 {
    margin-top: 0;
  }
}
.time-line__item--13 {
  margin-top: min(0.28vw, 4px);
}
@media (width <= 767px) {
  .time-line__item--13 {
    margin-top: 0;
  }
}
.time-line__item--14 {
  margin-top: min(0.83vw, 12px);
}
@media (width <= 767px) {
  .time-line__item--14 {
    margin-top: 0;
  }
}
.time-line__item--16 {
  margin-top: min(0.69vw, 10px);
}
@media (width <= 767px) {
  .time-line__item--16 {
    margin-top: 0;
  }
}
.time-line__item--17 {
  margin-top: min(2.78vw, 40px);
}
@media (width <= 767px) {
  .time-line__item--17 {
    margin-top: 0;
  }
}
.time-line__item--18 {
  position: relative;
  margin-top: calc(-1 * min(0.28vw, 4px));
}
.time-line__item--18::after {
  position: absolute;
  top: calc(-1 * min(5.35vw, 77px));
  right: 0;
  display: block;
  width: min(12.78vw, 184px);
  /* prettier-ignore */
  background-image: image-set(url("../images/img_comp-time-line-item--18.png") 1x, url("../images/img_comp-time-line-item--18@2x.png") 2x);
  background-size: cover;
  background-position: center;
  aspect-ratio: 184/160;
  content: "";
}
@media (width <= 767px) {
  .time-line__item--18::after {
    position: relative;
    top: unset;
    right: unset;
    width: clamp(3.833125rem, 0.4026999441rem + 17.1521252796vw, 8.625rem);
    margin-top: 5px;
    margin-bottom: 5px;
    flex-shrink: 0;
  }
}
@media (width <= 767px) {
  .time-line__item--18 {
    margin-top: 0;
  }
}
.time-line__item--19 {
  margin-top: calc(-1 * min(1.18vw, 17px));
}
@media (width <= 767px) {
  .time-line__item--19 {
    margin-top: 0;
  }
}
.time-line__item--20 {
  margin-top: min(0.14vw, 2px);
}
@media (width <= 767px) {
  .time-line__item--20 {
    margin-top: 0;
  }
}
.time-line__item--21 {
  margin-top: min(0.28vw, 4px);
}
@media (width <= 767px) {
  .time-line__item--21 {
    margin-top: 0;
  }
}
.time-line__item--22 {
  margin-top: min(0.35vw, 5px);
}
@media (width <= 767px) {
  .time-line__item--22 {
    margin-top: 0;
  }
}
.time-line__item--23 {
  margin-top: min(0.28vw, 4px);
}
@media (width <= 767px) {
  .time-line__item--23 {
    margin-top: 0;
  }
}
.time-line__item--24 {
  position: relative;
  margin-top: min(2.01vw, 29px);
  padding-bottom: min(3.4vw, 49px);
}
.time-line__item--24::after {
  position: absolute;
  top: calc(-1 * min(4.58vw, 66px));
  right: 0;
  display: block;
  width: min(14.65vw, 211px);
  /* prettier-ignore */
  background-image: image-set(url("../images/img_comp-time-line-item--25.png") 1x, url("../images/img_comp-time-line-item--25@2x.png") 2x);
  background-size: cover;
  background-position: center;
  aspect-ratio: 211/160;
  content: "";
}
@media (width <= 767px) {
  .time-line__item--24::after {
    position: relative;
    top: unset;
    right: unset;
    width: clamp(4.395625rem, 0.4618442394rem + 19.6689038031vw, 9.890625rem);
    margin-top: 5px;
    margin-bottom: 5px;
    flex-shrink: 0;
  }
}
@media (width <= 767px) {
  .time-line__item--24 {
    margin-top: 0;
  }
}
.time-line__item--25 {
  margin-top: min(0.42vw, 6px);
}
@media (width <= 767px) {
  .time-line__item--25 {
    margin-top: 0;
  }
}
@media (width <= 767px) {
  .time-line__item.time-line__item--right, .time-line__item.time-line__item--left {
    margin-top: 10px;
  }
}
@media (width <= 767px) {
  .time-line {
    margin-top: 24px;
  }
}

.location {
  position: relative;
  background-color: var(--color-white);
  isolation: isolate;
}
.location__container {
  position: relative;
  background: #edf0fe;
  border-radius: 40px 40px 0px 0px;
  padding-top: 140px;
  padding-bottom: 97px;
}
@media (width < 1440px) {
  .location__container {
    border-radius: 2.78vw 2.78vw 0vw 0vw;
    padding-top: 9.72vw;
    padding-bottom: 6.74vw;
  }
}
@media (width <= 767px) {
  .location__container {
    border-radius: 20px 20px 0px 0px;
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.location__inner {
  position: relative;
  z-index: 1;
}
.location .section-title--line {
  font-size: 30px;
  font-weight: 900;
  line-height: 120%;
  color: var(--blue-01);
}
@media (width < 1440px) {
  .location .section-title--line {
    font-size: 2.08vw;
  }
}
@media (width <= 767px) {
  .location .section-title--line {
    font-size: 24px;
  }
}
.location__content {
  margin-top: 47px;
}
@media (width < 1440px) {
  .location__content {
    margin-top: 3.26vw;
  }
}
@media (width <= 767px) {
  .location__content {
    margin-top: 30px;
  }
}
.location__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
@media (width < 1440px) {
  .location__list {
    gap: min(1.67vw, 24px);
  }
}
@media (width <= 767px) {
  .location__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.location__item {
  width: calc((100% - 24px) / 2);
}
@media (width <= 767px) {
  .location__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.location__map-wrapper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 566/310;
}
@media (width <= 767px) {
  .location__map-wrapper {
    max-width: 500px;
    border-radius: 8px;
  }
}
.location__map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.location__info {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
@media (width < 1440px) {
  .location__info {
    margin-top: 1.74vw;
  }
}
@media (width <= 767px) {
  .location__info {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
  }
}
.location__address address {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  color: #000000;
  margin-top: 15px;
}
@media (width < 1440px) {
  .location__address address {
    font-size: 1.11vw;
    margin-top: 1.04vw;
  }
}
@media (width <= 767px) {
  .location__address address {
    font-size: 14px;
    margin-top: 12px;
  }
}
.location__name {
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: #000000;
}
.location__name span {
  font-size: 18px;
}
@media (width < 1440px) {
  .location__name span {
    font-size: 1.25vw;
  }
}
@media (width <= 767px) {
  .location__name span {
    font-size: 14px;
  }
}
@media (width < 1440px) {
  .location__name {
    font-size: 2.08vw;
    line-height: 2.5vw;
  }
}
@media (width <= 767px) {
  .location__name {
    font-size: 24px;
    line-height: 29px;
  }
}
.location__image-wrapper {
  width: 240px;
}
.location__image-wrapper img {
  width: 100%;
}
@media (width < 1440px) {
  .location__image-wrapper {
    width: 16.67vw;
  }
}
@media (width <= 767px) {
  .location__image-wrapper {
    display: flex;
    justify-content: center;
    width: 300px;
    max-width: 80%;
  }
}
.location__decoration {
  position: absolute;
  top: 770px;
  left: -73px;
  width: 260px;
}
@media (width < 1440px) {
  .location__decoration {
    top: 53.61vw;
    left: -73px;
    width: 18.13vw;
  }
}
@media (width <= 1280px) {
  .location__decoration {
    display: none;
  }
}
@media (width <= 767px) {
  .location__decoration {
    top: 100vw;
    display: block;
    width: 130px;
  }
}

.recruit-banner {
  background-color: var(--color-white);
  padding-block: 236px 121px;
}
.recruit-banner__container {
  position: relative;
}
.recruit-banner__link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 60px;
  height: 60px;
}
@media (width < 1440px) {
  .recruit-banner__link {
    right: 0.97vw;
    bottom: 0.97vw;
    width: 5.19vw;
    height: 5.19vw;
  }
}
@media (width <= 767px) {
  .recruit-banner__link {
    right: 0.8vw;
    bottom: 1vw;
    width: 50px;
    max-width: 6vw;
    height: 50px;
    max-height: 6vw;
  }
}
.recruit-banner__content {
  position: relative;
  z-index: 1;
}
.recruit-banner__decoration--01 {
  position: absolute;
  top: -157px;
  right: -105px;
  width: 400px;
}
@media (width < 1440px) {
  .recruit-banner__decoration--01 {
    top: -10.9vw;
    right: -7.29vw;
    width: 27.78vw;
  }
}
.recruit-banner__decoration--02 {
  position: absolute;
  top: 251px;
  left: -73px;
  width: 260px;
}
@media (width < 1440px) {
  .recruit-banner__decoration--02 {
    top: 17.43vw;
    left: -5.07vw;
    width: 18.13vw;
  }
}
@media (width < 1440px) {
  .recruit-banner {
    padding-block: 16.39vw 8.4vw;
  }
}
@media (width <= 767px) {
  .recruit-banner {
    padding-block: 70px 60px;
  }
}