@charset "UTF-8";
/*
 Theme Name: USEFUL
 Author: Useful
 Version: 1.0
*/
/* 全要素のリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: baseline;
}

/* HTML5要素をブロックに */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/* bodyの基本設定 */
body {
  line-height: 1;
  font-family: sans-serif;
  color: #555;
}

/* リストのスタイル削除 */
ul, ol {
  list-style: none;
}

/* テーブルの設定 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 画像の余白除去とレスポンシブ対応 */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
  height: auto;
}

/* フォーム要素の初期化 */
button,
input,
select,
textarea {
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input:focus,
textarea:focus {
  outline: none;
}

textarea {
  resize: none;
}

/* リンクの装飾リセット */
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* 見出し(h1~h6)のリセット */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1rem;
  font-weight: 400;
}

html {
  font-size: 1rem;
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  line-height: 1.6;
  color: #555;
  overflow-x: hidden;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  display: block;
  width: 100%;
  border: 2px solid #F5F5F5;
  border-radius: 3px;
  padding: 0.25rem;
}

input[type=submit] {
  border: 2px solid #F5F5F5;
  padding: 0.5rem;
  cursor: pointer;
}

input[type=checkbox] {
  position: relative;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.75rem;
  border: 2px solid #F5F5F5;
}
input[type=checkbox]:checked::after {
  position: absolute;
  content: "";
  top: 8px;
  left: 10px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 0.6em;
  height: 1em;
  border-right: 2px solid #0086CF;
  border-bottom: 2px solid #0086CF;
}

.required {
  padding-left: 0.75rem;
  font-size: 0.875rem;
  color: red;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: #FFF;
  z-index: 1000;
}
@media (min-width: 1024px) {
  .header {
    height: 7.5rem;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  height: 100%;
  padding-left: 1rem;
}
@media (min-width: 576px) {
  .header__inner {
    padding-left: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .header__inner {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.header__logo {
  width: 7.5rem;
}
@media (min-width: 768px) {
  .header__logo {
    width: 10rem;
  }
}
.header__nav {
  position: fixed;
  top: 5rem;
  left: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: calc(100vh - 5rem);
  background-color: #FFF;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header__nav.active {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 1;
}
@media (min-width: 1024px) {
  .header__nav {
    position: static;
    display: block;
    width: auto;
    height: auto;
    background-color: transparent;
    opacity: 1;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}
@media (min-width: 1024px) {
  .header__nav-item {
    position: relative;
  }
}
@media (min-width: 1024px) {
  .header__nav-item:not(:first-child) {
    border-left: 2px solid #F5F5F5;
  }
}
@media (min-width: 1024px) {
  .header__nav-item.current-menu-item::before {
    position: absolute;
    display: block;
    content: "";
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background-color: #0086CF;
  }
}
.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 1.5rem;
}
@media (min-width: 1024px) {
  .header__nav-link {
    padding: 0.75rem 1rem;
  }
}
@media (min-width: 1440px) {
  .header__nav-link {
    padding: 0.75rem 2rem;
  }
}
.header__nav-main {
  font-family: "Montserrat", "Quantico", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0086CF;
}
.header__nav-sub {
  font-size: 0.875rem;
}
.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 120px;
  height: 100%;
  background-color: #0086CF;
  font-family: "Montserrat", "Quantico", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFF;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 1024px) {
  .header__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__contact:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.header__contact::before {
  display: block;
  content: "";
  width: 2em;
  height: 2em;
  background-image: url(assets/images/logo_mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.hamburger-btn {
  position: relative;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-btn span {
  display: block;
  height: 3px;
  width: 40px;
  background: #0086CF;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}

/* active時（×に変形） */
.hamburger-btn.active span:nth-child(1),
.hamburger-btn.active span:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  /* 初期値、あとで個別に回転 */
}

.hamburger-btn.active span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

/* ------------ margin ------------ */
.m-xxs {
  margin: 0.25rem;
}

.m-xs {
  margin: 0.5rem;
}

.m-sm {
  margin: 0.75rem;
}

.m-md {
  margin: 1rem;
}

.m-lg {
  margin: 1.5rem;
}

.m-xl {
  margin: 2rem;
}

.m-2xl {
  margin: 3rem;
}

.m-3xl {
  margin: 4rem;
}

.m-4xl {
  margin: 5rem;
}

.m-5xl {
  margin: 6rem;
}

.m-6xl {
  margin: 7.5rem;
}

.mx-xxs {
  margin: 0 0.25rem;
}

.mx-xs {
  margin: 0 0.5rem;
}

.mx-sm {
  margin: 0 0.75rem;
}

.mx-md {
  margin: 0 1rem;
}

.mx-lg {
  margin: 0 1.5rem;
}

.mx-xl {
  margin: 0 2rem;
}

.mx-2xl {
  margin: 0 3rem;
}

.mx-3xl {
  margin: 0 4rem;
}

.mx-4xl {
  margin: 0 5rem;
}

.mx-5xl {
  margin: 0 6rem;
}

.mx-6xl {
  margin: 0 7.5rem;
}

.my-xxs {
  margin: 0.25rem 0;
}

.my-xs {
  margin: 0.5rem 0;
}

.my-sm {
  margin: 0.75rem 0;
}

.my-md {
  margin: 1rem 0;
}

.my-lg {
  margin: 1.5rem 0;
}

.my-xl {
  margin: 2rem 0;
}

.my-2xl {
  margin: 3rem 0;
}

.my-3xl {
  margin: 4rem 0;
}

.my-4xl {
  margin: 5rem 0;
}

.my-5xl {
  margin: 6rem 0;
}

.my-6xl {
  margin: 7.5rem 0;
}

.mt-xxs {
  margin-top: 0.25rem;
}

.mt-xs {
  margin-top: 0.5rem;
}

.mt-sm {
  margin-top: 0.75rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mt-2xl {
  margin-top: 3rem;
}

.mt-3xl {
  margin-top: 4rem;
}

.mt-4xl {
  margin-top: 5rem;
}

.mt-5xl {
  margin-top: 6rem;
}

.mt-6xl {
  margin-top: 7.5rem;
}

.mr-xxs {
  margin-right: 0.25rem;
}

.mr-xs {
  margin-right: 0.5rem;
}

.mr-sm {
  margin-right: 0.75rem;
}

.mr-md {
  margin-right: 1rem;
}

.mr-lg {
  margin-right: 1.5rem;
}

.mr-xl {
  margin-right: 2rem;
}

.mr-2xl {
  margin-right: 3rem;
}

.mr-3xl {
  margin-right: 4rem;
}

.mr-4xl {
  margin-right: 5rem;
}

.mr-5xl {
  margin-right: 6rem;
}

.mr-6xl {
  margin-right: 7.5rem;
}

.mb-xxs {
  margin-bottom: 0.25rem;
}

.mb-xs {
  margin-bottom: 0.5rem;
}

.mb-sm {
  margin-bottom: 0.75rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.mb-2xl {
  margin-bottom: 3rem;
}

.mb-3xl {
  margin-bottom: 4rem;
}

.mb-4xl {
  margin-bottom: 5rem;
}

.mb-5xl {
  margin-bottom: 6rem;
}

.mb-6xl {
  margin-bottom: 7.5rem;
}

.ml-xxs {
  margin-left: 0.25rem;
}

.ml-xs {
  margin-left: 0.5rem;
}

.ml-sm {
  margin-left: 0.75rem;
}

.ml-md {
  margin-left: 1rem;
}

.ml-lg {
  margin-left: 1.5rem;
}

.ml-xl {
  margin-left: 2rem;
}

.ml-2xl {
  margin-left: 3rem;
}

.ml-3xl {
  margin-left: 4rem;
}

.ml-4xl {
  margin-left: 5rem;
}

.ml-5xl {
  margin-left: 6rem;
}

.ml-6xl {
  margin-left: 7.5rem;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mb-auto {
  margin-bottom: auto;
}

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

/* ------------ padding ------------ */
.p-xxs {
  padding: 0.25rem;
}

.p-xs {
  padding: 0.5rem;
}

.p-sm {
  padding: 0.75rem;
}

.p-md {
  padding: 1rem;
}

.p-lg {
  padding: 1.5rem;
}

.p-xl {
  padding: 2rem;
}

.p-2xl {
  padding: 3rem;
}

.p-3xl {
  padding: 4rem;
}

.p-4xl {
  padding: 5rem;
}

.p-5xl {
  padding: 6rem;
}

.p-6xl {
  padding: 7.5rem;
}

.px-xxs {
  padding: 0 0.25rem;
}

.px-xs {
  padding: 0 0.5rem;
}

.px-sm {
  padding: 0 0.75rem;
}

.px-md {
  padding: 0 1rem;
}

.px-lg {
  padding: 0 1.5rem;
}

.px-xl {
  padding: 0 2rem;
}

.px-2xl {
  padding: 0 3rem;
}

.px-3xl {
  padding: 0 4rem;
}

.px-4xl {
  padding: 0 5rem;
}

.px-5xl {
  padding: 0 6rem;
}

.px-6xl {
  padding: 0 7.5rem;
}

.py-xxs {
  padding: 0.25rem 0;
}

.py-xs {
  padding: 0.5rem 0;
}

.py-sm {
  padding: 0.75rem 0;
}

.py-md {
  padding: 1rem 0;
}

.py-lg {
  padding: 1.5rem 0;
}

.py-xl {
  padding: 2rem 0;
}

.py-2xl {
  padding: 3rem 0;
}

.py-3xl {
  padding: 4rem 0;
}

.py-4xl {
  padding: 5rem 0;
}

.py-5xl {
  padding: 6rem 0;
}

.py-6xl {
  padding: 7.5rem 0;
}

.pt-xxs {
  padding-top: 0.25rem;
}

.pt-xs {
  padding-top: 0.5rem;
}

.pt-sm {
  padding-top: 0.75rem;
}

.pt-md {
  padding-top: 1rem;
}

.pt-lg {
  padding-top: 1.5rem;
}

.pt-xl {
  padding-top: 2rem;
}

.pt-2xl {
  padding-top: 3rem;
}

.pt-3xl {
  padding-top: 4rem;
}

.pt-4xl {
  padding-top: 5rem;
}

.pt-5xl {
  padding-top: 6rem;
}

.pt-6xl {
  padding-top: 7.5rem;
}

.pr-xxs {
  padding-right: 0.25rem;
}

.pr-xs {
  padding-right: 0.5rem;
}

.pr-sm {
  padding-right: 0.75rem;
}

.pr-md {
  padding-right: 1rem;
}

.pr-lg {
  padding-right: 1.5rem;
}

.pr-xl {
  padding-right: 2rem;
}

.pr-2xl {
  padding-right: 3rem;
}

.pr-3xl {
  padding-right: 4rem;
}

.pr-4xl {
  padding-right: 5rem;
}

.pr-5xl {
  padding-right: 6rem;
}

.pr-6xl {
  padding-right: 7.5rem;
}

.pb-xxs {
  padding-bottom: 0.25rem;
}

.pb-xs {
  padding-bottom: 0.5rem;
}

.pb-sm {
  padding-bottom: 0.75rem;
}

.pb-md {
  padding-bottom: 1rem;
}

.pb-lg {
  padding-bottom: 1.5rem;
}

.pb-xl {
  padding-bottom: 2rem;
}

.pb-2xl {
  padding-bottom: 3rem;
}

.pb-3xl {
  padding-bottom: 4rem;
}

.pb-4xl {
  padding-bottom: 5rem;
}

.pb-5xl {
  padding-bottom: 6rem;
}

.pb-6xl {
  padding-bottom: 7.5rem;
}

.pl-xxs {
  padding-left: 0.25rem;
}

.pl-xs {
  padding-left: 0.5rem;
}

.pl-sm {
  padding-left: 0.75rem;
}

.pl-md {
  padding-left: 1rem;
}

.pl-lg {
  padding-left: 1.5rem;
}

.pl-xl {
  padding-left: 2rem;
}

.pl-2xl {
  padding-left: 3rem;
}

.pl-3xl {
  padding-left: 4rem;
}

.pl-4xl {
  padding-left: 5rem;
}

.pl-5xl {
  padding-left: 6rem;
}

.pl-6xl {
  padding-left: 7.5rem;
}

.font-color-main {
  color: #0086CF;
}

.font-color-black {
  color: #555;
}

.font-color-white {
  color: #FFF;
}

.font-color-gray {
  color: #F5F5F5;
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .sp-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .tab-only {
    display: block;
  }
}
@media (min-width: 1024px) {
  .tab-only {
    display: none;
  }
}

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

@media (min-width: 768px) {
  .wide-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .wide-only {
    display: none;
  }
}

.footer {
  background-color: #F5F5F5;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 1024px) {
  .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1.5rem;
  }
}
.footer__nav {
  background-color: #FFF;
  border-radius: 5px;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .footer__nav {
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 60%;
  }
}
.footer__nav-item.footer__nav-item--depth-0 > a {
  border-bottom: 2px solid #F5F5F5;
}
.footer__nav-item.footer__nav-item--depth-1 > a {
  padding-left: 1rem;
  border-bottom: 2px solid #F5F5F5;
}
@media (min-width: 768px) {
  .footer__nav-item.footer__nav-item--depth-1 > a {
    padding-left: 1.5rem;
  }
}
.footer__nav-item.footer__nav-item--depth-2 > a {
  padding-left: 1.5rem;
  border-bottom: 2px solid #F5F5F5;
}
@media (min-width: 768px) {
  .footer__nav-item.footer__nav-item--depth-2 > a {
    padding-left: 3rem;
  }
}
.footer__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0.75rem;
  padding-right: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 0.5rem;
}
@media (min-width: 768px) {
  .footer .footer__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 1024px) {
  .footer .footer__body {
    display: block;
    width: 35%;
  }
}
.footer__logo {
  display: block;
  width: 10rem;
  margin-bottom: 1.5rem;
}
.footer__logo img {
  width: 100%;
}
.footer__pmarklogo {
  width: 6.25rem;
}
.footer__logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 12.75rem;
  gap: 0.25rem;
}
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  line-height: 1.2;
}
.footer__info-row {
  font-size: 0.875rem;
}
.footer__map {
  max-width: 100%;
  aspect-ratio: 16/9;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__name {
  font-size: 1rem;
  font-weight: 700;
}
.footer__address > span {
  display: block;
}
.footer__tel::before, .footer__fax::before, .footer__email::before {
  display: inline-block;
  font-family: "Montserrat", "Quantico", sans-serif;
}
.footer__tel::before {
  content: "TEL：";
}
.footer__fax::before {
  content: "FAX：";
}
.footer__email::before {
  content: "Email：";
}
.footer__bottom {
  text-align: center;
  font-size: 0.75rem;
}
.footer__privacy-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.footer__copyright {
  font-family: "Montserrat", "Quantico", sans-serif;
}
.footer .footer__bottom {
  padding: 0.25rem 0;
  background-color: #555;
  font-size: 0.75rem;
  color: #FFF;
}
.footer .footer__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 576px) {
  .footer .footer__bottom-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer .footer__bottom-privacy {
  text-decoration: underline;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 576px) {
  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1024px) {
  .container--xs {
    max-width: 850px;
  }
}
@media (min-width: 1024px) {
  .container--sm {
    max-width: 1024px;
  }
}
@media (min-width: 1024px) {
  .container--lg {
    max-width: 1440px;
  }
}
@media (min-width: 1024px) {
  .container--xl {
    max-width: 1600px;
  }
}

.main-contents {
  padding-top: 5rem;
}
@media (min-width: 1024px) {
  .main-contents {
    padding-top: 7.5rem;
  }
}

.page-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .page-contents {
    padding-top: 5rem;
    padding-bottom: 5rem;
    gap: 5rem;
  }
}

.tag {
  display: inline-block;
  max-width: 5rem;
  padding: 0.25rem 0.5rem;
  padding-top: 7px;
  padding-bottom: 6px;
  background-color: #0086CF;
  border-radius: 3px;
  font-size: 0.75rem;
  line-height: 1.2;
  color: #FFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tag--secondary {
  background-color: #555;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 1rem 4rem;
  border: 3px solid currentColor;
  border-radius: 10px;
  background-color: #0086CF;
  -webkit-box-shadow: 0 4px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 3px rgba(0, 0, 0, 0.1);
  color: #FFF;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (min-width: 576px) {
  .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 11.25rem;
  }
}
.btn:hover {
  background-color: #FFF;
  border-color: currentColor;
  color: #0086CF;
}
.btn__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.btn__wrapper--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.btn__wrapper--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn__wrapper--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn--rev {
  background-color: #FFF;
  color: #0086CF;
}
.btn--rev:hover {
  background-color: #0086CF;
  color: #FFF;
}

.arrow-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat", "Quantico", sans-serif;
  font-weight: 700;
  color: #0086CF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.arrow-link::after {
  display: inline-block;
  content: "→";
  font-size: 1.5em;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.arrow-link:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.arrow-link:hover::after {
  -webkit-transform: translateX(1em);
          transform: translateX(1em);
}

.arrow-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.arrow-link-wrapper--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 1.5em;
}
.arrow-link-wrapper--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.arrow-link-wrapper--left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
  font-weight: 700;
  line-height: 1;
}
.section-title__main {
  font-family: "Montserrat", "Quantico", sans-serif;
  font-size: 3rem;
}
@media (min-width: 1024px) {
  .section-title__main {
    font-size: 4rem;
  }
}
.section-title__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 1rem;
  color: #0086CF;
}
@media (min-width: 1024px) {
  .section-title__sub {
    font-size: 1.5rem;
    gap: 0.5rem;
  }
}
.section-title__sub::before, .section-title__sub::after {
  display: inline-block;
  content: "－ ";
}

.page-header {
  position: relative;
  height: 12.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-image: url(assets/images/pages/company-header.jpg);
  background-size: cover;
  background-position-y: 25%;
  background-repeat: no-repeat;
  border: 4px solid #555;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .page-header {
    height: 18.75rem;
  }
}
@media (min-width: 1024px) {
  .page-header {
    height: 30rem;
  }
}
.page-header::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.page-header--service {
  background-image: url(assets/images/pages/service-header.jpg);
  background-position-y: 30%;
}
.page-header--contact {
  background-image: url(assets/images/pages/contact-header.jpg);
  background-position-y: 30%;
}
.page-header--contact::before {
  background-color: rgba(0, 0, 0, 0.3);
}
.page-header--news {
  background-image: url(assets/images/pages/news-header.jpg);
  background-position-y: 65%;
}
.page-header--news::before {
  background-color: rgba(0, 0, 0, 0.3);
}
.page-header--recruit {
  background-image: url(assets/images/pages/recruit-header.jpg);
  background-position-y: 85%;
}
.page-header--group {
  background-image: url(assets/images/pages/group-header.jpg);
  background-position: center;
}
.page-header--privacy {
  background-image: url(assets/images/pages/company-header.png);
  background-position: center;
}
.page-header--none {
  background-image: none;
  border: none;
}
.page-header--none .page-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
.page-header--none .page-header__inner::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #0086CF;
  border-radius: 3px;
}
@media (min-width: 768px) {
  .page-header--none {
    height: 18.75rem;
  }
}
@media (min-width: 1024px) {
  .page-header--none {
    height: 18.75rem;
  }
}
.page-header--none::before {
  background-color: transparent;
}
.page-header--none .page-header__title {
  color: #555;
}
.page-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.page-header__title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  color: #FFF;
  z-index: 2;
}
@media (min-width: 768px) {
  .page-header__title {
    gap: 1rem;
  }
}
.page-header__title-main {
  font-family: "Montserrat", "Quantico", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .page-header__title-main {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .page-header__title-main {
    font-size: 4rem;
  }
}
.page-header__title-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .page-header__title-sub {
    font-size: 1.5rem;
  }
}
.page-header__title-sub::before, .page-header__title-sub::after {
  display: inline-block;
  content: "－";
}

.section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-bottom: 2px solid #0086CF;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .section-heading {
    font-size: 2rem;
  }
}
.section-heading::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(assets/images/parts/heading_before.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.section-heading--font-large {
  font-size: 3rem;
}
.section-heading--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.breadcrumb {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  line-height: 1;
  overflow: hidden;
}
.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.5rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.breadcrumb__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
  overflow-wrap: break-word;
}
.breadcrumb__item:not(:first-child) {
  padding-left: 0.75rem;
}
.breadcrumb__item:not(:first-child)::before {
  display: inline-block;
  content: "";
  width: 0.7em;
  height: 0.7em;
  border-top: 2px solid #F5F5F5;
  border-right: 2px solid #F5F5F5;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.breadcrumb__link {
  color: #0086CF;
}

.underline-table {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.underline-table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 2px solid #F5F5F5;
}
@media (min-width: 576px) {
  .underline-table__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem 0;
  }
}
.underline-table__head {
  padding-left: 0.75rem;
  text-align: left;
}
@media (min-width: 576px) {
  .underline-table__head {
    width: 30%;
  }
}
.underline-table__data {
  padding-left: 0.75rem;
}

.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .news__list {
    gap: 2rem;
  }
}
.news__item {
  width: 100%;
}
.news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid #F5F5F5;
  border-radius: 10px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (min-width: 768px) {
  .news__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    padding: 2rem;
  }
}
.news__link:hover {
  background-color: #F5F5F5;
  border-color: #555;
}
.news__meta {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  min-width: 20%;
}
.news__date {
  min-width: 6.25rem;
  font-family: "Montserrat", "Quantico", sans-serif;
  font-weight: 700;
}

.flow__item {
  padding: 1rem;
  border: 3px solid #0086CF;
  border-radius: 10px;
  position: relative;
}
.flow__item:not(:first-child) {
  margin-top: 2rem;
}
.flow__item:not(:first-child)::before {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: -2.25rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.25rem;
  height: 2.25rem;
  background-color: #0086CF;
}
@media (min-width: 768px) {
  .flow__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem 1.5rem;
  }
}
.flow__label {
  font-family: "Montserrat", "Quantico", sans-serif;
  color: #0086CF;
  font-size: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .flow__label {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .flow__body {
    width: 65%;
  }
}
.flow__title {
  color: #0086CF;
  font-weight: 700;
}
@media (min-width: 768px) {
  .flow__title {
    font-size: 1.5rem;
  }
}

.cta {
  position: relative;
  background-image: url(assets/images/cta/cta-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 35%;
}
@media (min-width: 1024px) {
  .cta {
    height: 21.875rem;
  }
}
.cta::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
}
.cta__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .cta__inner {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cta__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  font-size: 2rem;
}
@media (min-width: 1024px) {
  .cta__title {
    gap: 1rem;
    font-size: 3rem;
  }
}
.cta__title-main {
  font-family: "Montserrat", "Quantico", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.cta__title-sub {
  font-size: 1.5rem;
}
.cta__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.cta__text {
  font-weight: 700;
  line-height: 2;
}

.layered-bg {
  position: relative;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}
.layered-bg::before {
  position: absolute;
  display: block;
  content: "";
  top: 1.5rem;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  background-color: #555;
  z-index: -1;
}

.slide-container {
  overflow: hidden;
  position: relative;
}
.slide-horizontal {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.slide-horizontal.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.fadein {
  position: relative;
  -webkit-transform: translate(0);
          transform: translate(0);
  opacity: 0;
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.fadein.show {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
.fadein-container {
  overflow-x: clip;
}
.fadein-up {
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}
.fadein-right {
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}
.fadein-left {
  -webkit-transform: translateX(30%);
          transform: translateX(30%);
}

.certification-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 14rem;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  height: calc(100vh - 7.5rem);
  margin-bottom: 6rem;
}
.hero__inner {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .hero__inner {
    margin-top: 0;
  }
}
.hero__copy {
  font-family: "Montserrat", "Quantico", sans-serif;
  line-height: 1;
  font-size: 3rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .hero__copy {
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .hero__copy {
    font-size: 5rem;
  }
}
@media (min-width: 1440px) {
  .hero__copy {
    font-size: 6rem;
  }
}
.hero__img {
  position: absolute;
  top: 1em;
  left: 1rem;
  background-image: url(assets/images/top/top-hero.jpg);
  background-size: cover;
  background-position-x: center;
  background-position-y: 40%;
  width: calc(100% - 1rem);
  height: calc(100vh - 7.5rem - 1em);
  font-family: "Montserrat", "Quantico", sans-serif;
  font-size: 3rem;
  line-height: 1.6;
  z-index: -1;
}
@media (min-width: 576px) {
  .hero__img {
    left: 1.5rem;
    width: calc(100% - 1.5rem);
    font-size: 4rem;
  }
}
@media (min-width: 768px) {
  .hero__img {
    top: 1em;
    font-size: 5rem;
  }
}
@media (min-width: 1440px) {
  .hero__img {
    left: 7.5rem;
    width: calc(100% - 7.5rem);
    font-size: 6rem;
  }
}
.hero__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero::before {
  position: absolute;
  left: 0;
  bottom: -6rem;
  display: block;
  content: "";
  width: 60%;
  height: 70%;
  background-color: #F5F5F5;
  z-index: -1;
}

.about {
  padding: 6rem 0;
}
@media (min-width: 1024px) {
  .about {
    padding: 7.5rem 0;
  }
}
.about__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .about__title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .about__title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
.about__text {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
}
@media (min-width: 1024px) {
  .about__text {
    font-size: 1.5rem;
  }
}

.top-service {
  position: relative;
  padding-top: 4rem;
}
.top-service::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  z-index: -1;
}
.top-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .top-service__inner {
    gap: 6rem;
  }
}
@media (min-width: 1024px) {
  .top-service__inner {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
  }
}
.top-service__department-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #555;
}
@media (min-width: 576px) {
  .top-service__department-title {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .top-service__department-title {
    margin-bottom: 3rem;
  }
}
.top-service__department-label {
  font-family: "Montserrat", "Quantico", sans-serif;
  font-size: 2rem;
  color: #0086CF;
}
.top-service__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .top-service__list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.top-service__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding: 1rem;
  border-radius: 5px;
  background-color: #0086CF;
}
@media (min-width: 576px) {
  .top-service__item {
    padding: 1.5rem;
  }
}
.top-service__item:hover::before {
  background-color: #0086CF;
  border: none;
  color: #FFF;
}
.top-service__item::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 1rem;
  right: 1rem;
  content: "→";
  width: 1.2em;
  height: 1.2em;
  padding-top: 3px;
  background-color: #FFF;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #0086CF;
  line-height: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 576px) {
  .top-service__item::before {
    font-size: 1.5rem;
    width: 1.5em;
    height: 1.5em;
    top: 1.5rem;
    right: 1.5rem;
  }
}
.top-service__icon {
  aspect-ratio: 4/3;
  background-color: #FFF;
  margin-bottom: 1rem;
}
.top-service__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-service__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top-service__title {
  padding-right: 2.5rem;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .top-service__title {
    padding-right: 3rem;
    font-size: 1.5rem;
  }
}
.top-news {
  padding-top: 5rem;
  padding-bottom: 7.5rem;
}
.top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
.top-case {
  padding: 4rem 0 7.5rem;
}
.top-case__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
.top-case__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.top-case__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-top: 1px solid #F5F5F5;
  border-right: 2px solid #F5F5F5;
  border-bottom: 2px solid #F5F5F5;
  border-left: 1px solid #F5F5F5;
  border-radius: 5px;
}
@media (min-width: 1024px) {
  .top-case__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
    padding: 1.5rem;
  }
}
.top-case__img {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #F5F5F5;
}
@media (min-width: 1024px) {
  .top-case__img {
    width: 35%;
  }
}
.top-case__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-case__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.top-case__body .arrow-link {
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-right: 1.5rem;
}
.top-case__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
  font-family: "Montserrat", "Quantico", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0086CF;
  line-height: 1;
}
@media (min-width: 1024px) {
  .top-case__label {
    line-height: 1.6;
  }
}
.top-case__label::before {
  display: inline-block;
  content: "Case";
  font-size: 1.5rem;
}
.top-case__title {
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .top-case__title {
    font-size: 1.5rem;
  }
}
.top-case__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.top-access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 4rem;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 4rem;
  background-color: #0086CF;
}
@media (min-width: 576px) {
  .top-access {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .top-access {
    padding-top: 0;
    padding-bottom: 6rem;
  }
}
.top-access__inner {
  padding: 2rem 1.5rem 6rem;
  background-color: #FFF;
  border: 2px solid #F5F5F5;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
}
@media (min-width: 1024px) {
  .top-access__inner {
    margin-top: -4rem;
    padding-top: 4rem;
  }
}
.top-access .section-title {
  justify-self: center;
}
.top-access__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .top-access__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
}
.top-access__map-wrapper {
  width: 100%;
  aspect-ratio: 4/3;
}
@media (min-width: 1024px) {
  .top-access__map-wrapper {
    width: 40%;
  }
}
.top-access__map-wrapper iframe {
  width: 100%;
  height: 100%;
}
.top-access__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}
@media (min-width: 1024px) {
  .top-access__body {
    width: 35%;
  }
}

.ceo-message__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .ceo-message__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
  }
}
.ceo-message__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .ceo-message__img {
    width: 45%;
  }
}
.ceo-message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ceo-message__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  line-height: 2;
}
@media (min-width: 1024px) {
  .ceo-message__body {
    width: 50%;
    padding-top: 1rem;
  }
}
.ceo-message__name {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.company-profile__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .company-profile__inner {
    gap: 2rem;
  }
}

#service-jinzai, #service-technical, #service-jinzaihaken, #service-gaikokujin, #service-dataentry, #service-recruit, #service-itinfra, #service-camera, #service-kaigodx, #service-ithanbai {
  scroll-margin-top: 7.5rem;
}

.service__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
}
.service__heading {
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .service__heading {
    font-size: 3rem;
  }
}
.service__intro {
  line-height: 2;
}
.service__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .service__switch {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.service__switch-item:not(:first-child) {
  border-top: 2px solid #F5F5F5;
}
@media (min-width: 768px) {
  .service__switch-item:not(:first-child) {
    border-top: none;
    border-left: 2px solid #F5F5F5;
  }
}
.service__switch-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .service__switch-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 5rem;
    font-size: 1.5rem;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    opacity: 1;
  }
}
.service__switch-link:hover::after {
  background-color: transparent;
  color: #0086CF;
  border: 1px solid currentColor;
}
.service__switch-link::after {
  display: block;
  content: "↓";
  width: 1.5em;
  height: 1.5em;
  background-color: #0086CF;
  border-radius: 50%;
  color: #FFF;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service__switch-label {
  font-family: "Montserrat", "Quantico", sans-serif;
  font-weight: 700;
  color: #0086CF;
}
.service__department {
  position: relative;
  padding: 2rem 0;
  border-radius: 10px;
}
@media (min-width: 1024px) {
  .service__department {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 5rem 0;
    border-radius: 10px;
  }
}
.service__department::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F5F5F5;
  border-radius: 10px;
  z-index: -2;
}
.service__department-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media (min-width: 1024px) {
  .service__department-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3rem;
  }
}
.service__department-header::before {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  content: "";
  width: 7.5rem;
  aspect-ratio: 1/1;
  background-image: url(assets/images/logo/logo-mark-black.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  -webkit-filter: opacity(0.05);
          filter: opacity(0.05);
}
@media (min-width: 768px) {
  .service__department-header::before {
    width: 10rem;
  }
}
.service__department-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .service__department-title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 1rem;
    max-width: 45%;
    font-weight: 700;
  }
}
@media (min-width: 1440px) {
  .service__department-title {
    font-size: 3rem;
  }
}
.service__department-label {
  font-family: "Montserrat", "Quantico", sans-serif;
  font-size: 2rem;
  color: #0086CF;
}
@media (min-width: 1024px) {
  .service__department-label {
    font-family: "Montserrat", "Quantico", sans-serif;
    color: #0086CF;
  }
}
@media (min-width: 1440px) {
  .service__department-label {
    font-size: 3rem;
  }
}
.service__department-intro {
  line-height: 2;
}
@media (min-width: 1024px) {
  .service__department-intro {
    max-width: 50%;
  }
}
.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.service__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
  padding: 1rem;
  background-color: #FFF;
  border-radius: 10px;
}
@media (min-width: 576px) {
  .service__media {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) {
  .service__media {
    padding: 3rem;
  }
}
@media (min-width: 1024px) {
  .service__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    background-color: #FFF;
    border-radius: 10px;
  }
}
@media (min-width: 1440px) {
  .service__media {
    gap: 3rem;
    padding: 3rem;
  }
}
.service__media--rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.service__img {
  aspect-ratio: 4/3;
  background-color: #F5F5F5;
  -webkit-filter: drop-shadow(2px 1px 5px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(2px 1px 5px rgba(0, 0, 0, 0.1));
}
@media (min-width: 1024px) {
  .service__img {
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    min-height: 21.875rem;
    background-color: #F5F5F5;
  }
}
.service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .service__body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.service__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0086CF;
}
@media (min-width: 1440px) {
  .service__title {
    font-size: 2rem;
  }
}
.service__text {
  line-height: 2;
}

.jinzaihaken,
.shoukai {
  line-height: 2;
}

.post h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-bottom: 2px solid #0086CF;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .post h2 {
    font-size: 2rem;
  }
}
.post h2::before {
  display: block;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(assets/images/parts/heading_before.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.post h2--font-large {
  font-size: 3rem;
}
.post h2--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.post ol li {
  position: relative;
  padding-left: 1.2em;
  counter-increment: num;
}
.post ol li::before {
  display: block;
  content: counter(num) ".";
  position: absolute;
  left: 0;
}
.post ul li {
  position: relative;
  padding-left: 1.2em;
}
.post ul li::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #555;
  border-radius: 50%;
}
.post blockquote {
  padding: 1rem;
}
.post__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  margin: 0 auto;
}
.post__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.post__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .post__title {
    font-size: 2rem;
  }
}
.post__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.post__date {
  font-family: "Montserrat", "Quantico", sans-serif;
  font-weight: 700;
}
.post__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  line-height: 2;
}
.post__block:not(:first-child) {
  margin-top: 1rem;
}

.group__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.group__list {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .group__list {
    grid-template-columns: 1fr 1fr;
  }
}
.group__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 2px solid #555;
  border-radius: 5px;
  background-color: #F5F5F5;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .group__item {
    padding: 1.5rem;
  }
}
.group__name {
  font-size: 1.5rem;
  font-weight: 700;
}
.group__url a {
  color: #0086CF;
  text-decoration: underline;
}
.group__postcode::before {
  display: inline-block;
  content: "〒";
}
.group__service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.group__service span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.recruit__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7.5rem;
}
.recruit__staff, .recruit__temporarywork {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.recruit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
.recruit__link {
  font-weight: 700;
  color: #0086CF;
  text-decoration: underline;
}

#recruit-eigyou {
  scroll-margin-top: 7.5rem;
}

#recruit-technical {
  scroll-margin-top: 7.5rem;
}

.contact__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.contact__intro {
  text-align: center;
}
.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto;
}
.contact__form-submit {
  margin-right: auto;
}
.contact__form-privacy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact__form-privacy label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.contact__form-privacy label:focus {
  outline: 2px solid #555;
}
.contact__row {
  width: 100%;
}
.contact__row:not(:first-child) {
  margin-top: 1.5rem;
}

.wpcf7-list-item {
  margin: 0;
}
.wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#messageOutput {
  white-space: pre-line;
}

.contact-confirm__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.contact-confirm__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

.privacy__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.75rem;
  line-height: 1.2;
}
.privacy__date {
  font-family: "Montserrat", "Quantico", sans-serif;
}
.privacy__ceo-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 768px) {
  .privacy__media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.privacy__logo {
  width: 9.375rem;
  height: 9.375rem;
}