@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Voltaire&display=swap"); /*
font-family: "Alexandria", sans-serif;
font-family: "Montserrat", sans-serif;
font-family: "Noto Sans JP", sans-serif;
font-family: "Noto Serif JP", serif;
font-family: "Libre Caslon Text", serif;
 font-family: "Zen Antique Soft", serif;
*/
html {
  font-family: "Montserrat", sans-serif, "Noto Sans JP", sans-serif;
  font-size: calc(16 / 1440 * 100vw);
}
@media screen and (max-width: 768px) {
  html {
    font-size: calc(44.5 / 1440 * 100vw);
  }
}

body,
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  background: #080523;
  color: #fff;
  letter-spacing: 0.1em;
}

body {
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url("../img/bg.jpg") center/cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0.6;
  pointer-events: none;
}
body.is-nav-open {
  overflow: hidden;
}
body.is-nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(7, 5, 35, 0.9);
  z-index: 1;
}

h1 {
  margin: 0;
}

figure {
  margin: 0;
}

ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

li, p {
  text-align: justify;
  word-break: break-all;
  text-justify: inter-ideograph;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: #fff;
}

a:hover {
  color: #fff;
  cursor: pointer;
}

a:visited {
  color: #fff;
}

p,
button,
input,
select,
optgroup,
textarea {
  font-size: 1em;
  line-height: 1.6;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  transition: background 0.3s ease;
}
.site-header.is-scrolled {
  background: #080523;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .site-header__inner {
    width: 88%;
  }
}
.site-header__logo a {
  display: block;
}
.site-header__logo img {
  display: block;
  width: 10em;
  height: auto;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .site-header__contact {
    display: none;
  }
}
.site-header__sns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: fixed;
  top: 10em;
  right: 2em;
  z-index: 1;
}
.site-header__sns a {
  display: block;
  transition: transform 0.3s ease;
}
.site-header__sns a:hover {
  transform: scale(1.5);
}
.site-header__sns img {
  display: block;
}
@media screen and (max-width: 768px) {
  .site-header__sns {
    display: none;
  }
}

.global-nav {
  margin-left: auto;
  margin-right: 2em;
}
@media screen and (max-width: 768px) {
  .global-nav {
    margin-right: 0;
  }
}
.global-nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .global-nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4em;
    width: 2.4em;
    height: 2.4em;
    position: relative;
    z-index: 11;
  }
}
.global-nav__toggle-bar {
  display: block;
  width: 2.4em;
  height: 1px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.global-nav__toggle.is-open .global-nav__toggle-bar:nth-child(2) {
  transform: translateY(calc(0.4em + 1px)) rotate(45deg);
}
.global-nav__toggle.is-open .global-nav__toggle-bar:nth-child(3) {
  opacity: 0;
}
.global-nav__toggle.is-open .global-nav__toggle-bar:nth-child(4) {
  transform: translateY(calc(-0.4em - 1px)) rotate(-45deg);
}
.global-nav__drawer {
  display: contents;
}
@media screen and (max-width: 768px) {
  .global-nav__drawer {
    display: flex;
    flex-direction: column;
    gap: 2em;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 22em;
    height: 100vh;
    background: #080523;
    padding: 6em 2em 2em;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10;
    overflow-y: auto;
  }
  .global-nav__drawer.is-open {
    transform: translateX(0);
  }
}
.global-nav__list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav__list a {
  color: #fff;
  position: relative;
}
.global-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4em;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.global-nav__list a:hover::after {
  transform: scaleX(1);
}
@media screen and (max-width: 768px) {
  .global-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 1.2em;
  }
  .global-nav__list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    list-style: none;
  }
  .global-nav__list a {
    display: block;
    padding: 1em 0;
  }
  .global-nav__list a::after {
    display: none;
  }
}
.global-nav__contact {
  display: none;
}
@media screen and (max-width: 768px) {
  .global-nav__contact {
    display: list-item;
  }
}
.global-nav__sns {
  display: none;
}
@media screen and (max-width: 768px) {
  .global-nav__sns {
    display: flex;
    align-items: center;
    gap: 1.4em;
    margin: 1em 0 0;
    padding: 0;
    list-style: none;
  }
  .global-nav__sns li {
    list-style: none;
  }
  .global-nav__sns a {
    display: inline-flex;
  }
  .global-nav__sns img {
    display: block;
    width: 1.6em;
    height: 1.6em;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.btn--contact {
  padding: 0.5em 1.5em;
  background: #390E68;
  border-radius: 1em;
  transition: background 0.3s ease;
}
.btn--contact span {
  display: inline-flex;
  align-items: center;
}
.btn--contact span::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background: url("../img/contact.svg") no-repeat center/contain;
}
.btn--contact:hover {
  background: #7F0DB4;
}

.btn--primary {
  position: relative;
  min-width: 18em;
  padding: 1.2em 3.5em 1.2em 2em;
  background: #390E68;
  border-radius: 0.5em;
  font-size: 1.1em;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.3137254902);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 0.9em;
  height: 0.9em;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M 3 2 L 10 6 L 3 10 Z' fill='white' stroke='white' stroke-width='2.2' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}
.btn--primary:hover {
  background: #7F0DB4;
  color: #fff;
}
.btn--primary:hover::after {
  right: 1.2em;
}
@media screen and (max-width: 768px) {
  .btn--primary {
    min-width: 0;
    width: 100%;
  }
}

.btn--light {
  position: relative;
  min-width: 16em;
  padding: 2em 3em 2em 1em;
  background: #fff;
  color: #080523;
  border-radius: 0.4em;
  font-size: 1em;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn--light::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2em;
  width: 0.9em;
  height: 0.9em;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M 3 2 L 10 6 L 3 10 Z' fill='%23080523' stroke='%23080523' stroke-width='2.2' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  transform: translateY(-50%);
  transition: right 0.3s ease, background 0.3s ease;
}
.btn--light:visited {
  color: #080523;
}
.btn--light:hover {
  background: #7F0DB4;
  color: #fff;
}
.btn--light:hover::after {
  right: 0.9em;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M 3 2 L 10 6 L 3 10 Z' fill='white' stroke='white' stroke-width='2.2' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media screen and (max-width: 768px) {
  .btn--light {
    min-width: 0;
    width: 100%;
  }
}

.section-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 0.05em;
  margin: 0;
}

.front-page .section-label {
  text-align: center;
}
.front-page .hero {
  position: relative;
}
@media screen and (max-width: 768px) {
  .front-page .hero {
    overflow: hidden;
  }
}
.front-page .hero__visual {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .front-page .hero__visual {
    width: 190%;
  }
}
.front-page .hero__movie {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 10%);
  mask-image: linear-gradient(to top, transparent 0%, #000 10%);
}
.front-page .hero__inner {
  width: 38%;
  position: absolute;
  top: 0;
  right: 10%;
  bottom: 0;
  margin: auto;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .front-page .hero__inner {
    width: 100%;
    position: relative;
    right: 0;
    top: auto;
    bottom: auto;
    margin: -12em 0 0;
  }
}
.front-page .hero__title {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  line-height: 0.9;
  color: #fff;
  font-size: 4.8em;
  letter-spacing: normal;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 768px) {
  .front-page .hero__title {
    font-size: 4em;
    text-align: center;
  }
}
.front-page .hero__lead {
  color: #fff;
  font-size: 1.6em;
  margin: 1em 0;
}
@media screen and (max-width: 768px) {
  .front-page .hero__lead {
    width: 88%;
    font-size: 1.3em;
    text-align: center;
    margin: 1em auto;
  }
}
.front-page .hero__desc {
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
  font-size: 0.8em;
  text-transform: uppercase;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .front-page .hero__desc {
    width: 88%;
    margin: 1em auto 2em;
  }
}
.front-page .hero__cta a {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .front-page .hero__cta {
    width: 88%;
    margin: 0 auto;
  }
}
.front-page .philosophy {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 8em 0;
}
@media screen and (max-width: 768px) {
  .front-page .philosophy {
    width: 88%;
    padding: 4em 0;
  }
}
.front-page .philosophy .section-label {
  color: #7F0DB4;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .front-page .philosophy .section-label {
    position: absolute;
    top: 0;
    right: 100%;
    margin: 0 1em 0 0;
    writing-mode: sideways-lr;
    letter-spacing: 0.15em;
    font-size: 1.3em;
  }
}
@media screen and (min-width: 769px) {
  .front-page .philosophy .section-desc {
    margin-bottom: 8em;
  }
}
.front-page .philosophy > figure {
  position: absolute;
  top: 0;
  right: 0;
  width: 79%;
  height: 100%;
  margin: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: lighten;
}
.front-page .philosophy > figure > img {
  display: block;
  width: 100%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .front-page .philosophy > figure {
    display: none;
  }
}
.front-page .philosophy__mission {
  position: relative;
  z-index: 1;
  margin-left: 15%;
  width: 35%;
}
@media screen and (max-width: 768px) {
  .front-page .philosophy__mission {
    width: 100%;
    margin-left: 0;
  }
}
.front-page .philosophy__visual {
  position: relative;
  z-index: 1;
  width: 14em;
  margin: 0 0 3em 15%;
}
.front-page .philosophy__visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  .front-page .philosophy__visual {
    display: none;
  }
}
.front-page .philosophy__vision {
  position: relative;
  z-index: 1;
  margin-top: 4em;
  margin-left: 15%;
  width: 35%;
}
@media screen and (max-width: 768px) {
  .front-page .philosophy__vision {
    width: 100%;
    margin-top: 2em;
    margin-left: 0;
  }
}
.front-page .philosophy__value {
  position: relative;
  z-index: 1;
  margin-top: 4em;
  margin-left: 15%;
  width: 35%;
}
@media screen and (max-width: 768px) {
  .front-page .philosophy__value {
    width: 100%;
    margin-top: 2em;
    margin-left: 0;
  }
}
.front-page .philosophy__value-list {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  margin-top: 1em;
}
.front-page .philosophy__value-item dt {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2em;
}
.front-page .philosophy__value-item dd {
  margin: 0.3em 0 0;
}
.front-page .service {
  padding: 6em 0 4em;
}
@media screen and (max-width: 768px) {
  .front-page .service {
    padding: 3em 0 2em;
  }
}
.front-page .service__head {
  width: 85%;
  margin: 0 auto 2em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .front-page .service__head {
    width: 88%;
  }
}
.front-page .service__lead {
  margin: 1em auto 0;
  line-height: 1.9;
  text-align: center;
}
.front-page .service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em 2em;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .front-page .service__list {
    grid-template-columns: 1fr;
    width: 88%;
    gap: 2em;
  }
}
.front-page .service__item {
  display: flex;
  flex-direction: column;
}
.front-page .service__visual {
  display: block;
  position: relative;
  background: #fff;
  border-radius: 1em;
  aspect-ratio: 8/3;
  margin-bottom: 1.5em;
  transition: opacity 0.3s ease;
}
.front-page .service__visual:hover {
  opacity: 0.8;
}
.front-page .service__visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  max-width: 55%;
  max-height: 55%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.front-page .service__name {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.6em;
}
.front-page .service__desc {
  margin: 0 0 1.2em;
  line-height: 1.7;
}
.front-page .service__link {
  margin: auto 0 0;
}
.front-page .service__link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.front-page .service__link a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .front-page .service__link {
    text-align: right;
  }
}
.front-page .service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.front-page .service__icon--detail {
  width: 1.4em;
  height: 1.4em;
  background: #7F0DB4;
  border-radius: 50%;
}
.front-page .service__icon--detail::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.32em 0 0.32em 0.5em;
  border-color: transparent transparent transparent #fff;
  margin-left: 0.18em;
}
.front-page .service__icon--external {
  width: 1em;
  height: 1em;
  background: url("../img/outlink.svg") no-repeat center/contain;
}
.front-page .service__more {
  text-align: center;
  margin: 3em 0 0;
}
@media screen and (max-width: 768px) {
  .front-page .service__more {
    width: 88%;
    margin: 2em auto 0;
  }
}
.front-page .client {
  padding: 6em 0;
}
@media screen and (max-width: 768px) {
  .front-page .client {
    padding: 3em 0;
  }
}
.front-page .client__head {
  width: 85%;
  margin: 0 auto 2em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .front-page .client__head {
    width: 88%;
  }
}
.front-page .client__lead {
  margin: 1em auto 0;
  line-height: 1.9;
  text-align: center;
}
.front-page .client__marquees {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  overflow: hidden;
}
.front-page .client__marquee {
  overflow: hidden;
}
.front-page .client__marquee--reverse .client__track {
  animation-direction: reverse;
}
.front-page .client__track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: client-marquee 40s linear infinite;
}
.front-page .client__track li {
  flex-shrink: 0;
  margin-right: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  background: #fff;
}
.front-page .client__track img {
  display: block;
  height: 4em;
  width: auto;
}
@media screen and (max-width: 768px) {
  .front-page .client__track {
    animation-duration: 25s;
  }
  .front-page .client__track li {
    margin-right: 2.5em;
  }
  .front-page .client__track img {
    height: 4.4em;
  }
}
.front-page .information {
  padding: 5em 0;
}
@media screen and (max-width: 768px) {
  .front-page .information {
    padding: 3em 0;
  }
}
.front-page .information__card {
  width: 85%;
  margin: 0 auto;
  background: rgba(57, 14, 104, 0.35);
  border-radius: 1.5em;
  padding: 3em 4em;
}
@media screen and (max-width: 768px) {
  .front-page .information__card {
    width: 88%;
    padding: 1.5em;
    border-radius: 1em;
  }
}
.front-page .information__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .front-page .information__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.front-page .information__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 0.05em;
  margin: 0;
}
.front-page .information__tabs {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.front-page .information__tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8em;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 2em;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 0.95em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.front-page .information__tabs button.is-active {
  background: #390E68;
  color: #fff;
}
.front-page .information__tabs button:hover {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .front-page .information__tabs {
    flex-wrap: wrap;
  }
  .front-page .information__tabs button {
    min-width: 0;
    padding: 0.6em 1.2em;
    font-size: 0.85em;
  }
}
.front-page .information__list {
  display: flex;
  flex-direction: column;
}
.front-page .information__item {
  display: flex;
  align-items: center;
  gap: 3em;
  padding: 1.2em 0.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.front-page .information__item[hidden] {
  display: none;
}
@media screen and (max-width: 768px) {
  .front-page .information__item {
    gap: 1em;
    padding: 1em 0;
  }
}
.front-page .information__date {
  flex-shrink: 0;
  width: 7em;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .front-page .information__date {
    width: 6em;
    font-size: 0.9em;
  }
}
.front-page .information__title {
  flex: 1;
}
.front-page .information__title a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.front-page .information__title a:hover {
  opacity: 0.8;
}
.front-page .information__empty {
  margin: 1.5em 0 0;
  padding: 1.5em 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.front-page .information__empty[hidden] {
  display: none;
}
.front-page .information__more {
  text-align: center;
  margin: 2.5em 0 0;
}
.front-page .company {
  display: flex;
  align-items: center;
  gap: 5%;
  width: 85%;
  margin: 0 auto;
  padding: 6em 0;
}
@media screen and (max-width: 768px) {
  .front-page .company {
    flex-direction: column;
    width: 88%;
    padding: 3em 0;
    gap: 2em;
  }
}
.front-page .company__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 55%;
  flex-shrink: 0;
}
.front-page .company__gallery li {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: 0.1em;
}
.front-page .company__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .front-page .company__gallery {
    width: 100%;
  }
}
.front-page .company__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
@media screen and (max-width: 768px) {
  .front-page .company__body {
    width: 100%;
  }
}
.front-page .company__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2em;
  letter-spacing: 0.05em;
  margin: 0;
}
.front-page .company__desc {
  line-height: 1.9;
  margin: 0;
}
.front-page .company__cta {
  margin: 1em 0 0;
}
.front-page .company__cta .btn {
  width: 100%;
  min-width: 0;
  padding: 1.3em 3.5em 1.3em 2em;
}
@media screen and (max-width: 768px) {
  .front-page .company__cta {
    width: 88%;
    margin: 2em auto 0;
  }
}

@keyframes client-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.breadcrumb {
  width: 95%;
  margin: 0 auto;
  padding: 7em 0 0;
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    width: 88%;
    padding: 5em 0 0;
    font-size: 0.8em;
  }
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .breadcrumb__list {
    padding: 0;
  }
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}
.breadcrumb__item:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  margin: 0 0.9em;
  flex-shrink: 0;
  opacity: 0.7;
}
.breadcrumb__home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb__home img {
  display: block;
  width: 1.3em;
  height: 1.3em;
}
.breadcrumb__current {
  opacity: 0.7;
}
.breadcrumb a {
  color: #fff;
}
.breadcrumb a:visited {
  color: #fff;
}
.breadcrumb a:hover {
  color: #fff;
  opacity: 0.8;
}

.sub-page {
  --sub-page-width: 85%;
  --sub-page-width-sp: 88%;
  --sub-page-max-width: 60em;
  padding: 2em 0 6em;
}
@media screen and (max-width: 768px) {
  .sub-page {
    padding: 1.5em 0 3em;
  }
}
.sub-page__header {
  width: var(--sub-page-width);
  max-width: var(--sub-page-max-width);
  margin: 4em auto 6em;
}
@media screen and (max-width: 768px) {
  .sub-page__header {
    width: var(--sub-page-width-sp);
  }
}
.sub-page__subtitle {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0;
  font-size: 1em;
  font-weight: 400;
}
.sub-page__subtitle::before {
  content: "";
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: #7F0DB4;
  flex-shrink: 0;
}
.sub-page__body {
  width: var(--sub-page-width);
  max-width: var(--sub-page-max-width);
  margin: 0 auto;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .sub-page__body {
    width: var(--sub-page-width-sp);
  }
}
.sub-page__body h2 {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1em;
  padding: 0;
  border: none;
}
.sub-page__body h3 {
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1.4;
  margin: 2em 0 0.8em;
}
.sub-page__body h4 {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.4;
  margin: 1.6em 0 0.6em;
}
.sub-page__body p {
  margin: 0 0 1.2em;
}
.sub-page__body ol, .sub-page__body ul {
  margin: 0 0 1.5em 0;
  padding: 0;
}
.sub-page__body ol li, .sub-page__body ul li {
  line-height: 1.9;
  margin: 0 0 0.5em;
}
@media screen and (max-width: 768px) {
  .sub-page__body ol li, .sub-page__body ul li {
    margin-bottom: 0;
  }
}
.sub-page__body ol li {
  list-style: decimal;
  margin-left: 1.5em;
}
.sub-page__body ul li {
  list-style: disc;
}
.sub-page__body hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2.5em 0;
}
.sub-page__body strong {
  font-weight: 700;
}
.sub-page__body a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.sub-page__body .info-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.6em;
  padding: 1.5em 2em;
  margin: 2em 0;
}
@media screen and (max-width: 768px) {
  .sub-page__body .info-box {
    padding: 1.2em 1.4em;
  }
}
.sub-page__body .info-box > :first-child {
  margin-top: 0;
}
.sub-page__body .info-box > :last-child {
  margin-bottom: 0;
}
.sub-page__body .info-box h3 {
  font-size: 1em;
  margin: 0 0 0.6em;
}
.sub-page__body > *:first-child {
  margin-top: 0;
  margin-bottom: 3em;
}

.info-archive a {
  text-decoration: none;
}
.info-archive__tabs {
  display: flex;
  gap: 1em;
  margin: 0 0 3em;
}
@media screen and (max-width: 768px) {
  .info-archive__tabs {
    gap: 0.5em;
    flex-wrap: wrap;
    margin-bottom: 2em;
  }
}
.info-archive__tab {
  flex: 1;
  min-width: 0;
  list-style: none !important;
}
.info-archive__tab a {
  display: block;
  padding: 1em 0.5em;
  background: #fff;
  color: #080523;
  border-radius: 0.4em;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.info-archive__tab a:visited {
  color: #080523;
}
.info-archive__tab a:hover {
  background: #7F0DB4;
  color: #fff;
}
.info-archive__tab.is-active a {
  background: #7F0DB4;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .info-archive__tab {
    flex: 0 0 calc(50% - 0.25em);
  }
  .info-archive__tab a {
    padding: 0.8em 0.5em;
    font-size: 0.9em;
  }
}
.info-archive__list {
  margin: 0;
}
.info-archive__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none !important;
}
.info-archive__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.info-archive__link {
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 2em 0;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .info-archive__link {
    gap: 1em;
    align-items: flex-start;
  }
}
.info-archive__link:visited {
  color: #fff;
}
.info-archive__link:hover {
  color: #fff;
  opacity: 0.85;
}
.info-archive__thumb {
  flex-shrink: 0;
  width: 14em;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.5em;
  margin: 0;
}
.info-archive__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .info-archive__thumb {
    width: 10em;
  }
}
.info-archive__thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
}
.info-archive__thumb--placeholder img {
  width: 50%;
  max-width: 7em;
  height: auto;
  opacity: 0.35;
  filter: brightness(0) invert(1) grayscale(1);
  -o-object-fit: contain;
     object-fit: contain;
}
.info-archive__content {
  flex: 1;
  min-width: 0;
}
.info-archive__meta {
  display: flex;
  align-items: center;
  gap: 0.8em;
  flex-wrap: wrap;
  margin: 0 0 0.8em;
}
.info-archive__date {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.info-archive__cats {
  display: flex;
  gap: 0.4em;
  flex-wrap: wrap;
}
.info-archive__cat {
  display: inline-block;
  padding: 0.2em 0.8em;
  background: #7F0DB4;
  color: #fff;
  font-size: 0.78em;
  border-radius: 0.3em;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.info-archive__excerpt {
  margin: 0;
  line-height: 1.6;
}
.info-archive__pagination {
  margin: 3em 0 0;
}
@media screen and (max-width: 768px) {
  .info-archive__pagination {
    margin: 2em 0 0;
  }
}
.info-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4em;
  height: 2.4em;
  padding: 0 0.6em;
  margin: 0 0.2em;
  border-radius: 0.3em;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.info-archive__pagination .page-numbers.current {
  background: #7F0DB4;
}
.info-archive__pagination .page-numbers:hover {
  background: #7F0DB4;
  color: #fff;
}
.info-archive__pagination .nav-links {
  text-align: center;
}
.info-archive__pagination .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.info-archive__empty {
  margin: 0;
  padding: 3em 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.page-kollus {
  --kollus-inner: 90%;
  --kollus-max: 70em;
  color: #fff;
}
.page-kollus__heading {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .page-kollus__heading {
    font-size: 1.4em;
  }
}
.page-kollus__heading-label {
  display: inline-block;
  vertical-align: middle;
  padding: 0.25em 0.9em;
  margin-right: 0.6em;
  background: #7F0DB4;
  color: #fff;
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0.4em;
}
@media screen and (max-width: 768px) {
  .page-kollus__heading-label {
    font-size: 0.6em;
  }
}
.page-kollus__sub {
  margin: 0.8em 0 0;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-kollus__sub {
    font-size: 0.95em;
  }
}
.page-kollus__hero {
  position: relative;
  padding: 8em 0 4em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-kollus__hero {
    padding: 5em 0 2em;
  }
}
.page-kollus__hero::before {
  content: "";
  position: absolute;
  top: -8em;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: url("../img/kollus_bg.jpg") center top/cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}
@media screen and (max-width: 768px) {
  .page-kollus__hero::before {
    top: -6em;
  }
}
.page-kollus__hero-inner {
  width: var(--kollus-inner);
  max-width: var(--kollus-max);
  margin: 0 auto;
}
.page-kollus__hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 4em;
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page-kollus__hero-title {
    font-size: 2.6em;
  }
}
.page-kollus__hero-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin: 1em 0 0;
  font-size: 0.95em;
}
.page-kollus__hero-subtitle span {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: #7F0DB4;
  flex-shrink: 0;
}
.page-kollus__hero-screen {
  margin: 3em auto 0;
  max-width: 56em;
}
.page-kollus__hero-screen img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.6em;
  box-shadow: 0 1.5em 3em rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .page-kollus__hero-screen {
    margin: 2em auto 0;
  }
}
.page-kollus__intro {
  width: var(--kollus-inner);
  max-width: var(--kollus-max);
  margin: 4em auto 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-kollus__intro {
    margin: 2.5em auto 0;
  }
}
.page-kollus__intro-body {
  max-width: 50em;
  margin: 2em auto 0;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .page-kollus__intro-body {
    text-align: left;
  }
}
.page-kollus__section {
  width: var(--kollus-inner);
  max-width: var(--kollus-max);
  margin: 7em auto 0;
}
@media screen and (max-width: 768px) {
  .page-kollus__section {
    margin: 4em auto 0;
  }
}
.page-kollus__section-head {
  margin: 0 0 3em;
}
@media screen and (max-width: 768px) {
  .page-kollus__section-head {
    margin-bottom: 2em;
  }
}
.page-kollus__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-kollus__split {
    grid-template-columns: 1fr;
    gap: 2em;
  }
}
@media screen and (min-width: 769px) {
  .page-kollus__split--reverse .page-kollus__split-image {
    order: 1;
  }
  .page-kollus__split--reverse .page-kollus__features {
    order: 2;
  }
}
.page-kollus__split-image {
  margin: 0;
  border-radius: 0.6em;
  overflow: hidden;
}
.page-kollus__split-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .page-kollus__split-image {
    display: none;
  }
}
.page-kollus__features {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-kollus__feature {
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 1.5em;
  align-items: flex-start;
  list-style: none !important;
}
@media screen and (max-width: 768px) {
  .page-kollus__feature {
    grid-template-columns: 5em 1fr;
    gap: 1em;
  }
}
.page-kollus__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7em;
  height: 7em;
}
.page-kollus__feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .page-kollus__feature-icon {
    width: 5em;
    height: 5em;
  }
}
.page-kollus__feature-body h3 {
  font-size: 1.1em;
  font-weight: 700;
  margin: 0 0 0.4em;
  line-height: 1.4;
}
.page-kollus__feature-body p {
  margin: 0;
  line-height: 1.8;
  font-size: 0.95em;
}
.page-kollus__split-content {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.page-kollus__split-content .page-kollus__section-head {
  margin: 0;
  text-align: left;
}
.page-kollus__split-content .page-kollus__heading {
  text-align: left;
}
.page-kollus__split-content .page-kollus__sub {
  text-align: left;
  margin: 0.8em 0 0;
}
.page-kollus__split-content .page-kollus__features {
  margin: 0;
  gap: 0;
}
.page-kollus__split-content .page-kollus__feature {
  padding: 1.8em 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.page-kollus__split-content .page-kollus__feature:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.page-kollus__section--security {
  width: 100%;
  max-width: none;
  position: relative;
}
.page-kollus__section--security .page-kollus__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding-left: max(5%, (100% - var(--kollus-max)) / 2);
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-kollus__section--security .page-kollus__split {
    grid-template-columns: 1fr;
    gap: 2em;
    padding-left: 0;
    width: var(--kollus-inner);
    margin: 0 auto;
  }
}
.page-kollus__section--security .page-kollus__split-content {
  position: relative;
  z-index: 2;
  padding: 4em 2em 4em 0;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .page-kollus__section--security .page-kollus__split-content {
    padding: 0;
  }
}
.page-kollus__section--security .page-kollus__split-image {
  position: relative;
  z-index: 1;
  margin-left: 3em;
  align-self: stretch;
  border-radius: 0.6em 0 0 0.6em;
  overflow: hidden;
  mix-blend-mode: lighten;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 35%);
  mask-image: linear-gradient(to right, transparent 0%, #000 35%);
}
.page-kollus__section--security .page-kollus__split-image img {
  display: block;
  width: 100%;
  height: 75%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-kollus__section--security .page-kollus__split-image {
    margin-left: 0;
    border-radius: 0.6em;
    -webkit-mask-image: none;
    mask-image: none;
    mix-blend-mode: normal;
  }
  .page-kollus__section--security .page-kollus__split-image img {
    height: auto;
  }
}
.page-kollus__section--dev {
  width: 100%;
  max-width: none;
  position: relative;
}
.page-kollus__section--dev .page-kollus__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: none;
  padding-right: max(5%, (100% - var(--kollus-max)) / 2);
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-kollus__section--dev .page-kollus__split {
    grid-template-columns: 1fr;
    gap: 2em;
    padding-right: 0;
    width: var(--kollus-inner);
    margin: 0 auto;
  }
}
.page-kollus__section--dev .page-kollus__split-content {
  position: relative;
  z-index: 2;
  padding: 4em 0 4em 2em;
  align-self: center;
}
@media screen and (max-width: 768px) {
  .page-kollus__section--dev .page-kollus__split-content {
    padding: 0;
  }
}
.page-kollus__section--dev .page-kollus__split-image {
  position: relative;
  z-index: 1;
  margin-right: -8em;
  align-self: stretch;
  border-radius: 0 0.6em 0.6em 0;
  overflow: hidden;
  mix-blend-mode: lighten;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 35%);
  mask-image: linear-gradient(to left, transparent 0%, #000 35%);
}
.page-kollus__section--dev .page-kollus__split-image img {
  display: block;
  width: 100%;
  height: 60%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-kollus__section--dev .page-kollus__split-image {
    margin-right: 0;
    border-radius: 0.6em;
    -webkit-mask-image: none;
    mask-image: none;
    mix-blend-mode: normal;
  }
  .page-kollus__section--dev .page-kollus__split-image img {
    height: auto;
  }
}
.page-kollus__section--dev .page-kollus__guide {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .page-kollus__section--dev .page-kollus__guide {
    width: 88%;
  }
}
.page-kollus__guide {
  display: flex;
  align-items: center;
  gap: 1.5em;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 3em auto 0;
  padding: 1.4em 2em;
  background: #390E68;
  border-radius: 0.8em;
  color: #fff;
  text-decoration: none;
}
.page-kollus__guide:hover, .page-kollus__guide:visited {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page-kollus__guide {
    gap: 1em;
    padding: 1.2em 1.4em;
    flex-wrap: wrap;
    position: relative;
  }
}
.page-kollus__guide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.4em;
  height: 2.4em;
}
.page-kollus__guide-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-kollus__guide-text {
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-kollus__guide-text {
    width: 85%;
  }
}
.page-kollus__guide-name {
  flex: 1;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-kollus__guide-name {
    flex: 1 1 100%;
    text-align: center;
  }
}
.page-kollus__guide-arrow {
  display: inline-flex;
  flex-shrink: 0;
  width: 1.2em;
  height: 1.2em;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M 3 2 L 10 6 L 3 10 Z' fill='%237F0DB4' stroke='%237F0DB4' stroke-width='2.2' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .page-kollus__guide-arrow {
    position: absolute;
    right: 0.5em;
  }
}
.page-kollus__ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em;
}
@media screen and (max-width: 768px) {
  .page-kollus__ai-grid {
    grid-template-columns: 1fr;
    gap: 2em;
  }
}
.page-kollus__ai-item {
  display: flex;
  flex-direction: column;
}
.page-kollus__ai-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 2.5em 1em;
  background: #390E68;
  border-radius: 1em;
}
@media screen and (max-width: 768px) {
  .page-kollus__ai-badge {
    padding: 2em 1em;
  }
}
.page-kollus__ai-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4em;
  height: 4em;
}
.page-kollus__ai-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-kollus__ai-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.9em;
  letter-spacing: 0.15em;
  color: #fff;
}
.page-kollus__ai-title {
  font-size: 1.15em;
  font-weight: 700;
  margin: 1.4em 0 0.8em;
  line-height: 1.4;
}
.page-kollus__ai-lead {
  margin: 0 0 1em;
  font-size: 0.95em;
  line-height: 1.7;
}
.page-kollus__ai-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}
.page-kollus__ai-list li {
  position: relative;
  padding-left: 1em;
  font-size: 0.85em;
  line-height: 1.8;
  list-style: none !important;
}
.page-kollus__ai-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  line-height: 1.8;
}
.page-kollus__ai-list li strong, .page-kollus__ai-list li b {
  font-weight: 700;
}
.page-kollus__cards {
  display: grid;
  gap: 0;
  margin: 0;
  list-style: none;
  padding: 0;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.page-kollus__cards--3col {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .page-kollus__cards--3col {
    grid-template-columns: 1fr;
  }
}
.page-kollus__cards--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .page-kollus__cards--2col {
    grid-template-columns: 1fr;
  }
}
.page-kollus__cards--equal2col {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .page-kollus__cards--equal2col {
    grid-template-columns: 1fr;
  }
}
.page-kollus__cards + .page-kollus__cards {
  border-top: 0;
}
.page-kollus__card {
  padding: 2.5em 2em;
  background: transparent;
  color: #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  list-style: none !important;
}
.page-kollus__card h3 {
  font-size: 1.1em;
  font-weight: 700;
  margin: 0 0 1em;
  line-height: 1.5;
  text-align: center;
}
.page-kollus__card p {
  margin: 0;
  line-height: 1.9;
  font-size: 0.9em;
}
.page-kollus__cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5em;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page-kollus__cases {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
.page-kollus__case {
  display: flex;
  flex-direction: column;
  background: #2D1042;
  border-radius: 0.8em;
  overflow: hidden;
  list-style: none !important;
}
.page-kollus__case-image {
  position: relative;
  margin: 0;
}
.page-kollus__case-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-kollus__case-image figcaption {
  position: absolute;
  top: 1em;
  left: 1em;
  padding: 0.3em 0.9em;
  background: #7F0DB4;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  border-radius: 0.3em;
}
.page-kollus__case-body {
  padding: 1.8em;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .page-kollus__case-body {
    padding: 1.5em;
  }
}
.page-kollus__case-title {
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 0 1.2em;
  line-height: 1.4;
}
.page-kollus__case-detail {
  margin: 0;
}
.page-kollus__case-detail dt {
  display: inline-block;
  padding: 0.25em 0.9em;
  margin: 0 0 0.8em;
  background: #080523;
  color: #fff;
  font-weight: 700;
  font-size: 0.85em;
  border-radius: 0.3em;
  letter-spacing: 0.05em;
}
.page-kollus__case-detail dt:nth-of-type(2) {
  background: #7F0DB4;
  margin-top: 0.6em;
}
.page-kollus__case-detail dd {
  margin: 0 0 1.2em;
}
.page-kollus__case-detail dd:last-child {
  margin-bottom: 0;
}
.page-kollus__case-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.page-kollus__case-detail ul li {
  position: relative;
  padding-left: 1em;
  font-size: 0.9em;
  line-height: 1.8;
  list-style: none !important;
}
.page-kollus__case-detail ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #fff;
  line-height: 1.8;
}
.page-kollus__case-strong {
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.5;
}
.page-kollus__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: center;
  width: var(--kollus-inner);
  max-width: var(--kollus-max);
  margin: 7em auto 4em;
}
@media screen and (max-width: 768px) {
  .page-kollus__contact {
    grid-template-columns: 1fr;
    gap: 2em;
    margin: 4em auto 2em;
  }
}
.page-kollus__contact-heading {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1em;
  text-align: left;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .page-kollus__contact-heading {
    font-size: 1.3em;
  }
}
.page-kollus__contact-lead {
  margin: 0;
  line-height: 1.9;
  text-align: left;
}
.page-kollus__contact-actions {
  display: flex;
  flex-direction: column;
  gap: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-kollus__contact-actions li {
  margin: 0;
  list-style: none !important;
}
.page-kollus__contact-actions .btn {
  width: 100%;
  min-width: 0;
}

.page-service__lead {
  max-width: 60em;
  line-height: 1.9;
}
.page-service__list {
  display: flex;
  flex-direction: column;
  gap: 4em;
}
@media screen and (max-width: 768px) {
  .page-service__list {
    gap: 2.5em;
  }
}
.page-service__item {
  display: grid;
  grid-template-columns: minmax(0, 20em) 1fr;
  gap: 3em;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .page-service__item {
    grid-template-columns: 1fr;
    gap: 1.2em;
  }
}
.page-service__visual {
  display: block;
  position: relative;
  background: #fff;
  border-radius: 1em;
  aspect-ratio: 2/1;
  transition: opacity 0.3s ease;
}
.page-service__visual:hover {
  opacity: 0.8;
}
.page-service__visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  max-width: 55%;
  max-height: 55%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-service__content {
  display: flex;
  flex-direction: column;
}
.page-service__name {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.6em;
}
@media screen and (max-width: 768px) {
  .page-service__name {
    font-size: 1.4em;
  }
}
.page-service__desc {
  margin: 0 0 1.2em;
  line-height: 1.9;
}
.page-service__link {
  margin: auto 0 0;
  text-align: right;
}
.page-service__link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.page-service__link a:visited {
  color: #fff;
}
.page-service__link a:hover {
  color: #fff;
  opacity: 0.8;
}
.page-service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-service__icon--detail {
  width: 1.4em;
  height: 1.4em;
  background: #7F0DB4;
  border-radius: 50%;
}
.page-service__icon--detail::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.32em 0 0.32em 0.5em;
  border-color: transparent transparent transparent #fff;
  margin-left: 0.18em;
}
.page-service__icon--external {
  width: 1em;
  height: 1em;
  background: url("../img/outlink.svg") no-repeat center/contain;
}

.page-recruit__lead-title {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1.5em;
}
@media screen and (max-width: 768px) {
  .page-recruit__lead-title {
    font-size: 1.2em;
  }
}
.page-recruit__lead p {
  margin: 0;
  line-height: 1.9;
}
.page-recruit__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  margin: 3em 0 4em;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page-recruit__tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6em;
    margin: 2em 0 2.5em;
  }
}
.page-recruit__tabs li {
  margin: 0;
  list-style: none !important;
}
.page-recruit__tab {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 0.6em;
  cursor: pointer;
  overflow: hidden;
  color: #7F0DB4;
  font-family: inherit;
}
.page-recruit__tab-visual {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.page-recruit__tab-visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-recruit__tab-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 35, 0.75);
  transition: opacity 0.2s;
  pointer-events: none;
}
.page-recruit__tab:hover .page-recruit__tab-visual::after {
  opacity: 0.35;
}
.page-recruit__tab.is-active .page-recruit__tab-visual::after {
  opacity: 0;
}
.page-recruit__tab-label {
  display: block;
  padding: 0.9em 1em;
  background: #fff;
  color: #7F0DB4;
  font-weight: 700;
  font-size: 1em;
  text-align: center;
}
.page-recruit__job {
  display: none;
}
.page-recruit__job.is-active {
  display: block;
}
.page-recruit__job-title {
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.6em;
}
@media screen and (max-width: 768px) {
  .page-recruit__job-title {
    font-size: 1.3em;
  }
}
.page-recruit__job-lead {
  margin: 0 0 2em;
  line-height: 1.9;
}
.page-recruit__detail {
  margin: 0 0 2.5em;
}
.page-recruit__detail:last-of-type {
  margin-bottom: 0;
}
.page-recruit__detail-head {
  background: #fff;
  color: #080523;
  margin: 0;
  padding: 0.9em 1.5em;
  font-size: 1em;
  font-weight: 700;
  border-radius: 0.3em 0.3em 0 0;
}
.page-recruit__detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3em;
}
.page-recruit__detail-table th, .page-recruit__detail-table td {
  padding: 1.2em 1.5em;
  text-align: left;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  vertical-align: top;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .page-recruit__detail-table th, .page-recruit__detail-table td {
    padding: 0.9em 0.8em;
  }
}
.page-recruit__detail-table th {
  width: 12em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .page-recruit__detail-table th {
    width: 7em;
  }
}
.page-recruit__entry {
  text-align: center;
  margin: 3em 0 0;
}
.page-recruit__entry-btn.btn--primary::after {
  background: url("../img/outlink.svg") no-repeat center/contain;
}

.page-company__message {
  line-height: 1.9;
}
.page-company__message p {
  margin: 0 0 1.5em;
}
.page-company__message p:last-child {
  margin-bottom: 0;
}
.page-company__title {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1.5em;
}
@media screen and (max-width: 768px) {
  .page-company__title {
    font-size: 1.2em;
  }
}
.page-company__signature {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 1em;
  margin: 2em 0 0;
}
.page-company__signature span {
  font-size: 0.95em;
}
.page-company__signature strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4em;
  letter-spacing: 0.05em;
}
.page-company__profile {
  margin: 4em 0 0;
}
@media screen and (max-width: 768px) {
  .page-company__profile {
    margin: 3em 0 0;
  }
}
.page-company__profile-head {
  background: #fff;
  color: #080523;
  margin: 0;
  padding: 0.9em 1.5em;
  font-size: 1em;
  font-weight: 700;
  border-radius: 0.3em 0.3em 0 0;
}
.page-company__table {
  width: 100%;
  border-collapse: collapse;
}
.page-company__table th, .page-company__table td {
  padding: 1.2em 1.5em;
  text-align: left;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  vertical-align: top;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .page-company__table th, .page-company__table td {
    padding: 0.9em 0.8em;
  }
}
.page-company__table th {
  width: 14em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .page-company__table th {
    width: 8em;
  }
}
.page-company__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5em;
  margin: 4em 0 0;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .page-company__gallery {
    grid-template-columns: 1fr 1fr;
    margin: 3em 0 0;
  }
}
.page-company__gallery li {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.page-company__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-404 {
  text-align: center;
}
.page-404 .sub-page__header {
  text-align: center;
}
.page-404 .sub-page__body {
  text-align: center;
}
.page-404 .sub-page__body p {
  text-align: center;
}
.page-404 .section-label {
  color: #fff;
  font-size: 4em;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-404 .section-label {
    font-size: 3em;
  }
}
.page-404__title {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0.6em 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-404__title {
    font-size: 1.2em;
  }
}
.page-404__back {
  margin: 3em 0 0;
  text-align: center;
}

.contact-intro {
  margin: 0 auto 2em;
  line-height: 1.9;
}
.contact-intro p {
  margin: 0 0 1em;
}
.contact-intro p:last-child {
  margin-bottom: 0;
}

.contact-form {
  max-width: 60em;
  margin: 0 auto;
  padding: 2em 0;
}
.contact-form p {
  margin: 0;
}
.contact-form .wpcf7-form {
  margin: 0;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 16em 1fr;
  gap: 1em 2em;
  padding: 1.2em 0.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
}
.contact-form .form-row:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0.5em;
    padding: 1em 0.2em;
    align-items: stretch;
  }
}
.contact-form .form-row--textarea, .contact-form .form-row--accept {
  align-items: flex-start;
}
.contact-form .form-row.is-invalid input[type=text], .contact-form .form-row.is-invalid input[type=email], .contact-form .form-row.is-invalid input[type=tel], .contact-form .form-row.is-invalid input[type=url], .contact-form .form-row.is-invalid input[type=number], .contact-form .form-row.is-invalid select, .contact-form .form-row.is-invalid textarea {
  border-color: #ff6b3d;
  box-shadow: 0 0 0 1px #ff6b3d;
}
.contact-form .form-row.is-invalid .wpcf7-list-item label {
  color: #ffaa90;
}
.contact-form .wpcf7-form-control-wrap {
  position: relative;
}
.contact-form .wpcf7-not-valid-tip {
  display: none !important;
}
.contact-form__error {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin: 0.65em 0 0 0.6em;
  padding: 0.45em 0.85em 0.45em 0.55em;
  background: #fff;
  color: #080523;
  border-radius: 0.3em;
  font-size: 0.8em;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 0.4em 1em rgba(0, 0, 0, 0.25);
  position: relative;
  max-width: 100%;
}
.contact-form__error::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 1em;
  border-left: 0.45em solid transparent;
  border-right: 0.45em solid transparent;
  border-bottom: 0.45em solid #fff;
}
.contact-form__error-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4em;
  height: 1.4em;
  background: #ff6b3d;
  color: #fff;
  border-radius: 0.2em;
  font-weight: 700;
  font-size: 0.85em;
  line-height: 1;
  flex-shrink: 0;
}
.contact-form .form-label {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}
.contact-form .form-label .required {
  color: #ff7777;
  font-size: 0.85em;
  margin-left: 0.3em;
}
.contact-form .form-label .optional {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8em;
  margin-left: 0.4em;
  font-weight: 400;
}
.contact-form .form-label a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=url],
.contact-form input[type=number],
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 0.7em 1em;
  background: #fff;
  color: #080523;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.4em;
  font-family: inherit;
  font-size: 1em;
  line-height: 1.5;
  letter-spacing: normal;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=url]:focus,
.contact-form input[type=number]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid #7F0DB4;
  outline-offset: 0;
}
.contact-form textarea {
  min-height: 8em;
  resize: vertical;
}
.contact-form select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1 L6 6.5 L11 1' fill='none' stroke='%23080523' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  background-size: 0.8em auto;
  padding-right: 3em;
  cursor: pointer;
}
.contact-form .wpcf7-radio,
.contact-form .wpcf7-acceptance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em 1.5em;
}
.contact-form .wpcf7-list-item {
  margin: 0;
}
.contact-form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 0.4em;
}
.contact-form .wpcf7-list-item input {
  margin: 0;
}
.contact-form .form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8em;
  margin: 2.5em 0 1em;
}
.contact-form .form-submit input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18em;
  padding: 1.2em 2em;
  background: #390E68;
  color: #fff;
  border: none;
  border-radius: 0.5em;
  font-family: inherit;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.3137254902);
  transition: opacity 0.2s, background 0.2s;
}
.contact-form .form-submit input[type=submit]:hover {
  opacity: 0.85;
}
.contact-form .form-submit input[type=submit]:disabled, .contact-form .form-submit input[type=submit].is-disabled {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  box-shadow: none;
  opacity: 1;
}
.contact-form .form-submit input[type=submit]:disabled:hover, .contact-form .form-submit input[type=submit].is-disabled:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .contact-form .form-submit input[type=submit] {
    min-width: 0;
    width: 100%;
  }
}
.contact-form .form-submit .wpcf7-spinner {
  margin: 0;
}
.contact-form .form-note {
  margin: 0.4em 0;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  line-height: 1.6;
}
.contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.4em;
  color: #ff7777;
  font-size: 0.85em;
}
.contact-form .wpcf7-response-output {
  margin: 1.5em 0 0;
  padding: 1em 1.2em;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 0.4em;
  text-align: center;
}
.contact-form .cf-turnstile {
  transform: scale(0.75);
  transform-origin: 0 0;
  width: 225px;
  height: 49px;
  margin: 0 auto;
}

.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 5, 35, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.contact-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2em;
}
.contact-overlay__spinner {
  display: block;
  width: 2.6em;
  height: 2.6em;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: contact-overlay-spin 0.85s linear infinite;
}
.contact-overlay__text {
  margin: 0;
  color: #fff;
  font-size: 0.95em;
  letter-spacing: 0.05em;
}

@keyframes contact-overlay-spin {
  to {
    transform: rotate(360deg);
  }
}
.contact-preview {
  width: 85%;
  max-width: 60em;
  margin: 0 auto;
  padding: 2em 0;
}
@media screen and (max-width: 768px) {
  .contact-preview {
    width: 88%;
  }
}
.contact-preview.is-submitting {
  opacity: 0.5;
  pointer-events: none;
}
.contact-preview__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.4em;
  letter-spacing: 0.05em;
  margin: 0 0 0.6em;
}
.contact-preview__lead {
  margin: 0 0 1.5em;
  line-height: 1.7;
}
.contact-preview__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-preview__row {
  display: grid;
  grid-template-columns: 12em 1fr;
  gap: 1em 2em;
  padding: 1.2em 0.5em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .contact-preview__row {
    grid-template-columns: 1fr;
    gap: 0.4em;
    padding: 1em 0.2em;
  }
}
.contact-preview__label {
  margin: 0;
  font-weight: 700;
}
.contact-preview__value {
  margin: 0;
  line-height: 1.7;
  word-break: break-all;
}
.contact-preview__actions {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: 2.5em 0 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .contact-preview__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.contact-preview__back, .contact-preview__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18em;
  padding: 1.2em 2em;
  border: none;
  border-radius: 0.5em;
  font-family: inherit;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.3137254902);
  transition: opacity 0.2s, background 0.2s;
}
.contact-preview__back::after, .contact-preview__submit::after {
  display: none;
}
.contact-preview__back:hover, .contact-preview__submit:hover {
  opacity: 0.85;
}
@media screen and (max-width: 768px) {
  .contact-preview__back, .contact-preview__submit {
    min-width: 0;
    width: 100%;
  }
}
.contact-preview__back {
  background: #fff;
  color: #080523;
}
.contact-preview__back:hover {
  background: #fff;
  color: #080523;
}
.contact-preview__submit {
  background: #390E68;
  color: #fff;
}
.contact-preview__submit:hover {
  background: #390E68;
  color: #fff;
}

.info-detail__article {
  width: 85%;
  max-width: 60em;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .info-detail__article {
    width: 88%;
  }
}
.info-detail__header {
  margin: 0 0 1.5em;
}
.info-detail__meta {
  display: flex;
  align-items: center;
  gap: 0.8em;
  flex-wrap: wrap;
  margin: 0 0 1em;
}
.info-detail__date {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.info-detail__cats {
  display: flex;
  gap: 0.4em;
  flex-wrap: wrap;
}
.info-detail__cat {
  display: inline-block;
  padding: 0.2em 0.8em;
  background: #7F0DB4;
  color: #fff;
  font-size: 0.78em;
  border-radius: 0.3em;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.info-detail__title {
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .info-detail__title {
    font-size: 1.4em;
  }
}
.info-detail__divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 1.8em 0;
}
.info-detail__body p {
  margin: 0 0 1.6em;
  line-height: 1.9;
}
.info-detail__body p:last-child {
  margin-bottom: 0;
}
.info-detail__back {
  text-align: center;
  margin: 3em 0 0;
}

.site-footer {
  background: #390E68;
  padding: 5em 0 5em;
  color: #fff;
}
.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5%;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    width: 88%;
    gap: 2em;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.site-footer__logo {
  margin: 0;
}
.site-footer__logo a {
  display: inline-block;
}
.site-footer__logo img {
  display: block;
  width: auto;
  height: 1.6em;
  filter: brightness(0) invert(1);
}
.site-footer__sns {
  display: flex;
  align-items: center;
  gap: 1em;
}
.site-footer__sns a {
  display: block;
}
.site-footer__sns img {
  display: block;
  width: 1em;
  height: 1em;
}
.site-footer__nav {
  display: flex;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .site-footer__nav {
    row-gap: 2em;
    -moz-column-gap: 0;
         column-gap: 0;
    flex-wrap: wrap;
  }
}
.site-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-weight: 500;
}
.site-footer__menu:first-child {
  margin-right: 2em;
}
.site-footer__menu:nth-child(2) li, .site-footer__menu:nth-child(3) li {
  padding-left: 0;
}
.site-footer__menu:nth-child(2) li::before, .site-footer__menu:nth-child(3) li::before {
  display: none;
}
.site-footer__menu:nth-child(2) a[target=_blank]::after, .site-footer__menu:nth-child(3) a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  margin-left: 0.4em;
  vertical-align: middle;
  background: url("../img/outlink.svg") no-repeat center/contain;
}
.site-footer__menu li {
  position: relative;
  padding-left: 1.5em;
}
.site-footer__menu li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.8em;
  height: 1px;
  background: #fff;
}
.site-footer__menu a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .site-footer__menu {
    width: 50%;
  }
  .site-footer__menu:first-child {
    width: 100%;
    margin-right: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .site-footer__menu:first-child li {
    width: calc(50% - 0.5em);
  }
}
.site-footer__actions {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .site-footer__actions {
    width: 100%;
    margin-left: 0;
  }
}
.site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2em;
  width: 85%;
  margin: 3em auto 0;
}
@media screen and (max-width: 768px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    width: 88%;
  }
}
.site-footer__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 1em;
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  .site-footer__bottom-left {
    margin: 0 auto;
    order: 2;
  }
}
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.site-footer__links li {
  display: flex;
  align-items: center;
}
.site-footer__links li:not(:last-child)::after {
  content: "|";
  margin: 0 0.5em;
}
.site-footer__links a {
  color: #fff;
}
.site-footer__copyright {
  margin: 0;
  font-size: 0.9em;
  letter-spacing: 0.05em;
}
.site-footer__badges {
  display: flex;
  align-items: center;
  gap: 1em;
}
.site-footer__badges img {
  display: block;
  height: 3em;
  width: auto;
}
@media screen and (max-width: 768px) {
  .site-footer__badges {
    order: 1;
    margin: 0 auto;
  }
}

.site-loader {
  position: fixed;
  inset: 0;
  background: #080523;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-loader__logo {
  position: relative;
  width: 14em;
  height: 4em;
}
@media screen and (max-width: 768px) {
  .site-loader__logo {
    width: 10em;
    height: 3em;
  }
}
.site-loader__logo::before, .site-loader__logo::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask: url("../img/logo.svg") no-repeat center/contain;
  mask: url("../img/logo.svg") no-repeat center/contain;
}
.site-loader__logo::before {
  background: #fff;
}
.site-loader__logo::after {
  background: #7F0DB4;
  animation: site-loader-wipe 2s ease-in-out infinite;
}

@keyframes site-loader-wipe {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  50% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}
.front-page .hero__title,
.front-page .hero__lead,
.front-page .hero__desc,
.front-page .hero__cta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
  -webkit-transition: opacity 0.9s ease, -webkit-transform 0.9s ease;
}

.front-page .hero__lead {
  transition-delay: 0.15s;
  -webkit-transition-delay: 0.15s;
}

.front-page .hero__desc {
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
}

.front-page .hero__cta {
  transition-delay: 0.45s;
  -webkit-transition-delay: 0.45s;
}

.front-page .hero__visual {
  transition: opacity 0.8s ease 1.35s;
}

.site-header {
  transition: background 0.3s ease, opacity 0.6s ease;
}

html.is-loading .front-page .hero__title,
html.is-loading .front-page .hero__lead,
html.is-loading .front-page .hero__desc,
html.is-loading .front-page .hero__cta {
  opacity: 0;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
}
html.is-loading .front-page .hero__visual {
  opacity: 0;
}
html.is-loading .site-header {
  opacity: 0;
}
html.is-loading .client__track {
  animation-play-state: paused;
}/*# sourceMappingURL=catenoid.css.map */