@charset "UTF-8";
/* ----------------------------------------------------------------
    Base
----------------------------------------------------------------- */
:root {
  font-size: 62.5%;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
li {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}

body {
  background: #fff;
  color: #131313;
  font-family: "source-han-sans-japanese", sans-serif;
  font-feature-settings: "palt";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  text-decoration: underline;
  transition: 0.2s ease-in-out;
}
a[class] {
  text-decoration: none;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

button {
  cursor: pointer;
}

b,
em {
  color: #131313;
  font-style: normal;
  font-weight: 700;
}

strong {
  font-style: normal;
  font-weight: 700;
}

img {
  height: auto;
  vertical-align: bottom;
}

p {
  margin: 32px 0 0;
}
@media only screen and (max-width: 767px) {
  p {
    margin-top: 18px;
  }
}

ul,
ol,
dl {
  margin: 40px 0 0;
  padding: 0;
}
ul[class],
ol[class],
dl[class] {
  /* 既存のスタイルを残すためクラス指定時のみリセット */
  list-style: none;
}
@media only screen and (max-width: 767px) {
  ul,
  ol,
  dl {
    margin-top: 20px;
  }
}

dfn {
  font-style: normal;
}

dd {
  margin: 0;
}

table {
  border-collapse: collapse;
}

blockquote {
  margin: 0;
}

iframe {
  border: 0;
  margin: 0;
  padding: 0;
}

input,
select {
  font-size: 1.6rem;
  padding: 1px;
}

input[type=file] {
  width: 100%;
}

fieldset {
  border: 0;
  margin: 0;
}

select::-ms-expand {
  display: none;
}

/*
  https://github.com/andy-piccalilli/modern-css-reset/blob/master/LICENSE
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img,
picture {
  max-width: 100%;
}

picture {
  display: block;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* ----------------------------------------------------------------
    Pseudo element (Block)
----------------------------------------------------------------- */
.link::before, .link::after, .list > li::before, .btn-01_link::after, .panel-link::before {
  content: "";
  display: block;
}

/* ----------------------------------------------------------------
    Pseudo element (Inline Block)
----------------------------------------------------------------- */
.table-02 tr > td::before, .table-02 tr > td::after, .table-02 tr > td > span::before, .table-02 tr > td > span::after,
.table-02 tr > td .table-02-wrap::before,
.table-02 tr > td .table-02-wrap::after, .mv-inner::after {
  content: "";
  display: inline-block;
}

header {
  position: fixed;
  z-index: 5;
  width: 100%;
}

.h-inner {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.h-nav {
  display: flex;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  padding: 15px 40px;
  background: #131313;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.35);
}
.h-nav-list {
  display: flex;
  margin-top: 0;
  gap: 40px;
}
.h-nav-list_item {
  list-style: none;
}
.h-nav-list_link {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  font-family: "futura-pt-condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  transition: transform 0.3s ease;
}
.h-nav-list_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.h-nav-list_link:hover, .h-nav-list_link.is-active {
  color: #f7e90c;
  transform: scale(1.05);
}
.h-nav-list_link:hover::after, .h-nav-list_link.is-active::after {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .h-nav.menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 60px 20px;
    z-index: 5;
    transition: right 0.3s ease;
  }
  .h-nav.menu.open {
    right: 0;
  }
  .h-nav.menu .h-nav-list {
    flex-direction: column;
    margin-top: 0;
    gap: 0;
  }
  .h-nav.menu .h-nav-list_item + li {
    border-top: 1px solid #000;
  }
  .h-nav.menu .h-nav-list_link {
    width: 100%;
    padding: 20px 10px;
    font-size: 18px;
    text-decoration: none;
    color: #333;
  }
  .h-nav.menu .h-nav-list_link::after {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .h-nav {
    display: none;
  }
}

.hamburger {
  display: none;
}
@media only screen and (max-width: 767px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #131313;
    z-index: 10;
    cursor: pointer;
  }
  .hamburger > span {
    overflow: hidden;
    color: transparent;
    white-space: nowrap;
  }
  .hamburger > span::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 3px;
    width: 80%;
    height: 3px;
    background-color: #fff;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  }
  .hamburger::before, .hamburger::after {
    content: "";
    position: absolute;
    left: 3px;
    width: 80%;
    height: 3px;
    background-color: #fff;
    transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
  }
  .hamburger::before {
    top: 8px;
  }
  .hamburger::after {
    top: 25px;
  }
  .hamburger.is-active > span::before {
    display: none;
  }
  .hamburger.is-active::before {
    top: 16px;
    transform: rotate(45deg);
  }
  .hamburger.is-active::after {
    top: 16px;
    transform: rotate(-45deg);
  }
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

footer {
  padding: 80px 20px 20px;
  background: #191919;
  width: 100%;
}

.f-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}
@media only screen and (max-width: 767px) {
  .f-inner {
    flex-direction: column;
  }
}

.f-logo {
  padding-right: 40px;
  flex-shrink: 1;
}
@media only screen and (max-width: 767px) {
  .f-logo {
    padding-right: 0;
  }
}

.f-nav {
  border-left: solid 1px #fff;
  padding-left: 40px;
}
.f-nav_title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}
.f-nav ul {
  margin-top: 40px;
  list-style: none;
}
.f-nav li {
  margin-top: 20px;
}
.f-nav li > a {
  text-decoration: none;
  color: #fff;
}
.f-nav li > a:hover, .f-nav li > a:active, .f-nav li > a:focus {
  color: #FA8900;
}
.f-nav li:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .f-nav {
    margin-top: 40px;
    border-top: solid 1px #fff;
    border-left: none;
    padding-top: 40px;
    padding-left: 0;
    text-align: center;
  }
}

.copyright {
  margin-top: 60px;
  text-align: center;
  color: #fff;
}

/* ----------------------------------------------------------------
    general
----------------------------------------------------------------- */
p + p {
  margin-top: 24px;
}

.txt {
  margin-top: 40px;
  text-align: left;
}
.txt > :first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .txt {
    margin-top: 20px;
  }
}

.content-aria {
  padding-bottom: 60px;
}
.content-aria._var-01 {
  background: #131313;
}
.content-aria._wide .content-inner {
  max-width: 1500px;
}
.content-aria._news {
  background: url("/img/news-bg.png") no-repeat right top/cover;
}
.content-aria._service {
  background: url("/img/service-bg.png") no-repeat right top/cover;
}
.content-aria._service .hdg-l2 {
  color: #f7e90c;
}
.content-aria._liver {
  background: #131313;
}
.content-aria._liver .hdg-l2 {
  color: #fff;
}
.content-aria._company {
  background: #f7e90c;
}
.content-aria._contact {
  background: #131313;
}
.content-aria._contact .hdg-l2 {
  color: #fff;
}
.content-aria._contact .txt {
  color: #fff;
}
.content-fluid {
  padding: 100px;
}
.content-fluid._liver {
  padding: 60px;
  background: #131313;
}
.content-fluid._news {
  background: #2b2b2b;
}
.content-fluid._profile {
  background-image: url("/liver/img/plofile-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.content-inner {
  margin: auto;
  max-width: 1200px;
}
.content-inner > :first-child {
  margin-top: 0;
}
.content-inner .hdg-l2 {
  text-align: center;
}
.content-inner._liver {
  max-width: 1600px;
}
.content-inner._profile {
  max-width: 1600px;
}
@media only screen and (max-width: 767px) {
  .content-fluid {
    padding: 60px 20px;
  }
  .content-fluid._liver {
    padding: 60px 20px;
  }
  .content-aria {
    padding-bottom: 40px;
  }
  .content-aria._service {
    background: url("/img/service-bg-sp.png") no-repeat right top/cover;
  }
}

.hdg-l2 {
  color: #131313;
  font-size: 20rem;
  font-family: "futura-pt-condensed", sans-serif;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.01em;
}
.hdg-l2.ver-02 {
  padding: 100px 40px 40px;
  background: url(/img/news-bg.png) no-repeat right top/cover;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .hdg-l2 {
    font-size: 6rem;
  }
  .hdg-l2.ver-02 {
    padding: 40px;
  }
}

.hdg-l3 {
  font-size: 3rem;
  font-weight: 800;
}
.hdg-l3_sub {
  display: block;
  font-size: 1.6rem;
}

.hdg-l4 {
  margin-top: 20px;
  font-size: 2.4rem;
  font-weight: 700;
}
.hdg-l4 + * {
  margin-top: 20px;
}

.link {
  position: relative;
  padding-left: 30px;
  color: #f2117a;
}
.link::before, .link::after {
  position: absolute;
  top: 50%;
  transition: 0.2s ease-in-out;
}
.link::before {
  left: 0;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
  border-radius: 50%;
  background: #f2117a;
  transform: translateY(-50%);
}
.link::after {
  left: 9px;
  width: 5px;
  height: 5px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
  transform: translateY(-50%);
}
.link:hover, .link:active, .link:focus {
  color: #ffb6c1;
  text-decoration: underline;
}
.link:hover::before, .link:active::before, .link:focus::before {
  background: #ffb6c1;
}

.linktxt {
  color: #f2117a;
}
.linktxt:hover, .linktxt:active, .linktxt:focus {
  color: #ffb6c1;
  text-decoration: underline;
}

.linklist {
  text-align: left;
}
.linklist > li + li {
  margin-top: 10px;
}

.list {
  list-style: none;
  text-align: left;
}
.list > li {
  position: relative;
  padding-left: 20px;
}
.list > li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  transform: rotate(45deg);
  background: #f7e90c;
}
.list > li + li {
  margin-top: 10px;
}

.labellist {
  margin-top: 10px;
}
.labellist > li {
  display: inline-block;
  padding: 2px 10px;
  color: #fff;
  background: #e7030d;
}
@media only screen and (max-width: 767px) {
  .labellist > li {
    padding: 2px 5px;
    font-size: 1.2rem;
  }
}

.list-sns {
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-sns > li {
  width: 40px;
}
.list-sns > li + li {
  margin-left: 20px;
}

.box {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  text-align: center;
}
.box-inner {
  width: 100%;
  max-width: 300px;
  padding: 20px;
  color: #131313;
  background: #f7e90c;
  font-weight: 700;
  font-size: 2.8rem;
}

.media {
  margin-top: 40px;
  text-align: center;
}

.lyt-btn {
  display: flex;
  justify-content: center;
  gap: 10%;
  margin-top: 40px;
}
.lyt-btn [class^=btn-] {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .lyt-btn {
    flex-direction: column;
    align-items: center;
    gap: 28px 10%;
  }
}

.btn-01_link {
  position: relative;
  display: inline-block;
  padding: 20px 80px 20px 40px;
  background: #f2117a;
  color: #ffffff;
  text-align: center;
  border: 1px solid #f2117a;
  text-decoration: none;
  font-weight: 700;
  font-size: 2rem;
  transition: all 0.3s ease-out;
  box-shadow: 0 0 10px rgba(242, 17, 122, 0.4);
}
.btn-01_link::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: rgba(242, 17, 122, 0.15);
  border-radius: 10px;
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-01_link::after {
  position: absolute;
  top: 50%;
  right: 33px;
  width: 15px;
  height: 15px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.3s ease-out;
}
.btn-01_link:hover, .btn-01_link:active, .btn-01_link:focus {
  background: #ffffff;
  color: #f2117a;
  border-color: #f2117a;
  box-shadow: 0 0 8px #f2117a, 0 0 20px rgba(242, 17, 122, 0.5333333333), 0 0 40px rgba(242, 17, 122, 0.2666666667);
}
.btn-01_link:hover::before, .btn-01_link:active::before, .btn-01_link:focus::before {
  opacity: 1;
}
.btn-01_link:hover::after, .btn-01_link:active::after, .btn-01_link:focus::after {
  right: 28px;
  border-top-color: #f2117a;
  border-right-color: #f2117a;
}
.btn-01._return .btn-01_link {
  padding: 20px 40px 20px 80px;
}
.btn-01._return .btn-01_link::after {
  top: 50%;
  right: auto;
  left: 33px;
  transform: translateY(-50%) rotate(-135deg);
  transform-origin: center;
}
@media only screen and (max-width: 767px) {
  .btn-01_link {
    display: block;
    width: 100%;
    padding: 10px 61px 10px 40px;
    font-size: 1.6rem;
    max-width: 300px;
  }
  .btn-01_link::after {
    right: 26px;
  }
}

.panel {
  flex: 0 1 32%;
  max-width: 32%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  background: #2b2b2b;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255, 242, 0, 0.4);
  border-radius: 8px;
}
.panel:hover, .panel:active, .panel:focus {
  transform: translateY(-6px);
  box-shadow: 0 0 6px #fff200, 0 0 10px rgba(255, 242, 0, 0.5333333333);
  border: 1px solid #fff200;
  opacity: 0.95;
}
.panel-lyt {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 2%;
  margin-top: 60px;
}
.panel-link {
  position: relative;
  display: block;
  overflow: hidden;
}
.panel-link::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
}
.panel-content {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column-reverse;
  padding: 20px 10px 20px;
  color: #fff;
  z-index: 2;
}
.panel-content > img {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.8);
  transition: transform 0.5s ease;
}
.panel-content:hover > img, .panel-content:active > img, .panel-content:focus > img {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}
.panel-desc {
  margin-top: 20px;
}
.panel-desc > *:first-child {
  margin-top: 0;
}
.panel-date, .panel-txt {
  transition: color 0.4s ease;
}
.panel-date {
  margin-top: 5px;
}
.panel-txt {
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 700;
}
.swiper-slide > .panel {
  flex: auto;
  max-width: none;
}
@media only screen and (max-width: 767px) {
  .panel {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .panel-content {
    padding: 10px;
  }
  .panel-desc {
    margin-top: 10px;
  }
  .panel-txt {
    margin-top: 5px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  .panel-date {
    font-size: 1.2rem;
  }
}

.table-01 {
  margin-top: 20px;
  border-collapse: separate;
  width: 100%;
}
.table-01 tbody,
.table-01 tr {
  width: 100%;
}
.table-01 tr > th {
  width: 20%;
  padding: 20px 40px;
  color: #fff;
  background: #131313;
}
.table-01 tr > td {
  padding: 20px 40px;
  color: #131313;
  background: #fff;
}
.table-01 tr > td :first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .table-01 tr {
    display: flex;
    flex-direction: column;
  }
  .table-01 tr > th {
    width: 100%;
    margin-top: 10px;
    padding: 10px 20px;
  }
  .table-01 tr > td {
    padding: 20px;
  }
}

.table-02 {
  margin-top: 20px;
  border-collapse: separate;
  width: 100%;
}
.table-02 tbody,
.table-02 tr {
  width: 100%;
}
.table-02 tr > th {
  width: 180px;
  padding: 10px;
  color: #131313;
  background: #f7e90c;
}
.table-02 tr > td {
  position: relative;
  padding: 10px;
  color: #131313;
  background: #fff;
}
.table-02 tr > td :first-child {
  margin-top: 0;
}
.table-02 tr > td::before, .table-02 tr > td::after {
  position: absolute;
}
.table-02 tr > td::before {
  bottom: 0;
  left: 0;
  width: 90%;
  height: 2px;
  background: #f7e90c;
}
.table-02 tr > td::after {
  bottom: -13px;
  right: -6px;
  width: 30px;
  height: 30px;
  border-top: 2px solid #f7e90c;
  transform: rotate(-45deg);
  z-index: 1;
}
.table-02 tr > td > span::before, .table-02 tr > td > span::after,
.table-02 tr > td .table-02-wrap::before,
.table-02 tr > td .table-02-wrap::after {
  position: absolute;
}
.table-02 tr > td > span::before,
.table-02 tr > td .table-02-wrap::before {
  bottom: 20px;
  right: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #f7e90c;
  z-index: 1;
}
.table-02 tr > td > span::after,
.table-02 tr > td .table-02-wrap::after {
  bottom: 22px;
  right: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50px;
  background: #fff;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .table-02 tr > th {
    width: 120px;
  }
  .table-02 tr > td {
    padding: 10px 5px;
  }
  .table-02 tr > td::after {
    bottom: -9px;
    right: -1px;
    width: 20px;
    height: 20px;
  }
  .table-02 tr > td > span::before,
  .table-02 tr > td .table-02-wrap::before {
    bottom: 12px;
    right: 4px;
  }
  .table-02 tr > td > span::after,
  .table-02 tr > td .table-02-wrap::after {
    bottom: 14px;
    right: 6px;
  }
}

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

.ta-c {
  text-align: center !important;
}

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

.mt-20 {
  margin-top: 20px !important;
}

.break {
  display: block;
}

@media only screen and (max-width: 767px) {
  .sp-break {
    display: block;
  }
}

/* ----------------------------------------------------------------
    MV
----------------------------------------------------------------- */
.logo {
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .logo {
    padding: 10px;
    max-width: 250px;
  }
}

.mv {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.mv-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.mv-inner {
  height: 100%;
}
.mv-inner::after {
  position: absolute;
  top: -14%;
  left: 0;
  width: 150%;
  height: 150%;
  background: url("/img/mv-img.png") no-repeat;
  background-size: contain;
  z-index: 1;
  animation: rgbGlitch 1.5s infinite steps(2);
}
.mv-title, .mv-title_sub {
  position: absolute;
  z-index: 3;
  opacity: 0;
  transform: translateX(60px) skewX(10deg) rotate(10deg);
  transition: none;
}
.mv-title.is-visible, .mv-title_sub.is-visible {
  animation: cyberSlideIn 0.5s ease-out forwards;
}
.mv-title {
  bottom: 6%;
  left: 0;
  transform: rotate(10deg);
}
.mv-title_sub {
  top: 18%;
  right: 0;
  transform: rotate(10deg);
}
@media only screen and (max-width: 767px) {
  .mv-inner::after {
    top: 29%;
    left: -36%;
    width: 200%;
    height: 200%;
  }
  .mv-title {
    top: 29%;
    bottom: auto;
  }
}

.scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 0px, rgba(255, 255, 255, 0.06) 2px, transparent 2px, transparent 5px);
  animation: scanlinesMove 6s linear infinite;
}

/* ----------------------------------------------------------------
    news
----------------------------------------------------------------- */
.news-wrap {
  position: relative;
  align-items: stretch;
  margin: 40px 20px 120px;
}
.news-article {
  padding: 60px;
  background: #fff;
  border-radius: 10px;
}
.news-article > *:first-child {
  margin-top: 0;
}
.news-article_desc {
  margin-top: 40px;
}
.news-article_title {
  margin-top: 20px;
  padding: 20px;
  background: #f5f5f5;
  font-weight: 700;
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .news-inner {
    padding: 0 10px;
  }
  .news-wrap {
    margin: 20px 15px 80px;
  }
  .news-article {
    padding: 20px 10px;
    background: #fff;
  }
  .news-article > :first-child {
    margin-top: 0;
  }
  .news-article_desc {
    margin-top: 20px;
  }
  .news-article_title {
    padding: 10px;
    font-size: 1.8rem;
  }
}

.mySwiper {
  width: 100%;
  padding: 20px 0;
}
.mySwiper .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
  margin-right: 50px;
}

.swiper-button-next,
.swiper-button-prev {
  top: 108%;
  color: #000;
  z-index: 2;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  text-rendering: initial;
}

.swiper-pagination {
  bottom: -42px !important;
  z-index: 1;
}
.swiper-pagination-bullet {
  background-color: #000;
  opacity: 0.5;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .swiper-pagination {
    bottom: -32px !important;
  }
}

/* ----------------------------------------------------------------
    service
----------------------------------------------------------------- */
.service-inner {
  margin: 60px 40px 0;
}
.service-wrap {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: #fff;
  max-width: 1000px;
  text-align: center;
}
.service-wrap + .service-wrap {
  margin-top: 40px;
}
.service-lead {
  margin-top: 40px;
  padding: 10px 40px 10px 20px;
  color: #131313;
  background: #fff;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .service-inner {
    margin: 40px 10px 0;
  }
  .service-wrap {
    border-radius: 10px;
    padding: 10px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    color: #fff;
    max-width: 1000px;
    text-align: center;
  }
  .service-wrap + .service-wrap {
    margin-top: 40px;
  }
  .service-lead {
    margin-top: 40px;
    padding: 10px 40px 10px 20px;
    color: #131313;
    background: #fff;
    font-size: 2rem;
    font-weight: 700;
  }
}

/* ----------------------------------------------------------------
    liver
----------------------------------------------------------------- */
.liver-inner {
  max-width: 1600px;
  margin: 60px auto;
}
@media only screen and (max-width: 767px) {
  .liver-inner {
    padding: 20px;
  }
}

.liver-panel {
  margin-top: 60px;
  color: #fff;
}
.liver-panel > *:first-child {
  margin-top: 0;
}
.liver-panel-inner {
  margin-top: 40px;
}
.liver-panel-inner > *:first-child {
  margin-top: 0;
}
.liver-panel-hdg {
  margin-top: 40px;
  text-align: center;
  font-size: 4rem;
}
.liver-panel-wrap {
  margin-top: 20px;
}
.liver-panel-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -20px 0 0 -20px;
}
.liver-panel-item {
  width: calc((100% - 100px) / 5);
  margin: 20px 0 0 20px;
  box-sizing: border-box;
}
.liver-panel-item + .liver-panel-item {
  margin-left: 20px;
}
.liver-panel-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 0 rgba(0, 255, 255, 0);
}
.liver-panel-link:hover, .liver-panel-link:active, .liver-panel-link:focus {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.6), 0 0 30px rgba(255, 0, 255, 0.4), 0 0 45px rgba(0, 255, 255, 0.3);
}
.liver-panel-link:hover .liver-panel-img, .liver-panel-link:active .liver-panel-img, .liver-panel-link:focus .liver-panel-img {
  transform: scale(1.03);
  filter: brightness(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.liver-panel-img {
  display: block;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: bottom center;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.liver-panel-name {
  display: block;
  padding: 20px 0;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  transition: text-shadow 0.3s ease;
}
.liver-panel-link:hover .liver-panel-name {
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.8), 0 0 10px rgba(255, 0, 255, 0.6);
}
@media only screen and (max-width: 767px) {
  .liver-panel-item {
    width: calc((100% - 20px) / 2);
    margin: 10px 0 0 10px;
  }
  .liver-panel-item + .liver-panel-item {
    margin-left: 10px;
  }
  .liver-panel-name {
    padding: 10px 0;
    font-size: 1.6rem;
  }
}

#liver-01 {
  background-image: url("/liver/img/liver-img-01_bg.webp");
}

#liver-02 {
  background-image: url("/liver/img/liver-img-02_bg.webp");
}

#liver-03 {
  background-image: url("/liver/img/liver-img-03_bg.webp");
}

#liver-04 {
  background-image: url("/liver/img/liver-img-04_bg.webp");
}

#liver-05 {
  background-image: url("/liver/img/liver-img-05_bg.webp");
}

#liver-06 {
  background-image: url("/liver/img/liver-img-06_bg.webp");
}

#liver-07 {
  background-image: url("/liver/img/liver-img-07_bg.webp");
}

#liver-08 {
  background-image: url("/liver/img/liver-img-08_bg.webp");
}

#liver-09 {
  background-image: url("/liver/img/liver-img-09_bg.webp");
}

#liver-10 {
  background-image: url("/liver/img/liver-img-10_bg.webp");
}

#liver-11 {
  background-image: url("/liver/img/liver-img-11_bg.webp");
}

#liver-12 {
  background-image: url("/liver/img/liver-img-12_bg.webp");
}

#liver-13 {
  background-image: url("/liver/img/liver-img-13_bg.webp");
}

#liver-14 {
  background-image: url("/liver/img/liver-img-14_bg.webp");
}

#liver-15 {
  background-image: url("/liver/img/liver-img-15_bg.webp");
}

#liver-16 {
  background-image: url("/liver/img/liver-img-16_bg.webp");
}

#liver-17 {
  background-image: url("/liver/img/liver-img-17_bg.webp");
}

#liver-18 {
  background-image: url("/liver/img/liver-img-18_bg.webp");
}

#liver-19 {
  background-image: url("/liver/img/liver-img-19_bg.webp");
}

#liver-20 {
  background-image: url("/liver/img/liver-img-20_bg.webp");
}

#liver-21 {
  background-image: url("/liver/img/liver-img-21_bg.webp");
}

#liver-22 {
  background-image: url("/liver/img/liver-img-22_bg.webp");
}

#liver-23 {
  background-image: url("/liver/img/liver-img-23_bg.webp");
}

#liver-24 {
  background-image: url("/liver/img/liver-img-24_bg.webp");
}

#liver-25 {
  background-image: url("/liver/img/liver-img-25_bg.webp");
}

#liver-26 {
  background-image: url("/liver/img/liver-img-26_bg.webp");
}

#liver-27 {
  background-image: url("/liver/img/liver-img-27_bg.webp");
}

#liver-28 {
  background-image: url("/liver/img/liver-img-28_bg.webp");
}

#liver-29 {
  background-image: url("/liver/img/liver-img-29_bg.webp");
}

#liver-30 {
  background-image: url("/liver/img/liver-img-30_bg.webp");
}

#liver-31 {
  background-image: url("/liver/img/liver-img-31_bg.webp");
}

#liver-32 {
  background-image: url("/liver/img/liver-img-32_bg.webp");
}

/* ----------------------------------------------------------------
    company
----------------------------------------------------------------- */
.company-inner {
  margin: 60px auto;
  max-width: 1200px;
}
.company-panel {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #fff;
  overflow: hidden;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.35);
}
.company-panel + .company-panel {
  margin-top: 40px;
}
.company-panel-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 20px;
  text-align: center;
}
.company-panel-title {
  position: relative;
  max-width: 300px;
  margin: 0 auto 60px;
  font-size: 3.6rem;
  font-weight: 700;
  font-style: italic;
  font-family: "futura-pt-condensed", sans-serif;
}
.company-panel-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 5px;
  background-image: linear-gradient(to right, #7f7fff, #7fff7f);
}
.company-panel-title_sub {
  display: block;
  font-size: 2rem;
  font-weight: 400;
}
.company-panel-lead {
  font-size: 2.4rem;
  font-weight: 700;
}
.company-panel-media {
  position: relative;
  flex-shrink: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-panel-media > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.company-panel-media::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 700px solid transparent;
  border-left: 96px solid #fff;
}
.company-panel._reverse {
  flex-direction: row-reverse;
}
.company-panel._reverse .company-panel-media::after {
  left: auto;
  right: 0;
  border-top: 50px solid transparent;
  border-right: 60px solid #fff;
  border-left: 0;
}
.company-panel-def > dt {
  padding: 5px;
  color: #fff;
  background: #131313;
  font-weight: 700;
}
.company-panel-def > dd {
  margin-top: 10px;
}
.company-panel-def + .company-panel-def {
  margin-top: 20px;
}
.company-message {
  margin-top: 80px;
}
.company-message-wrap {
  margin-top: 60px;
}
.company-message-title {
  font-size: 7rem;
  font-weight: 800;
}
.company-message-name {
  margin-top: 80px;
  text-align: right;
  font-size: 2rem;
}
.company-info {
  margin-top: 80px;
}
.company-info-table {
  margin-top: 20px;
  border-collapse: separate;
  width: 100%;
}
.company-info-table tbody,
.company-info-table tr {
  width: 100%;
}
.company-info-table tr > th {
  width: 20%;
  padding: 20px 40px;
  color: #fff;
  background: #131313;
}
.company-info-table tr > td {
  padding: 20px 40px;
  color: #131313;
  background: #fff;
}
.company-info-table tr > td :first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .company-inner {
    margin: 30px auto;
    padding: 0 19px;
  }
  .company-panel {
    display: flex;
    flex-direction: column;
  }
  .company-panel + .company-panel {
    margin-top: 20px;
  }
  .company-panel-desc {
    padding: 10px;
  }
  .company-panel-title {
    max-width: 200px;
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
  .company-panel-title::after {
    height: 3px;
  }
  .company-panel_sub {
    font-size: 1.6rem;
  }
  .company-panel-lead {
    font-size: 2rem;
  }
  .company-panel-media::after {
    display: none;
  }
  .company-panel._reverse {
    flex-direction: column;
  }
  .company-panel._reverse .company-panel-media::after {
    display: none;
  }
  .company-message {
    margin-top: 40px;
  }
  .company-message-wrap {
    margin-top: 20px;
  }
  .company-message-title {
    font-size: 3.2rem;
  }
  .company-message-name {
    margin-top: 40px;
    font-size: 1.6rem;
  }
  .company-info {
    margin-top: 40px;
  }
  .company-info-table {
    margin-top: 20px;
  }
  .company-info-table tr {
    display: flex;
    flex-direction: column;
  }
  .company-info-table tr > th {
    width: 100%;
    margin-top: 10px;
    padding: 10px 20px;
  }
  .company-info-table tr > td {
    padding: 20px;
    color: #131313;
    background: #fff;
  }
  .company-info-table tr > td :first-child {
    margin-top: 0;
  }
}

/* ----------------------------------------------------------------
    message
----------------------------------------------------------------- */
.message-inner {
  margin: 60px auto;
  max-width: 1400px;
  padding: 0 20px;
}
.message-wrap {
  display: flex;
  align-items: center;
}
.message-title {
  font-size: 7rem;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  .message-inner {
    margin: 20px auto;
  }
  .message-title {
    font-size: 3.2rem;
  }
  .message-item {
    display: none;
  }
}

/* ----------------------------------------------------------------
    contact
----------------------------------------------------------------- */
.contact-inner {
  margin: 80px auto 0;
  max-width: 1200px;
}
.contact-announce b {
  font-size: 2rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .contact-inner {
    max-width: 1200px;
    margin: 4px auto 0;
    padding: 10px;
  }
}

/* ----------------------------------------------------------------
    profile
----------------------------------------------------------------- */
.profile-panel {
  margin-top: 60px;
  text-align: center;
}
.profile-panel-inner {
  max-width: 1400px;
  width: 100%;
}
.profile-panel-wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 40px 20px;
  border-radius: 20px;
  background: #fff;
}
.profile-panel-content {
  flex-shrink: 0;
  width: 40%;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .profile-panel-wrap {
    display: flex;
    flex-direction: column-reverse;
    padding: 40px 10px;
  }
  .profile-panel-content {
    width: 100%;
  }
}

/* ----------------------------------------------------------------
    animation
----------------------------------------------------------------- */
@keyframes cyberSlideIn {
  0% {
    opacity: 0;
    transform: translateX(60px) skewX(10deg) scale(1.05) rotate(10deg);
    filter: brightness(200%) contrast(200%);
  }
  20% {
    transform: translateX(-10px) skewX(-5deg) rotate(10deg);
    filter: brightness(120%) contrast(150%);
  }
  40% {
    transform: translateX(5px) skewX(3deg) rotate(10deg);
    filter: none;
  }
  60% {
    transform: translateX(0) skewX(1deg) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) skewX(3deg) rotate(10deg);
  }
}
@keyframes scanlinesMove {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes rgbGlitch {
  0% {
    filter: drop-shadow(2px 0 red) drop-shadow(-2px 0 cyan);
    transform: translate(0, 0);
  }
  20% {
    filter: drop-shadow(0 0 red) drop-shadow(0 0 cyan);
    transform: translate(1px, -1px);
  }
  40% {
    filter: drop-shadow(-1px 0 red) drop-shadow(2px 0 blue);
    transform: translate(-1px, 1px);
  }
  60% {
    filter: none;
    transform: translate(0, 0);
  }
  100% {
    filter: drop-shadow(1px 0 red) drop-shadow(-1px 0 blue);
    transform: translate(0, 0);
  }
}