@charset "UTF-8";
* {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

html {
  font-size: 16px;
  width: 100%;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  position: relative;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  width: 100%;
  height: 100%;
}

article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

hr {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

@media print, screen and (min-width:769px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
body {
  overflow: auto;
  color: #414141;
}
body::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(244, 244, 244);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  margin: auto;
  transition: all 0.5s;
}
body.hidden {
  overflow: hidden;
  height: 100%;
}
body.hidden::before {
  opacity: 1;
  visibility: visible;
}

a {
  color: #414141;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
  }
}
a .icon-filter_none::before {
  display: inline-block;
}

sup {
  vertical-align: super;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 100%;
}

input,
select,
textarea {
  letter-spacing: 0.03rem;
}
@media screen and (max-width:768px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #d1d1d1;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #d1d1d1;
}

button,
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[id] {
  scroll-margin-top: 100px;
}
@media screen and (max-width:768px) {
  [id] {
    scroll-margin-top: 80px;
  }
}

@media screen and (max-width:768px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (min-width:769px) {
  .pc {
    display: block;
  }
}

@media screen and (max-width:768px) {
  .sp {
    display: block;
  }
}
@media print, screen and (min-width:769px) {
  .sp {
    display: none !important;
  }
}

.br_pc {
  display: block;
}
@media screen and (max-width:768px) {
  .br_pc {
    display: none;
  }
}

.br_md {
  display: none;
}
@media screen and (max-width:1024px) {
  .br_md {
    display: block;
  }
}

.br_sp {
  display: none;
}
@media screen and (max-width:768px) {
  .br_sp {
    display: block;
  }
}

/* hover animation */
/* inview animation */
.is-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.is-fade.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.is-fadeleft {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.is-fadeleft.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.is-faderight {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s, transform 0.8s;
}

.is-faderight.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.anime-up {
  animation: showText 1s backwards;
}

.anime-up.displayed span {
  opacity: 0;
}

.anime-up.displayed.is-inview span {
  opacity: 1;
  animation: showText 1s backwards;
  display: inline-block;
}

/*.anime-up.displayed.is-inview > span{
    overflow: hidden;
}*/
.anime-up.displayed.is-inview > span > span {
  animation: showTextFade 0.5s backwards;
}

@keyframes showTextFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes line-scale {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes showNav {
  0% {
    background: rgba(244, 244, 244, 0);
  }
  100% {
    background: rgb(244, 244, 244);
  }
}
@keyframes closeNav {
  0% {
    background: rgb(244, 244, 244);
  }
  100% {
    background: rgba(244, 244, 244, 0);
  }
}
.c_btn {
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c_btn::before {
  content: "";
  width: 42px;
  background: url(../img/common/ico_btn-before.svg) no-repeat center/100%;
  aspect-ratio: 42/40;
  transition: all 0.3s;
}
.c_btn .__sub {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-weight: 400;
  color: #544DB8;
  transition: all 0.3s;
}
.c_btn:hover::before {
  width: 21px;
  background: url(../img/common/ico_btn-after.svg) no-repeat center/100%;
  aspect-ratio: 21/40;
}
.c_btn:hover .__sub {
  color: #867DFF;
}
.c_btn.__border {
  font-size: clamp(1rem, 0.111rem + 1.85vw, 1.5rem);
  line-height: 1.35;
  border-radius: 50px;
  color: #544DB8;
  box-sizing: border-box;
  border: 2px solid #544DB8;
  height: 74px;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width:768px) {
  .c_btn.__border {
    height: 64px;
  }
}
.c_btn.__border:hover {
  color: #867DFF;
  border: 2px solid #867DFF;
}

.c-company .c_ttl-en {
  font-size: clamp(1.125rem, 0.458rem + 1.39vw, 1.5rem);
  font-weight: 500;
  text-align: center;
  color: #544DB8;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.c-company .c_ttl-en::before {
  content: attr(data-en) "";
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.5rem, -1.753rem + 8.86vw, 6rem);
  color: #544DB8;
  white-space: pre;
}
.c-company-anchor {
  width: min(1280px, 90%);
  margin: 0 auto 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width:768px) {
  .c-company-anchor {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.c-company-anchor__list {
  width: 19%;
}
@media screen and (max-width:768px) {
  .c-company-anchor__list {
    width: 45%;
  }
}
.c-company-anchor__list .c-company-anchor__item {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  line-height: 1;
  font-weight: 400;
  text-align: center;
  color: #544DB8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  transition: all 0.3s;
}
.c-company-anchor__list .c-company-anchor__item::after {
  content: "";
  width: 100%;
  aspect-ratio: 24/2;
  background: url(../img/company/ico_company-anchor.svg) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .c-company-anchor__list .c-company-anchor__item::after {
    width: min(200px, 100%);
    margin: 0 auto;
  }
}
.c-company-anchor__list .c-company-anchor__item:hover {
  color: #867DFF;
}
.c-company-anchor__list .c-company-anchor__item:hover::after {
  filter: brightness(0) saturate(100%) invert(71%) sepia(63%) saturate(6160%) hue-rotate(218deg) brightness(102%) contrast(101%);
}
.c-company-message {
  width: min(980px, 90%);
  margin: 0 auto 160px;
}
@media screen and (max-width:768px) {
  .c-company-message {
    width: 100%;
    margin: 0 auto 80px;
    overflow: hidden;
  }
}
.c-company-message__pic {
  margin-bottom: 45px;
  display: flex;
  justify-content: space-between;
}
.c-company-message__pic .__pic-before {
  width: min(200px, 20%);
  margin-bottom: auto;
  background: url(../img/company/bg_message_hexagon.png) no-repeat center/100%;
  aspect-ratio: 200/205;
}
@media screen and (max-width:768px) {
  .c-company-message__pic .__pic-before {
    width: 39%;
    margin-left: -19.5%;
  }
}
.c-company-message__pic .__pic-before.is-inview {
  transition-delay: 1s;
}
.c-company-message__pic .__pic-after {
  width: min(200px, 20%);
  margin-top: auto;
  background: url(../img/company/bg_message_hexagon.png) no-repeat center/100%;
  aspect-ratio: 200/205;
}
@media screen and (max-width:768px) {
  .c-company-message__pic .__pic-after {
    width: 39%;
    margin-right: -19.5%;
  }
}
.c-company-message__pic .__pic-after.is-inview {
  transition-delay: 1.5s;
}
.c-company-message__pic .__pic {
  width: 50%;
  display: block;
}
.c-company-message__ttl {
  font-size: clamp(1.125rem, 0.458rem + 1.39vw, 1.5rem);
  font-weight: 500;
  text-align: center;
  color: #544DB8;
  margin-bottom: 45px;
}
.c-company-message__txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  letter-spacing: 0.0375rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .c-company-message__txt {
    width: 90%;
    margin: 0 auto 60px;
  }
}
.c-company-message__pre {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 0.861rem + 1.85vw, 2.25rem);
  letter-spacing: 0.0675rem;
  width: min(335px, 100%);
  padding: 16px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-company-message__pre {
    width: min(300px, 100%);
  }
}
.c-company-message__pre::before {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background: url(../img/company/ico_pre.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  top: 0;
}
.c-company-message__pre::after {
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background: url(../img/company/ico_pre.svg) no-repeat center/100%;
  transform: rotate(180deg);
  position: absolute;
  right: 0;
  bottom: 0;
}
.c-company-message__pre .__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, 0.528rem + 0.46vw, 0.875rem);
  line-height: 1.35;
}
.c-company-overview {
  margin: 0 auto 160px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-company-overview {
    margin: 0 auto 80px;
  }
}
.c-company-overview__list {
  width: min(960px, 90%);
  margin: 0 auto;
}
.c-company-overview__list .c-company-overview__ttl {
  width: 140px;
}
.c-company-overview::after {
  content: "";
  width: min(960px, 50%);
  aspect-ratio: 960/984;
  background: url(../img/company/bg_message_hexagon.png) no-repeat center/100%;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: -120%;
  right: 2%;
  margin: auto;
}
.c-company-group {
  padding: 80px 0;
  margin: 0 auto 160px;
  background: url(../img/common/bg_blue.png) no-repeat center/cover;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-company-group {
    margin: 0 auto 80px;
  }
}
.c-company-group .c_ttl-en {
  color: #fff;
}
.c-company-group .c_ttl-en::before {
  color: #fff;
}
.c-company-group__inner {
  width: min(1760px, 90%);
  padding: 80px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width:1024px) {
  .c-company-group__inner {
    padding: 60px 30px;
    border-radius: 16px;
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width:768px) {
  .c-company-group__inner {
    padding: 40px 20px;
  }
}
@media screen and (max-width:1024px) {
  .c-company-group__info {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .c-company-group__info {
    width: 100%;
  }
}
.c-company-group__info::before {
  content: "株式会社STT";
  font-size: clamp(1.125rem, 0.669rem + 0.95vw, 1.5rem);
  font-weight: 500;
  color: #544DB8;
  padding-bottom: 10px;
}
.c-company-group__info .c-company-group__ttl {
  width: 140px;
}
.c-company-group__img {
  width: min(640px, 40%);
}
@media screen and (max-width:1024px) {
  .c-company-group__img {
    width: min(480px, 100%);
    margin: 0 auto;
  }
}
@media screen and (max-width:768px) {
  .c-company-group__img {
    width: 100%;
  }
}
.c-company-history {
  margin: 0 auto 160px;
}
@media screen and (max-width:768px) {
  .c-company-history {
    margin: 0 auto 80px;
  }
}
.c-company-history__list {
  width: min(1280px, 90%);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-company-history__list {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    justify-content: flex-end;
    gap: 15px;
  }
}
.c-company-history__list .c-company-history__block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__block {
    width: 100%;
    height: 100%;
    flex-direction: column;
    gap: 30px;
  }
}
.c-company-history__list .c-company-history__block__inner {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__block__inner {
    width: 100%;
  }
}
.c-company-history__list .c-company-history__block__inner:nth-of-type(2).is-inview {
  transition-delay: 1s;
}
.c-company-history__list .c-company-history__block__inner:last-of-type.is-inview {
  transition-delay: 1.5s;
}
.c-company-history__list .c-company-history__block .c-company-history__year {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(4rem, 1.57rem + 5.06vw, 6rem);
  line-height: 1;
  color: #867DFF;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__block .c-company-history__year {
    font-size: 2.5rem;
    margin-bottom: 22px;
  }
}
.c-company-history__list .c-company-history__block .c-company-history__detail {
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
  color: #544DB8;
}
.c-company-history__list .c-company-history__dots {
  width: 100%;
  margin: 20px 0;
  position: absolute;
  top: 47%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__dots {
    width: 12px;
    margin: 0;
    position: relative;
    top: unset;
    left: unset;
    flex-direction: column;
    gap: 30px;
  }
}
.c-company-history__list .c-company-history__dots::before {
  content: "";
  width: 0%;
  height: 2px;
  background: #D9D9D9;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
  margin: auto;
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__dots::before {
    width: 2px;
    height: 100%;
    bottom: unset;
    right: 0;
    margin: auto;
  }
}
.c-company-history__list .c-company-history__dots::after {
  content: "";
  width: calc((100% - 40px) / 3 / 10);
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__dots::after {
    content: "";
    width: 100%;
    height: 13px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
  }
}
.c-company-history__list .c-company-history__dots__inner {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__dots__inner {
    width: 12px;
    height: 100%;
    position: relative;
  }
}
.c-company-history__list .c-company-history__dots__inner::before {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  border-radius: 20px;
  background: #867DFF;
  margin-left: 10%;
  display: block;
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__dots__inner::before {
    margin: 0;
    position: absolute;
    left: 0;
  }
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__dots__inner:first-of-type::before {
    top: 13px;
  }
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__dots__inner:nth-of-type(2)::before {
    top: 7px;
  }
}
.c-company-history__list .c-company-history__dots__inner:nth-of-type(2).is-inview {
  transition-delay: 1s;
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__dots__inner:last-of-type::before {
    top: 20px;
  }
}
.c-company-history__list .c-company-history__dots__inner:last-of-type.is-inview {
  transition-delay: 1.5s;
}
.c-company-history__list .c-company-history__dots.line-scale::before {
  width: 0%;
  transition: width 2s;
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__dots.line-scale::before {
    width: 2px;
    height: 0%;
    transition: height 2s;
  }
}
.c-company-history__list .c-company-history__dots.line-scale.is-inview::before {
  width: 100%;
  transition-delay: 0.8s;
}
@media screen and (max-width:768px) {
  .c-company-history__list .c-company-history__dots.line-scale.is-inview::before {
    width: 2px;
    height: 100%;
  }
}
.c-company-table .c-company-table__block {
  display: flex;
}
@media screen and (max-width:768px) {
  .c-company-table .c-company-table__block {
    padding: 20px 0;
    border-bottom: 1px solid #D9D9D9;
    position: relative;
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width:768px) {
  .c-company-table .c-company-table__block::after {
    content: "";
    width: 96px;
    height: 1px;
    background: #544DB8;
    position: absolute;
    left: 0;
    bottom: -1px;
  }
}
.c-company-table__ttl {
  letter-spacing: 0.03rem;
  line-height: 1.9;
  padding: 30px 0;
  color: #544DB8;
  border-bottom: 1px solid #544DB8;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width:768px) {
  .c-company-table__ttl {
    font-size: 0.9375rem;
    padding: 0;
    border: none;
  }
}
.c-company-table__txt {
  letter-spacing: 0.03rem;
  line-height: 1.9;
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width:768px) {
  .c-company-table__txt {
    font-size: 0.9375rem;
    padding: 0;
    border: none;
  }
}
.c-company-table__txt .__sub {
  color: #d1d1d1;
}
.c-company-access__list {
  width: min(1280px, 90%);
  margin: 0 auto;
}
.c-company-access__list .c_subttl {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  font-weight: 500;
  line-height: 1;
  color: #544DB8;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width:768px) {
  .c-company-access__list .c_subttl {
    margin-bottom: 30px;
  }
}
.c-company-access__list .c_subttl__inner {
  flex-shrink: 0;
}
.c-company-access__list .c_subttl::after {
  content: "";
  background: #544DB8;
  width: 100%;
  height: 2px;
}
.c-company-access__list__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media screen and (max-width:768px) {
  .c-company-access__list__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.c-company-access__list__inner .c-company-access__block {
  width: 50%;
}
@media screen and (max-width:768px) {
  .c-company-access__list__inner .c-company-access__block {
    width: 100%;
  }
}
.c-company-access__list__inner .c-company-access__map {
  width: min(600px, 100%);
}
.c-company-access__list__inner .c-company-access__map .__frame {
  width: 100%;
  aspect-ratio: 6/4;
}
@media screen and (max-width:768px) {
  .c-company-access__list__inner .c-company-access__info {
    width: 100%;
  }
}
.c-company-access__list__inner.__single {
  margin-bottom: 60px;
  align-items: center;
}
.c-company-access__ttl {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  font-weight: 500;
  color: #544DB8;
  margin: 24px 0 32px;
}
@media screen and (max-width:768px) {
  .c-company-access__ttl {
    margin: 24px 0;
  }
}
.c-company-access__txt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 1.9;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .c-company-access__txt {
    margin-bottom: 20px;
  }
}
.c-company-access .__map {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 1.125rem;
  display: flex;
  gap: 4px;
  transition: all 0.3s;
}
.c-company-access .__map::before {
  content: "";
  width: 14px;
  background: url(../img/common/ico_map.svg) no-repeat center/100%;
  aspect-ratio: 7/9;
}
.c-company-access .__map:hover {
  color: #867DFF;
}

.c-contact {
  width: min(960px, 90%);
  margin: 0 auto;
}
.c-contact-list__ttl {
  font-size: clamp(1.25rem, 0.806rem + 0.93vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.045rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width:768px) {
  .c-contact-list__ttl {
    flex-direction: column;
    gap: 15px;
  }
}
.c-contact-list__ttl::before {
  content: "";
  width: 60px;
  aspect-ratio: 1;
}
@media screen and (max-width:768px) {
  .c-contact-list__ttl::before {
    width: 40px;
  }
}
.c-contact-list__catch {
  font-size: clamp(1.125rem, 0.903rem + 0.46vw, 1.25rem);
  letter-spacing: 0.0375rem;
  font-weight: 500;
  line-height: 1.9;
  color: #544DB8;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .c-contact-list__catch {
    margin-bottom: 20px;
  }
}
.c-contact-list__catch .required {
  font-size: 0.625rem;
  color: #E52D2D;
}
.c-contact-tel {
  padding: 80px 0;
  margin-bottom: 160px;
  box-sizing: border-box;
  border: 2px solid #414141;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}
@media screen and (max-width:768px) {
  .c-contact-tel {
    padding: 24px 0;
    margin-bottom: 80px;
    flex-direction: column;
    gap: 30px;
  }
}
.c-contact-tel .c-contact-list__ttl::before {
  background: url(../img/common/ico_tel.svg) no-repeat center/100%;
}
.c-contact-tel__link .__tel {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.75rem, -0.472rem + 4.63vw, 3rem);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
@media screen and (max-width:768px) {
  .c-contact-tel__link .__tel {
    margin-bottom: 15px;
  }
}
.c-contact-tel__link .c-contact-tel__quote {
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.03rem;
}
.c-contact-mail .c-contact-list__ttl {
  margin-bottom: 60px;
}
.c-contact-mail .c-contact-list__ttl::before {
  background: url(../img/common/ico_mail.svg) no-repeat center/100%;
}
.c-contact-mail .c-contact-list__subcatch {
  font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.03375rem;
  line-height: 1.9;
  margin-bottom: 40px;
}
.c-contact-mail .c-contact-list__txt {
  font-size: clamp(0.875rem, 0.764rem + 0.23vw, 0.938rem);
  letter-spacing: 0.02813rem;
  line-height: 1.9;
  margin-bottom: 80px;
}
.c-contact-mail .c-contact-list__txt .__required {
  color: #E52D2D;
}
.c-contact-flow {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-contact-flow__parts {
  font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
  font-weight: 500;
  width: 64px;
  margin-right: 52px;
  aspect-ratio: 1;
  border-radius: 100px;
  border: 2px solid #D9D9D9;
  box-sizing: border-box;
  color: #544DB8;
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .c-contact-flow__parts {
    width: 56px;
  }
}
.c-contact-flow__parts.current {
  border: 2px solid #544DB8;
  color: #fff;
  background: #544DB8;
}
.c-contact-flow__parts::after {
  content: "";
  width: 28px;
  aspect-ratio: 7/1;
  background: url(../img/common/ico_flow.svg) no-repeat center/100%;
  position: absolute;
  top: 2px;
  bottom: 0;
  right: -42px;
}
.c-contact-flow__parts:last-of-type {
  margin-right: 0;
}
.c-contact-flow__parts:last-of-type::after {
  content: none;
}
.c-contact-complete__ttl {
  font-size: clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.075rem;
  margin-bottom: 45px;
}
.c-contact-complete__txt {
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
  line-height: 1.9;
  text-align: center;
  letter-spacing: 0.03rem;
  margin-bottom: 80px;
}
.c-contact-complete .c_btn {
  width: min(400px, 100%);
  margin: 0 auto;
}
.c-contact-form__parts {
  margin-bottom: 55px;
}
@media screen and (max-width:768px) {
  .c-contact-form__parts {
    margin-bottom: 40px;
  }
}
.c-contact-form__parts .c-contact-list__catch {
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.c-contact-form__parts__item .wpcf7-list-item {
  margin: 0;
}
.c-contact-form__parts__item .c-contact-form__parts__text {
  padding: 20px 15px;
  box-sizing: border-box;
  background: #f4f4f4;
  width: 100%;
}
.c-contact-form__parts__item .c-contact-form__parts__text.__text-w35 {
  width: 35%;
}
@media screen and (max-width:768px) {
  .c-contact-form__parts__item .c-contact-form__parts__text.__text-w35 {
    width: 100%;
  }
}
.c-contact-form__parts__item .c-contact-form__parts__text.__text-w50 {
  width: 50%;
}
@media screen and (max-width:768px) {
  .c-contact-form__parts__item .c-contact-form__parts__text.__text-w50 {
    width: 100%;
  }
}
.c-contact-form__parts__item .c-contact-form__parts__textarea {
  padding: 20px 15px;
  box-sizing: border-box;
  background: #f4f4f4;
  width: 100%;
}
.c-contact-form__parts__item .c-contact-form__parts__quote {
  font-size: clamp(0.813rem, 0.59rem + 0.46vw, 0.938rem);
  line-height: 1.35;
  letter-spacing: 0.02813rem;
  margin-top: 15px;
}
.c-contact-form__parts__item .c-contact-form__parts__quote + .wpcf7-form-control-wrap {
  margin-top: 20px;
  display: block;
}
.c-contact-form__parts__item .c-contact-form__parts__policytxt {
  font-size: clamp(0.938rem, 0.826rem + 0.23vw, 1rem);
  line-height: 1.9;
  margin-bottom: 35px;
}
.c-contact-form__parts__item .c-contact-form__parts__policytxt + .wpcf7-form-control-wrap {
  line-height: 1.35;
  font-weight: 500;
}
.c-contact-form__parts__item .c-contact-form__parts__policytxt .__link {
  color: #544DB8;
  text-decoration: underline;
}
.c-contact-form__parts__item input[type=checkbox] {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.c-contact-form__parts__item input[type=checkbox]::before {
  content: "";
  width: 20px;
  aspect-ratio: 1;
  background: url(../img/common/ico_check.svg) no-repeat center/100%;
}
.c-contact-form__parts__item input[type=checkbox]:checked::before {
  background: url(../img/common/ico_check-active.svg) no-repeat center/100%;
}
.c-contact-form__parts__item .c-contact-form__parts__check {
  display: flex;
}
@media screen and (max-width:768px) {
  .c-contact-form__parts__item .c-contact-form__parts__check {
    flex-direction: column;
    gap: 10px;
  }
}
.c-contact-form__parts__item .c-contact-form__parts__check > .wpcf7-list-item {
  margin: 0 45px 0 0;
}
.c-contact-form__parts__item.c-contact-form__parts__confirm {
  font-size: clamp(1rem, 0.111rem + 1.85vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.045rem;
  line-height: 1.9;
}
.c-contact-form__parts__item label {
  letter-spacing: 0.03375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-contact-form__parts__item .wpcf7-not-valid-tip {
  margin-top: 10px;
}
.c-contact-form .c-contact-form__submit {
  width: min(400px, 100%);
  margin: 0 auto 25px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-contact-form .c-contact-form__submit::before {
  content: "";
  width: 42px;
  background: url(../img/common/ico_btn-before.svg) no-repeat center/100%;
  aspect-ratio: 42/40;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 110px;
  margin: auto;
}
@media screen and (max-width:768px) {
  .c-contact-form .c-contact-form__submit::before {
    width: 35px;
    left: 32%;
  }
}
@media screen and (max-width:415px) {
  .c-contact-form .c-contact-form__submit::before {
    left: 28%;
  }
}
.c-contact-form .c-contact-form__submit .c-contact-form__submit__btn {
  font-weight: 500;
  color: #544DB8;
  background: transparent;
  width: 100%;
  height: 100%;
  padding-left: 52px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
@media screen and (max-width:768px) {
  .c-contact-form .c-contact-form__submit .c-contact-form__submit__btn {
    padding-left: 35px;
  }
}
.c-contact-form .c-contact-form__submit .wpcf7-spinner {
  display: none;
}
.c-contact-form .c-contact-form__submit:hover::before {
  background: url(../img/common/ico_btn-after.svg) no-repeat center/100%;
  width: 21px;
  aspect-ratio: 21/22;
}
@media screen and (max-width:768px) {
  .c-contact-form .c-contact-form__submit:hover::before {
    width: 18px;
  }
}
.c-contact-form .c-contact-form__submit:hover .c-contact-form__submit__btn {
  color: #867DFF;
  padding-left: 31px;
}
@media screen and (max-width:768px) {
  .c-contact-form .c-contact-form__submit:hover .c-contact-form__submit__btn {
    padding-left: 24px;
  }
}
.c-contact-form .c-contact-form__return {
  width: 140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.c-contact-form .c-contact-form__return::before {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
.c-contact-form .c-contact-form__return .c-contact-form__return__btn {
  font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  font-weight: 500;
  text-align: right;
  width: 100%;
  height: 100%;
  color: #544DB8;
  background: transparent;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.c-contact-form .c-contact-form__return:hover .c-contact-form__return__btn {
  font-weight: 500;
  color: #867DFF;
  padding-right: 10px;
}
.c-contact-confirm .c-contact-form__submit::before {
  left: 65px;
}
@media screen and (max-width:768px) {
  .c-contact-confirm .c-contact-form__submit::before {
    left: 25%;
  }
}
@media screen and (max-width:415px) {
  .c-contact-confirm .c-contact-form__submit::before {
    left: 19%;
  }
}

.c-error {
  width: min(960px, 90%);
  margin: 0 auto;
}
.c-error__ttl {
  font-size: clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem);
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 40px;
}
.c-error__txt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 1.9;
  text-align: center;
  margin-bottom: 80px;
}
.c-error .c_btn {
  width: min(400px, 100%);
  margin: 0 auto;
}

.l-contents .c-index-visual {
  width: 100%;
  height: 100vh;
  background: url(../img/top/pic_mv.png) no-repeat left center/cover;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual {
    height: 520px;
  }
}
.l-contents .c-index-visual__catch {
  width: min(1280px, 90%);
  margin: 0 auto;
  position: relative;
  display: flex;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual__catch {
    width: 250px;
  }
}
.l-contents .c-index-visual__catch__inner {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.563rem, 0.34rem + 2.55vw, 2.25rem);
  color: #fff;
  text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual__catch__inner {
    font-size: 1.125rem;
  }
}
.l-contents .c-index-visual__catch__inner .__sub {
  font-size: clamp(4.188rem, 0.965rem + 6.71vw, 6rem);
  letter-spacing: 0.18rem;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual__catch__inner .__sub {
    font-size: 3rem;
  }
}
.l-contents .c-index-visual__catch__inner.__catch01.is-inview {
  transition-delay: 1.5s;
}
.l-contents .c-index-visual__catch__inner.__catch02 {
  position: absolute;
  top: -76%;
  left: 160px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual__catch__inner.__catch02 {
    top: -74%;
    left: 85px;
  }
}
.l-contents .c-index-catch {
  background: #E6E8E5;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-catch {
    margin-top: -80px;
    background: linear-gradient(0deg, rgb(230, 232, 229) 80%, rgba(230, 232, 229, 0.3) 100%);
  }
}
.l-contents .c-index-catch .__h1 {
  width: min(1280px, 90%);
  padding: 40px 0 160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-catch .__h1 {
    padding: 40px 0 60px;
  }
}
.l-contents .c-index-catch::before {
  content: "";
  width: 100%;
  height: 19%;
  background: linear-gradient(180deg, rgba(230, 232, 229, 0) 0%, #E6E8E5 100%);
  position: absolute;
  top: -19%;
  left: 0;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-catch::before {
    height: 50px;
    top: 30px;
  }
}
.l-contents .c-index-service {
  position: relative;
}
.l-contents .c-index-service::before {
  content: "";
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%), #E6E8E5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-service::before {
    height: 25%;
  }
}
.l-contents .c-index-service__inner {
  width: min(1280px, 90%);
  margin: 0 auto;
}
.l-contents .c-index-service__list {
  margin-bottom: 160px;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-service__list {
    margin-bottom: 65px;
  }
}
.l-contents .c-index-service__list::after {
  content: "";
  width: 62.5%;
  aspect-ratio: 40/41;
  background: url(../img/common/bg_hexagon.png) no-repeat center/100%;
  position: absolute;
  bottom: -50px;
  right: -4%;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-service__list::after {
    width: 81%;
    bottom: 0;
    right: 0;
  }
}
.l-contents .c-index-service__list .c-index-service__img {
  width: 75%;
  margin-left: auto;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-service__list .c-index-service__img {
    width: 93%;
  }
}
.l-contents .c-index-service__list .c-index-ttl {
  width: min(640px, 100%);
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-service__list .c-index-ttl {
    width: 80%;
  }
}
.l-contents .c-index-service__list .c-index-ttl .c_ttl {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3rem, -5rem + 16.67vw, 7.5rem);
  color: #544DB8;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-service__list .c-index-ttl .c_ttl.company_ttl {
    text-align: right;
  }
}
.l-contents .c-index-service__list .c-index-ttl .c_txt {
  font-weight: 500;
  margin: 60px 0 80px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-service__list .c-index-ttl .c_txt {
    margin: 40px 0;
  }
}
.l-contents .c-index-service__list:last-of-type .c-index-service__img {
  margin: 0 auto 0 0;
}
.l-contents .c-index-service__list:last-of-type .c-index-ttl {
  margin-left: auto;
}
.l-contents .c-index-service__list:last-of-type::after {
  right: unset;
  left: -4%;
}
.l-contents .c-index-anchor {
  width: min(700px, 90%);
  margin: 0 auto 160px;
  display: block;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-anchor {
    width: min(340px, 90%);
    margin: 0 auto 60px;
  }
}
.l-contents .c-index-recruit {
  padding: 80px;
  background: url(../img/common/bg_blue.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-recruit {
    padding: 40px 15px;
  }
}
.l-contents .c-index-recruit__catch {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.375rem, -0.625rem + 4.17vw, 2.5rem);
  line-height: 1.9;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.l-contents .c-index-recruit__inner {
  background: #fff;
  padding: 120px 0;
  border-radius: 24px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-recruit__inner {
    width: min(340px, 100%);
    padding: 45px 0;
    margin: 0 auto;
  }
}
.l-contents .c-index-recruit__inner .c_ttl {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-recruit__inner .c_ttl {
    margin-bottom: 30px;
  }
}
.l-contents .c-index-recruit__inner .c_txt {
  font-weight: 500;
  text-align: center;
}

.l-contents {
  position: relative;
}
.l-contents .return {
  width: 64px;
  aspect-ratio: 64/115;
  background: url(../img/common/pic_return.svg) no-repeat center/100%;
  transition: all 0.3s;
  position: absolute;
  right: 40px;
  bottom: 40px;
}
.l-contents .return:hover {
  background: url(../img/common/pic_return-active.svg) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .l-contents .return {
    width: 128px;
    background: url(../img/common/pic_return-sp.svg) no-repeat center/100%;
    aspect-ratio: 128/40;
    bottom: 20px;
    right: 0;
    left: 0;
    margin: auto;
  }
  .l-contents .return:hover {
    background: url(../img/common/pic_return-sp.svg) no-repeat center/100%;
  }
}
.l-contents.l-contents-page .return {
  bottom: 84px;
}

.c-policy {
  width: min(960px, 90%);
  margin: 0 auto;
}
.c-policy .c_txt {
  margin-bottom: 45px;
}
.c-policy-list {
  padding: 80px;
  background: #F6F6F6;
  background: linear-gradient(162deg, #F6F6F6 0%, rgba(246, 246, 246, 0) 99.16%);
  box-sizing: border-box;
}
@media screen and (max-width:768px) {
  .c-policy-list {
    padding: 30px;
  }
}
.c-policy-list__ttl {
  font-size: clamp(1rem, 0.111rem + 1.85vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 20px;
  color: #544DB8;
}
.c-policy-list__txt {
  font-size: clamp(0.875rem, 0.653rem + 0.46vw, 1rem);
  line-height: 1.9;
  margin-bottom: 60px;
}
.c-policy-list__txt:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  .c-policy-list__txt {
    margin-bottom: 40px;
  }
}

.c-recruit {
  text-align: center;
  width: min(1280px, 90%);
  margin: 0 auto 160px;
}
@media screen and (max-width:768px) {
  .c-recruit {
    margin: 0 auto 55px;
  }
}
.c-recruit__ttl {
  font-size: clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem);
  letter-spacing: 0.075rem;
  margin-bottom: 80px;
}
.c-recruit .c_btn {
  width: min(560px, 90%);
  margin: 0 auto;
  padding: 15px;
}

.c-service-list {
  position: relative;
}
.c-service-list::before {
  content: "";
  width: min(800px, 40%);
  background: url(../img/common/bg_hexagon.png) no-repeat center/cover;
  aspect-ratio: 1440/1476;
  position: absolute;
  top: 20%;
  right: 1%;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .c-service-list::before {
    width: 65%;
  }
}
.c-service-list::after {
  content: "";
  width: min(960px, 55%);
  background: url(../img/common/bg_hexagon.png) no-repeat center/cover;
  aspect-ratio: 1440/1476;
  position: absolute;
  bottom: 24%;
  left: 1%;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .c-service-list::after {
    width: 65%;
  }
}
.c-service-list__inner {
  width: min(960px, 90%);
  margin: 0 auto 160px;
  counter-reset: order 0;
}
@media screen and (max-width:768px) {
  .c-service-list__inner {
    margin: 0 auto 120px;
  }
}
.c-service-list__item {
  margin-bottom: 120px;
}
@media screen and (max-width:768px) {
  .c-service-list__item {
    margin-bottom: 60px;
  }
}
.c-service-list__item:last-of-type {
  margin-bottom: 0;
}
.c-service-list__ttl {
  font-size: clamp(1.125rem, 0.458rem + 1.39vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.045rem;
  color: #544DB8;
  margin: -4.5% 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 45px;
}
@media screen and (max-width:768px) {
  .c-service-list__ttl {
    margin: -3.5% 0 20px;
    gap: 30px;
  }
}
@media screen and (max-width:415px) {
  .c-service-list__ttl {
    margin: -5% 0 20px;
  }
}
.c-service-list__ttl::before {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.5rem, -3.722rem + 12.96vw, 6rem);
  counter-increment: order 1;
  content: "0" counter(order);
}
.c-service-list__txt {
  font-size: clamp(0.938rem, 0.826rem + 0.23vw, 1rem);
  line-height: 1.9;
  text-align: center;
}

.c-breadcrumb {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.c-breadcrumb__home {
  border-bottom: 1px solid #414141;
  transition: all 0.3s;
}
.c-breadcrumb__home:hover {
  color: #867DFF;
  border-bottom: 1px solid #867DFF;
}
.c-breadcrumb__page {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-breadcrumb__page::before {
  content: "";
  width: 5px;
  aspect-ratio: 1/2;
  background: url(../img/common/ico_arrow.svg) no-repeat center/100%;
}

.c-contact-bottom {
  margin: 160px 0 0;
  padding-bottom: 200px;
}
@media screen and (max-width:768px) {
  .c-contact-bottom {
    margin: 60px 0 0;
    padding-bottom: 125px;
  }
}
.c-contact-bottom__inner {
  width: min(1280px, 90%);
  margin: 0 auto;
}
.c-contact-bottom-info {
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-info {
    margin-bottom: 45px;
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
  }
}
.c-contact-bottom-info .c_txt {
  font-weight: 500;
}
.c-contact-bottom-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-link {
    flex-direction: column;
    align-items: center;
  }
}
.c-contact-bottom-link__inner {
  width: 50%;
  padding: 0 5% 0 0;
  box-sizing: border-box;
  border-right: 1px dotted #D9D9D9;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-link__inner {
    width: min(320px, 100%);
    padding: 0 0 40px;
    margin-bottom: 40px;
    border-right: none;
    border-bottom: 1px dotted #D9D9D9;
  }
}
.c-contact-bottom-link__inner:last-of-type {
  padding: 0 0 0 5%;
  border: none;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-link__inner:last-of-type {
    padding: 0;
  }
}
.c-contact-bottom-link__ttl {
  font-size: clamp(1.25rem, 0.458rem + 1.39vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-link__ttl {
    margin-bottom: 30px;
  }
}
.c-contact-bottom-link__ttl::before {
  content: "";
  width: 60px;
  aspect-ratio: 1;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-link__ttl::before {
    width: 40px;
  }
}
.c-contact-bottom-link__ttl.tel_link::before {
  background: url(../img/common/ico_tel.svg) no-repeat center/100%;
}
.c-contact-bottom-link__ttl.mail_link::before {
  background: url(../img/common/ico_mail.svg) no-repeat center/100%;
}
.c-contact-bottom-link__btn {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, -0.278rem + 3.7vw, 2.5rem);
  width: min(560px, 100%);
  border: 2px solid #414141;
  background: transparent;
  box-sizing: border-box;
  aspect-ratio: 5/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.c-contact-bottom-link__btn::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  right: -200px;
  z-index: -1;
  border-right: 200px solid transparent;
  border-top: 200px solid #544DB8;
  transform: translateX(-100%);
  transition: transform ease 0.5s;
}
.c-contact-bottom-link__btn:hover {
  color: #fff;
  border: 2px solid #544DB8;
}
.c-contact-bottom-link__btn:hover::before {
  transform: translateX(0);
}

.__h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 0.008rem + 2.85vw, 2.5rem);
  line-height: 1.9;
  letter-spacing: 0.075rem;
}

.c_ttl {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.25rem, -5rem + 16.67vw, 7.5rem);
  color: #544DB8;
}

.c_txt {
  font-size: clamp(0.938rem, 0.604rem + 0.69vw, 1.125rem);
  line-height: 1.9;
}

.c-index-ttl .c_ttl {
  margin-top: -5.5%;
  /*mix-blend-mode: color-dodge;*/
}
@media screen and (max-width:768px) {
  .c-index-ttl .c_ttl {
    margin-top: -25px;
  }
}

.c-mv {
  width: min(1760px, 90%);
  padding-top: 100px;
  margin: 0 auto 120px;
}
@media screen and (max-width:768px) {
  .c-mv {
    padding-top: 60px;
    margin: 0 auto 60px;
  }
}
.c-mv-error {
  margin: 160px auto 80px;
}
@media screen and (max-width:768px) {
  .c-mv-error {
    margin: 120px auto 60px;
  }
}
.c-mv__img {
  height: 480px;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .c-mv__img {
    height: 200px;
    margin-bottom: 20px;
  }
}
.c-mv__img.company_img {
  background: url(../img/company/bg_mv.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .c-mv__img.company_img {
    background: url(../img/company/bg_mv_sp.png) no-repeat center/cover;
  }
}
.c-mv__img.service_img {
  background: url(../img/service/bg_mv.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .c-mv__img.service_img {
    background: url(../img/service/bg_mv_sp.png) no-repeat center/cover;
  }
}
.c-mv__img.recruit_img {
  background: url(../img/recruit/bg_mv.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .c-mv__img.recruit_img {
    background: url(../img/recruit/bg_mv_sp.png) no-repeat center/cover;
  }
}
.c-mv__img.contact_img {
  background: url(../img/contact/bg_mv.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .c-mv__img.contact_img {
    background: url(../img/contact/bg_mv_sp.png) no-repeat center/cover;
  }
}
.c-mv__img.privacy-policy_img {
  background: url(../img/privacy-policy/bg_mv.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .c-mv__img.privacy-policy_img {
    background: url(../img/privacy-policy/bg_mv_sp.png) no-repeat center/cover;
  }
}
.c-mv .c_ttl {
  text-align: center;
  opacity: 0;
}
.c-mv .c_ttl.is-inview {
  opacity: 1;
}

@media print, screen and (min-width:769px) {
  .l-contents._col2_ .l-contents__inner {
    display: grid;
    grid-template-columns: 1fr 240px;
    grid-template-rows: auto;
    gap: 0 40px;
    grid-template-areas: "body side";
  }
}
@media screen and (max-width:768px) {
  .l-contents._col2_ .l-contents__inner {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    gap: 60px 0;
    grid-template-areas: "body" "side";
  }
}
.l-contents._col2_ .l-contents__body {
  grid-area: body;
}
.l-contents._col2_ .l-contents__side {
  grid-area: side;
}
@media print, screen and (min-width:1025px) {
  .l-contents._col3_ .l-contents__inner {
    display: grid;
    grid-template-columns: minmax(200px, 25%) 1fr minmax(200px, 25%);
    grid-template-rows: auto;
    gap: 0 30px;
    grid-template-areas: "left main right";
  }
}
@media screen and (max-width:1024px) {
  .l-contents._col3_ .l-contents__inner {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    gap: 50px 0;
    grid-template-areas: "main" "right" "left";
  }
}
.l-contents._col3_ .l-contents__body {
  grid-area: main;
}
.l-contents._col3_ .l-contents__left {
  grid-area: left;
}
.l-contents._col3_ .l-contents__right {
  grid-area: right;
}

.l-header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  transition: all 0.2s;
}
@media screen and (max-width:768px) {
  .l-header {
    height: 64px;
  }
}
.l-header__inner {
  height: 100%;
  padding: 0 25px 0 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
}
@media screen and (max-width:1024px) {
  .l-header__inner {
    padding: 0 25px;
  }
}
.l-header-logo {
  width: 220px;
  flex-shrink: 0;
  position: relative;
  z-index: 4;
}
@media screen and (max-width:1024px) {
  .l-header-logo {
    width: 155px;
  }
}
.l-header-right {
  display: flex;
  align-items: center;
  gap: 65px;
}
@media screen and (max-width:1200px) {
  .l-header-right {
    gap: 50px;
  }
}
@media screen and (max-width:1024px) {
  .l-header-right {
    gap: 35px;
  }
}
@media screen and (max-width:768px) {
  .l-header-right .l-header-nav {
    display: none;
  }
}
.l-header-right .l-header-nav__list {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media screen and (max-width:1200px) {
  .l-header-right .l-header-nav__list {
    gap: 40px;
  }
}
@media screen and (max-width:1024px) {
  .l-header-right .l-header-nav__list {
    gap: 25px;
  }
}
.l-header-right .l-header-nav__list .l-header-nav__item .l-header-nav__link {
  font-size: clamp(0.875rem, 0.647rem + 0.47vw, 1.063rem);
  font-weight: 500;
  letter-spacing: 0.03188rem;
  transition: opacity, color 0.3s;
}
.l-header-right .l-header-nav__list .l-header-nav__item .l-header-nav__link:hover {
  color: #867DFF;
}
.l-header-right .l-header-nav__list .l-header-nav__item.contact-link {
  border-left: 1px dotted #676767;
  padding: 15px 0 15px 45px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width:1200px) {
  .l-header-right .l-header-nav__list .l-header-nav__item.contact-link {
    padding: 15px 0 15px 40px;
  }
}
@media screen and (max-width:1024px) {
  .l-header-right .l-header-nav__list .l-header-nav__item.contact-link {
    padding: 15px 0 15px 30px;
  }
}
.l-header-right .l-header-nav__list .l-header-nav__item.contact-link::before {
  content: "";
  width: 24px;
  aspect-ratio: 24/16;
  background: url(../img/common/ico_mail.svg) no-repeat center/100%;
  filter: brightness(0) saturate(100%) invert(26%) sepia(1%) saturate(0%) hue-rotate(224deg) brightness(96%) contrast(99%);
  transition: all 0.3s;
}
.l-header-right .l-header-nav__list .l-header-nav__item.contact-link:hover::before {
  filter: none;
}
.l-header-right .l-header-nav__list .l-header-nav__item.home-link {
  display: none;
}
.l-header-right .l-header-nav__list .l-header-nav__item.policy-link {
  display: none;
}
.l-header-right .l-header-toggle {
  width: 48px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 4;
  transition: all 0.3s;
}
@media screen and (max-width:1024px) {
  .l-header-right .l-header-toggle {
    width: 40px;
  }
}
@media screen and (max-width:768px) {
  .l-header-right .l-header-toggle {
    width: 32px;
    gap: 5px;
  }
}
.l-header-right .l-header-toggle .st0 {
  fill: #544DB8;
  transition: all 0.1s;
}
.l-header-right .l-header-toggle .__sub {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.875rem;
  letter-spacing: 0.15rem;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width:768px) {
  .l-header-right .l-header-toggle .__sub {
    font-size: 0.75rem;
  }
}
.l-header-right .l-header-toggle:hover {
  opacity: 0.5;
}
.l-header.home-header .l-header-logo .__img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(329%) hue-rotate(92deg) brightness(118%) contrast(100%);
}
.l-header.home-header .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item .l-header-nav__link {
  color: #fff;
}
.l-header.home-header .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item .l-header-nav__link:hover {
  opacity: 0.7;
}
.l-header.home-header .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item.contact-link {
  border-left: 1px dotted #fff;
}
.l-header.home-header .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item.contact-link::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7492%) hue-rotate(305deg) brightness(103%) contrast(105%);
}
.l-header.home-header .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item.contact-link:hover::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7492%) hue-rotate(305deg) brightness(103%) contrast(105%);
}
.l-header.home-header .l-header-right .l-header-toggle .__img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7492%) hue-rotate(305deg) brightness(103%) contrast(105%);
}
.l-header.home-header .l-header-right .l-header-toggle .st0 {
  fill: #fff;
}
.l-header.home-header .l-header-right .l-header-toggle .__sub {
  line-height: 1;
  color: #fff;
}
.l-header.header_fix .l-header__inner {
  background: #fff;
}
.l-header.header_fix .l-header-logo .__img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(79%) saturate(1147%) hue-rotate(219deg) brightness(93%) contrast(84%);
}
.l-header.header_fix .l-header-right .l-header-nav {
  display: none;
}
.l-header.header_fix .l-header-right .l-header-toggle .st0 {
  fill: #544DB8;
}
.l-header.header_fix .l-header-right .l-header-toggle .__sub {
  color: #544DB8;
}
.l-header.header_open .l-header__inner {
  background: rgb(244, 244, 244);
}
.l-header.header_open .l-header-logo .__img {
  filter: brightness(0) saturate(100%) invert(29%) sepia(88%) saturate(1042%) hue-rotate(219deg) brightness(86%) contrast(84%);
}
.l-header.header_open .l-header-right .l-header-nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  display: block;
}
.l-header.header_open .l-header-right .l-header-nav .__nav {
  width: min(1080px, 90%);
  margin: 0 0 0 auto;
}
@media screen and (max-width:768px) {
  .l-header.header_open .l-header-right .l-header-nav .__nav {
    margin: 0 auto;
  }
}
.l-header.header_open .l-header-right .l-header-nav .l-header-nav__list {
  width: min(320px, 100%);
  padding-top: 180px;
  flex-direction: column;
  gap: 60px;
}
.l-header.header_open .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item {
  width: 100%;
  text-align: left;
}
.l-header.header_open .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item .l-header-nav__link {
  color: #544DB8;
  transition: color 0.3s;
}
.l-header.header_open .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item .l-header-nav__link:hover {
  color: #867DFF;
  opacity: 1;
}
.l-header.header_open .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item.home-link {
  display: block;
}
.l-header.header_open .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item.contact-link {
  padding: 60px 0 0;
  border-left: none;
  border-top: 1px dotted #544DB8;
}
.l-header.header_open .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item.contact-link::before {
  filter: brightness(0) saturate(100%) invert(30%) sepia(60%) saturate(1536%) hue-rotate(221deg) brightness(86%) contrast(87%);
}
.l-header.header_open .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item.contact-link:hover::before {
  filter: brightness(0) saturate(100%) invert(30%) sepia(60%) saturate(1536%) hue-rotate(221deg) brightness(86%) contrast(87%);
}
.l-header.header_open .l-header-right .l-header-nav .l-header-nav__list .l-header-nav__item.policy-link {
  display: block;
}
.l-header.header_open .l-header-right .l-header-toggle .__sub {
  color: #544DB8;
}
.l-header.header_open .l-header-right .l-header-toggle .st0 {
  fill: #544DB8;
}

.l-footer {
  background: #14104C;
  padding: 80px 0 60px;
}
@media screen and (max-width:768px) {
  .l-footer {
    padding: 60px 0 45px;
  }
}
.l-footer__logo {
  width: 220px;
  margin: 0 auto 40px;
  display: block;
}
@media screen and (max-width:768px) {
  .l-footer__logo {
    width: 155px;
  }
}
.l-footer-nav {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}
@media screen and (max-width:1024px) {
  .l-footer-nav {
    gap: 25px;
  }
}
@media screen and (max-width:768px) {
  .l-footer-nav {
    width: min(340px, 90%);
    margin: 0 auto 45px;
    flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width:768px) {
  .l-footer-nav__item {
    text-align: center;
    width: 90%;
  }
}
.l-footer-nav__item .l-footer-nav__link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1;
  color: #fff;
  padding: 15px 0;
  transition: all 0.3s;
}
@media screen and (max-width:1200px) {
  .l-footer-nav__item .l-footer-nav__link {
    font-size: 0.9375rem;
  }
}
.l-footer-nav__item .l-footer-nav__link:hover {
  opacity: 0.7;
}
.l-footer-nav__item.contact-link {
  border-left: 1px dotted #fff;
  padding-left: 45px;
}
@media screen and (max-width:1024px) {
  .l-footer-nav__item.contact-link {
    padding-left: 25px;
  }
}
@media screen and (max-width:768px) {
  .l-footer-nav__item.contact-link {
    padding: 30px 0 0 0;
    border-left: none;
    border-top: 1px dotted #fff;
  }
}
.l-footer-nav__item.contact-link .l-footer-nav__link {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width:768px) {
  .l-footer-nav__item.contact-link .l-footer-nav__link {
    padding: 0;
    justify-content: center;
  }
}
.l-footer-nav__item.contact-link .l-footer-nav__link::before {
  content: "";
  width: 24px;
  aspect-ratio: 24/16;
  background: url(../img/common/ico_mail.svg) no-repeat center/100%;
  filter: brightness(0) saturate(100%) invert(97%) sepia(0%) saturate(7500%) hue-rotate(103deg) brightness(105%) contrast(97%);
}
.l-footer-access {
  margin-bottom: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width:768px) {
  .l-footer-access {
    width: 90%;
    margin: 0 auto 45px;
    flex-direction: column;
  }
}
.l-footer-access__txt {
  line-height: 1.9;
  letter-spacing: 0.03rem;
  color: #fff;
}
@media screen and (max-width:768px) {
  .l-footer-access__txt {
    font-size: 0.9375rem;
  }
}
.l-footer-access__txt .__link {
  color: #fff;
}
.l-footer-access__txt__sp {
  color: #fff;
  display: none;
}
@media screen and (max-width:768px) {
  .l-footer-access__txt__sp {
    font-size: 0.9375rem;
    display: block;
  }
}
.l-footer-access__txt__sp .__link {
  color: #fff;
}
.l-footer-access__map {
  font-family: "Reddit Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(0.938rem, 0.715rem + 0.46vw, 1.063rem);
  background: #fff;
  width: 130px;
  padding: 5px 0;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  transition: all 0.3s;
}
.l-footer-access__map:hover {
  color: #867DFF;
}
.l-footer-access__map::before {
  content: "";
  width: 14px;
  aspect-ratio: 14/18;
  background: url(../img/common/ico_map.svg) no-repeat center/100%;
}
.l-footer-copyright {
  font-size: 0.8125rem;
  line-height: 1.35;
  letter-spacing: 0.02438rem;
  text-align: center;
  color: #fff;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width:415px) {
  .u-xs-min {
    display: none !important;
  }
}

@media print, screen and (min-width:416px) {
  .u-xs-max {
    display: none !important;
  }
}

@media screen and (max-width:768px) {
  .u-sm-min {
    display: none !important;
  }
}

@media print, screen and (min-width:769px) {
  .u-sm-max {
    display: none !important;
  }
}

@media screen and (max-width:1024px) {
  .u-md-min {
    display: none !important;
  }
}

@media print, screen and (min-width:1025px) {
  .u-md-max {
    display: none !important;
  }
}

@media screen and (max-width:1200px) {
  .u-lg-min {
    display: none !important;
  }
}

@media print, screen and (min-width:1201px) {
  .u-lg-max {
    display: none !important;
  }
}/*# sourceMappingURL=common.css.map */