@charset "UTF-8";
/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:root {
  --txt: #212124;
  --gray:#F2F2F2;
}

/* container
===============================================================================================*/
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--txt);
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
  body {
    line-height: 1.7;
  }
}

a {
  color: inherit;
}

* {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

/* header
===============================================================================================*/
.header {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 6.4102564103vw;
  }
}

.header__ttl {
  max-width: 117px;
}
@media screen and (max-width: 768px) {
  .header__ttl {
    max-width: 23.5897435897vw;
  }
}
.header__ttl a {
  width: 100%;
  height: auto;
}

.header__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: block;
    position: relative;
    width: 8.2051282051vw;
    height: 3.3333333333vw;
    z-index: 100;
    cursor: pointer;
  }
  .header__hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 0.5128205128vw;
    background: #000;
    transition: all 0.3s;
  }
  .header__hamburger span:nth-child(1) {
    top: 0;
  }
  .header__hamburger span:nth-child(2) {
    bottom: 0;
  }
}
.header__hamburger.is-active span {
  background: #fff;
}
.header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    gap: 10.2564102564vw;
    top: 0;
    right: -100%;
    width: 79.4871794872vw;
    height: auto;
    background: var(--txt);
    border-radius: 0 0 0 7.6923076923vw;
    padding: 24.6153846154vw 7.6923076923vw 21.7948717949vw;
    transition: all 0.3s;
    z-index: 90;
  }
  .header__nav.is-active {
    right: 0;
  }
}

.header-navlist {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .header-navlist {
    order: 2;
    flex-direction: column;
    gap: 6.6666666667vw;
  }
}

.header-navlist__item a {
  font-size: 16px;
  padding-right: 20px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-navlist__item a {
    color: #fff;
    font-size: 5.641025641vw;
    padding-right: 6.6666666667vw;
  }
}
.header-navlist__item a::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("../img/common/icon_blank-black.svg") center center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header-navlist__item a::before {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
    background: url("../img/common/icon_blank-white.svg") center center/cover no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .header-navbtn {
    width: 100%;
    text-align: center;
    order: 1;
  }
}
.header-navbtn a {
  background: linear-gradient(94.12deg, #F1145A 3.37%, #F3CB1C 99.33%);
  padding: 15px 33px;
  display: block;
  border-radius: 40px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.header-navbtn a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .header-navbtn a {
    padding: 3.0769230769vw 8.4615384615vw;
    border-radius: 10.2564102564vw;
    border: 0.2564102564vw solid #fff;
  }
}
.header-navbtn a span {
  font-size: 16px;
  padding-right: 20px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-navbtn a span {
    font-size: 4.6153846154vw;
    padding-right: 5.1282051282vw;
  }
}
.header-navbtn a span::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("../img/common/icon_blank-white.svg") center center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .header-navbtn a span::before {
    width: 3.5897435897vw;
    height: 3.5897435897vw;
  }
}

/* footer
===============================================================================================*/
.footer {
  padding: 40px 60px 27px;
  background: #fff;
  position: relative;
  z-index: 15;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 10.2564102564vw 5.1282051282vw 6.9230769231vw 5.1282051282vw;
  }
}

.footer--subpage {
  background: var(--txt);
  color: #fff;
}
.footer--subpage .footer__copy {
  color: rgba(255, 255, 255, 0.6);
}
.footer--subpage .footer__nav__list .icon::before {
  background: url("../img/common/icon_blank-white.svg") center center/cover no-repeat;
}

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

.footer__nav__log {
  max-width: 168px;
}
@media screen and (max-width: 768px) {
  .footer__nav__log {
    max-width: 27.1794871795vw;
  }
}

.footer__nav__list {
  display: flex;
  align-items: center;
  gap: 42px;
}
@media screen and (max-width: 768px) {
  .footer__nav__list {
    gap: 3.0769230769vw;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__nav__list li a {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .footer__nav__list li a {
    font-size: 3.0769230769vw;
  }
}
.footer__nav__list .icon {
  padding-right: 15px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__nav__list .icon {
    font-size: 3.0769230769vw;
  }
}
.footer__nav__list .icon::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url("../img/common/icon_blank-black.svg") center center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .footer__nav__list .icon::before {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
  }
}

.footer__copy {
  text-align: right;
  margin-top: 67px;
  font-size: 12px;
  font-family: "Oswald", sans-serif;
  color: rgba(33, 33, 36, 0.6);
}
@media screen and (max-width: 768px) {
  .footer__copy {
    text-align: center;
    margin-top: 17.1794871795vw;
    font-size: 3.0769230769vw;
  }
}

/* 汎用モジュール
========================================================*/
.modSection.modSection--about {
  padding: 120px 0 142px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .modSection.modSection--about {
    padding: 21.5384615385vw 0;
  }
}
.modSection.modSection--member {
  padding: 111px 0 100px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .modSection.modSection--member {
    padding: 17.1794871795vw 0 20.5128205128vw;
  }
}
.modSection.modSection--info {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .modSection.modSection--info {
    padding: 20.5128205128vw 0 12.8205128205vw;
  }
}
.modSection.modSection--service {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}
@media screen and (max-width: 768px) {
  .modSection.modSection--service {
    padding: 15.3846153846vw 0 21.2820512821vw;
  }
}
.modSection.modSection--service::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .modSection.modSection--service::before {
    border-radius: 7.6923076923vw;
  }
}
.modSection.modSection--service .modSection__inner {
  position: relative;
  z-index: 2;
}
.modSection.modSection--work {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
}
@media screen and (max-width: 768px) {
  .modSection.modSection--work {
    padding: 23.3333333333vw 0 20.5128205128vw;
  }
}
.modSection.modSection--work::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px 30px 0 0;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .modSection.modSection--work::before {
    border-radius: 7.6923076923vw 7.6923076923vw 0 0;
  }
}
.modSection.modSection--work .modSection__inner {
  position: relative;
  z-index: 2;
}

.modSection__inner {
  max-width: 1192px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .modSection__inner {
    max-width: 100%;
    padding: 5.1282051282vw;
  }
}
.modSection__inner.modSection__inner--row {
  display: flex;
}
@media screen and (max-width: 768px) {
  .modSection__inner.modSection__inner--row {
    flex-direction: column;
  }
}
.modSection__inner.modSection__inner--row .modSection__ttl {
  width: calc(100% - 740px);
}
@media screen and (max-width: 768px) {
  .modSection__inner.modSection__inner--row .modSection__ttl {
    width: 100%;
  }
}
.modSection__inner.modSection__inner--row .modSection__content {
  width: 740px;
}
@media screen and (max-width: 768px) {
  .modSection__inner.modSection__inner--row .modSection__content {
    width: 100%;
  }
}

.modSection__ttl .jp {
  font-size: 13px;
  padding-left: 18px;
  line-height: 1;
  position: relative;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 768px) {
  .modSection__ttl .jp {
    font-size: 3.3333333333vw;
    padding-left: 5.1282051282vw;
  }
}
.modSection__ttl .jp::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #70D7E2;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .modSection__ttl .jp::before {
    width: 3.5897435897vw;
    height: 3.5897435897vw;
  }
}
.modSection__ttl .en {
  font-size: 56px;
  line-height: 1.4;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 768px) {
  .modSection__ttl .en {
    font-size: 14.358974359vw;
  }
}

.modCta {
  position: relative;
}

.modCta__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.modCta__bg video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.modCta__inner {
  padding: 80px 16px 57px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .modCta__inner {
    padding: 20.5128205128vw 4.1025641026vw 24.1025641026vw;
    overflow: hidden;
  }
}

.modCta__bgtxt {
  font-size: 140px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.2);
  font-family: "Oswald", sans-serif;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .modCta__bgtxt {
    font-size: 35.8974358974vw;
    top: -2.0512820513vw;
    white-space: nowrap;
  }
}

.modCta__ttl {
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-size: 56px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .modCta__ttl {
    font-size: 14.358974359vw;
  }
}
.modCta__ttl span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 13px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .modCta__ttl span {
    font-size: 3.3333333333vw;
    margin-bottom: 2.0512820513vw;
  }
}

.modCta__txt {
  font-size: 20px;
  margin-top: 30px;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .modCta__txt {
    font-size: 5.1282051282vw;
    margin-top: 7.6923076923vw;
  }
}
.modCta__txt span {
  font-size: 14px;
  margin-top: 9px;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 768px) {
  .modCta__txt span {
    font-size: 3.5897435897vw;
    margin-top: 2.3076923077vw;
  }
}

.modCta-btn {
  max-width: 280px;
  margin: 25px auto 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modCta-btn {
    max-width: 71.7948717949vw;
    margin: 6.4102564103vw auto 0;
  }
}
.modCta-btn a {
  background: linear-gradient(94.12deg, #F1145A 3.37%, #F3CB1C 99.33%);
  padding: 20px;
  display: block;
  border-radius: 40px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.modCta-btn a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .modCta-btn a {
    padding: 5.1282051282vw;
    border-radius: 10.2564102564vw;
    border: 0.5128205128vw solid #fff;
  }
}
.modCta-btn a span {
  font-size: 22px;
  padding-right: 28px;
  font-family: "Oswald", sans-serif;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) {
  .modCta-btn a span {
    font-size: 5.641025641vw;
    padding-right: 7.1794871795vw;
  }
}
.modCta-btn a span::before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../img/common/icon_blank-white.svg") center center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .modCta-btn a span::before {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
  }
}

.modSpCta.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.modSpCta {
  display: none;
}
@media screen and (max-width: 768px) {
  .modSpCta {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    max-width: 64.8717948718vw;
    z-index: 100;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  }
}
@media screen and (max-width: 768px) {
  .modSpCta a {
    background: linear-gradient(94.12deg, #F1145A 3.37%, #F3CB1C 99.33%);
    display: block;
    padding: 5.1282051282vw;
    border-radius: 5.1282051282vw 0 0 0;
    border-top: 0.5128205128vw solid #fff;
    border-left: 0.5128205128vw solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .modSpCta a span {
    font-family: "Oswald", sans-serif;
    color: #fff;
    line-height: 1;
    font-weight: 600;
    position: relative;
    font-size: 5.641025641vw;
    padding-right: 7.1794871795vw;
  }
}
@media screen and (max-width: 768px) {
  .modSpCta a span::before {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
    content: "";
    background: url("../img/common/icon_blank-white.svg") center center/cover no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}

/* 汎用モジュール
========================================================*/
@media screen and (min-width: 1025px) {
  .modBpPc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .modBpPc {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .modBpSp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .modBpSp {
    display: block;
  }
}

main {
  background: #F2F2F2;
  position: relative;
  z-index: 10;
}

.mv {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv {
    display: flex;
    align-items: flex-end;
  }
}
.mv::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  background: url("../img/top/mv_img.png") center bottom/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .mv::after {
    background: url("../img/top/sp/mv_img.png") center bottom/cover no-repeat;
  }
}

.mv__bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
}
.mv__bg video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mv__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 100px 50px 60px;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    max-width: 100%;
    padding: 0 6.6666666667vw 10.2564102564vw 5.1282051282vw;
    flex-direction: column;
  }
}

.mv__entxt {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .mv__entxt {
    order: 2;
    gap: 7.1794871795vw;
    margin-top: 19.7435897436vw;
  }
}
.mv__entxt .arrow {
  width: 70px;
}
@media screen and (max-width: 768px) {
  .mv__entxt .arrow {
    order: 2;
    width: 17.9487179487vw;
  }
}
.mv__entxt .txt {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(33, 33, 36, 0.5);
}
@media screen and (max-width: 768px) {
  .mv__entxt .txt {
    order: 1;
    font-size: 3.3333333333vw;
    width: calc(100% - 7.1794871795vw - 17.9487179487vw);
  }
}

.mv__catch {
  writing-mode: vertical-rl;
  text-combine-upright: none;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mv__catch {
    order: 1;
  }
}

.aboutus {
  letter-spacing: 0;
}

.aboutus__ttl {
  font-size: 30px;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .aboutus__ttl {
    font-size: 5.8974358974vw;
    margin-top: 9.7435897436vw;
  }
}

.aboutus__txt {
  font-size: 16px;
  margin-top: 40px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .aboutus__txt {
    font-size: 3.5897435897vw;
    margin-top: 6.1538461538vw;
  }
}

.service-list {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .service-list {
    flex-direction: column;
    gap: 5.1282051282vw;
    margin-top: 10.2564102564vw;
  }
}

.service-list__item {
  border-radius: 10px;
  width: calc(33.3% - 26.6666666667px);
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-list__item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .service-list__item {
    border-radius: 2.5641025641vw;
    width: 100%;
  }
}
.service-list__item:nth-child(1) {
  background: linear-gradient(167.53deg, #FF438B 0.52%, #FFA167 96.8%);
}
.service-list__item:nth-child(2) {
  background: linear-gradient(348.4deg, #0CEFB6 1.59%, #0AC8DD 98.55%);
}
.service-list__item:nth-child(3) {
  background: linear-gradient(345.85deg, #02C4DE 0%, #0B6BE8 97.8%);
}

.service-list__item__inner {
  display: block;
  padding: 24px 19px 40px;
}
@media screen and (max-width: 768px) {
  .service-list__item__inner {
    padding: 6.1538461538vw 6.1538461538vw 10.2564102564vw;
  }
}

.service-list__item__ttl {
  font-size: 22px;
  margin-top: 30px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .service-list__item__ttl {
    font-size: 5.641025641vw;
    margin-top: 7.6923076923vw;
  }
}

.service-list__item__txt {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .service-list__item__txt {
    font-size: 3.5897435897vw;
    margin-top: 4.1025641026vw;
  }
}

.service-list__item__btn {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .service-list__item__btn {
    margin-top: 5.1282051282vw;
  }
}
.service-list__item__btn span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  max-width: 108px;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 20px;
  border: 1px solid #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service-list__item__btn span {
    max-width: 27.6923076923vw;
    font-size: 3.5897435897vw;
    padding: 2.5641025641vw 3.5897435897vw;
    border-radius: 5.1282051282vw;
    border: 0.2564102564vw solid #fff;
  }
}
.service-list__item__btn span::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url("../img/common/icon_blank-white.svg") center center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .service-list__item__btn span::before {
    width: 2.5641025641vw;
    height: 2.5641025641vw;
    right: 3.5897435897vw;
  }
}

.member-list-wrap {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .member-list-wrap {
    display: none;
  }
}

.member-list {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .member-list {
    width: 100%;
    margin-top: 6.9230769231vw;
    gap: 5.1282051282vw;
  }
}

.member-list--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .member-list--sp {
    display: flex;
  }
}

.member-list__item {
  background: red;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .member-list__item {
    border-radius: 2.5641025641vw;
    padding: 5.1282051282vw;
  }
}

.member-list__item--green {
  background: linear-gradient(180deg, #69E09E 0%, #1899D2 100%);
}

.member-list__item--orange {
  background: linear-gradient(180deg, #FDC75A 0%, #FA5574 100%);
}

.member-list__item--blue {
  background: linear-gradient(180deg, #AAA1E4 0%, #4288CB 100%);
}

.member-list__item__head {
  display: flex;
  align-items: center;
  gap: 26px;
}
@media screen and (max-width: 768px) {
  .member-list__item__head {
    gap: 6.6666666667vw;
  }
}
.member-list__item__head .img {
  max-width: 100px;
}
@media screen and (max-width: 768px) {
  .member-list__item__head .img {
    max-width: 25.641025641vw;
  }
}
.member-list__item__head .name {
  width: calc(100% - 100px - 26px);
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .member-list__item__head .name {
    width: calc(100% - 25.641025641vw - 6.6666666667vw);
    font-size: 5.641025641vw;
  }
}
.member-list__item__head .name span {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .member-list__item__head .name span {
    font-size: 3.0769230769vw;
  }
}

.member-list__item__txt {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .member-list__item__txt {
    font-size: 3.5897435897vw;
    margin-top: 3.5897435897vw;
  }
}

.work-list {
  margin-top: 60px;
  gap: 40px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .work-list {
    flex-direction: column;
    margin-top: 10.2564102564vw;
    gap: 3.5897435897vw;
  }
}

.work-list__item {
  background: linear-gradient(100.78deg, #AAA1E4 6%, #4288CB 100%);
  width: calc(25% - 30px);
  border-radius: 10px;
  padding: 28px 24px 20px;
}
@media screen and (max-width: 768px) {
  .work-list__item {
    width: 100%;
    border-radius: 2.5641025641vw;
    padding: 5.1282051282vw;
    display: flex;
    align-items: center;
    gap: 4.6153846154vw;
  }
}

.work-list__item__img {
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .work-list__item__img {
    max-width: 25.641025641vw;
    border-radius: 1.5384615385vw;
  }
}
.work-list__item__img img {
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .work-list__item__img img {
    border-radius: 1.5384615385vw;
  }
}

@media screen and (max-width: 768px) {
  .list__item__inner {
    width: calc(100% - 4.6153846154vw - 25.641025641vw);
  }
}

.work-list__item__ttl {
  font-family: "Oswald", sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-top: 20px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .work-list__item__ttl {
    width: 100%;
    margin-top: 0;
    font-size: 4.1025641026vw;
  }
}

.work-list__item__txt {
  font-size: 16px;
  margin-top: 6px;
  letter-spacing: 0;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .work-list__item__txt {
    margin-top: 1.5384615385vw;
    font-size: 4.1025641026vw;
  }
}

.info-table {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .info-table {
    margin-top: 7.6923076923vw;
  }
}

.info-table__inner {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(33, 33, 36, 0.5);
}
@media screen and (max-width: 768px) {
  .info-table__inner {
    padding: 5.1282051282vw 0;
    border-bottom: 0.2564102564vw solid rgba(33, 33, 36, 0.5);
  }
}

.info-table__ttl {
  width: 240px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  color: rgba(33, 33, 36, 0.5);
}
@media screen and (max-width: 768px) {
  .info-table__ttl {
    width: 35.8974358974vw;
    font-size: 3.5897435897vw;
  }
}

.info-table__txt {
  width: calc(100% - 240px);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .info-table__txt {
    width: calc(100% - 35.8974358974vw);
    font-size: 3.5897435897vw;
  }
}
.info-table__txt p {
  margin-top: 8px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .info-table__txt p {
    margin-top: 2.0512820513vw;
  }
}

.contact {
  background: var(--gray);
  padding: 161px 16px 110px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 30.7692307692vw 0 20.5128205128vw;
  }
}

.contact--thanks {
  padding: 190px 16px 100px;
}
@media screen and (max-width: 768px) {
  .contact--thanks {
    padding: 30.7692307692vw 0 20.5128205128vw;
  }
}
.contact--thanks .contact__inner {
  max-width: 350px;
}
@media screen and (max-width: 768px) {
  .contact--thanks .contact__inner {
    max-width: 100%;
  }
}

.contact__inner {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    max-width: 100%;
    padding: 0 5.1282051282vw;
  }
}

.contact__ttl {
  font-family: "Oswald", sans-serif;
  text-align: center;
  line-height: 1;
  font-size: 64px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact__ttl {
    font-size: 14.358974359vw;
  }
}
.contact__ttl span {
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: bold;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .contact__ttl span {
    font-size: 3.3333333333vw;
    margin-bottom: 2.0512820513vw;
  }
}

.contact__txt {
  font-weight: 500;
  font-size: 14px;
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__txt {
    font-size: 3.5897435897vw;
    margin-top: 7.6923076923vw;
  }
}
.contact__txt a {
  color: #178BFF;
  text-decoration: underline solid;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  font-weight: bold;
}

input,
textarea {
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  border-radius: 0;
}

.radio-group input[type=radio],
.checkbox-group input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact__content {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .contact__content {
    margin-top: 15.3846153846vw;
  }
}

.form-item {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .form-item {
    margin-top: 10.2564102564vw;
  }
}

.form-item__ttl {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .form-item__ttl {
    font-size: 3.5897435897vw;
  }
}
.form-item__ttl span {
  color: #FF2A51;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .form-item__ttl span {
    font-size: 3.0769230769vw;
  }
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  display: block;
  width: 100%;
  background: #fff;
  line-height: 1.2;
  border: 1px solid #CCCCCC;
  border-radius: 6px;
  font-size: 16px;
  padding: 19px 15px;
  margin-top: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  input[type=text],
input[type=email],
input[type=tel],
textarea {
    font-size: 4.1025641026vw;
    border: 0.2564102564vw solid #CCCCCC;
    border-radius: 1.5384615385vw;
    padding: 4.6153846154vw 3.8461538462vw;
    margin-top: 2.5641025641vw;
  }
}

textarea {
  min-height: 240px;
}
@media screen and (max-width: 768px) {
  textarea {
    min-height: 61.5384615385vw;
  }
}

.form-txt {
  font-size: 12px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .form-txt {
    font-size: 3.0769230769vw;
    margin-top: 10.2564102564vw;
  }
}
.form-txt a {
  text-decoration: underline solid;
}

.radio-group {
  position: relative;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .radio-group {
    margin-top: 2.5641025641vw;
  }
}
.radio-group:first-of-type {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .radio-group:first-of-type {
    margin-top: 3.8461538462vw;
  }
}

.radio-group label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: inline-block;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .radio-group label {
    padding-left: 8.2051282051vw;
  }
}
.radio-group label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: 1px solid #CCCCCC;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .radio-group label::before {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    border: 0.2564102564vw solid #CCCCCC;
  }
}
.radio-group label::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: #333;
  border-radius: 50%;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .radio-group label::after {
    width: 4.1025641026vw;
    height: 4.1025641026vw;
    left: 1.2820512821vw;
  }
}

.radio-group input[type=radio]:checked + label::after {
  opacity: 1;
}

.checkbox-group {
  position: relative;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .checkbox-group {
    margin-top: 3.0769230769vw;
  }
}

.checkbox-group label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: inline-block;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .checkbox-group label {
    padding-left: 8.2051282051vw;
  }
}
.checkbox-group label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  box-sizing: border-box;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .checkbox-group label::before {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    border-radius: 1.2820512821vw;
    border: 0.2564102564vw solid #CCCCCC;
  }
}
.checkbox-group label::after {
  content: "";
  position: absolute;
  left: 6px;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: #333;
  opacity: 0;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .checkbox-group label::after {
    width: 3.5897435897vw;
    height: 3.5897435897vw;
    left: 1.5384615385vw;
    border-radius: 0.7692307692vw;
  }
}

.checkbox-group input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.form__btn {
  background: black;
  color: #fff;
  display: block;
  max-width: 100%;
  text-align: center;
  width: 100%;
  margin-top: 30px;
  padding: 22px;
  border-radius: 40px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form__btn:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .form__btn {
    margin-top: 7.6923076923vw;
    padding: 5.641025641vw;
    border-radius: 10.2564102564vw;
    font-size: 4.6153846154vw;
  }
}

input[type=text].is-error,
input[type=email].is-error,
input[type=tel].is-error,
textarea.is-error {
  border: 1px solid red;
}
@media screen and (max-width: 768px) {
  input[type=text].is-error,
input[type=email].is-error,
input[type=tel].is-error,
textarea.is-error {
    border: 0.2564102564vw solid red;
  }
}

fieldset.is-error .radio-group label::before {
  border-color: red;
}

.checkbox-group label.is-error::before {
  border-color: red;
}

input[type=radio].is-error,
input[type=checkbox].is-error {
  border: none;
}

.error-text {
  margin-top: 8px;
  color: red;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .error-text {
    margin-top: 2.0512820513vw;
    font-size: 3.0769230769vw;
  }
}