@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cabin+Sketch:wght@400;700&display=swap");
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .tab-only {
    display: block;
  }
}

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

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #ffffff;
  --black: #000;
  --blue: #06c0eb;
  --navy: #004970;
  --green: #01b056;
  --orange: #e58100;
  --main: #06c0eb;
  --yellow: #ffd800;
  --red: #f51313;
  --text: #333333;
  --leading-trim: calc((1em - 1lh) / 2);
  --notosans: "Noto Sans JP", sans-serif;
  --mincho: "Hiragino Mincho ProN", "Yu Mincho", "游明朝体", "YuMincho",
    "MS Mincho", "Meiryo", serif;
  --gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "游ゴシック体", "YuGothic", "Helvetica Neue", "Arial", "Meiryo", sans-serif;
}

.bold {
  font-weight: 700;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.lh130 {
  line-height: 130%;
}

.lh170 {
  line-height: 170%;
}

.text-emphasis {
  color: var(--orange);
  display: inline;
}

.text-danger {
  color: var(--red);
  background-color: var(--yellow);
  display: inline;
}

.color-red {
  color: var(--red);
}

.fz52 {
  font-size: max(5.2rem, 28px);
}
@media screen and (max-width: 768px) {
  .fz52 {
    font-size: 10rem;
  }
}

.fz42 {
  font-size: max(4.2rem, 22px);
}
@media screen and (max-width: 768px) {
  .fz42 {
    font-size: 7rem;
  }
}

.color-main {
  color: var(--main);
}

@media screen and (max-width: 768px) {
  .sp-fz70 {
    font-size: 7rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__inner {
  max-width: 192rem;
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  padding-inline: 3rem;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-inline: 1.5rem;
  }
}
.header__logo {
  width: 21.8rem;
  background: var(--white);
  padding: 1.8rem;
  padding-top: 0.8rem;
  border-radius: 0 0 2.6rem 2.6rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 14rem;
    padding: 1rem;
    padding-top: 0.5rem;
    border-radius: 0 0 1.3rem 1.3rem;
  }
}
.header__nav {
  width: fit-content;
  margin-top: 3.5rem;
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header__nav.is-active {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav-list {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
}
.header__nav-item a {
  padding: 2.2rem;
  border-radius: 1rem;
  background: var(--white);
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header__nav-item a {
    padding: 0;
    background: transparent;
    color: var(--white);
  }
}
.header__nav-item a:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.header__nav-item--form a {
  background: #0678DD;
  color: var(--white);
  border-radius: 1rem;
  padding-inline: 5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__nav-item--form a {
    background: transparent;
    color: var(--white);
  }
}
.header__nav-item--form a:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .header__nav-item--form a:after {
    display: none;
  }
}

.menu-button {
  display: none;
}
@media screen and (max-width: 768px) {
  .menu-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    transition: top 0.3s ease;
  }
}
.menu-button:focus {
  outline: none;
}
.menu-button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 0.4rem;
  border-radius: 0.4rem;
}

.menu-icon {
  width: 4rem;
  height: 2.4rem;
  position: relative;
}
.menu-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 4rem;
  height: 0.2rem;
  background-color: var(--white);
  border-radius: 0.1rem;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
}
.menu-icon span:nth-child(1) {
  top: 0;
}
.menu-icon span:nth-child(2) {
  transform: translateX(-50%) translateY(-50%);
}
.menu-icon span:nth-child(3) {
  top: 100%;
}

.menu-button.is-active .menu-icon span {
  background-color: var(--white);
}
.menu-button.is-active .menu-icon span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.menu-button.is-active .menu-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0) rotate(-45deg);
}
.menu-button.is-active .menu-icon span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-225deg);
}
.menu-button.is-active .menu-icon__text {
  color: var(--white);
  padding: 0;
}

.footer {
  background: var(--white);
  padding-block: 2rem;
  padding-left: 7rem;
}
.footer small {
  font-size: max(1.8rem, 10px);
}
@media screen and (max-width: 768px) {
  .footer {
    padding-left: 2rem;
  }
  .footer small {
    font-size: 1.2rem;
  }
}

.fixed {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: 0rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 100;
}

.fixed.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition: all 0.3s;
  visibility: visible;
}

.floating {
  width: 100cqw;
  max-height: 143px;
}
.floating__inner {
  align-items: center;
  display: flex;
}
.floating__button {
  box-shadow: inset 0 -1rem 0.4rem 0 rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  padding-block: 3.5rem 4rem;
  transition: opacity 0.3s ease;
  flex: 1;
}
.floating__button--survey {
  background-color: #e58100;
}
.floating__button--tel {
  background-color: #3199df;
}
.floating__button-text {
  color: var(--white);
  font-size: 4.5rem;
  font-weight: 600;
}
.floating__icon {
  flex-shrink: 0;
}
.floating__icon img {
  width: 12.6rem;
}

.color-title {
  font-size: max(4.2rem, 22px);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .color-title {
    font-size: 5.6rem;
  }
}
.color-title span {
  font-weight: 600;
}

.color-title-underline {
  width: 66.7rem;
  height: 0.6rem;
}
@media screen and (max-width: 768px) {
  .color-title-underline {
    width: 100%;
    max-width: 50rem;
  }
}

.wrapper {
  max-width: min(100%, 192rem);
  margin-inline: auto;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding-inline: 3rem;
  }
}

.section-header {
  background-color: var(--main);
  position: relative;
}
.section-header__inner {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-block: 3.5rem;
}
.section-header__title {
  color: var(--white);
  font-size: 4.4rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section-header__title {
    font-size: 6.6rem;
  }
}
.section-header::after {
  border-left: 3.2rem solid transparent;
  border-right: 3.2rem solid transparent;
  border-top: 3rem solid var(--main);
  bottom: -2.9rem;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.dib {
  display: inline-block;
}

.wave {
  width: 100%;
}

.relation {
  background: var(--main);
  overflow: hidden;
  position: relative;
  padding-block: 16rem 10rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .relation {
    padding-block: 4rem 5rem;
    padding-inline: 2rem;
  }
}
.relation__inner {
  max-width: 192rem;
  width: 100%;
  margin-inline: auto;
}
.relation__text {
  white-space: nowrap;
}
.relation__text--01 {
  rotate: -11deg;
  display: flex;
  flex-direction: column;
  padding-left: 13rem;
}
@media screen and (max-width: 768px) {
  .relation__text--01 {
    rotate: -5deg;
    padding-left: 0rem;
  }
}
.relation__text--01 .relation__text--xl {
  rotate: -3deg;
}
.relation__text--02 {
  padding-top: 20rem;
  padding-left: 4rem;
}
@media screen and (max-width: 768px) {
  .relation__text--02 {
    padding-top: 4rem;
    padding-left: 0rem;
  }
}
.relation__text--02 .relation__text--xl {
  rotate: 12deg;
}
@media screen and (max-width: 768px) {
  .relation__text--02 .relation__text--xl {
    font-size: 3.6rem;
  }
}
.relation__text--s {
  font-size: 11.2rem;
  line-height: 1;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .relation__text--s {
    font-size: 2rem;
  }
}
.relation__text--xl {
  font-size: 19.3rem;
  line-height: 1.4507772021;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .relation__text--xl {
    font-size: 4rem;
  }
}
.relation__video {
  max-width: 173.6rem;
  width: 100%;
  height: 76.5rem;
  margin-inline: auto;
  position: relative;
  z-index: -1;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .relation__video {
    height: 14.8rem;
  }
}
.relation__video video {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: auto;
  pointer-events: none;
}
.relation__video--02 {
  margin-top: -4rem;
}
@media screen and (max-width: 768px) {
  .relation__video--02 {
    margin-top: 0rem;
  }
}
.relation__video-text {
  font-size: 8.5rem;
  line-height: 1;
  color: var(--white);
  position: absolute;
  top: 50%;
  right: 9rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .relation__video-text {
    font-size: 1.6rem;
    right: 2rem;
  }
}

.contact__content {
  margin-block: 7rem 14.4rem;
  max-width: max(114.6rem, 900px);
  width: 100%;
  margin-inline: auto;
}
.contact__form {
  padding-block: 7.2rem;
  border: 0.6rem solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .contact__form {
    padding-block: 9.6rem;
  }
}
.contact__form-text {
  font-size: max(2.1rem, 16px);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .contact__form-text {
    font-size: 3.8rem;
    margin-bottom: 5.6rem;
  }
}
.contact__form-submit {
  padding-top: 7.2rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .contact__form-submit {
    padding-top: 12.8rem;
    gap: 6.4rem;
  }
}
.contact__form-submit-btn {
  border-radius: 0.8rem;
  box-shadow: inset -2px -1rem 0.4rem 0 rgba(0, 0, 0, 0.25);
  background-color: #0168B8;
  padding: 0;
  transition: 0.3s ease;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .contact__form-submit-btn {
    border-radius: 2rem;
  }
}
.contact__form-submit-btn .wpcf7-spinner {
  display: none;
}
.contact__form-submit-btn:hover {
  transform: translateY(0.4rem);
  box-shadow: none;
}
.contact__form-submit-btn input {
  font-size: max(2.6rem, 21px);
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.8571428571;
  color: var(--white);
  padding: 1.4rem 11.7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .contact__form-submit-btn input {
    font-size: 4.6rem;
    padding: 2.5rem 9.7rem 3rem;
  }
}
.contact__form-submit-text {
  font-size: max(2.1rem, 16px);
  font-weight: 600;
  line-height: 1.5238095238;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__form-submit-text {
    font-size: 3.8rem;
  }
}

.contact__form-item {
  padding: 3.2rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
@media screen and (max-width: 768px) {
  .contact__form-item {
    padding: 4rem 5rem;
    gap: 1.6rem;
  }
}
.contact__form-item--checkbox {
  gap: 1.6rem;
}
.contact__form-item:nth-child(even) {
  background: var(--white);
}
.contact__form-item:nth-child(odd) {
  background: #F7F7F7;
}
.contact__form-item-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: max(2.1rem, 16px);
  font-weight: 600;
  line-height: 1.2857142857;
}
@media screen and (max-width: 768px) {
  .contact__form-item-label {
    font-size: 4.2rem;
  }
}
.contact__form-item-label .hissu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.1176470588em 0.2941176471em;
  font-size: max(1.7rem, 14px);
  font-weight: 600;
  line-height: 1.2941176471;
  color: var(--white);
  background: #EB4920;
  border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
  .contact__form-item-label .hissu {
    font-size: 2.5rem;
    padding: 0.2rem 0.5rem;
  }
}
.contact__form-item .wpcf7-not-valid-tip {
  font-size: max(1.7rem, 14px);
  font-weight: 600;
  line-height: 1.2941176471;
  color: #EB4920;
  margin-top: 0.9rem;
}
@media screen and (max-width: 768px) {
  .contact__form-item .wpcf7-not-valid-tip {
    font-size: 2.5rem;
    margin-top: 1.6rem;
  }
}
.contact__form-item .wpcf7-form-control-wrap {
  width: 100%;
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-form-control {
  display: flex;
  gap: 4.8rem;
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item {
  margin: 0;
  display: block;
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: max(2.1rem, 16px);
  font-weight: 600;
  line-height: 1.4761904762;
}
@media screen and (max-width: 768px) {
  .contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label {
    font-size: 4.6rem;
  }
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label input[type=checkbox] {
  display: none;
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox]) {
  position: relative;
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox])::before {
  content: "";
  display: block;
  width: 1.0476190476em;
  height: 1.0476190476em;
  border: 0.0952380952em solid #000;
  border-radius: 0.3rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox])::before {
    width: 5rem;
    height: 5rem;
    border: 0.2rem solid #000;
    border-radius: 0.7rem;
  }
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox])::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0.6rem;
  display: block;
  width: 0.5238095238em;
  height: 0.1904761905em;
  border-top: 0.0952380952em solid #000;
  border-right: 0.0952380952em solid #000;
  transform: rotate(135deg);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox])::after {
    width: 2.6rem;
    height: 1rem;
    top: 2.2rem;
    left: 1.1rem;
  }
}
.contact__form-item .wpcf7-form-control-wrap .wpcf7-list-item label:has(input[type=checkbox]:checked)::after {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .contact__form-item .contact__form-item-check label {
    font-size: 3.8rem !important;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .contact__form-item .contact__form-item-check label:has(input[type=checkbox])::before {
    width: 4.5rem !important;
    height: 4.5rem !important;
  }
}
.contact__form-item-input input[type=text],
.contact__form-item-input input[type=tel],
.contact__form-item-input input[type=email],
.contact__form-item-input select,
.contact__form-item-input textarea {
  width: 100%;
  padding: 0.880952381em 0.619047619em;
  background-color: #fff;
  border: 0.1428571429em solid #d9d9d9;
  font-size: max(2.1rem, 16px);
  font-weight: 600;
  line-height: 1.5238095238;
}
@media screen and (max-width: 768px) {
  .contact__form-item-input input[type=text],
  .contact__form-item-input input[type=tel],
  .contact__form-item-input input[type=email],
  .contact__form-item-input select,
  .contact__form-item-input textarea {
    font-size: max(4.2rem, 16px);
    padding: 2.1rem 1.3rem;
  }
}
.contact__form-item-input input[type=text]::placeholder,
.contact__form-item-input input[type=tel]::placeholder,
.contact__form-item-input input[type=email]::placeholder,
.contact__form-item-input select::placeholder,
.contact__form-item-input textarea::placeholder {
  color: #B1B1B1;
  font-weight: 500;
}
.contact__form-item-input textarea {
  resize: none;
}

.wpcf7 form .wpcf7-response-output {
  padding: 1em;
  font-size: max(1.7rem, 14px);
  text-align: center;
}

.error-404 {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 60vh;
}
.error-404__content {
  padding-block: 8rem;
  width: 100%;
}
.error-404__inner {
  margin-top: 10rem;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  max-width: 144rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .error-404__inner {
    margin-top: 8rem;
  }
}
.error-404__title {
  font-size: max(5rem, 35px);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .error-404__title {
    font-size: 6rem;
  }
}
.error-404__text {
  font-size: max(2.4rem, 16px);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .error-404__text {
    font-size: 3.8rem;
  }
}
.error-404__note {
  color: #666;
  font-size: max(2rem, 14px);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .error-404__note {
    font-size: 3.2rem;
  }
}
.error-404__button {
  background: linear-gradient(180deg, rgb(231, 124, 26) 0%, rgb(248, 172, 113) 15%, rgb(229, 129, 0) 50%, rgb(245, 136, 42) 89%, rgb(231, 124, 26) 99%);
  border: 0.5rem solid var(--white);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-block: 1.4rem;
  transition: transform 0.3s ease;
  width: max(58.2rem, 500px);
}
@media screen and (max-width: 768px) {
  .error-404__button {
    padding-block: 3rem;
    width: 100%;
    max-width: 68rem;
  }
}
.error-404__button:hover {
  transform: translateY(0.4rem);
}
.error-404__button-text {
  color: var(--white);
  font-size: max(3rem, 24px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .error-404__button-text {
    font-size: 4.5rem;
    letter-spacing: 0.1em;
  }
}

.participants {
  background: var(--blue);
  padding-block: 11rem 5rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .participants {
    padding-inline: 2rem;
    padding-block: 6rem;
  }
}
.participants__inner {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .participants__inner {
    flex-direction: column;
    gap: 5rem;
  }
}
.participants__header {
  flex: 1;
}
.participants__title {
  font-size: 14.3rem;
  line-height: 1.4545454545;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .participants__title {
    font-size: 4rem;
    line-height: 1.5;
  }
}
.participants__sub-title {
  margin-top: 5rem;
  font-size: 6.5rem;
  line-height: 1.4615384615;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .participants__sub-title {
    margin-top: 2.5rem;
    font-size: 3.5rem;
    line-height: 1.4444444444;
  }
}
.participants__sub-title-small {
  margin-top: 1.5rem;
  font-size: 4.3rem;
  line-height: 1.4418604651;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .participants__sub-title-small {
    margin-top: 1rem;
    font-size: 2.5rem;
    line-height: 1.4285714286;
  }
}
.participants__list {
  width: max(75rem, 300px);
}
@media screen and (max-width: 768px) {
  .participants__list {
    width: 100%;
  }
}
.participants__item {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .participants__item {
    gap: 2.5rem;
  }
}
.participants__item-inner {
  max-height: 73rem;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-color: var(--white) transparent;
  scrollbar-width: thin;
}
@media screen and (max-width: 768px) {
  .participants__item-inner {
    max-height: 50rem;
  }
}
.participants__item-inner::-webkit-scrollbar {
  width: 1.5rem;
}
.participants__item-inner::-webkit-scrollbar-track {
  background: transparent;
}
.participants__item-inner::-webkit-scrollbar-thumb {
  background-color: var(--white);
  border-radius: 0.3rem;
}
.participants__item-title {
  font-size: max(3.5rem, 20px);
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .participants__item-title {
    font-size: 2.5rem;
  }
}
.participants__item p {
  font-size: max(1.8rem, 12px);
  line-height: 1.6111111111;
  color: var(--white);
}

.member {
  background: var(--blue);
  padding-inline: 12rem 7rem;
  padding-block: 6rem 2rem;
}
@media screen and (max-width: 768px) {
  .member {
    padding-inline: 2rem;
    padding-block: 5rem;
  }
}
.member__inner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 768px) {
  .member__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.member__image {
  width: 40.2rem;
}
@media screen and (max-width: 768px) {
  .member__image {
    width: 7rem;
  }
}
.member__content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.member__title {
  font-size: 14.3rem;
  line-height: 1.4545454545;
  color: var(--white);
  transform: rotate(-13deg) translateX(-15rem);
}
@media screen and (max-width: 768px) {
  .member__title {
    font-size: 3.2rem;
    line-height: 1.5;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(-12deg) translateX(0);
  }
}
.member__item {
  width: 99.8rem;
}
@media screen and (max-width: 768px) {
  .member__item {
    width: 100%;
  }
}
.member__button {
  margin-top: 7rem;
  width: 276px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .member__button {
    margin-top: 4rem;
    width: 20rem;
  }
}
.member__button-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  border-radius: 3rem;
  padding-block: 1.5rem;
  font-family: "Cabin Sketch";
  font-size: 27px;
  color: #004970;
  line-height: 1.1851851852;
}
.member__button-link:hover .member__button-image {
  transform: translateX(0.3rem);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .member__button-link {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    gap: 2rem;
    padding-block: 1rem;
  }
}
.member__button-image {
  width: 44px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .member__button-image {
    width: 2.2rem;
  }
}

.introduction__list {
  display: flex;
  flex-direction: column;
}
.introduction__item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .introduction__item {
    flex-direction: column-reverse;
  }
}
.introduction__item-inner {
  width: max(66rem, 33%);
  background: var(--navy);
  padding: 10rem 5rem 10rem 8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .introduction__item-inner {
    width: 100%;
    padding: 10rem 3rem 3rem;
    gap: 3rem;
    width: 100%;
  }
}
.introduction__item-title {
  width: 19.4rem;
}
@media screen and (max-width: 768px) {
  .introduction__item-title {
    transform: rotate(-90deg);
    width: 10rem;
    height: 10rem;
  }
  .introduction__item-title img {
    position: absolute;
  }
}
.introduction__item-text {
  font-size: max(1.8rem, 12px);
  line-height: 2.8333333333;
  color: var(--white);
}
@media (width < 1024px) {
  .introduction__item-text {
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .introduction__item-text {
    font-size: 1.4rem;
  }
}
.introduction__button {
  width: max(27.6rem, 150px);
}
@media screen and (max-width: 768px) {
  .introduction__button {
    width: 18rem;
  }
}
.introduction__button-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  border-radius: 3rem;
  padding-block: 1.5rem;
  font-family: "Cabin Sketch";
  font-size: max(2.7rem, 18px);
  color: var(--navy);
  line-height: 1.1851851852;
}
.introduction__button-link:hover .introduction__button-image {
  transform: translateX(0.3rem);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .introduction__button-link {
    font-size: 1.8rem;
  }
}
.introduction__images {
  width: 65.7rem;
  position: absolute;
  right: -32rem;
  top: 6.6rem;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .introduction__images {
    right: initial;
    left: 7%;
    top: -7rem;
    width: fit-content;
  }
}
.introduction__images--01 .introduction__images-image:nth-child(1) {
  width: 14rem;
}
@media screen and (max-width: 768px) {
  .introduction__images--01 .introduction__images-image:nth-child(1) {
    width: 9rem;
  }
}
.introduction__images--01 .introduction__images-image:nth-child(3) {
  width: 14rem;
}
@media screen and (max-width: 768px) {
  .introduction__images--01 .introduction__images-image:nth-child(3) {
    width: 9rem;
  }
}
.introduction__images--02 .introduction__images-image:nth-child(1) {
  width: 16.1rem;
  left: 4rem;
}
@media screen and (max-width: 768px) {
  .introduction__images--02 .introduction__images-image:nth-child(1) {
    width: 9rem;
    left: 1rem;
  }
}
.introduction__images--02 .introduction__images-image:nth-child(3) {
  width: 14.1rem;
  left: -5rem;
}
@media screen and (max-width: 768px) {
  .introduction__images--02 .introduction__images-image:nth-child(3) {
    width: 9rem;
    left: -1rem;
  }
}
.introduction__images--03 {
  right: -28rem;
}
@media screen and (max-width: 768px) {
  .introduction__images--03 {
    right: initial;
  }
}
.introduction__images--03 .introduction__images-image:nth-child(1) {
  width: 19.6rem;
  left: 6rem;
}
@media screen and (max-width: 768px) {
  .introduction__images--03 .introduction__images-image:nth-child(1) {
    width: 9rem;
    left: 1.5rem;
  }
}
.introduction__images--03 .introduction__images-image:nth-child(3) {
  width: 16.4rem;
  left: -3rem;
}
@media screen and (max-width: 768px) {
  .introduction__images--03 .introduction__images-image:nth-child(3) {
    width: 9rem;
    left: -1rem;
  }
}
.introduction__images-image {
  position: relative;
  object-fit: cover;
}
.introduction__images-image:nth-child(1) {
  transform: translateY(0);
  animation: introduction-pop-float 6s ease-in-out infinite;
}
.introduction__images-image:nth-child(2) {
  width: 35.7rem;
}
@media screen and (max-width: 768px) {
  .introduction__images-image:nth-child(2) {
    width: 15rem;
  }
}
.introduction__images-image:nth-child(3) {
  transform: translateY(0);
  animation: introduction-pop-float 6s ease-in-out infinite;
  animation-delay: 1.2s;
}
.introduction__button-image {
  width: max(4.4rem, 22px);
  height: max(1.5rem, 7.5px);
  transition: transform 0.3s ease;
}
.introduction__right-images {
  flex: 1;
}
.introduction__right-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes introduction-pop-float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2rem);
  }
  100% {
    transform: translateY(0);
  }
}
.page__inner {
  max-width: 192rem;
  margin-inline: auto;
  padding-inline: 4rem;
  overflow: hidden;
  padding-bottom: 20rem;
}
@media screen and (min-width: 1921px) {
  .page__inner {
    overflow: visible;
  }
}
@media screen and (max-width: 768px) {
  .page__inner {
    padding-inline: 2rem;
    padding-bottom: 6rem;
  }
}

.page__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.page__head-title {
  font-size: 6.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page__head-title span {
  font-size: 3.8rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .page__head-title {
    font-size: 3.2rem;
  }
}
.page__head-category {
  max-width: 65.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 4.2rem 7.4rem;
  background: var(--white);
  border-radius: 62.5em;
  position: relative;
  right: -10rem;
}
@media screen and (min-width: 1921px) {
  .page__head-category {
    right: -2rem;
  }
}
@media screen and (max-width: 768px) {
  .page__head-category {
    right: 0;
    max-width: 100%;
    padding: 1rem 2rem;
    border-radius: 2rem;
  }
}
.page__head-category-item {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .page__head-category-item {
    font-size: 1.6rem;
  }
}

.page__content {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .page__content {
    margin-top: 4rem;
  }
}

.project__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem 4rem;
}
@media screen and (max-width: 768px) {
  .project__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.project__item a {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .project__item a {
    gap: 2rem;
  }
}
.project__item-image {
  position: relative;
  width: 100%;
}
.project__item-image::before {
  content: "";
  display: block;
  padding-top: 66.724738676%;
}
.project__item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.8rem;
}
.project__item-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-inline: 2rem;
}
@media screen and (max-width: 768px) {
  .project__item-body {
    padding-inline: 0;
  }
}
.project__item-category {
  display: flex;
  gap: 1rem;
}
.project__item-category-item {
  font-size: max(2.2rem, 14px);
  font-weight: 600;
  line-height: 1;
  color: var(--main);
  background: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 62.5em;
  border: 1px solid var(--black);
  width: fit-content;
  display: block;
}
@media screen and (max-width: 768px) {
  .project__item-category-item {
    font-size: 1.6rem;
    padding: 0.4rem 1rem;
  }
}
.project__item-title {
  font-size: max(2.8rem, 16px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .project__item-title {
    font-size: 1.6rem;
  }
}

.page__single {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .page__single {
    flex-direction: column;
    gap: 2rem;
  }
}
.page__single-image {
  width: 100rem;
}
@media screen and (max-width: 768px) {
  .page__single-image {
    width: 100%;
  }
}
.page__single-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .page__single-content {
    gap: 2rem;
    padding-left: 0;
  }
}
.page__single-pop {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background: var(--white);
  padding: 5rem;
  border-radius: 9rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page__single-pop {
    gap: 1rem;
    padding: 2rem;
    border-radius: 2rem;
  }
}
.page__single-pop::before {
  content: "";
  display: block;
  width: 4rem;
  height: 3.6rem;
  background: var(--white);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .page__single-pop::before {
    display: none;
  }
}
.page__single-pop-title {
  font-size: max(3.9rem, 16px);
  font-weight: 600;
  line-height: 1;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .page__single-pop-title {
    font-size: 1.6rem;
  }
}
.page__single-pop-text {
  font-size: max(2.6rem, 14px);
  font-weight: 600;
  line-height: 1.5384615385;
  color: var(--main);
}
@media screen and (max-width: 768px) {
  .page__single-pop-text {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=style.css.map */
