/*
Theme Name: aunii
Version: 1.0
Author: aunii
*/
body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

html {
  color: #1A2D26;
  font-family: "fot-tsukuardgothic-std", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  line-height: 2;
}

.ff-en {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  letter-spacing: 0.16rem;
}
body.unscroll {
  overflow: hidden;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  color: #1A2D26;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-a {
  margin-left: auto;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fw-b {
  font-weight: bold;
}

.ta-r {
  text-align: right;
}

.ta-l {
  text-align: left;
}

.fade {
  animation-name: fadeUpAnime;
  animation-delay: 0.2s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadetrig {
  opacity: 0;
}

.dl10 {
  animation-delay: 1s;
}

.dl20 {
  animation-delay: 2s;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.loading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 1;
  transition: opacity 2s ease-out;
}

.loading-bg.fade-out {
  opacity: 0;
}

.mv {
  height: 100svh;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.mv video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100svh;
  width: 100%;
}
.mv .loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(16px, 14vw, 48px);
  color: #fff;
  animation: textFadeIn 1.5s ease-in-out forwards;
  line-height: 1.5;
  z-index: 1;
  padding-top: 8px;
  transition: color 0.5s ease-out;
}
.mv .loading-text span {
  border-right: 6px solid #fff;
  display: block;
  height: -moz-max-content;
  height: max-content;
  margin: 0 32px;
  padding-right: 12px;
  transition: border-color 0.5s ease-out;
}
.mv .loading-text.color-change {
  color: #fff;
  z-index: 2;
}
.mv .loading-text.color-change span {
  border-color: #fff;
}
@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 8px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
.mv-caption {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.08rem;
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  margin-inline: auto;
  text-align: center;
}
.mv-caption::before {
  background-image: url("images/compass-w.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 24px;
  margin: 0 auto 8px;
  width: 24px;
}
.mv-left {
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.08rem;
  padding-top: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: rotate(90deg);
}
.mv-right {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.08rem;
  position: absolute;
  right: -4px;
  bottom: 80px;
  transform: rotate(90deg);
  animation: moveDown 2s ease-in-out infinite;
}
.mv-right::before {
  background-image: url("images/scrollbar.svg");
  background-size: cover;
  background-position: center 100%;
  content: "";
  display: block;
  height: 72px;
  margin: 0 0 -24px 33px;
  transform: rotate(-90deg);
  width: 9px;
}
@keyframes moveDown {
  0%, 100% {
    transform: rotate(90deg) translateX(0);
  }
  50% {
    transform: rotate(90deg) translateX(10px);
  }
}

.header {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.05);
  height: 64px;
  position: fixed;
  top: 8px;
  right: 0;
  left: 0;
  margin-inline: auto;
  width: 96%;
  z-index: 10;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  margin: -7px auto 0 16px;
  width: 88px;
  font-weight: 700;
  font-size: 20px;
}
.header-logo span {
  font-size: 14px;
}
.header-pc {
  display: none;
}

.menu {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100svh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.1s linear;
  visibility: hidden;
  width: 100vw;
}
.menu-inner {
  max-width: 400px;
  padding: 0 24px;
  width: 100%;
}
.menu-logo {
  margin: 0 auto 24px;
  mix-blend-mode: multiply;
  width: 108px;
}
.menu-nav-pc {
  display: none;
}
.menu-nav-sp nav ul {
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin: 0 auto 24px;
}
.menu-nav-sp nav ul li a {
  color: #000;
  display: block;
  letter-spacing: 0;
  padding: 12px 8px;
  width: -moz-max-content;
  width: max-content;
}
.menu-nav-sp nav ul li a span {
  color: #1A2D26;
  font-size: 14px;
}
.menu.is-active {
  opacity: 1;
  visibility: visible;
}
.menu-button {
  z-index: 11;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  position: relative;
  transition: all 0.3s ease;
}
.menu-button span.menubar {
  border-radius: calc(infinity * 1px);
  height: 2px;
  position: absolute;
  transition: all 0.3s linear;
  width: 32px;
}
.menu-button span.menubar::before {
  content: "";
  background-color: #000;
  border-radius: calc(infinity * 1px);
  height: 3px;
  width: 24px;
  position: absolute;
  top: -6px;
  transition: all 0.3s linear;
  width: 32px;
}
.menu-button span.menubar::after {
  content: "";
  background-color: #000;
  border-radius: calc(infinity * 1px);
  height: 3px;
  width: 24px;
  position: absolute;
  top: 6px;
  transition: all 0.3s linear;
  width: 32px;
}
.menu-button.is-close span.menubar {
  background-color: transparent;
}
.menu-button.is-close span.menubar::before {
  top: 0px;
  transform: rotate(-45deg);
  width: 32px;
}
.menu-button.is-close span.menubar::after {
  top: 0px;
  transform: rotate(45deg);
  width: 32px;
}
.menu-button.is-close span.menulabel-menu {
  display: none;
}
.menu-button.is-close span.menulabel-close {
  display: block;
}
.menu-button span.menulabel {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 28px 0 0 8px;
  transition: all 0.3s ease;
}
.menu-button span.menulabel-close {
  display: none;
}

.inner {
  padding: 40px 24px;
}

.mission {
  padding: 40px 24px;
}
.mission-text {
  margin-bottom: 40px;
}
.mission-caption {
  color: #AEB9BA;
  display: flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08rem;
  margin-bottom: 16px;
}
.mission-caption::before {
  background-image: url("images/compass-b.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 16px;
  margin-right: 4px;
  width: 16px;
}
.mission-caption span {
  color: #000;
  margin-left: 4px;
}
.mission-title {
  font-size: 30px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.mission-title::after {
  background-color: #000;
  content: "";
  display: block;
  height: 1px;
  margin-top: 24px;
  width: 40px;
}
.mission-title span {
  color: #000;
}
.mission-description {
  letter-spacing: 0;
}

.vision {
  padding: 40px 24px;
}
.vision-text {
  margin-bottom: 40px;
}
.vision-caption {
  color: #AEB9BA;
  display: flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08rem;
  margin-bottom: 16px;
}
.vision-caption::before {
  background-image: url("images/compass-b.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 16px;
  margin-right: 4px;
  width: 16px;
}
.vision-caption span {
  color: #000;
  margin-left: 4px;
}
.vision-title {
  font-feature-settings: "palt";
  font-size: 36px;
  line-height: 1.6;
  margin-bottom: 24px;
  margin-bottom: 16px;
}
.vision-title::after {
  background-color: #000;
  content: "";
  display: block;
  height: 1px;
  margin-top: 24px;
  width: 40px;
}
.vision-title span {
  display: inline-block;
}
.vision-title span span {
  color: #000;
}
.vision-image {
  display: flex;
  justify-content: space-between;
}
.vision-image img {
  margin-left: calc(50% - 50vw);
  flex: 1;
}

.title-main {
  color: #fff;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 40px;
  text-align: center;
}
.title-main::after {
  background-image: url("images/compass-w.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 24px;
  margin: 24px auto 0;
  width: 24px;
}
.title-main span {
  display: block;
  font-size: 10px;
  margin-top: 10px;
}
.title-main._colored {
  color: #000;
}
.title-main._colored::after {
  background-image: url("images/compass-b.svg");
}
.title-main._colored span {
  color: #AEB9BA;
}

.title-left {
  color: #fff;
  display: flex;
  font-size: 32px;
  line-height: 1;
  margin: 0 0 40px -16px;
}
.title-left::before {
  background-image: url("images/compass-w.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 24px;
  margin: 4px 4px 0 0;
  width: 24px;
}
.title-left span {
  display: block;
  font-size: 10px;
  margin-top: 10px;
}

.introduction {
  background-color: #000;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
.introduction .inner {
  padding-bottom: 80px;
}
.introduction-wrap {
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
}
.introduction-head {
  order: 1;
}
.introduction-title {
  color: #000;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
}
.introduction-title span {
  display: inline-block;
}
.introduction-name {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 40px;
}
.introduction-name::before {
  background-image: url("images/braket.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 54.6666666667px;
  width: 37.3333333333px;
}
.introduction-name::after {
  background-image: url("images/braket.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 54.6666666667px;
  transform: rotate(180deg);
  width: 37.3333333333px;
}
.introduction-name div {
  margin-inline: 16px;
  text-align: center;
}
.introduction-name div span {
  display: block;
  font-size: 12px;
  margin-top: 10px;
}
.introduction-text {
  display: contents;
}
.introduction-open {
  border: 1px solid #AEB9BA;
  border-radius: 4px;
  color: #AEB9BA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.introduction-open::after {
  background-image: url("images/open.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 14px;
  margin-left: 8px;
  width: 14px;
}
.introduction-open.active {
  border: none;
}
.introduction-open.active::after {
  transform: rotate(180deg);
}
.introduction-caption {
  letter-spacing: 0;
  order: 4;
  transform-origin: top;
}
.introduction-caption p {
  margin-top: 16px;
}
.introduction-description {
  display: none;
  transform-origin: top;
}
.introduction-image {
  margin: 0 auto 24px;
  order: 2;
  width: 200px;
}
.introduction .button-line-b {
  order: 3;
}

@media (max-width: 374px) {
  .introduction-name::before,
  .introduction-name::after {
    content: none;
  }
}
.button-line-b {
  margin-bottom: 24px;
}
.button-line-b a {
  border: 2px solid #000;
  border-radius: 4px;
  color: #000;
  display: flex;
  align-items: center;
  margin-inline: auto;
  padding: 20px 24px 20px 40px;
  width: -moz-max-content;
  width: max-content;
}
.button-line-b a::after {
  background-image: url("images/arrow-b.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 13px;
  margin-left: 32px;
  width: 13px;
}

.button-square-w {
  margin-bottom: 24px;
}
.button-square-w a {
  background-color: #fff;
  border-radius: 4px;
  color: #000;
  display: flex;
  align-items: center;
  margin-inline: auto;
  padding: 20px 24px 20px 40px;
  width: -moz-max-content;
  width: max-content;
}
.button-square-w a::after {
  background-image: url("images/arrow-b.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 13px;
  margin-left: 32px;
  width: 13px;
}

.button-square-b {
  margin-bottom: 24px;
}
.button-square-b a {
  background-color: #000;
  border-radius: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  margin-inline: auto;
  padding: 20px 24px 20px 40px;
  width: -moz-max-content;
  width: max-content;
}
.button-square-b a::after {
  background-image: url("images/arrow-w.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 13px;
  margin-left: 32px;
  width: 13px;
}

.top-post {
  background-color: #fff;
  margin-top: -16px;
  padding: 16px 24px 40px;
}
.top-post .inner {
  background-color: #AEB9BA;
  border-radius: 16px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.top-post ul {
  margin-bottom: 24px;
}
.top-post ul li {
  border-top: 1px solid #fff;
  letter-spacing: 0;
}
.top-post ul li:last-child {
  border-bottom: 1px solid #fff;
}
.top-post ul li a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
}
.top-post ul li a::after {
  background-image: url("images/arrow-w.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 13px;
  margin-left: 16px;
  width: 13px;
}
.top-post-link a {
  color: #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  font-size: 14px;
  letter-spacing: 0;
  margin-left: auto;
  width: -moz-max-content;
  width: max-content;
}
.top-post-link a::after {
  background-image: url("images/arrow-w.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 13px;
  margin-left: 24px;
  width: 13px;
}

.top-recruit {
  background-color: #000;
  color: #fff;
}
.top-recruit-text {
  margin-bottom: 40px;
  padding-inline: 10px;
}
.top-recruit .button-square-w {
  margin-bottom: 40px;
}
.top-recruit-image img {
  aspect-ratio: 1/1;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.staff .inner {
  padding: 40px 0 40px 8px;
}

.message {
  background-color: #fff;
}
.message .inner {
  background-color: #f6f4f2;
  border-radius: 16px 16px 0 0;
  padding: 40px 16px;
}
.message-wrap {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px 16px;
}
.message-image img {
  aspect-ratio: 2/2;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 10%;
     object-position: 0 10%;
}
.message-text {
  letter-spacing: 0;
}
.message-description {
  margin-bottom: 40px;
}
.message-description p {
  margin-top: 16px;
}
.message-description p span {
  background: linear-gradient(transparent 70%, #d7f0e0 70%);
}
.message-name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.message-company {
  font-size: 12px;
  margin-right: 16px;
}
.message-autograph {
  width: 128px;
}

.company {
  background-color: #000;
}
.company .inner {
  background-color: #fff;
  border-radius: 16px 16px 0 0;
}
.company dl {
  letter-spacing: 0;
}
.company dl div {
  border-top: 1px solid #1A2D26;
  display: flex;
  padding: 16px 4px;
}
.company dl div:last-child {
  border-bottom: 1px solid #1A2D26;
}
.company dl div dt {
  flex-shrink: 0;
  margin-right: 8px;
  width: 96px;
}
.company dl div dd ul li {
  display: flex;
  margin-bottom: 8px;
}
.company dl div dd ul li::before {
  background-color: #000;
  border-radius: calc(infinity * 1px);
  content: "";
  display: block;
  height: 6px;
  margin: 13px 8px 0 0;
  width: 6px;
}

.contact-wrap {
  background-color: #000;
}
.contact-form {
  background-color: #fff;
  border-radius: 16px;
  letter-spacing: 0;
}
.contact-form .inner {
  padding: 24px;
}
.contact .fm-lg {
  width: 100%;
}
.contact .smf-form .smf-item {
  margin-bottom: 24px;
}
.contact .smf-form .smf-item:nth-child(2) .smf-item__col--label .smf-item__description {
  background-color: #82E3B1;
}
.contact .smf-form .smf-item .smf-item__col--label {
  display: flex;
  align-items: baseline;
}
.contact .smf-form .smf-item .smf-item__col--label .smf-item__label {
  margin-bottom: 8px;
}
.contact .smf-form .smf-item .smf-item__col--label .smf-item__description {
  background-color: #E79090;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  margin-left: 4px;
  padding: 4px 6px 4px 4px;
}
.contact .smf-form .smf-item .smf-item__col--controls input,
.contact .smf-form .smf-item .smf-item__col--controls textarea {
  background-color: #fff;
  border: 1px solid #b1b1b1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding: 8px;
}
.contact .smf-form .smf-item .smf-item__col--controls input:focus,
.contact .smf-form .smf-item .smf-item__col--controls textarea:focus {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: #000;
}
.contact .smf-form .smf-item .smf-item__col--controls select {
  border: 1px solid #b1b1b1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding: 8px 1.6rem 8px 8px;
}
.contact .smf-form .smf-item .smf-item__col--controls select:focus {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: #000;
}
.contact .smf-button-control__control {
  background: none;
  background-color: #000;
  border: none;
  border-radius: 4px;
  color: #fff;
  display: flex;
  align-items: center;
  margin-inline: auto;
  padding: 20px 24px 20px 40px;
  width: -moz-max-content;
  width: max-content;
}
.contact .smf-button-control__control::after {
  background-image: url("images/arrow-w.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 13px;
  margin-left: 32px;
  width: 13px;
}

.footer {
  background-color: #fff;
  letter-spacing: 0;
}
.footer .inner {
  padding-bottom: 10px;
}
.footer-logo {
  margin: 0 auto 24px;
  width: 215px;
}
.footer-logo img {
  mix-blend-mode: multiply;
}
.footer-information {
  margin-bottom: 40px;
  text-align: center;
}
.footer-information p:nth-child(1) {
  font-size: 14px;
}
.footer-information p:nth-child(2) {
  font-size: 12px;
}
.footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.footer nav ul li {
  margin: 0 8px 4px;
}
.footer .copyright {
  font-size: 10px;
  text-align: center;
}

.sv {
  background-color: #000;
  color: #fff;
  padding: 112px 24px 40px 16px;
  text-align: center;
}
.sv .title-main {
  margin-bottom: 0;
}
.sv-left {
  border-top: 1px solid #F4FDFA;
  color: #F4FDFA;
  font-size: 10px;
  letter-spacing: 0.08rem;
  padding-top: 4px;
  position: absolute;
  top: 148px;
  left: -16px;
  transform: rotate(90deg);
}

.title-sub {
  text-align: center;
}
.title-sub::after {
  background-color: #000;
  content: "";
  display: block;
  height: 1px;
  margin: 24px auto;
  width: 40px;
}
.title-sub span {
  display: inline-block;
}

.page-recruit-head {
  margin-bottom: 40px;
}
.page-recruit-image {
  margin-bottom: 24px;
}
.page-recruit-text {
  letter-spacing: 0;
}
.page-recruit-text p {
  margin-bottom: 16px;
}
.page-recruit-body ul {
  margin-left: 16px;
}
.page-recruit-body ul li {
  margin-bottom: 16px;
}
.page-recruit-body ul li a {
  border-bottom: 1px solid #000;
  color: #000;
  display: flex;
  align-items: center;
  letter-spacing: 0;
  padding: 8px 0;
  width: -moz-max-content;
  width: max-content;
}
.page-recruit-body ul li a::after {
  background-image: url("images/arrow-b.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 13px;
  margin-left: 32px;
  width: 13px;
}
.page-recruit-title {
  display: flex;
  align-items: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.page-recruit-title::before {
  background-color: #000;
  border-radius: calc(infinity * 1px);
  content: "";
  display: block;
  height: 6px;
  margin-right: 8px;
  width: 6px;
}

.news-post ul {
  margin-bottom: 40px;
}
.news-post ul li {
  border-top: 1px solid #1A2D26;
  letter-spacing: 0;
}
.news-post ul li:last-child {
  border-bottom: 1px solid #1A2D26;
}
.news-post ul li a {
  color: #1A2D26;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 8px;
}
.news-post ul li a::after {
  background-image: url("images/arrow-b.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 13px;
  margin-left: 24px;
  width: 13px;
}
.news-post ul li a time {
  color: #000;
  font-size: 12px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 40px;
}
.pagination a {
  display: block;
}
.pagination .page-numbers {
  color: #AEB9BA;
  display: inline-block;
  margin-inline: 4px;
  padding: 4px 8px;
}
.pagination .current {
  border-bottom: 2px solid #000;
  color: #000;
  margin-top: 2px;
}
.pagination-prev, .pagination-next {
  background-image: url("images/arrow-b.svg");
  background-size: cover;
  content: "";
  display: inline-block;
  height: 16px;
  margin-top: -8px;
  transform: rotate(45deg);
  width: 16px;
}
.pagination-prev {
  transform: scale(-1, 1) rotate(45deg);
}
.pagination .prev,
.pagination .next {
  height: 24px;
  margin-right: 24px;
  padding: 0 !important;
  width: 24px;
}
.pagination .next {
  margin-right: 0;
  margin-left: 24px;
}

.page-lower time {
  color: #000;
  font-size: 14px;
}
.page-lower-caption {
  color: #000;
  font-size: 12px;
}
.page-lower-title {
  font-size: 24px;
}
.page-lower-title::after {
  background-color: #000;
  content: "";
  display: block;
  height: 1px;
  margin: 24px 0 40px;
  width: 40px;
}
.page-lower-image {
  margin-bottom: 40px;
}
.page-lower-content {
  margin-bottom: 40px;
}
.page-lower-content p {
  margin-bottom: 16px;
}
.page-lower-content a {
  color: #000;
  text-decoration: underline;
}
.page-lower-content figure {
  margin-bottom: 16px;
}
.page-lower-link a {
  color: #000;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0;
  margin-inline: auto;
  width: -moz-max-content;
  width: max-content;
}
.page-lower-link a::before {
  background-image: url("images/arrow-b.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 13px;
  margin-right: 24px;
  transform: scale(-1, 1);
  width: 13px;
}

@media (min-width: 768px) {
  .mission {
    display: flex;
    align-items: center;
  }
  .mission-text {
    width: 50%;
  }
  .mission-image {
    margin-left: 24px;
    width: 50%;
  }
  .vision {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  .vision-text {
    margin-left: 24px;
    width: 50%;
  }
  .vision-title > span {
    display: block;
  }
  .vision-image {
    width: 50%;
  }
  .introduction .inner {
    padding-top: 80px;
    padding-bottom: 144px;
  }
  .introduction-wrap {
    flex-direction: row;
    padding: 40px;
  }
  .introduction-image {
    flex-shrink: 0;
    order: -1;
    margin-right: 40px;
  }
  .introduction-text {
    display: block;
  }
  .introduction .button-line-b {
    margin-bottom: 40px;
  }
  .top-post {
    padding-bottom: 80px;
  }
  .top-post .inner {
    margin-top: -64px;
    padding: 40px;
  }
  .top-post ul {
    margin: 0 auto 40px;
    max-width: 784px;
  }
  .top-post ul li a {
    padding: 32px;
  }
  .top-post ul li a div {
    display: flex;
    align-items: center;
  }
  .top-post ul li a div time {
    margin-right: 56px;
  }
  .top-post-link {
    margin-inline: auto;
    max-width: 784px;
  }
  .top-recruit .inner {
    padding: 80px 40px;
  }
  .top-recruit-wrap {
    display: flex;
    justify-content: space-between;
  }
  .top-recruit .button-square-w {
    margin: 0;
  }
  .top-recruit .button-square-w a {
    margin-left: 0;
  }
  .top-recruit-image {
    flex-shrink: 0;
    width: 30%;
  }
  .staff .inner {
    padding: 80px 0 80px 24px;
  }
  .message .inner {
    padding: 80px 40px;
  }
  .message-wrap {
    display: flex;
    padding: 40px;
  }
  .message-image {
    flex-shrink: 0;
    margin-right: 40px;
    width: 30%;
  }
  .company .inner {
    padding: 80px 40px;
  }
  .company dl {
    margin-inline: auto;
    max-width: 784px;
  }
  .company dl div {
    padding: 32px;
  }
  .company dl div dt {
    margin-right: 56px;
  }
  .company dl div dd ul li {
    margin-bottom: 0;
  }
  .contact {
    padding: 80px 40px;
  }
  .contact-wrap {
    border-radius: 16px;
    margin-inline: auto;
    max-width: 1120px;
  }
  .contact-form {
    margin-inline: auto;
    max-width: 960px;
    padding: 40px;
  }
  .contact .smf-form {
    margin: 0 auto 40px;
    max-width: 640px;
  }
  .contact .smf-form .smf-item {
    display: flex;
    align-items: baseline;
  }
  .contact .smf-form .smf-item .smf-item__col--label {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    margin-right: 48px;
    width: 178px;
  }
  .contact .smf-form .smf-item .smf-item__col--label .smf-item__description {
    margin-right: 12px;
    margin-left: 0;
  }
  .contact .smf-form .smf-item .smf-item__col--controls {
    flex-grow: 1;
  }
  .news-post ul {
    margin-inline: auto;
    max-width: 784px;
  }
  .news-post ul li a {
    padding: 32px;
  }
  .news-post ul li a div {
    display: flex;
    align-items: center;
  }
  .news-post ul li a div time {
    font-size: 16px;
    margin-right: 56px;
  }
  .page-recruit .inner {
    margin-inline: auto;
    max-width: 880px;
    padding: 80px 40px;
  }
  .page-lower .inner {
    margin-inline: auto;
    max-width: 880px;
    padding: 80px 40px;
  }
  .page-lower-caption {
    font-size: 16px;
  }
  .page-lower-link a {
    padding: 16px 8px;
  }
}
@media (min-width: 1280px) {
  a {
    transition: all 0.3s ease;
  }
  .header {
    top: 24px;
    height: 96px;
    padding-inline: 16px;
    width: calc(100% - 80px);
  }
  .header-inner {
    height: 96px;
  }
  .header-logo {
    width: 148px;
  }
  .header-pc {
    display: block;
  }
  .header-pc ul {
    display: flex;
    align-items: center;
  }
  .header-pc ul li {
    letter-spacing: 0.16rem;
    margin-left: 24px;
  }
  .header-pc ul li a:hover {
    color: #000;
  }
  .header-pc ul li.menu-contact {
    margin-left: 32px;
  }
  .header-pc ul li.menu-contact a {
    background-color: #000;
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 20px 24px 20px 40px;
  }
  .header-pc ul li.menu-contact a:hover {
    opacity: 0.7;
  }
  .header-pc ul li.menu-contact a::after {
    background-image: url("images/arrow-w.svg");
    background-size: cover;
    content: "";
    display: block;
    height: 13px;
    margin-left: 32px;
    width: 13px;
  }
  .menu-button {
    display: none;
  }
  .mv-caption {
    font-size: 20px;
    letter-spacing: 0.16rem;
  }
  .mv-caption::before {
    height: 32px;
    width: 32px;
  }
  .mv-left {
    font-size: 20px;
    letter-spacing: 0.16rem;
    left: -22px;
  }
  .mv-right {
    font-size: 14px;
    letter-spacing: 0.16rem;
    right: -12px;
  }
  .mv-right::before {
    height: 159px;
    margin: 0 0 -64px 70px;
    width: 17px;
  }
  .mission {
    align-items: flex-start;
    margin-inline: auto;
    padding: 144px 48px;
    width: 1260px;
  }
  .mission-caption {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .mission-caption::before {
    height: 32px;
    width: 32px;
  }
  .mission-title {
    font-size: 48px;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .mission-title::after {
    margin-top: 40px;
    width: 64px;
  }
  .mission-description {
    letter-spacing: 0.08rem;
  }
  .mission-description span {
    display: block;
  }
  .mission-image {
    margin: 0;
    width: 586px;
  }
  .vision {
    align-items: flex-start;
    margin-inline: auto;
    padding: 72px 43px 144px;
    width: 1268px;
  }
  .vision-text {
    margin-left: 80px;
    width: -moz-max-content;
    width: max-content;
  }
  .vision-caption {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .vision-caption::before {
    height: 32px;
    width: 32px;
  }
  .vision-title {
    font-size: 48px;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .vision-title::after {
    margin-top: 40px;
    width: 64px;
  }
  .vision-description {
    letter-spacing: 0.08rem;
  }
  .vision-description span {
    display: block;
  }
  .vision-image {
    height: 356px;
    width: 478px;
  }
  .title-main {
    font-size: 40px;
    margin-bottom: 56px;
  }
  .title-main::after {
    height: 32px;
    width: 32px;
  }
  .title-main span {
    font-size: 16px;
  }
  .introduction-wrap {
    justify-content: center;
    margin-inline: auto;
    max-width: 1280px;
    padding-bottom: 56px;
  }
  .introduction-image {
    margin: -96px 148px 0 0;
    width: 320px;
  }
  .introduction-text {
    margin-top: 64px;
    width: 588px;
  }
  .introduction-name::before {
    height: 82px;
    width: 56px;
  }
  .introduction-name::after {
    height: 82px;
    width: 56px;
  }
  .introduction-name div {
    font-size: 48px;
  }
  .introduction-name div span {
    font-size: 14px;
  }
  .introduction .button-line-b a:hover {
    background-color: rgba(0, 0, 0, 0.16);
  }
  .introduction-open {
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .introduction-open:hover {
    background-color: rgba(174, 185, 186, 0.16);
  }
  .top-post {
    padding-bottom: 224px;
  }
  .top-post .inner {
    margin-inline: auto;
    max-width: 1600px;
    padding: 80px 0;
    width: 80%;
  }
  .top-post ul li a:hover {
    background-color: #a6bec0;
  }
  .top-post-link a {
    padding: 16px 8px;
  }
  .top-post-link a:hover {
    background-color: #a6bec0;
  }
  .top-recruit {
    padding-inline: 48px;
  }
  .top-recruit .inner {
    display: flex;
    justify-content: center;
    margin-inline: auto;
    max-width: 1600px;
    padding: 140px 0 80px;
  }
  .top-recruit .title-left {
    flex-shrink: 0;
    font-size: 40px;
    margin: 0 80px 0 0;
  }
  .top-recruit .title-left::before {
    height: 32px;
    width: 32px;
  }
  .top-recruit .title-left span {
    font-size: 16px;
  }
  .top-recruit-body {
    border-left: 1px solid #fff;
    padding-left: 80px;
  }
  .top-recruit .button-square-w a:hover {
    opacity: 0.7;
  }
  .top-recruit-image {
    flex-shrink: 0;
    margin-top: -186px;
    max-width: 427px;
    width: 34%;
  }
  .top-recruit-image img {
    aspect-ratio: 2/3;
  }
  .message-wrap {
    align-items: center;
    margin-inline: auto;
    max-width: 1280px;
    padding: 56px 72px;
  }
  .message-image {
    margin-right: 72px;
  }
  .message-image img {
    aspect-ratio: 2/3;
  }
  .message-autograph {
    width: 180px;
  }
  .contact-wrap > .inner {
    padding: 104px 0;
  }
  .contact .smf-action .smf-button-control__control {
    transition: all 0.3s ease;
  }
  .contact .smf-action .smf-button-control__control:hover {
    opacity: 0.7;
  }
  .footer .inner {
    padding-top: 56px;
  }
  .footer-body {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 56px;
    max-width: 1300px;
  }
  .footer-logo {
    margin: 0 0 16px;
  }
  .footer-information {
    padding-left: 40px;
    text-align: left;
  }
  .footer .button-square-b a {
    margin-right: 0;
  }
  .footer ul li {
    letter-spacing: 0.16rem;
    margin-inline: 12px;
  }
  .footer ul li a:hover {
    color: #000;
  }
  .footer .button-square-b a:hover {
    opacity: 0.7;
  }
  .sv {
    padding: 232px 0 112px;
  }
  .sv-left {
    font-size: 20px;
    top: 262px;
  }
  .news-post ul {
    margin-bottom: 104px;
  }
  .news-post ul li a:hover {
    background-color: rgba(0, 0, 0, 0.16);
  }
  .page-recruit ul li a {
    padding: 8px 8px;
  }
  .page-recruit ul li a:hover {
    background-color: rgba(0, 0, 0, 0.16);
  }
  .page-lower > .inner {
    padding: 80px 0 144px;
  }
  .page-lower-title {
    margin-bottom: 64px;
  }
  .page-lower-title::after {
    margin-top: 64px;
  }
  .page-lower-content {
    margin-bottom: 112px;
  }
  .page-lower-content p,
  .page-lower-content figure {
    margin-bottom: 24px;
  }
  .page-lower-link a:hover {
    background-color: rgba(0, 0, 0, 0.16);
  }
}
@media (min-width: 1600px) {
  .mv .loading-text {
    font-size: clamp(16px, 6vw, 80px);
  }
}/*# sourceMappingURL=style.css.map */