@charset "UTF-8";
/* modal
----------------------------------------- */
.c-modal__wrap:not(:last-child) {
  margin: 0 0 3.2rem 0;
}

.c-modal__openInner {
  padding: 6rem;
  background-color: #e8fdf5;
}
.c-modal__openInner.pink {
  background-color: #fef0f0;
}

.c-modal__open {
  -webkit-transition: -webkit-transform 0.25s ease;
  display: block;
  width: 15rem;
  margin: 0 auto;
  padding: 1.6rem 1.2rem;
  border-radius: 0.4rem;
  background-color: #137752;
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.c-modal__open.pink {
  background-color: #f26e6e;
}
.c-modal__open:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.c-modal__close {
  -webkit-transition: opacity 0.25s ease;
  width: 7rem;
  padding: 1rem 1.2rem;
  border-radius: 0.4rem;
  background-color: #bfdcff;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  letter-spacing: 0.05em;
  transition: opacity 0.25s ease;
}
.c-modal__close:hover {
  opacity: 0.7;
}

.c-modal__closeIcon {
  position: relative;
  width: 2.1rem;
  height: 2.1rem;
}
.c-modal__closeIcon::before {
  -webkit-transform: rotateZ(45deg) translate(0%, -50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 2rem;
  height: 1px;
          transform: rotateZ(45deg) translate(0%, -50%);
  background-color: #000;
  content: "";
}
.c-modal__closeIcon::after {
  -webkit-transform: rotateZ(-45deg) translate(0%, -50%);
  position: absolute;
  top: 50%;
  right: 0;
  width: 2rem;
  height: 1px;
          transform: rotateZ(-45deg) translate(0%, -50%);
  background-color: #000;
  content: "";
}

.c-modal__overlay {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
  z-index: 3;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
          align-items: center;
          justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}

.c-modal {
  display: none;
}
.c-modal.is-open {
  display: block;
}
.c-modal .c-modal__overlay,
.c-modal .c-modal__container {
  will-change: transform;
}
.c-modal[aria-hidden=false] .c-modal__overlay {
  -webkit-animation: overlayFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: overlayFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=false] .c-modal__container {
  -webkit-animation: containerFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: containerFadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=true] .c-modal__overlay {
  -webkit-animation: overlayFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: overlayFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.c-modal[aria-hidden=true] .c-modal__container {
  -webkit-animation: containerFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: containerFadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

@-webkit-keyframes overlayFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes overlayFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes overlayFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes overlayFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes containerFadeIn {
  0% {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes containerFadeIn {
  0% {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes containerFadeOut {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes containerFadeOut {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.c-modal__container {
  width: 32rem;
  padding: 3rem;
  overflow-y: auto;
  border-radius: 0.4rem;
}
.c-modal__container.green {
  background-color: #e8fdf5;
}
.c-modal__container.pink {
  background-color: #fef0f0;
}

.c-modal__header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
}

.c-modal__content {
  margin: 2.4rem 0;
}

.c-modal__text {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
}
.c-modal__text:not(:last-child) {
  margin: 0 0 1.4rem 0;
}

.c-modal__title {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.1111111111;
  letter-spacing: 0.05em;
}

/* column
----------------------------------------- */
.c-column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10 10;
}

.c-column2--gap60 {
  gap: 10;
}

.c-column3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10;
}

.c-column4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10;
}

/* headline
----------------------------------------- */
.c-headline {
  padding-left: 1.6rem;
  border-left: 1px solid black;
  color: black;
  font-weight: 600;
  font-size: 1.6rem;
}

/* hooverUnderline
----------------------------------------- */
.c-hoverUnderline {
  display: inline-block;
  position: relative;
}

.c-hoverUnderline::after {
  -webkit-transition: opacity 0.5s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: black;
  content: "";
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
/* imgHover
----------------------------------------- */
.c-imgHover {
  position: relative;
}

.c-imgHover img {
  -webkit-transition: 0.5s opacity;
  width: 100%;
  transition: 0.5s opacity;
}

.c-imgHover img:nth-of-type(2) {
  -webkit-transition: 0.5s opacity;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s opacity;
}
/* link
----------------------------------------- */
.c-link {
  position: relative;
  line-height: 1;
}

.c-link::after {
  position: absolute;
  top: 0.3em;
  right: -1em;
  width: 1em;
  height: 1em;
  background: url(画像のバスを入れる) center center/contain no-repeat;
  content: "";
}

/* underBar
----------------------------------------- */
.c-underBar {
  display: inline-block;
  position: relative;
}
.c-underBar::before {
  -webkit-transform: translateX(-50%);
  -webkit-transition: 0.5s;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 1px;
          transform: translateX(-50%);
  background-color: #333;
  content: "";
  opacity: 1;
  transition: 0.5s;
}
/* breadcrumbs
----------------------------------------- */
body.service .c-breadcrumbs {
  z-index: 1;
  position: relative;
  margin: 0 0 -4rem 0;
  padding: 0;
}
body.news .c-breadcrumbs .l-container {
  -webkit-box-pack: end;
  display: -webkit-box;
  display: flex;
          justify-content: flex-end;
}
body.news .c-breadcrumbs .c-breadcrumbs__list {
  display: block;
  padding: 0 0 0 5rem;
}
body.news .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item {
  display: unset;
  position: relative;
}
body.news .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item::before {
  -webkit-transform: translate(0%, -50%);
  display: block;
  position: absolute;
  top: 1.4rem;
  left: -3rem;
  margin: 0;
          transform: translate(0%, -50%);
}
body.news .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item:not(:last-child) {
  margin: 0 4rem 0 0;
}
body.news .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item .c-breadcrumbs__link {
  display: unset;
  line-height: 2;
}
body.works .c-breadcrumbs .l-container {
  -webkit-box-pack: end;
  display: -webkit-box;
  display: flex;
          justify-content: flex-end;
}
body.works .c-breadcrumbs .c-breadcrumbs__list {
  display: block;
  padding: 0 0 0 5rem;
}
body.works .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item {
  display: unset;
  position: relative;
}
body.works .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item::before {
  -webkit-transform: translate(0%, -50%);
  display: block;
  position: absolute;
  top: 1.4rem;
  left: -3rem;
  margin: 0;
          transform: translate(0%, -50%);
}
body.works .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item:not(:last-child) {
  margin: 0 4rem 0 0;
}
body.works .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item .c-breadcrumbs__link {
  display: unset;
  line-height: 2;
}
body.contact .c-breadcrumbs .l-container {
  -webkit-box-pack: end;
  display: -webkit-box;
  display: flex;
          justify-content: flex-end;
}
body.contact .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item {
  display: unset;
  position: relative;
}
body.contact .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item::before {
  -webkit-transform: translate(0%, -50%);
  display: block;
  position: absolute;
  top: 1.4rem;
  left: -3rem;
  margin: 0;
          transform: translate(0%, -50%);
}
body.contact .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item:not(:last-child) {
  margin: 0 4rem 0 0;
}
body.contact .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item:last-child .c-breadcrumbs__link {
  letter-spacing: 0.1rem;
}
body.contact .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item .c-breadcrumbs__link {
  display: unset;
  line-height: 2;
}

.c-breadcrumbs {
  margin-top: 2.4rem;
}
.c-breadcrumbs__list {
  -webkit-box-pack: end;
  display: -webkit-box;
  display: flex;
          justify-content: flex-end;
}
.c-breadcrumbs__item:not(:first-child) {
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
          align-items: center;
}
.c-breadcrumbs__item:not(:first-child)::before {
  display: block;
  width: 1.6rem;
  height: 0.1rem;
  margin: 0 1.2rem;
  background: #111111;
  content: "";
}
.c-breadcrumbs__item:not(:last-child) {
  border-bottom: 1px solid #0b275e;
}
.c-breadcrumbs__link {
  display: block;
  font-weight: 400;
  font-size: max(1.4rem, 12px);
  line-height: 1.4285714286;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.15em;
}
.c-breadcrumbs__link[aria-current=page] {
  color: #b4b4b4;
  text-decoration: none !important;
}

/* c-button
----------------------------------------- */
.c-button {
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
          align-items: center;
          justify-content: center;
  width: 74.7540983607%;
  max-width: 228px;
  margin: 0 auto;
  padding: 1.6rem 0;
  border-radius: 60px;
  background: -webkit-linear-gradient(20deg, #0b275e 7.62%, #00b9ef 112.61%);
  background: linear-gradient(70deg, #0b275e 7.62%, #00b9ef 112.61%);
  box-shadow: 0px 4px 16px 0px rgba(79, 92, 126, 0.25);
  color: #fff;
  font-weight: 400;
  font-size: 1.6rem;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 1.28px;
  text-align: center;
}
.c-button.-profile {
  margin-top: 1.7rem;
}
.c-button.-release {
  margin-top: 4.8rem;
}
.c-button.-contact {
  width: 83.5164835165%;
  margin-top: 4rem;
}

.-cursor {
  cursor: pointer !important;
}

/* fade-in
----------------------------------------- */
/*==============================================================
要素が下からふわっと表示されるアニメーション
==============================================================*/
/* スクロールCSS */
.fade-in {
  -webkit-transition-duration: 700ms;
  -webkit-transition-property: opacity, -webkit-transform;
  opacity: 0;
          transition-duration: 700ms;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

.fade-in-up {
  -webkit-transform: translate(0, 70px);
          transform: translate(0, 70px);
}

.scroll-in {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

/*==============================================================
ローディング時のストライプバーのアニメーション
==============================================================*/
@-webkit-keyframes loading {
  0% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-800px);
            transform: skewX(-15deg) rotate(180deg) translateY(-800px);
    opacity: 0;
  }
  50% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(0);
            transform: skewX(-15deg) rotate(180deg) translateY(0);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(0);
            transform: skewX(-15deg) rotate(180deg) translateY(0);
    opacity: 1;
  }
}
@keyframes loading {
  0% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-800px);
            transform: skewX(-15deg) rotate(180deg) translateY(-800px);
    opacity: 0;
  }
  50% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(0);
            transform: skewX(-15deg) rotate(180deg) translateY(0);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(0);
            transform: skewX(-15deg) rotate(180deg) translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes loading2 {
  0% {
    -webkit-transform: skewX(-15deg) translateY(-800px);
            transform: skewX(-15deg) translateY(-800px);
    opacity: 0;
  }
  50% {
    -webkit-transform: skewX(-15deg) translateY(0);
            transform: skewX(-15deg) translateY(0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: skewX(-15deg) translateY(0);
            transform: skewX(-15deg) translateY(0);
    opacity: 1;
  }
}
@keyframes loading2 {
  0% {
    -webkit-transform: skewX(-15deg) translateY(-800px);
            transform: skewX(-15deg) translateY(-800px);
    opacity: 0;
  }
  50% {
    -webkit-transform: skewX(-15deg) translateY(0);
            transform: skewX(-15deg) translateY(0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: skewX(-15deg) translateY(0);
            transform: skewX(-15deg) translateY(0);
    opacity: 1;
  }
}
/*==============================================================
.loading__bar--1だけopacity0.5がかかるので別でアニメーション作成
==============================================================*/
@-webkit-keyframes loadingbar1 {
  0% {
    -webkit-transform: skewX(-15deg) translateY(-800px);
            transform: skewX(-15deg) translateY(-800px);
    opacity: 0;
  }
  50% {
    -webkit-transform: skewX(-15deg) translateY(0);
            transform: skewX(-15deg) translateY(0);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: skewX(-15deg) translateY(0);
            transform: skewX(-15deg) translateY(0);
    opacity: 0.5;
  }
}
@keyframes loadingbar1 {
  0% {
    -webkit-transform: skewX(-15deg) translateY(-800px);
            transform: skewX(-15deg) translateY(-800px);
    opacity: 0;
  }
  50% {
    -webkit-transform: skewX(-15deg) translateY(0);
            transform: skewX(-15deg) translateY(0);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: skewX(-15deg) translateY(0);
            transform: skewX(-15deg) translateY(0);
    opacity: 0.5;
  }
}
/*==============================================================
各セクションのストライプバーがフェードインするときのアニメーション
==============================================================*/
/* @keyframes for ::before */
@-webkit-keyframes fadeTop {
  0% {
    -webkit-transform: skewX(-15deg) rotate(0deg) translateY(-100px);
            transform: skewX(-15deg) rotate(0deg) translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: skewX(-15deg) rotate(0deg) translateY(0);
            transform: skewX(-15deg) rotate(0deg) translateY(0);
    opacity: 1;
  }
}
@keyframes fadeTop {
  0% {
    -webkit-transform: skewX(-15deg) rotate(0deg) translateY(-100px);
            transform: skewX(-15deg) rotate(0deg) translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: skewX(-15deg) rotate(0deg) translateY(0);
            transform: skewX(-15deg) rotate(0deg) translateY(0);
    opacity: 1;
  }
}
/* @keyframes for ::after */
@-webkit-keyframes fadeBottom {
  0% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-100px);
            transform: skewX(-15deg) rotate(180deg) translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(0);
            transform: skewX(-15deg) rotate(180deg) translateY(0);
    opacity: 1;
  }
}
@keyframes fadeBottom {
  0% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-100px);
            transform: skewX(-15deg) rotate(180deg) translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(0);
            transform: skewX(-15deg) rotate(180deg) translateY(0);
    opacity: 1;
  }
}
/*==============================================================
各セクションのストライプバーがフェードインするときのアニメーション(Opacityが0.4バージョン）
==============================================================*/
@-webkit-keyframes fadeTopOpacity {
  0% {
    -webkit-transform: skewX(-15deg) rotate(0deg) translateY(-100px);
            transform: skewX(-15deg) rotate(0deg) translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: skewX(-15deg) rotate(0deg) translateY(0);
            transform: skewX(-15deg) rotate(0deg) translateY(0);
    opacity: 0.4;
  }
}
@keyframes fadeTopOpacity {
  0% {
    -webkit-transform: skewX(-15deg) rotate(0deg) translateY(-100px);
            transform: skewX(-15deg) rotate(0deg) translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: skewX(-15deg) rotate(0deg) translateY(0);
            transform: skewX(-15deg) rotate(0deg) translateY(0);
    opacity: 0.4;
  }
}
@-webkit-keyframes fadeBottomOpacity {
  0% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-100px);
            transform: skewX(-15deg) rotate(180deg) translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(0);
            transform: skewX(-15deg) rotate(180deg) translateY(0);
    opacity: 0.4;
  }
}
@keyframes fadeBottomOpacity {
  0% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-100px);
            transform: skewX(-15deg) rotate(180deg) translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: skewX(-15deg) rotate(180deg) translateY(0);
            transform: skewX(-15deg) rotate(180deg) translateY(0);
    opacity: 0.4;
  }
}
/* swiper
----------------------------------------- */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
input,
textarea,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

* {
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}

a,
a:visited,
a:link,
a:active {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol li,
ul li {
  list-style: none;
}

img,
iframe,
video {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

br {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

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

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  top: -9999px;
  left: -9999px;
}

input,
select,
label {
  vertical-align: middle;
}

[type=text] {
  line-height: normal;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=submit] {
  -webkit-appearance: none;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}

textarea {
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  resize: none;
  resize: vertical;
}

button {
  -webkit-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

address {
  font-style: normal;
}

/* Webkitベースのブラウザ（Chrome, Safari）で非表示 */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari用 */
}

html {
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none; /* IE・Edge用 */
  overflow-y: scroll;
  font-size: 62.5%;
  scrollbar-width: none; /* Firefox用 */
}

* {
  -webkit-font-smoothing: antialiased;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
}

body {
  -ms-scroll-chaining: none;
  -webkit-font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
      overscroll-behavior: none;
  color: #0b275e;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.15;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
          font-kerning: normal;
  letter-spacing: 0.1em;
  counter-reset: number 0;
}

body.subpage main {
  overflow: hidden;
}

a {
  color: inherit;
}

.js-focus-visible:focus:not(.focus-visible) {
  outline: 0;
}

*:focus-visible {
  outline: none;
}

/* container
----------------------------------------- */
.l-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* footer
----------------------------------------- */
.l-footer.is-active {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
  transition: filter 0.5s ease, -webkit-filter 0.5s ease; /* blur適用と解除をゆっくり */
}

.l-footer {
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.l-footer__container {
  width: 99.3442622951%;
  max-width: 320px;
  margin: 0 auto;
}
.l-footer__logo {
  width: 58.3606557377%;
  max-width: 300px;
}
.l-footer__logoLink img {
  -o-object-fit: cover;
  width: 100%;
  height: auto;
     object-fit: cover;
}
.l-footer__copyright {
  margin-top: 3.2rem;
  color: #595757;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 100%; /* 12px */
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0.6px;
}
.l-footer__nav {
  margin-top: 6rem;
}
.l-footer__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-column-gap: 95px;
     -moz-column-gap: 95px;
  display: -webkit-box;
  display: flex;
          column-gap: 95px;
  row-gap: 32px;
          flex-direction: row;
}
.l-footer__left, .l-footer__right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  row-gap: 32px;
          flex-direction: column;
}
.l-footer__link {
  color: #595757;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 100%; /* 18px */
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0.9px;
}

/* hamburger
----------------------------------------- */
.l-hamburger__toggle {
  -webkit-transition: all 0.5s ease;
  display: block;
  z-index: 3;
  width: 2rem;
  height: 100%;
  padding: 0;
  cursor: pointer;
  transition: all 0.5s ease;
}
.l-hamburger__toggle.is-active {
  opacity: 0;
}

.l-hamburger__toggleWrap {
  -webkit-transition: all 0.5s ease;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.l-hamburger__toggleWrap span {
  -webkit-transition: all 0.5s ease;
  display: inline-block;
  position: absolute;
  width: 2rem;
  height: 0.1rem;
  border-radius: 4px;
  background-color: #00377e;
  transition: all 0.5s ease;
}
.l-hamburger__toggleWrap span:nth-of-type(1) {
  top: 17px;
  left: 0;
}
.l-hamburger__toggleWrap span:nth-of-type(2) {
  -webkit-transition: all 0.5s ease;
  top: 25px;
  left: 0;
  transition: all 0.5s ease;
}
.l-hamburger__toggleWrap span:nth-of-type(3) {
  bottom: 0;
  left: 0;
}

/* header
----------------------------------------- */
body.subpage .l-header {
  -webkit-transform: translateY(0);
  top: 0;
          transform: translateY(0);
  opacity: 1;
}

body {
  -webkit-overflow-scrolling: touch;
  background: #ebedf2;
}

body.is-active {
  height: 100%;
  overflow: hidden;
}

.l-header {
  -webkit-transition: top 0.3s ease-out, opacity 0.5s ease-out;
  z-index: 7;
  position: fixed;
  top: -60px;
  left: 0;
  width: 100%;
  height: 6rem;
  opacity: 0; /* 初期は透明 */
  transition: top 0.3s ease-out, opacity 0.5s ease-out; /* スライドと透明化を同時に */
}
.l-header::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(bottom, rgba(0, 55, 126, 0) 0%, rgba(0, 55, 126, 0.16) 80%, rgba(0, 55, 126, 0.2) 100%);
  background: linear-gradient(0deg, rgba(0, 55, 126, 0) 0%, rgba(0, 55, 126, 0.16) 80%, rgba(0, 55, 126, 0.2) 100%);
  content: "";
}

.l-header__inner {
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: flex;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1rem 3.5rem 0;
}

.l-header__logo {
  -webkit-transition: all 0.5s ease;
  z-index: 3;
  position: relative;
  height: 100%;
  transition: all 0.5s ease;
  /*　上に上がる動き　*/
}
.l-header__logo.is-active {
  opacity: 0;
}

.l-header__logoLink {
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
          align-items: center;
  height: 100%;
}
.l-header__logoLink img {
  -o-object-fit: cover;
  width: 100%;
  height: auto;
     object-fit: cover;
}

/* l-inner
----------------------------------------- */
.l-inner {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 3.5rem;
  padding-left: 3.5rem;
}
.l-inner.-about {
  padding: 0;
}
.l-inner.-strategy {
  padding: 0 0 114px;
}
.l-inner.-profile {
  position: relative;
  padding: 4.2rem 3.5rem;
}
.l-inner.-projects {
  padding-top: 8rem;
  padding-bottom: 4rem;
}
.l-inner.-release {
  position: relative;
  padding-top: 11.8rem;
  padding-right: 0;
  padding-left: 0;
}
.l-inner.-contact {
  position: relative;
  padding-top: 14.7rem;
  padding-bottom: 12.9rem;
}
.l-inner.-privacy {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.l-inner.-footer {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

/*==============================================================
サブページのインナー幅カスタマイズ
==============================================================*/
/* menu
----------------------------------------- */
.l-main {
  transition: filter 0.5s ease, -webkit-filter 0.5s ease; /* blur適用と解除をゆっくり */
}

.l-main.is-active {
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
  transition: filter 0.5s ease, -webkit-filter 0.5s ease; /* blur適用と解除をゆっくり */
}

.l-menu {
  -webkit-transition: all 0.3s ease-in;
  -webkit-transform: translateX(769px);
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 68.2666666667%;
  height: 100vh;
  overflow-y: scroll;
          transform: translateX(769px);
  background-color: #efefef;
  opacity: 0.92;
  transition: all 0.3s ease-in;
}
.l-menu.is-active {
  -webkit-transform: translateX(0);
  z-index: 2;
          transform: translateX(0);
}
.l-menu.is-active::before {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  content: "";
  filter: blur(5px);
}
.l-menu__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.l-menu__nav {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 47%;
  left: 12%;
  width: 75%;
  padding-top: 2.4rem;
          transform: translateY(-50%);
  border-top: 1px solid rgba(89, 87, 87, 0.2);
}
.l-menu__list {
  margin-top: 4rem;
}
.l-menu__item {
  cursor: pointer;
}
.l-menu__item:not(:first-child) {
  margin-top: 2.8rem;
}
.l-menu__link {
  display: block;
  color: #595757;
  font-weight: 400;
  font-size: 1.8rem;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0.9px;
}

/*==============================================================
クローズ部分のCSSカスタマイズ
==============================================================*/
.l-menu__closeBox {
  display: -webkit-box;
  display: flex;
  position: absolute;
  top: 63px;
  right: 17%;
}
.l-menu__close {
  color: .l-menu__close color-sub;
  font-weight: 400;
  font-size: 1.2rem;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0;
}
.l-menu__toggleWrap {
  -webkit-transition: all 0.5s ease;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.l-menu__toggleWrap span {
  display: inline-block;
  position: absolute;
  width: 0.8rem;
  height: 0.1rem;
  background-color: #595757;
}
.l-menu__toggleWrap span:nth-of-type(1) {
  -webkit-transform: translate(4px, 7px) rotate(-45deg);
          transform: translate(4px, 7px) rotate(-45deg);
}
.l-menu__toggleWrap span:nth-of-type(2) {
  -webkit-transform: translate(4px, 7px) rotate(45deg);
          transform: translate(4px, 7px) rotate(45deg);
}

/* section
----------------------------------------- */
/*==============================================================
メインページのセクションタイトルのカスタマイズ
==============================================================*/
.l-section__title--jp {
  z-index: 2;
  color: #0b275e;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 100%; /* 16px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
}
.l-section__title--jp.-strategy {
  margin-top: 2rem;
  color: #00b9ef;
  font-weight: 300;
}
.l-section__title--jp.-alliance {
  margin-top: 2rem;
  color: #00b9ef;
  font-weight: 300;
  text-align: center;
}
.l-section__title--jp.-profile {
  margin-top: 2rem;
  color: #00b9ef;
  font-weight: 300;
  text-align: center;
}
.l-section__title--jp.-projects {
  margin-top: 2rem;
  text-align: center;
}
.l-section__title--jp.-release {
  margin-top: 2rem;
  text-align: center;
}
.l-section__title--jp.-contact {
  margin-top: 2rem;
  text-align: center;
}

.l-section__title--en {
  z-index: 2;
  color: #0b275e;
  font-weight: 400;
  font-size: 4rem;
  line-height: 100%; /* 40px */
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 2px;
}
.l-section__title--en.-alliance {
  text-align: center;
}
.l-section__title--en.-profile {
  position: relative;
  font-size: clamp(3rem, 2.4rem + 1.875vi, 6rem);
  line-height: 48px;
  letter-spacing: 0;
  text-align: center;
}
.l-section__title--en.-projects {
  text-align: center;
}
.l-section__title--en.-release {
  text-align: center;
}
.l-section__title--en.-contact {
  text-align: center;
}

/*==============================================================
サブページのセクションタイトルのカスタマイズ
==============================================================*/
body.subpage .l-main .l-section__box {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 51%;
  left: 9.4%;
          transform: translateY(-50%);
}
body.subpage .l-main .l-section__box.-contact {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 26.5%;
  left: 9.4%;
          transform: translateY(-50%);
}

body.subpage .l-main .l-section__title {
  margin-top: 1.6rem;
  color: #0b275e;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 120%; /* 38.4px */
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 1.28px;
}

body.subpage .l-main .l-section__subTitle {
  position: relative;
  color: #0b275e;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 100%; /* 12px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.48px;
}
body.subpage .l-main .l-section__subTitle::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 43%;
  left: 67.2%;
  width: 7.6rem;
  height: 1px;
          transform: translateY(-50%);
  background: #0b275e;
  content: "";
}
body.subpage .l-main .l-section__subTitle.-privacy::before {
  display: none;
}

/* form
----------------------------------------- */
/*==============================================================
必須項目のアスタリスクのカスタマイズ
==============================================================*/
.-required {
  position: relative;
}

.-required::before {
  position: absolute;
  top: 0;
  right: -15px;
  width: 10px;
  height: 10px;
  content: "*";
  color: #dee20d;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: normal;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
}

/*==============================================================
ヒーロー画面のCSSカスタマイズ
==============================================================*/
.p-hero.-contact {
  position: relative;
  max-width: 1440px;
  height: 270px;
  margin-top: 6rem;
  margin-inline: auto;
  padding: 0 4rem;
}

/*==============================================================
プレイスホルダーのカラー調整
==============================================================*/
::-webkit-input-placeholder {
  color: #0b275e;
}
:-ms-input-placeholder {
  color: #0b275e;
}
::-ms-input-placeholder {
  color: #0b275e;
}
::placeholder {
  color: #0b275e;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #0b275e;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #0b275e;
}

input::-webkit-input-placeholder {
  opacity: 0.4;
}

input:-ms-input-placeholder {
  opacity: 0.4;
}

input::-ms-input-placeholder {
  opacity: 0.4;
}

input::placeholder {
  opacity: 0.4;
}

textarea::-webkit-input-placeholder {
  opacity: 0.4;
}

textarea:-ms-input-placeholder {
  opacity: 0.4;
}

textarea::-ms-input-placeholder {
  opacity: 0.4;
}

textarea::placeholder {
  opacity: 0.4;
}

/*==============================================================
お問い合わせフォームのカスタマイズ
==============================================================*/
.l-form {
  border-radius: 16px 16px 0 0;
  background: #fff;
  /*==============================================================
      チェックボックスのカスタマイズ
  ==============================================================*/
  /*==============================================================
      サンクスページのカスタマイズ
  ==============================================================*/
}
.l-form__inner {
  max-width: 1440px;
  padding: 6rem 3.5rem 8rem;
}
.l-form__inner.-thanks {
  padding: 60px 2.5rem 8rem;
}
.l-form__item:not(:first-child) {
  margin-top: 23px;
}
.l-form__dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #595757;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: normal;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0;
}
.l-form__dd {
  margin-top: 1.2rem;
}
.l-form__dd input {
  width: 100%;
  height: 54px;
  padding: 0 2rem;
  border: 1px solid var(--wh, #fff);
  border-radius: 4px;
  background: rgba(235, 237, 242, 0.6);
  color: #0b275e;
}
.l-form__dd textarea {
  width: 100%;
  height: 26rem;
  padding: 2.1rem 2rem;
  border: 1px solid var(--wh, #fff);
  border-radius: 4px;
  background: rgba(235, 237, 242, 0.6);
  color: #0b275e;
}
.l-form__error {
  color: #dee20d;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 28px; /* 233.333% */
  font-family: "Hiragino Kaku Gothic Pro";
  letter-spacing: 0;
}
.l-form__label {
  color: #0b275e;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.6;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.15em;
}
.l-form input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 0.8rem;
  border: 1px solid #dee20d;
  border-radius: 4px;
}
.l-form input[type=checkbox]:checked:before {
  -webkit-transform: rotate(50deg);
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 12px;
          transform: rotate(50deg);
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}
.l-form__privacy {
  display: block;
  width: 24rem;
  margin: 2.9rem auto 0;
}
.l-form__privacy label {
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
  position: relative;
          align-items: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.l-form__privacy .wpcf7-list-item-label {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.l-form__checkBox {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: -25px;
          transform: translateY(-50%);
}
.l-form__privacy input {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #b4b4b4;
  cursor: pointer;
}
.l-form__privacyText {
  color: #000;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 16px; /* 114.286% */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0;
  text-decoration-line: underline !important;
}
.l-form__button {
  margin: 4.4rem auto 0;
  text-align: center;
}
.l-form__button.-back {
  margin-top: 20px;
}
.l-form__button.-top {
  margin-top: 40px;
}
.l-form__button input {
  display: block;
  width: 74.7540983607%;
  max-width: 228px;
  margin: 0 auto;
  padding: 1.2rem 0;
  border-radius: 60px;
  background: var(--wh, #fff);
  box-shadow: 0px 4px 16px 0px rgba(79, 92, 126, 0.25);
  color: #00377e;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: normal;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 1.28px;
  text-align: center;
}
.l-form__button.-submit input {
  background: -webkit-linear-gradient(20deg, #0b275e 7.62%, #00b9ef 112.61%);
  background: linear-gradient(70deg, #0b275e 7.62%, #00b9ef 112.61%);
  color: #fff;
}
.l-form__back {
  display: block;
  width: 74.7540983607%;
  max-width: 228px;
  margin: 0 auto;
  padding: 1.2rem 0;
  border-radius: 60px;
  background: var(--wh, #fff);
  box-shadow: 0px 4px 16px 0px rgba(79, 92, 126, 0.25);
  color: #00377e;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: normal;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 1.28px;
  text-align: center;
}
.l-form__consent {
  margin-top: 3.6rem;
  color: #000;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 28px; /* 175% */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0;
  text-align: center;
}
.l-form__thanks {
  color: #00377e;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: normal;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0;
  text-align: center;
}
.l-form__message {
  margin-top: 24px;
  color: #00377e;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 28px; /* 175% */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0;
  text-align: center;
}

/*==============================================================
ステップのCSSカスタマイズ
==============================================================*/
.l-step {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: 41px;
  left: 50%;
          transform: translateX(-50%);
}
.l-step__steps {
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
  position: relative;
          align-items: center; /* 円とラインを中央揃え */
  gap: 8px; /* ステップ間の隙間 */
}
.l-step__step {
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex; /* 子要素を中央揃えにする */
  position: relative;
          align-items: center;
          justify-content: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(0, 55, 126, 0.32);
  border-radius: 50%;
  background: rgba(0, 185, 239, 0.04);
  box-shadow: 0px 0px 16px rgba(0, 55, 126, 0.32);
  opacity: 0.6;
}
.l-step__step.-active {
  opacity: 1; /* アクティブ状態のスタイル */
}
.l-step__line {
  -webkit-box-flex: 1;
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
          flex: 1;
  width: 8px;
  height: 1px;
          transform: translateY(-50%);
  background: rgba(0, 55, 126, 0.4);
}
.l-step__line:nth-child(2) {
  left: 31.5%;
}
.l-step__line:nth-child(4) {
  left: 65.8%;
}
.l-step__step-circle {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
  height: 100%;
  gap: 4px 0;
  text-align: center;
}
.l-step__step-number {
  margin-bottom: 0.4rem; /* タイトルとの間隔 */
  color: #00377e;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1; /* 縦の余白を削減 */
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 1.2px;
}
.l-step__step-title {
  height: 35px;
  color: #00377e;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.4; /* 適切な行間 */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 1.68px;
}
.l-step__line {
  -webkit-box-flex: 1;
          flex: 1; /* 親要素内で均等に幅を取る */
  height: 2px; /* ラインの高さ */
  background-color: rgba(0, 55, 126, 0.32); /* ラインの色 */
}

.text {
  display: grid;
  place-items: center;
  height: 100svh;
  font-size: max(18px, 2.5vw);
}

.section {
  position: relative;
  height: 100svh;
  color: #fff;
}

.section:nth-of-type(1) {
  background-color: #111;
}

.section:nth-of-type(2) {
  background-color: #333;
}

.section:nth-of-type(3) {
  background-color: #666;
}

.section:nth-of-type(4) {
  background-color: #999;
}

.section:nth-of-type(5) {
  background-color: #ccc;
}

.section__inner {
  display: grid;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  place-items: center;
  width: 100%;
  height: inherit;
  font-size: 10vw;
}

/*==============================================================
フォームボタン無効化時のCSSカスタマイズ
==============================================================*/
/* チェックボックス無効時のスタイル */
input[type=checkbox]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.l-form__btn:disabled {
  background-color: #ccc; /* 無効時の背景色 */
  color: #999; /* 無効時の文字色 */
  cursor: not-allowed; /* カーソルを禁止マークに */
}

.-submit {
  background: -webkit-linear-gradient(20deg, #0b275e 7.62%, #00b9ef 112.61%) !important;
  background: linear-gradient(70deg, #0b275e 7.62%, #00b9ef 112.61%) !important;
  color: #fff !important;
}

/*==============================================================
エラー文章のCSSカスタマイズ
==============================================================*/
.wpcf7-not-valid-tip {
  display: none;
  color: #dee20d;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 28px; /* 233.333% */
  font-family: "Hiragino Kaku Gothic Pro";
  letter-spacing: 0;
}

/* home-mv
----------------------------------------- */
.p-home-mv {
  position: relative;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
}
.p-home-mv__inner {
  margin-top: -6rem;
  background: #ebedf2;
}
.p-home-mv__box {
  z-index: 1;
  position: absolute;
  top: 22.2rem;
  left: 9%;
}
.p-home-mv__head {
  position: relative;
  color: #0b275e;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 100%; /* 12px */
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0.48px;
}
.p-home-mv__head::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 16%;
  width: 21.3333333333%;
  max-width: 90px;
  height: 1px;
          transform: translateY(-50%);
  background: #0b275e;
  content: "";
}
.p-home-mv__catch {
  margin-top: 0.6rem;
  color: #0b275e;
  font-weight: 400;
  font-size: 4rem;
  line-height: 120%; /* 48px */
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 1.6px;
}
.p-home-mv__bottom {
  margin-top: 1.5rem;
  color: #0b275e;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 160%; /* 25.6px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
}

/*==============================================================
ローディングのCSSカスタマイズ
==============================================================*/
.p-home-mv__percentage {
  position: absolute;
  top: 15.6rem;
  left: 9%;
  color: #00377e;
  font-family: "Marcellus", Meiryo, sans-serif;
}

.loading__percentage {
  color: #00377e;
  font-weight: 400;
  font-size: 4.8rem;
  font-family: "Marcellus", Meiryo, sans-serif;
}

.loading__bars {
  -webkit-box-pack: right;
  display: -webkit-box;
  display: flex;
  position: relative;
          justify-content: right;
  width: 100%;
  height: 100vh;
  gap: 15px;
}

.loading__barsContainer {
  -webkit-box-pack: right;
  display: -webkit-box;
  display: flex;
          justify-content: right;
  width: 100%;
}

.loading__bar {
  -webkit-transition: height 0.3s ease-out;
  width: 100%;
  max-width: 150px;
  transition: height 0.3s ease-out;
}

.loading__bar--2 {
  -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-800px);
  -webkit-transform-origin: top;
  -webkit-animation: loading 2s forwards;
  position: absolute;
  top: -46px;
  right: 176px;
  width: 4.8rem;
  height: 283px;
  max-height: 283px;
  margin-top: 600px;
  transform: skewX(-15deg) rotate(180deg) translateY(-800px);
          transform-origin: top;
  background: #fff;
          animation: loading 2s forwards;
  opacity: 0;
}

.loading__bar--3 {
  -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-800px);
  -webkit-transition: height 0.5s ease-out;
  -webkit-transform-origin: top;
  -webkit-animation: loading 2s forwards;
  -webkit-animation-delay: 1s;
  position: absolute;
  top: -46px;
  right: 112px;
  width: 4.8rem;
  height: 354px; /* 初期状態で高さを0に設定 */
  max-height: 354px;
  margin-top: 600px;
  transform: skewX(-15deg) rotate(180deg) translateY(-800px);
          transform-origin: top;
  background: -webkit-linear-gradient(bottom, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
  background: linear-gradient(0deg, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
          animation: loading 2s forwards;
          animation-delay: 1s; /* 2秒遅延 */
  opacity: 0;
  transition: height 0.5s ease-out; /* 高さの変化にアニメーションを追加 */
}

.loading__bar--1 {
  -webkit-transform: skewX(-15deg) translateY(-800px);
  -webkit-transition: height 0.5s ease-out;
  -webkit-transform-origin: top;
  -webkit-animation: loadingbar1 2s forwards;
  -webkit-animation-delay: 3s;
  position: absolute;
  top: 82px;
  right: 120px;
  width: 4.8rem;
  height: 303px;
  max-height: 303px;
  transform: skewX(-15deg) translateY(-800px);
          transform-origin: top; /* アニメーションの基点を上に設定 */
  background: -webkit-linear-gradient(top, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  background: linear-gradient(180deg, rgba(0, 55, 126, 0) 0%, #00377e 100%);
          animation: loadingbar1 2s forwards;
          animation-delay: 3s; /* 2秒遅延 */
  opacity: 0;
  transition: height 0.5s ease-out; /* 高さの変化にアニメーションを追加 */
}

.loading__bar--4 {
  -webkit-transform: skewX(-15deg) translateY(-800px);
  -webkit-animation: loading2 2s forwards;
  -webkit-animation-delay: 2s;
  position: absolute;
  top: 35px;
  right: -54px;
  width: 4.8rem;
  height: 283px;
  max-height: 283px;
  margin-bottom: 300px;
  transform: skewX(-15deg) translateY(-800px);
  background: #fff;
          animation: loading2 2s forwards;
          animation-delay: 2s; /* 2秒遅延 */
  opacity: 0;
}

/* home-about
----------------------------------------- */
.p-home-about .p-home-about__philosophy {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
}
.p-home-about__philosophyInner {
  margin: 0 auto;
  padding: 4rem 3.5rem 5.8rem;
}
.p-home-about__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
          flex-direction: column;
  margin-top: 4rem;
  gap: 450px 0;
}
.p-home-about__bg {
  height: 256px;
}
.p-home-about__cardTitle {
  color: #0b275e;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 100%; /* 24px */
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 1.2px;
}
.p-home-about__cardContent {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
          flex-direction: column;
}
.p-home-about__cardHeadBox {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-flex: 1;
  display: -webkit-box;
  display: flex;
          flex: 1;
          flex-direction: column;
}
.p-home-about__cardHeaderBoxInner {
  z-index: 2;
}
.p-home-about__cardHead {
  color: #0b275e;
  font-weight: 400;
  font-size: 2rem;
  line-height: 160%; /* 32px */
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0.6px;
}
.p-home-about__cardIntro {
  position: relative;
  margin-top: 1rem;
  padding-left: 20px;
  color: #0b275e;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 160%;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0;
}
.p-home-about__cardIntro::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 2px;
          transform: translateY(-50%);
  background: #0b275e;
  content: "";
}
.p-home-about__text {
  max-height: 5em;
  margin-top: 1rem;
  overflow: hidden;
  color: #0b275e;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 28.8px;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
}
.p-home-about__moreBox {
  position: absolute;
  right: 27px;
  bottom: 23px;
}
.p-home-about__more {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding-left: 0.5rem;
  color: #0b275e;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 100%; /* 14px */
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0;
  text-align: right;
  cursor: pointer;
}
.p-home-about__more::before {
  -webkit-transform: translateY(-50%);
  -webkit-transition: 0.3s ease-in;
  position: absolute;
  top: 50%;
  left: -34px;
  width: 26px;
  height: 14px;
          transform: translateY(-50%);
  background: url("../images/home/icon-before.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transition: 0.3s ease-in;
}

/*==============================================================
カードのhoverアクション
==============================================================*/
.p-home-about__card:hover .p-home-about__more::before {
  background: url("../images/home/icon-after.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* click時のクラス */
.p-home-about__card.clicked .p-home-about__more::before {
  width: 28px;
  height: 28px;
  background: url("../images/home/click-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/*==============================================================
モーダル部分のCSSカスタマイズ
==============================================================*/
.p-about-modal {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
          transform: translate(-50%, -50%);
  cursor: pointer;
}
.p-about-modal__inner {
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  position: relative;
  width: 305px;
  height: 601px;
  margin: 0 auto;
  padding: 2.4rem;
  overflow: hidden;
          transform-style: preserve-3d;
  border-radius: 20px;
          backface-visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(11, 39, 94, 0.1);
  will-change: transform, opacity;
}
.p-about-modal__overlay {
  -webkit-backdrop-filter: blur(4px);
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: none; /* 非表示 */
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
          align-items: center;
          justify-content: center;
  width: 100%;
  height: 100%;
          backdrop-filter: blur(4px);
  background: rgba(11, 39, 94, 0.4);
  cursor: pointer;
}
.p-about-modal__overlay.is-active {
  display: -webkit-box !important;
  display: flex !important;
}
.p-about-modal__card.-vision::before {
  top: -90px;
  height: 485px;
  background: url("../images/home/vision.png");
}
.p-about-modal__card.-mission::before {
  top: -69px;
  height: 567px;
  background: url("../images/home/mission.png");
}
.p-about-modal__card.-solution::before {
  top: 65px;
  width: 210px;
  height: 225px;
  background: url("../images/home/solution.png");
}
.p-about-modal__card::before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  left: 50%;
  width: 100%;
  height: 100%;
          transform: translateX(-50%);
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  content: "";
}
.p-about-modal__cardTitle {
  color: #0b275e;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 1.2px;
}
.p-about-modal__bg {
  height: 256px;
}
.p-about-modal__cardHeadBox {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
          flex-direction: column;
}
.p-about-modal__cardHeaderBoxInner {
  z-index: 2;
}
.p-about-modal__cardHead {
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0.6px;
}
.p-about-modal__cardIntro {
  position: relative;
  margin-top: 1rem;
  padding-left: 20px;
  color: #0b275e;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 160%;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0;
}
.p-about-modal__cardIntro::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 2px;
          transform: translateY(-50%);
  background: #0b275e;
  content: "";
}
.p-about-modal__text {
  margin-top: 1rem;
  color: #0b275e;
  font-weight: 300;
  font-size: 16px;
  line-height: 28.8px;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
}
.p-about-modal__moreBox {
  position: absolute;
  right: 27px;
  bottom: 23px;
}
.p-about-modal__more {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding-left: 0.5rem;
  color: #0b275e;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 100%;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0;
  text-align: right;
  cursor: pointer;
}
.p-about-modal__more::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: -34px;
  width: 28px;
  height: 28px;
          transform: translateY(-50%);
  background: url("../images/home/click-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

/*==============================================================
スタッキングカードアニメーションのCSSカスタマイズ
==============================================================*/
.p-home-about__card {
  -webkit-transform: scale(1);
  -webkit-transition: opacity 0.1s linear, -webkit-transform 0.1s linear;
  position: sticky;
  top: calc(50% - 300px);
  width: 305px;
  height: 510px;
  margin: 0 auto;
  padding: 2.4rem;
          transform: scale(1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(11, 39, 94, 0.1);
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.1s linear, -webkit-transform 0.1s linear;
  transition: transform 0.1s linear, opacity 0.1s linear;
  transition: transform 0.1s linear, opacity 0.1s linear, -webkit-transform 0.1s linear; /* 滑らかに変化 */
  will-change: transform, opacity; /* ハードウェアアクセラレーション */
}
.p-home-about__card::before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  left: 50%;
  width: 100%;
  height: 100%;
          transform: translateX(-50%);
  background-position: center !important; /* 中心に配置 */
  background-size: cover !important; /* 親要素を覆うように */
  background-repeat: no-repeat !important;
  content: "";
}
.p-home-about__card.-vision::before {
  top: -90px;
  height: 485px;
  background: url("../images/home/vision.png");
}
.p-home-about__card.-mission::before {
  top: -69px;
  height: 567px;
  background: url("../images/home/mission.png");
}
.p-home-about__card.-solution::before {
  top: 65px;
  width: 210px;
  height: 225px;
  background: url("../images/home/solution.png");
}
.p-home-about__card.card1 {
  --index: 1;
  top: calc(50% - 300px);
}
.p-home-about__card.card2 {
  --index: 2;
  top: calc(50% - 244px);
}
.p-home-about__card.card3 {
  --index: 3;
  top: calc(50% - 188px);
}
.p-home-about__card.card4 {
  box-shadow: none;
  opacity: 0 !important;
}

/* home-strategy
----------------------------------------- */
.p-home-strategy__strategyWrapper {
  -webkit-backdrop-filter: blur(20px);
  margin-top: 4rem;
  border: 1px solid rgba(11, 39, 94, 0.2);
  border-radius: 16px;
          backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 80px 0px rgba(255, 255, 255, 0.2);
}
.p-home-strategy__strategyInner {
  padding: 4.8rem 3.5rem;
}
.p-home-strategy___list {
  margin-top: 1.2rem;
}
.p-home-strategy__item {
  padding: 2.1rem 0;
}
.p-home-strategy__item:not(:last-child) {
  border-bottom: 1px solid rgba(11, 39, 94, 0.5);
}
.p-home-strategy__head {
  color: #0b275e;
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 220%; /* 44px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 1px;
}
.p-home-strategy__txt {
  color: #0b275e;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 205%;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
  text-align: justify;
}
.p-home-strategy__bottomImg {
  margin-top: 3.2rem;
}
.p-home-strategy__bottomImg img {
  -o-object-fit: cover;
  width: 100%;
  height: auto;
     object-fit: cover;
  border-radius: 8px;
}

/* home-profile
----------------------------------------- */
.p-home-profile {
  position: relative;
  border-radius: 12px;
  background: -webkit-linear-gradient(301deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
  background: linear-gradient(149deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 100%);
}
.p-home-profile__content {
  margin-top: 7.4rem;
}

.p-home-profile .l-inner::before {
  -webkit-transform: skewX(-15deg) rotate(0deg) translateY(-100px);
  position: absolute;
  position: absolute;
  top: -95px;
  right: 34px;
  width: 60px;
  height: 10%;
          transform: skewX(-15deg) rotate(0deg) translateY(-100px);
  background: -webkit-linear-gradient(bottom, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
  background: linear-gradient(0deg, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
  content: "";
  opacity: 0;
}
.p-home-profile .l-inner.animate::before {
  -webkit-animation: fadeTop 1s forwards;
          animation: fadeTop 1s forwards;
}

.p-home-profile .l-inner::after {
  -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-100px);
  z-index: 1;
  position: absolute;
  position: absolute;
  top: -8px;
  right: -16px;
  width: 20%;
  width: 60px;
  height: 10%;
          transform: skewX(-15deg) rotate(180deg) translateY(-100px);
  background: -webkit-linear-gradient(top, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  background: linear-gradient(180deg, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  content: "";
  opacity: 0;
}
.p-home-profile .l-inner.animate::after {
  -webkit-animation: fadeBottom 1s forwards;
          animation: fadeBottom 1s forwards;
}

/*==============================================================
カード部分のカスタマイズ
==============================================================*/
.p-home-profile-card__img img {
  -o-object-fit: cover;
  width: 100%;
  height: auto;
     object-fit: cover;
  border-radius: 12px;
}
.p-home-profile-card__img.-modal {
  width: 90%;
}
.p-home-profile-card__body {
  -ms-overflow-style: none; /* IE・Edge用 */
  margin-top: 32px;
  scrollbar-width: none; /* Firefox用 */
}
.p-home-profile-card__title {
  color: #0b275e;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 100%; /* 32px */
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 2.56px;
}
.p-home-profile-card__sub {
  margin-top: 1.6rem;
  color: #000;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 100%; /* 16px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 3.2px;
}
.p-home-profile-card__txt {
  max-height: 484px;
  margin-top: 2.4rem;
  color: #000;
  font-style: normal;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 180%; /* 28.8px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
  text-align: justify;
}
.p-home-profile-card__txt.-modal {
  padding-right: 40px;
}
.p-home-profile-card__txt.-mask {
  /* マスク効果を適用 */
  -webkit-mask-image: -webkit-linear-gradient(top, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0));
  /* 対応ブラウザ用のバックアップ */
  overflow: hidden; /* コンテンツがはみ出ないようにする */
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0));
}
.p-home-profile-card__txt span {
  font-size: 1.8rem;
  line-height: 34.8px;
}

.p-home-profile-card:nth-of-type(2) {
  margin-top: 8rem;
}

/*==============================================================
モーダル部分のCSSカスタマイズ
==============================================================*/
.p-home-profile-card {
  -ms-overflow-style: none; /* IE・Edge用 */
  scrollbar-width: none; /* Firefox用 */
}
.p-home-profile-card.-modal {
  height: 480px;
  margin-right: 0 !important;
}

/* モーダル全体を非表示にするデフォルト設定 */
.modal-overlay {
  -webkit-backdrop-filter: blur(10px);
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: none; /* 非表示 */
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
          align-items: center;
          justify-content: center;
  width: 100%;
  height: 100%;
          backdrop-filter: blur(10px);
  background: rgba(11, 39, 94, 0.4);
  cursor: pointer;
}

/* モーダルの内容 */
.modal-window {
  -webkit-transform: translate(-50%, -50%);
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 305px;
  height: 550px;
  margin: 0 auto;
  padding: 4rem 1.2rem 4rem 1.2rem;
          transform: translate(-50%, -50%);
  border-radius: 12px;
  background: -webkit-linear-gradient(272deg, #efefef 0%, rgba(239, 239, 239, 0.8) 100%);
  background: linear-gradient(178deg, #efefef 0%, rgba(239, 239, 239, 0.8) 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* 閉じるボタン */
.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
}

/*==============================================================
スクロールバーのカスタマイズ
==============================================================*/
.simplebar-scrollbar::before {
  background: #0b275e;
}

.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.simplebar-track {
  overflow: visible;
}
.simplebar-track .scroll {
  overflow: auto;
}
.simplebar-track .simplebar-scrollbar {
  width: 8px;
}

/* home-projects
----------------------------------------- */
.p-home-projects__intro {
  margin-top: 4rem;
  color: #0b275e;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 180%; /* 32.4px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.9px;
}
.p-home-projects__content {
  margin-top: 4rem;
}

/*==============================================================
カード部分のCSSカスタマイズ
==============================================================*/
.p-home-projects-card {
  padding: 1.6rem 0.8rem 1.2rem 0.8rem;
  border-radius: 8px;
  background: #fff;
}
.p-home-projects-card__img {
  margin-top: 2.4rem;
}
.p-home-projects-card__img img {
  -o-object-fit: cover;
  width: 100%;
  height: auto;
     object-fit: cover;
}
.p-home-projects-card__body {
  padding: 0 12px;
}
.p-home-projects-card__tag {
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
  position: relative;
          align-items: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 20px;
  border: 1px solid #00b9ef;
  border-radius: 70px;
  color: #000;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 100%; /* 12px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.6px;
}
.p-home-projects-card__tag::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 5%;
  width: 8px;
  height: 8px;
          transform: translateY(-50%);
  border-radius: 50%;
  background: #00b9ef;
  content: "";
}
.p-home-projects-card__title {
  margin-top: 0.86rem;
  color: #000;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 180%; /* 32.4px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.9px;
}
.p-home-projects-card__txt {
  -webkit-transition: max-height 0.5s ease-in-out;
  position: relative;
  max-height: 5em;
  margin-top: 0.86rem;
  overflow: hidden;
  color: #000;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 180%; /* 28.8px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
  text-align: justify;
  cursor: pointer;
  transition: max-height 0.5s ease-in-out; /* アニメーションを滑らかに */
}
/* .p-home-projects-card__txt::after {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-left: 3px; /* 左側の余白 */
  background: #fff; /* 背景色で下の行を隠す */
  content: "..."; /* 省略記号 */
  color: inherit; /* 文字色はテキストと同じに */
} */
.p-home-projects-card__txt.expanded {
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}
.p-home-projects-card__txt.expanded::after {
  content: ""; /* 展開時は省略記号を非表示 */
}
.p-home-projects-card__more {
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px 0 0 auto;
  color: #0b275e;
  font-weight: 400;
  font-size: 14px;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0em;
  text-align: right;
  cursor: pointer;
  opacity: 1; /* 初期状態 */
  transition: opacity 0.5s ease, visibility 0.5s ease; /* フェードアウトのアニメーション */
}
.p-home-projects-card__more.fade-out {
  visibility: hidden; /* 完全に透明になったら要素を非表示に */
  opacity: 0; /* 徐々に透明に */
}
.p-home-projects-card__more::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: -34px;
  width: 26px;
  height: 14px;
          transform: translateY(-50%);
  background: url(../images/home/icon-before.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.p-home-projects-card:not(:first-child) {
  margin-top: 2rem;
}

/* home-mv
----------------------------------------- */
.p-home-release {
  position: relative;
}
.p-home-release__head {
  padding: 0 3.5rem;
}
.p-home-release__titleBox {
  z-index: 2;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-home-release__intro {
  margin-top: 4rem;
  color: #0b275e;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 180%; /* 32.4px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.9px;
}
.p-home-release__content {
  position: relative;
}
.p-home-release__list {
  position: relative;
  margin-top: 6.4rem;
}
.p-home-release__item {
  padding: 2.4rem 3.5rem;
  border-top: 1px solid rgba(11, 39, 94, 0.2);
}
.p-home-release__item:first-child {
  box-shadow: 0 -20px 20px -10px rgba(0, 55, 126, 0.1);
}
.p-home-release__item:last-child {
  border-bottom: 1px solid rgba(11, 39, 94, 0.2);
  box-shadow: 0 20px 20px -10px rgba(0, 55, 126, 0.1); /* 下端のぼかし */
}
.p-home-release__date {
  position: relative;
  padding-left: 2.4rem;
  color: #0b275e;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 100%; /* 16px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
}
.p-home-release__date::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
          transform: translateY(-50%);
  border-radius: 50%;
  background: #0b275e;
  content: "";
}
.p-home-release__text {
  margin-top: 2rem;
  color: #0b275e;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 140%; /* 25.2px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.9px;
}

/*==============================================================
ストライプバーのカスタマイズ
==============================================================*/
.p-home-release__titleBox::before {
  -webkit-transform: skewX(-15deg) rotate(0deg) translateY(-100px);
  z-index: -1;
  position: absolute;
  top: -86px;
  left: -64%;
  width: 8rem;
  height: 181px;
          transform: skewX(-15deg) rotate(0deg) translateY(-100px);
  background: -webkit-linear-gradient(top, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  background: linear-gradient(180deg, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  content: "";
  opacity: 0;
}

.p-home-release__titleBox::after {
  -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-100px);
  z-index: -1;
  position: absolute;
  position: absolute;
  top: -52px;
  left: -16%;
  width: 8rem;
  height: 238px;
          transform: skewX(-15deg) rotate(180deg) translateY(-100px);
  background: -webkit-linear-gradient(bottom, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
  background: linear-gradient(0deg, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
  content: "";
  opacity: 0;
}

.p-home-release__titleBox.animate::before {
  -webkit-animation: fadeTopOpacity 1s forwards;
          animation: fadeTopOpacity 1s forwards;
}

.p-home-release__titleBox.animate::after {
  -webkit-animation: fadeBottomOpacity 1s forwards;
          animation: fadeBottomOpacity 1s forwards;
}

/* home-contact
----------------------------------------- */
.p-home-contact {
  overflow-x: hidden;
}
.p-home-contact__box {
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 40px 16px;
  border-radius: 16px;
          backdrop-filter: blur(10px);
  background: -webkit-linear-gradient(345deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.08) 98.38%);
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.08) 98.38%);
  box-shadow: 4px 4px 40px 0px rgba(0, 0, 0, 0.1215686275);
}
.p-home-contact__text {
  margin-top: 3.2rem;
  line-height: 28.8px;
  text-align: center;
}

/*==============================================================
ストライプバーのカスタマイズ
==============================================================*/
.p-home-contact .l-inner::before {
  -webkit-transform: skewX(-15deg) rotate(0deg) translateY(-300px);
  position: absolute;
  position: absolute;
  right: 22px;
  bottom: 78px;
  width: 60px;
  height: 377px;
          transform: skewX(-15deg) rotate(0deg) translateY(-300px);
  background: -webkit-linear-gradient(top, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  background: linear-gradient(180deg, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  content: "";
  opacity: 0;
}
.p-home-contact .l-inner.animate::before {
  -webkit-animation: fadeTopOpacity 1s forwards;
          animation: fadeTopOpacity 1s forwards;
}

.p-home-contact .l-inner::after {
  -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-100px);
  z-index: 1;
  position: absolute;
  top: 120px;
  left: 74px;
  width: 58px;
  height: 200px;
          transform: skewX(-15deg) rotate(180deg) translateY(-100px);
  background: -webkit-linear-gradient(top, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  background: linear-gradient(180deg, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  content: "";
  opacity: 0;
}
.p-home-contact .l-inner.animate::after {
  -webkit-animation: fadeBottomOpacity 1s forwards;
          animation: fadeBottomOpacity 1s forwards;
}

.p-home-contact__box::before {
  -webkit-transform: skewX(-15deg) rotate(180deg) translateY(-100px);
  position: absolute;
  position: absolute;
  top: -49px;
  left: -56px;
  width: 69px;
  height: 300px;
          transform: skewX(-15deg) rotate(180deg) translateY(-100px);
  background: -webkit-linear-gradient(bottom, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
  background: linear-gradient(0deg, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
  content: "";
  opacity: 0;
}

.p-home-contact__box.animate::before {
  -webkit-animation: fadeBottom 1s forwards;
          animation: fadeBottom 1s forwards;
}

/* home-main
----------------------------------------- */
.p-home-main-content {
  z-index: 1; /* 必要に応じてz-indexを調整 */
  position: relative; /* 相対的な配置を維持 */
  overflow-x: hidden; /* p-home-about以降のセクションに適用 */
}

/* release
----------------------------------------- */
.p-hero {
  position: relative;
  height: 337px;
}

.p-release {
  background: rgba(255, 255, 255, 0.6);
  /*==============================================================
  カード部分のCSSカスタマイズ
  ==============================================================*/
}
.p-release__inner {
  padding: 7rem 3.5rem 13rem;
  border-radius: 16px 16px 0 0;
}
.p-release__list {
  -webkit-box-align: center;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
          align-items: center;
  padding: 1rem 0 4rem;
  gap: 0 16px;
  white-space: nowrap; /* 子要素を折り返さずに表示 */
}
.p-release__item {
  width: 12rem;
}
.p-release__link {
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
          align-items: center;
          justify-content: center;
  width: 100%;
  padding: 1.04rem 0;
  border-radius: 60px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 4px 0px rgba(79, 92, 126, 0.25);
  color: #595757;
  font-weight: 400;
  font-size: 1.4rem;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 1.28px;
}
.p-release__link.-current {
  background: -webkit-linear-gradient(20deg, #00377e 7.62%, #00b9ef 112.61%);
  background: linear-gradient(70deg, #00377e 7.62%, #00b9ef 112.61%);
  color: #fff;
  font-weight: 300;
  font-size: 1.4rem;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 1.28px;
}
.p-release__content {
  margin-top: 11.1rem;
}
.p-release__contentBottom {
  margin-top: 4rem;
}
.p-release-card {
  padding: 1.6rem 0.8rem 1.2rem;
  border-radius: 8px;
  background: #ebedf2;
}
.p-release-card a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  display: -webkit-box;
  display: flex;
          flex-direction: column-reverse;
}
.p-release-card.-recommend {
  width: 100%;
  padding: 0;
}
.p-release-card.-recommend a {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.p-release-card.-recommend .p-release-card__img {
  border-radius: 8px 8px 0 0;
}
.p-release-card.-recommend .p-release-card__body {
  padding-top: 2rem;
  border-radius: 0 0 8px 8px;
}
.p-release-card__inner {
  padding: 0 8px;
}
.p-release-card:not(:first-child) {
  margin-top: 3rem;
}
.p-release-card__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
     object-fit: cover;
  border-radius: 0 0 8px 8px;
}
.p-release-card__body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  display: -webkit-box;
  display: flex;
          flex-direction: column;
          justify-content: space-between;
  padding: 0 1.2rem 2rem;
  border-radius: 8px 8px 0 0;
}
.p-release-card__tag {
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
          align-items: center;
          justify-content: center;
  width: 9.4rem;
  padding: 0.9rem 0;
  border-radius: 60px;
  background: -webkit-linear-gradient(20deg, #00377e 7.62%, #00b9ef 112.61%);
  background: linear-gradient(70deg, #00377e 7.62%, #00b9ef 112.61%);
  box-shadow: 0px 4px 16px 0px rgba(79, 92, 126, 0.25);
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
  font-family: "Marcellus", Meiryo, sans-serif;
  letter-spacing: 0.96px;
}
.p-release-card__title {
  margin-top: 0.8rem;
  color: #000;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 180%; /* 32.4px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.9px;
}
.p-release-card__txt {
  margin-top: 0.8rem;
  color: #000;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 180%; /* 28.8px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
}
.p-release-card__date {
  margin-top: 2.4rem;
  color: #595757;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 180%; /* 25.2px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.7px;
  text-align: right;
}
.p-release__paginationList {
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
          align-items: center;
  margin-top: 2.4rem;
  gap: 0 12px;
}
.p-release__paginationItem {
  width: 13.1147540984%;
}
.p-release__paginationLink {
  display: block;
  position: relative;
  width: 100%;
  color: #00377e;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: normal;
  font-family: "Marcellus", Meiryo, sans-serif;
  text-align: center;
  opacity: 0.2;
}
.p-release__paginationLink.-current {
  opacity: 1;
}
.p-release__paginationLink::before {
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00377e;
  content: "";
          clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
}

/*==============================================================
ストライプバーのCSSカスタマイズ
==============================================================*/
.p-release__bars {
  -webkit-box-pack: right;
  display: -webkit-box;
  display: flex;
  position: relative;
          justify-content: right;
  width: 100%;
  height: 100vh;
  gap: 15px;
}

.p-release__barsContainer {
  -webkit-box-pack: right;
  display: -webkit-box;
  display: flex;
          justify-content: right;
  width: 100%;
}

.p-release__bar {
  -webkit-transition: -webkit-transform 0.1s linear;
  z-index: -1;
  width: 100%;
  max-width: 150px;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear; /* アニメーションを滑らかに */
  will-change: transform; /* アニメーション対象をブラウザに通知 */
}

.p-release__bar--2 {
  -webkit-transform: skewX(-15deg) rotate(180deg);
  -webkit-transform-origin: top;
  z-index: -2;
  position: absolute;
  top: -263px;
  right: 155px;
  width: 4.8rem;
  height: 203px;
  margin-top: 600px;
  transform: skewX(-15deg) rotate(180deg);
          transform-origin: top;
  background: #fff;
}

.p-release__bar--3 {
  -webkit-transform: skewX(-15deg) rotate(180deg);
  -webkit-transform-origin: top;
  z-index: -1;
  position: absolute;
  top: -249px;
  right: 94px;
  width: 4.8rem;
  height: 285px; /* 初期状態で高さを0に設定 */
  margin-top: 600px;
  transform: skewX(-15deg) rotate(180deg);
          transform-origin: top;
  background: -webkit-linear-gradient(bottom, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
  background: linear-gradient(0deg, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
}

.p-release__bar--1 {
  -webkit-transform: skewX(-15deg);
  -webkit-transform-origin: top;
  position: absolute;
  top: -14%;
  right: 102px;
  width: 4.8rem;
  height: 354px;
  transform: skewX(-15deg);
          transform-origin: top; /* アニメーションの基点を上に設定 */
  background: -webkit-linear-gradient(top, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  background: linear-gradient(180deg, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  opacity: 0.5;
}

.p-release__bar--4 {
  -webkit-transform: skewX(-15deg);
  position: absolute;
  top: -14px;
  right: -43px;
  width: 4.8rem;
  height: 200px;
  margin-bottom: 300px;
  transform: skewX(-15deg);
  background: #fff;
}

.simplebar-scrollbar {
  height: 6px;
}

/* release-detail
----------------------------------------- */
.p-release-detail {
  border-radius: 16px 16px 0 0;
  background: #fff;
}
.p-release-detail .l-inner {
  padding: 8rem 3.5rem 3.3rem;
}
.p-release-detail__head {
  display: -webkit-box;
  display: flex;
  gap: 0 32px;
}
.p-release-detail__tag {
  color: #000;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 100%; /* 14px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.7px;
}
.p-release-detail__date {
  color: #000;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 100%; /* 14px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.7px;
}
.p-release-detail__title {
  margin-top: 4rem;
  color: #000;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 180%; /* 43.2px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 1.2px;
}
.p-release-detail__contentWrapper {
  margin-top: 4rem;
}
.p-release-detail__top {
  padding: 4rem 0;
  border-top: 1px solid #ebedf2;
}
.p-release-detail__postTitle {
  color: #000;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 180%; /* 32.4px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.9px;
}
.p-release-detail__postText {
  color: #000;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 180%; /* 28.8px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
}
.p-release-detail__img {
  margin-top: 2.4rem;
}
.p-release-detail__img img {
  -o-object-fit: cover;
  width: 100%;
  height: auto;
     object-fit: cover;
  border-radius: 8px;
}
.p-release-detail__middle {
  padding: 4rem 0;
  border-top: 1px solid #ebedf2;
}
.p-release-detail__postBox {
  margin-top: 2.6rem;
}
.p-release-detail__postSubTitle {
  position: relative;
  padding-left: 4.4rem;
  color: #000;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 180%; /* 28.8px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
}
.p-release-detail__postSubTitle::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.4rem;
  height: 1px;
          transform: translateY(-50%);
  background: #000;
  content: "";
}
.p-release-detail__postSubTitle::after {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 2rem;
  width: 6px;
  height: 6px;
          transform: translateY(-50%);
  border-radius: 50%;
  background: #000;
  content: "";
}
.p-release-detail__bottom {
  padding: 4rem 0;
  border-top: 1px solid #ebedf2;
}
.p-release-detail__url {
  padding: 4rem 0;
  border-top: 1px solid #ebedf2;
  border-bottom: 1px solid #ebedf2;
}
.p-release-detail__urlLink {
  display: block;
  margin-top: 2.1rem;
  color: #000;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 180%; /* 28.8px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
}
.p-release-detail__back {
  display: block;
  position: relative;
  margin-top: 4rem;
  padding-left: 4.4rem;
  color: #000;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 180%; /* 28.8px */
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  letter-spacing: 0.8px;
}
.p-release-detail__back::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.4rem;
  height: 1px;
          transform: translateY(-50%);
  background: #000;
  content: "";
}
.p-release-detail__back::after {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
          transform: translateY(-50%);
  border-radius: 50%;
  background: #000;
  content: "";
}

/*==============================================================
お問い合わせセクションのカスタマイズ
==============================================================*/
.p-detail-contact {
  background: #fff;
}
.p-detail-contact__box {
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 40px 16px;
  border-radius: 16px;
          backdrop-filter: blur(10px);
  background: -webkit-linear-gradient(345deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.08) 98.38%);
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.08) 98.38%);
  box-shadow: 4px 4px 40px 0px rgba(0, 0, 0, 0.1215686275);
}
.p-detail-contact__text {
  margin-top: 3.2rem;
  line-height: 28.8px;
  text-align: center;
}

/*==============================================================
お問い合わせセクションのカスタマイズ
==============================================================*/
.p-detail-contact .l-inner::before {
  -webkit-transform: skewX(-15deg) rotate(360deg);
  position: absolute;
  position: absolute;
  right: 22px;
  bottom: 78px;
  width: 60px;
  height: 377px;
          transform: skewX(-15deg) rotate(360deg);
  background: -webkit-linear-gradient(top, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  background: linear-gradient(180deg, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  content: "";
  opacity: 0.4;
}

.p-detail-contact .l-inner::after {
  -webkit-transform: skewX(-15deg) rotate(180deg);
  z-index: 1;
  position: absolute;
  top: 120px;
  left: 74px;
  width: 58px;
  height: 200px;
          transform: skewX(-15deg) rotate(180deg);
  background: -webkit-linear-gradient(top, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  background: linear-gradient(180deg, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  content: "";
  opacity: 0.4;
}

.p-detail-contact__box::before {
  -webkit-transform: skewX(-15deg) rotate(180deg);
  position: absolute;
  position: absolute;
  top: -49px;
  left: -56px;
  width: 69px;
  height: 300px;
          transform: skewX(-15deg) rotate(180deg);
  background: -webkit-linear-gradient(bottom, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
  background: linear-gradient(0deg, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
  content: "";
}

/* privacy
----------------------------------------- */
.p-privacy {
  background: #fff;
  text-align: justify;
}
.p-privacy h2 {
  margin: 50px 0 20px 0;
  font-size: 20px;
}
.p-privacy p {
  font-size: 16px;
  line-height: 1.8;
}
.p-privacy ul {
  margin-top: 20px;
}
.p-privacy ul li {
  font-size: 16px;
  line-height: 1.8;
  list-style: outside decimal;
  list-style-position: inside;
}
.p-privacy ul li + li {
  margin-top: 10px;
}
.p-privacy ul li::marker {
  color: #0b275e;
  font-weight: 700;
  font-size: 18px;
}

/*==============================================================
ストライプバーのCSSカスタマイズ
==============================================================*/
.p-privacy__bars {
  -webkit-box-pack: right;
  display: -webkit-box;
  display: flex;
  position: relative;
          justify-content: right;
  width: 100%;
  height: 100vh;
  gap: 15px;
}

.p-privacy__barsContainer {
  -webkit-box-pack: right;
  display: -webkit-box;
  display: flex;
          justify-content: right;
  width: 100%;
}

.p-privacy__bar {
  -webkit-transition: -webkit-transform 0.1s linear;
  z-index: -1;
  width: 100%;
  max-width: 150px;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear; /* アニメーションを滑らかに */
  will-change: transform; /* アニメーション対象をブラウザに通知 */
}

.p-privacy__bar--2 {
  -webkit-transform: skewX(-15deg) rotate(180deg);
  -webkit-transform-origin: top;
  z-index: -2;
  position: absolute;
  top: -263px;
  right: 155px;
  width: 4.8rem;
  height: 203px;
  margin-top: 600px;
  transform: skewX(-15deg) rotate(180deg);
          transform-origin: top;
  background: #fff;
}

.p-privacy__bar--3 {
  -webkit-transform: skewX(-15deg) rotate(180deg);
  -webkit-transform-origin: top;
  z-index: -1;
  position: absolute;
  top: -249px;
  right: 94px;
  width: 4.8rem;
  height: 285px;
  margin-top: 600px;
  transform: skewX(-15deg) rotate(180deg);
          transform-origin: top;
  background: -webkit-linear-gradient(bottom, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
  background: linear-gradient(0deg, #00b9ef 0%, rgba(0, 185, 239, 0) 100%);
}

.p-privacy__bar--1 {
  -webkit-transform: skewX(-15deg);
  -webkit-transform-origin: top;
  position: absolute;
  top: -14%;
  right: 102px;
  width: 4.8rem;
  height: 354px;
  transform: skewX(-15deg);
          transform-origin: top; /* アニメーションの基点を上に設定 */
  background: -webkit-linear-gradient(top, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  background: linear-gradient(180deg, rgba(0, 55, 126, 0) 0%, #00377e 100%);
  opacity: 0.5;
}

.p-privacy__bar--4 {
  -webkit-transform: skewX(-15deg);
  position: absolute;
  top: -14px;
  right: -43px;
  width: 4.8rem;
  height: 200px;
  margin-bottom: 300px;
  transform: skewX(-15deg);
  background: #fff;
}

/* u-font
----------------------------------------- */
.u-font14 {
  font-size: 1.4rem;
}

.u-font16 {
  font-size: 1.6rem;
}

.u-font18 {
  font-size: 1.8rem;
}

.u-font20 {
  font-size: 2rem;
}

.u-font22 {
  font-size: 2.2rem;
}

.u-font24 {
  font-size: 2.4rem;
}

.u-font28 {
  font-size: 2.8rem;
}

.u-font32 {
  font-size: 3.2rem;
}

.u-font40 {
  font-size: 4rem;
}

/* u-hover
----------------------------------------- */
.u-hover {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.u-hover:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.6;
  transition: opacity 0.5s;
}

/* u-lh
----------------------------------------- */
.u-lh10 {
  line-height: 1;
}

.u-lh13 {
  line-height: 1.3;
}

.u-lh15 {
  line-height: 1.5;
}

.u-lh16 {
  line-height: 1.6;
}

.u-lh20 {
  line-height: 2;
}

/* u-ls
----------------------------------------- */
.u-ls05 {
  letter-spacing: 0.05em;
}

.u-ls10 {
  letter-spacing: 0.1em;
}

.u-ls15 {
  letter-spacing: 0.15em;
}

.u-ls20 {
  letter-spacing: 0.2em;
}

/* u-mt
----------------------------------------- */
.u-mt10 {
  margin-top: 10px !important;
  margin-top: 1rem !important;
}

.u-mt20 {
  margin-top: 20px !important;
  margin-top: 2rem !important;
}

.u-mt30 {
  margin-top: 30px !important;
  margin-top: 3rem !important;
}

.u-mt40 {
  margin-top: 40px !important;
  margin-top: 4rem !important;
}

.u-mt50 {
  margin-top: 50px !important;
  margin-top: 5rem !important;
}

.u-mt60 {
  margin-top: 60px !important;
  margin-top: 6rem !important;
}

.u-mt70 {
  margin-top: 70px !important;
  margin-top: 7rem !important;
}

.u-mt80 {
  margin-top: 80px !important;
  margin-top: 8rem !important;
}

.u-mt90 {
  margin-top: 90px !important;
  margin-top: 9rem !important;
}

.u-mt100 {
  margin-top: 100px !important;
  margin-top: 10rem !important;
}

.u-mt110 {
  margin-top: 110px !important;
  margin-top: 11rem !important;
}

.u-mt120 {
  margin-top: 120px !important;
  margin-top: 12rem !important;
}

.u-mt130 {
  margin-top: 130px !important;
  margin-top: 13rem !important;
}

.u-mt140 {
  margin-top: 140px !important;
  margin-top: 14rem !important;
}

.u-mt150 {
  margin-top: 150px !important;
  margin-top: 15rem !important;
}

.u-mt160 {
  margin-top: 160px !important;
  margin-top: 16rem !important;
}

.u-mt170 {
  margin-top: 170px !important;
  margin-top: 17rem !important;
}

.u-mt180 {
  margin-top: 180px !important;
  margin-top: 18rem !important;
}

.u-mt190 {
  margin-top: 190px !important;
  margin-top: 19rem !important;
}

.u-mt200 {
  margin-top: 200px !important;
  margin-top: 20rem !important;
}
.u-mt16 {
  margin-top: 1.6rem;
}

.u-mt24 {
  margin-top: 2.4rem;
}

/* u-pc
----------------------------------------- */

/* u-shadow
----------------------------------------- */
.u-shadow {
  box-shadow: 0 0 13px rgba(255, 0, 0, 0.5);
}

/* u-sp
----------------------------------------- */
.u-sp {
  display: none;
}

/* u-text
----------------------------------------- */
.u-textLeft {
  text-align: Left !important;
}

.u-textCenter {
  text-align: Center !important;
}

.u-textRight {
  text-align: Right !important;
}

.u-textJustify {
  text-align: Justify !important;
}
/* u-w
----------------------------------------- */
.u-w300 {
  font-weight: 300;
}

.u-w400 {
  font-weight: 400;
}

.u-w500 {
  font-weight: 500;
}

.u-w600 {
  font-weight: 600;
}

.u-w700 {
  font-weight: 700;
}

.u-w900 {
  font-weight: 900;
}

/* u-lh
----------------------------------------- */
.u-ml50 {
  margin-left: 50px;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  backface-visibility: hidden;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
          align-items: center;
          justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  margin: 0;
  line-height: 1;
  list-style-type: none;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  visibility: hidden;
  position: relative;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  backface-visibility: hidden;
  list-style-type: none !important;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s linear infinite;
  contain: strict;
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid #999;
  border-radius: 50%;
  border-left-color: transparent;
          animation: splide-loading 1s linear infinite;
}

.splide__sr {
  clip: rect(0 0 0 0);
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  z-index: 0;
  position: relative;
  overflow: hidden;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list {
  display: block;
}

.splide__track--fade > .splide__list > .splide__slide {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  z-index: 1;
  position: relative;
  opacity: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-transform: translateY(-50%);
  display: -webkit-box;
  display: flex;
  z-index: 1;
  position: absolute;
  top: 50%;
          align-items: center;
          justify-content: center;
  width: 2em;
  height: 2em;
  padding: 0;
          transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  opacity: 0.7;
}

.splide__arrow svg {
  fill: #000;
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
}

.splide__pagination__page {
  -webkit-transition: -webkit-transform 0.2s linear;
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  margin: 3px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ccc;
  opacity: 0.7;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.splide__pagination__page.is-active {
  -webkit-transform: scale(1.4);
  z-index: 1;
          transform: scale(1.4);
  background: #fff;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  height: 3px;
  background: #ccc;
}

.splide__slide {
  -webkit-tap-highlight-color: transparent;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  right: 1em;
  left: auto;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  right: auto;
  left: 1em;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  -webkit-transform: translate(-50%);
  left: 50%;
          transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.splide__pagination--ttb {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  top: 0;
  right: 0.5em;
  bottom: 0;
  left: auto;
          flex-direction: column;
  padding: 1em 0;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  -webkit-transform: translate(0, -50%);
  display: block;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  border: none;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  font-size: 20px;
  line-height: 1;
  font-family: "./slick-carousel/slick";
  opacity: 0.75;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  display: block;
  position: absolute;
  bottom: -25px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  color: black;
  font-size: 6px;
  line-height: 20px;
  font-family: "./slick-carousel/slick";
  text-align: center;
  opacity: 0.25;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
  float: left;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
 * Swiper 5.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 16, 2020
 */
@font-face {
  font-style: normal;
  font-weight: 400;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-family: swiper-icons;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  z-index: 1;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.swiper-wrapper {
  -webkit-transition-property: -webkit-transform;
  box-sizing: content-box;
  display: -webkit-box;
  display: flex;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  margin: 0 auto;
          transition-timing-function: ease-out;
}

.swiper-slide {
  -webkit-transition-property: -webkit-transform;
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-transition-property: height, -webkit-transform;
          align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  -ms-overflow-style: none;
  overflow: auto;
  scrollbar-width: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -webkit-box;
  display: flex;
  z-index: 10;
  position: absolute;
  top: 50%;
          align-items: center;
          justify-content: center;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-variant: initial;
  font-size: var(--swiper-navigation-size);
  line-height: 1;
  font-family: swiper-icons;
  letter-spacing: 0;
  text-transform: none !important;
  text-transform: none;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  right: auto;
  left: 10px;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
  --swiper-navigation-color:#000000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  -webkit-transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 10;
  position: absolute;
          transform: translate3d(0, 0, 0);
  text-align: center;
  transition: 0.3s opacity;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  position: relative;
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: 1;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  -webkit-transform: translate3d(0px, -50%, 0);
  top: 50%;
  right: 10px;
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: 6px 0;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  -webkit-transform: translateY(-50%);
  top: 50%;
  width: 8px;
          transform: translateY(-50%);
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  display: inline-block;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  -webkit-transform: translateX(-50%);
  left: 50%;
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform: scale(0);
  -webkit-transform-origin: left top;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
          transform: scale(0);
          transform-origin: left top;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  -ms-touch-action: none;
  position: relative;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  z-index: 50;
  position: absolute;
  bottom: 3px;
  left: 1%;
  width: 98%;
  height: 5px;
}

.swiper-container-vertical > .swiper-scrollbar {
  z-index: 50;
  position: absolute;
  top: 1%;
  right: 3px;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  -webkit-box-pack: center;
  -webkit-box-align: center;
  display: -webkit-box;
  display: flex;
          align-items: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  -o-object-fit: contain;
  max-width: 100%;
  max-height: 100%;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  -webkit-transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
          transform-origin: 50%;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  z-index: -1000;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  -webkit-transition-property: opacity;
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: 0 0;
  visibility: hidden;
  z-index: 1;
  width: 100%;
  height: 100%;
          transform-origin: 0 0;
  backface-visibility: hidden;
  pointer-events: none;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
  visibility: visible;
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
  -webkit-backface-visibility: hidden;
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  -webkit-filter: blur(50px);
  z-index: 0;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  filter: blur(50px);
  opacity: 0.6;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  -webkit-backface-visibility: hidden;
  z-index: 1;
  backface-visibility: hidden;
  pointer-events: none;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
  -webkit-backface-visibility: hidden;
  z-index: 0;
  backface-visibility: hidden;
}

@media screen and (min-width: 769px) {
  .c-modal__container {
    width: 50rem;
  }
  .c-headline {
    padding-left: 1.6rem;
    font-size: 1.6rem;
  }
  body.service .c-breadcrumbs {
    margin: 0 0 -6rem 0;
  }
  body.contact .c-breadcrumbs .c-breadcrumbs__list .c-breadcrumbs__item:last-child .c-breadcrumbs__link {
    letter-spacing: 0.15rem;
  }
  .c-breadcrumbs {
    margin-top: 4.4rem;
  }
  .c-breadcrumbs .l-container {
    max-width: 100%;
    padding: 0 4rem;
  }
  *:focus-visible {
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
  }
  .l-container {
    padding: 0 8rem;
  }
  .l-footer__container {
    -webkit-box-pack: center;
    -webkit-box-align: top;
    display: -webkit-box;
    display: flex;
            align-items: top;
            justify-content: center;
    max-width: initial;
    gap: 150px;
  }
  .l-footer__nav {
    margin-top: 0;
  }
  .l-hamburger__toggle {
    display: none;
  }
  .l-header {
    height: 8rem;
  }
  .l-header__inner {
    -webkit-box-align: center;
            align-items: center;
    justify-content: space-around;
    padding: 0 3rem;
  }
  .l-menu {
    -webkit-transform: translateX(0);
    position: initial;
    height: 100%;
    padding: 0;
    overflow-y: inherit;
            transform: translateX(0);
    background-color: rgba(255, 255, 255, 0);
    opacity: 1;
  }
  .l-menu__nav {
    -webkit-transform: translateY(0);
    position: initial;
    width: 100%;
    height: 100%;
    padding-top: 0;
            transform: translateY(0);
    border-top: none;
  }
  .l-menu__logo {
    display: none;
  }
  .l-menu__list {
    -webkit-box-pack: end;
    -webkit-box-align: center;
    display: -webkit-box;
    display: flex;
            align-items: center;
            justify-content: flex-end;
    height: 100%;
    margin-top: 0;
  }
  .l-menu__item:not(:first-child) {
    margin-top: 0;
  }
  .l-menu__item:not(:last-child) {
    margin: 0 2.4rem 0 0;
  }
  .l-menu__link {
    color: #00377e;
    font-style: normal;
    font-size: 1.8rem;
    letter-spacing: 1.44px;
  }
  .l-menu__link.-contact {
    padding: 1.1rem 4rem;
    border-radius: 4px;
    background: -webkit-linear-gradient(left, rgb(0, 185, 239) 51%, rgb(0, 212, 255) 100%);
    background: linear-gradient(90deg, rgb(0, 185, 239) 51%, rgb(0, 212, 255) 100%);
    background-blend-mode: lighten, normal;
    color: #fff;
    text-align: center;
  }
  .l-menu__closeBox {
    display: none;
  }
  body.subpage .l-main .l-section__title {
    font-size: 6.4rem;
    letter-spacing: 4.6px;
  }
  body.subpage .l-main .l-section__subTitle {
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 1.72px;
  }
  .l-step__line {
    width: 9px;
  }
  .p-home-mv__inner {
    margin-top: -8rem;
  }
  .p-home-mv__box {
    top: 50%;
    left: 7.3%;
  }
  .p-home-mv__head {
    font-size: 1.8rem;
  }
  .p-home-mv__head::before {
    left: 11%;
  }
  .p-home-mv__catch {
    margin-top: 2rem;
    font-size: 6rem;
    letter-spacing: 4px;
  }
  .p-home-mv__bottom {
    margin-top: 3rem;
    letter-spacing: 2px;
  }
  .p-about-modal__inner {
    width: 550px;
  }
  .p-home-about__card {
    width: 550px;
  }
  .p-home-strategy__bottomImg img {
    border-radius: 16px;
  }
  .p-home-contact .l-inner::after {
    height: 16.5rem;
  }
  .p-home-contact__box::before {
    height: 40rem;
  }
  .p-release__list {
    overflow-x: hidden;
  }
  .p-release__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: flex;
            flex-direction: column;
    margin-top: 15.7rem;
    gap: 40px 0;
  }
  .p-release__contentBottom {
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
            justify-content: space-between;
    margin-top: 0;
    gap: 20px;
  }
  .p-release-card {
    width: 48%;
    border-radius: 12px;
  }
  .p-release-card.-recommend a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: flex;
            flex-direction: row;
    width: 100%;
  }
  .p-release-card.-recommend .p-release-card__img {
    -webkit-box-flex: 1;
            flex: 1;
    border-radius: 8px 0 0 8px;
  }
  .p-release-card.-recommend .p-release-card__body {
    width: 52%;
    padding: 2.2rem 4.3rem 3.2rem 3.8rem;
    border-radius: 0 8px 8px 0;
  }
  .p-release-card:not(:first-child) {
    margin-top: 0;
  }
  .p-release-card__txt {
    margin-top: 2.2rem;
  }
  .p-release__paginationList {
    margin-top: 8.4rem;
    padding-left: 0.5rem;
  }
  .p-release__paginationItem {
    width: 6rem;
  }
  .p-detail-contact .l-inner::after {
    height: 16.5rem;
  }
  .p-detail-contact__box::before {
    height: 40rem;
  }
}

@media screen and (max-width: 767px) {
  .c-column2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 10;
  }
  .c-column2--gap60 {
    gap: 10;
  }
  .c-column2--gapSp20 {
    gap: 10;
  }
  .c-column3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-column4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-column4--sp2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .u-mtSp10 {
    margin-top: 10px !important;
    margin-top: 1rem !important;
  }
  .u-mtSp20 {
    margin-top: 20px !important;
    margin-top: 2rem !important;
  }
  .u-mtSp30 {
    margin-top: 30px !important;
    margin-top: 3rem !important;
  }
  .u-mtSp40 {
    margin-top: 40px !important;
    margin-top: 4rem !important;
  }
  .u-mtSp50 {
    margin-top: 50px !important;
    margin-top: 5rem !important;
  }
  .u-mtSp60 {
    margin-top: 60px !important;
    margin-top: 6rem !important;
  }
  .u-mtSp70 {
    margin-top: 70px !important;
    margin-top: 7rem !important;
  }
  .u-mtSp80 {
    margin-top: 80px !important;
    margin-top: 8rem !important;
  }
  .u-mtSp90 {
    margin-top: 90px !important;
    margin-top: 9rem !important;
  }
  .u-mtSp100 {
    margin-top: 100px !important;
    margin-top: 10rem !important;
  }
  .u-mtSp110 {
    margin-top: 110px !important;
    margin-top: 11rem !important;
  }
  .u-mtSp120 {
    margin-top: 120px !important;
    margin-top: 12rem !important;
  }
  .u-mtSp130 {
    margin-top: 130px !important;
    margin-top: 13rem !important;
  }
  .u-mtSp140 {
    margin-top: 140px !important;
    margin-top: 14rem !important;
  }
  .u-mtSp150 {
    margin-top: 150px !important;
    margin-top: 15rem !important;
  }
  .u-mtSp160 {
    margin-top: 160px !important;
    margin-top: 16rem !important;
  }
  .u-mtSp170 {
    margin-top: 170px !important;
    margin-top: 17rem !important;
  }
  .u-mtSp180 {
    margin-top: 180px !important;
    margin-top: 18rem !important;
  }
  .u-mtSp190 {
    margin-top: 190px !important;
    margin-top: 19rem !important;
  }
  .u-mtSp200 {
    margin-top: 200px !important;
    margin-top: 20rem !important;
  }
  .u-textMdLeft {
    text-align: Left !important;
  }
  .u-textMdCenter {
    text-align: Center !important;
  }
  .u-textMdRight {
    text-align: Right !important;
  }
  .u-textMdJustify {
    text-align: Justify !important;
  }
}

@media screen and (min-width: 768px) {
  .c-hoverUnderline:hover::after {
    opacity: 1;
  }
  .c-imgHover:hover img:nth-of-type(1) {
    -webkit-transition: 0.5s opacity;
    opacity: 0;
    transition: 0.5s opacity;
  }
  .c-imgHover:hover img:nth-of-type(2) {
    -webkit-transition: 0.5s opacity;
    opacity: 1;
    transition: 0.5s opacity;
  }
  .c-underBar:hover:before {
    -webkit-transition: 0.5s all;
    opacity: 0;
    transition: 0.5s all;
  }
}

@media screen and (min-width: 1025px) {
  .c-button.-profile {
    margin-top: 9.2rem;
  }
  .c-button.-release {
    margin: 8rem 0 0 auto;
  }
  .c-button.-contact {
    margin-top: 4.3rem;
  }
  .l-footer__container {
    -webkit-box-pack: start;
            justify-content: flex-start;
    max-width: 1440px;
    gap: 0 345px;
  }
  .l-footer__box {
    width: 27.5362318841%;
  }
  .l-footer__logo {
    width: 100%;
  }
  .l-footer__copyright {
    margin-top: 7rem;
    padding-left: 0.4rem;
    letter-spacing: 1px;
  }
  .l-footer__nav {
    padding-top: 2.2rem;
  }
  .l-footer__list {
    -webkit-column-gap: 119px;
       -moz-column-gap: 119px;
            column-gap: 119px;
  }
  .l-footer__link {
    letter-spacing: 1.6px;
  }
  .l-header__inner {
    padding: 0 5.3rem;
  }
  .l-header__logo {
    width: 185px;
  }
  .l-inner {
    margin: 0 auto;
    padding: 0 10rem;
  }
  .l-inner.-about {
    padding: 10rem 10rem 1.2rem;
  }
  .l-inner.-strategy {
    padding-bottom: 212px;
  }
  .l-inner.-profile {
    padding-top: 10.6rem;
    padding-right: 10rem;
    padding-bottom: 12rem;
    padding-left: 10rem;
  }
  .l-inner.-projects {
    padding-top: 13rem;
    padding-bottom: 12rem;
  }
  .l-inner.-release {
    padding: 14rem 10rem 0 10rem;
  }
  .l-inner.-contact {
    padding-top: 34rem;
    padding-bottom: 20rem;
  }
  .l-inner.-privacy {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .l-inner.-footer {
    padding-top: 8rem;
    padding-right: 20rem;
    padding-left: 20rem;
  }
  .l-menu__item {
    border: none;
  }
  .l-menu__item:not(:last-child) {
    margin: 0 3.5rem 0 0;
  }
  .l-section__title--jp {
    font-size: 1.8rem;
    letter-spacing: 0.9px;
  }
  .l-section__title--jp.-strategy {
    margin-top: 3.2rem;
    font-size: 1.6rem;
  }
  .l-section__title--jp.-alliance {
    margin-top: 3.2rem;
    font-size: 1.6rem;
  }
  .l-section__title--jp.-profile {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
  .l-section__title--jp.-projects {
    margin-top: 3.6rem;
    text-align: left;
  }
  .l-section__title--jp.-release {
    text-align: left;
  }
  .l-section__title--jp.-contact {
    margin-top: 2.6rem;
    font-size: 2rem;
  }
  .l-section__title--en {
    font-size: 8rem;
  }
  .l-section__title--en.-about {
    padding-left: 1.3rem;
    font-size: 6rem;
    letter-spacing: 5px;
  }
  .l-section__title--en.-strategy {
    font-size: 6rem;
    letter-spacing: 3px;
  }
  .l-section__title--en.-profile {
    font-size: 6rem;
    letter-spacing: 3.4px;
  }
  .l-section__title--en.-projects {
    letter-spacing: 6.4px;
    text-align: left;
  }
  .l-section__title--en.-release {
    letter-spacing: 6.4px;
    text-align: left;
  }
  .l-section__title--en.-contact {
    font-size: 6rem;
    letter-spacing: 3.4px;
  }
  body.subpage .l-main .l-section__box {
    top: 56.4%;
    left: 7.4%;
  }
  body.subpage .l-main .l-section__box.-contact {
    top: 48.5%;
    left: 7.4%;
  }
  body.subpage .l-main .l-section__subTitle::before {
    top: 51%;
    left: 49.2%;
    width: 9.1rem;
  }
  .p-hero.-contact {
    height: 328px;
    margin-top: 8rem;
  }
  .l-form__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 77px 300px 10rem;
  }
  .l-form__inner.-thanks {
    padding: 102px 0 138px;
  }
  .l-form__item:not(:first-child) {
    margin-top: 26px;
  }
  .l-form__dd input {
    height: 60px;
    padding: 0 2.3rem;
  }
  .l-form__dd textarea {
    height: 320px;
    padding: 2.1rem 2.3rem;
  }
  .l-form__privacy {
    margin: 2.1rem auto 0;
  }
  .l-form__checkBox {
    left: 2px;
  }
  .l-form__privacyText {
    padding-left: 30px;
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
  .l-form__button.-submit {
    margin-top: 36px;
  }
  .l-form__button input {
    padding: 1.4rem 0;
  }
  .l-form__back {
    padding: 1.4rem 0;
    letter-spacing: 2px;
  }
  .l-form__consent {
    letter-spacing: 0.8px;
  }
  .l-form__message {
    letter-spacing: 0.8px;
  }
  .l-step {
    -webkit-box-pack: end;
    -webkit-transform: translateY(-50%);
    display: -webkit-box;
    display: flex;
    top: 47.6%;
    right: 7.3%;
            justify-content: flex-end;
            transform: translateY(-50%);
  }
  .l-step__steps {
    gap: 40px;
  }
  .l-step__step {
    width: 140px;
    height: 140px;
  }
  .l-step__line {
    width: 40px;
  }
  .l-step__line:nth-child(2) {
    left: 28%;
  }
  .l-step__line:nth-child(4) {
    left: 64%;
  }
  .l-step__step-circle {
    gap: 8px 0;
  }
  .l-step__step-number {
    font-size: 1.4rem;
  }
  .l-step__step-title {
    height: 46px;
    font-size: 1.6rem;
  }
  .p-home-mv__percentage {
    top: 50%;
  }
  .loading__bar--2 {
    top: 108px;
    right: 480px;
    width: 11.1rem;
    height: 376px;
    max-height: 376px;
  }
  .loading__bar--3 {
    top: 135px;
    right: 344px;
    width: 11.1rem;
    height: 590px;
    max-height: 590px;
  }
  .loading__bar--1 {
    top: 125px;
    right: 479px;
    width: 111px;
    height: 468px;
    max-height: 468px;
  }
  .loading__bar--4 {
    right: 65px;
    width: 11.1rem;
    height: 396px;
    max-height: 396px;
  }
  .p-home-about__bg {
    height: 414px;
  }
  .p-home-about__cardTitle {
    font-size: 3.2rem;
  }
  .p-home-about__cardHeadBox {
    padding-right: 8rem;
    padding-left: 8rem;
  }
  .p-home-about__cardHeadBox.-solution {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
            flex-direction: column;
            align-items: flex-start;
  }
  .p-home-about__cardHeaderBoxInner {
    -webkit-box-align: center;
    display: -webkit-box;
    display: flex;
            align-items: center;
  }
  .p-home-about__cardHead {
    font-size: 2.8rem;
    letter-spacing: 2.2px;
  }
  .p-home-about__cardIntro {
    margin-top: 0;
    margin-left: 5px;
    font-size: 2rem;
    letter-spacing: 2.2px;
  }
  .p-home-about__text {
    margin-top: 1.8rem;
    line-height: 35.2px;
    letter-spacing: 0.8px;
  }
  .p-home-about__moreBox {
    right: 40px;
    bottom: 42px;
  }
  .p-home-about__more {
    letter-spacing: 0.7px;
  }
  .p-about-modal__inner {
    width: 845px;
    height: 712px;
    padding: 44px;
  }
  .p-about-modal__card.-vision::before {
    top: -70px;
    width: 770px;
    height: 100%;
  }
  .p-about-modal__card.-mission::before {
    top: -10px;
    width: 1014px;
    height: 100%;
  }
  .p-about-modal__card.-solution::before {
    top: 80px;
    width: 386px;
    height: 380px;
  }
  .p-about-modal__cardTitle {
    font-size: 32px;
  }
  .p-about-modal__bg {
    height: 414px;
  }
  .p-about-modal__cardHeadBox {
    padding-right: 8rem;
    padding-left: 8rem;
  }
  .p-about-modal__cardHeaderBoxInner {
    -webkit-box-align: center;
    display: -webkit-box;
    display: flex;
            align-items: center;
  }
  .p-about-modal__cardHead {
    font-size: 28px;
    letter-spacing: 2.2px;
  }
  .p-about-modal__cardIntro {
    margin-top: 0;
    margin-left: 5px;
    font-size: 2rem;
    letter-spacing: 2.2px;
  }
  .p-about-modal__text {
    margin-top: 18px;
    line-height: 35.2px;
    letter-spacing: 0.8px;
  }
  .p-about-modal__moreBox {
    right: 40px;
    bottom: 42px;
  }
  .p-about-modal__more {
    letter-spacing: 0.7px;
  }
  .p-home-about__card {
    top: calc(50% - 356px); /* 712pxのカード高さの半分を引く */
    width: 845px;
    max-width: 845px;
    height: 712px;
    margin: 0 auto;
    padding: 4rem 4.4rem;
  }
  .p-home-about__card.-vision::before {
    top: -70px;
    width: 770px;
    height: 100%;
  }
  .p-home-about__card.-mission::before {
    top: -10px;
    width: 1014px;
    height: 100%;
  }
  .p-home-about__card.-solution::before {
    top: 80px;
    width: 386px;
    height: 380px;
  }
  .p-home-about__card.card1 {
    top: calc(50% - 356px); /* 712pxのカード高さの半分を引く */
  }
  .p-home-about__card.card2 {
    top: calc(50% - 287px); /* 712pxのカード高さの半分を引く */
  }
  .p-home-about__card.card3 {
    top: calc(50% - 218px); /* 712pxのカード高さの半分を引く */
  }
  .p-home-strategy__strategyWrapper {
    margin-top: 20rem;
  }
  .p-home-strategy__strategyInner {
    padding: 4.2rem 4rem 6rem 4rem;
  }
  .p-home-strategy__container {
    padding: 5.2rem 4rem 0;
  }
  .p-home-strategy___list {
    display: -webkit-box;
    display: flex;
  }
  .p-home-strategy__item {
    padding-top: 0;
  }
  .p-home-strategy__item:not(:last-child) {
    border-right: 1px solid rgba(11, 39, 94, 0.5);
    border-bottom: none;
  }
  .p-home-strategy__item:nth-of-type(1) {
    padding-right: 3.2rem;
  }
  .p-home-strategy__item:nth-of-type(2) {
    padding: 0 3.2rem;
  }
  .p-home-strategy__item:nth-of-type(3) {
    padding-left: 3.2rem;
  }
  .p-home-profile {
    border-radius: 40px;
  }
  .p-home-profile__content {
    display: -webkit-box;
    display: flex;
    margin-top: 11.4rem;
    gap: 0 32px;
  }
  .p-home-profile .l-inner::before {
    top: -60px;
    right: 244px;
    width: 122px;
    height: 300px;
  }
  .p-home-profile .l-inner::after {
    top: 85px;
    right: 130px;
    width: 122px;
    height: 217px;
  }
  .p-home-profile-card__img img {
    height: 100%;
  }
  .p-home-profile-card__img.-modal {
    width: 377px;
    height: 280px;
  }
  .p-home-profile-card__body.-modal {
    -webkit-box-flex: 1;
            flex: 1;
    height: 490px;
    margin-top: 0;
    margin-left: 6rem;
    padding-right: 64px;
    overflow-y: scroll;
  }
  .p-home-profile-card__body.-modal::-webkit-scrollbar {
    display: none;
  }
  .p-home-profile-card__title {
    font-size: 4.8rem;
    letter-spacing: 3.84px;
  }
  .p-home-profile-card__title.-modal {
    font-size: 36px;
    letter-spacing: 3px;
  }
  .p-home-profile-card__sub {
    margin-top: 2.4rem;
    font-size: 1.8rem;
    letter-spacing: 3.6px;
  }
  .p-home-profile-card__txt {
    max-height: 17.55em;
    margin-top: 4.8rem;
    font-size: 1.6rem;
  }
  .p-home-profile-card__txt.-modal {
    padding-right: 0;
  }
  .p-home-profile-card__txt.-modal span {
    font-size: 20px;
  }
  .p-home-profile-card:nth-of-type(2) {
    margin-top: 0;
  }
  .p-home-profile-card {
    -webkit-box-flex: 1;
            flex: 1;
  }
  .p-home-profile-card.-modal {
    display: -webkit-box;
    display: flex;
  }
  .modal-window {
    width: 966px;
    max-width: 1000px;
    height: 600px;
    padding: 60px 28px 60px 60px;
    overflow-y: initial;
  }
  .modal-close-btn {
    top: 19px;
    right: 24px;
  }
  .p-home-projects__head {
    -webkit-box-pack: center;
    display: -webkit-box;
    display: flex;
            justify-content: center;
  }
  .p-home-projects__titleBox {
    -webkit-box-flex: 1;
            flex: 1;
    margin-right: 9.5rem;
  }
  .p-home-projects__intro {
    width: 48.1989708405%;
  }
  .p-home-projects__content {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-top: 11.4rem;
  }
  .p-home-projects__content:nth-child(n+3) {
    margin-top: 3rem;
  }
  .p-home-projects-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: flex; /* カード全体をflexboxに */
            flex-direction: column; /* 縦に並べる */
            justify-content: space-between; /* 上部と下部の要素を適切に配置 */
    width: 48.627787307%;
    padding: 3.2rem 0.8rem 1.2rem 0.8rem;
    border-radius: 12px;
  }
  .p-home-projects-card__img {
    margin-top: 4rem;
  }
  .p-home-projects-card__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: end;
    display: -webkit-box;
    display: flex;
            flex-direction: column;
            justify-content: flex-end;
    padding: 0 22px;
  }
  .p-home-projects-card__tag {
    padding: 7px 12px 7px 32px;
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
  .p-home-projects-card__tag::before {
    left: 8%;
    width: 12px;
    height: 12px;
  }
  .p-home-projects-card__title {
    margin-top: 1.4rem;
    font-size: 2.4rem;
    line-height: 43.2px; /* 43.2px */
    letter-spacing: 2.4px;
  }
  .p-home-projects-card__txt {
    margin-top: 1.6rem;
    font-size: 1.8rem;
    line-height: 32.4px; /* 32.4px */
    letter-spacing: 0.9px;
  }
  .p-home-projects-card:nth-of-type(2) {
    margin-top: 0;
  }
  .p-home-projects-card:nth-child(n+3) {
    margin-top: 3.1rem;
  }
  .p-home-projects-card:nth-of-type(odd) {
    margin-right: 3.1rem;
  }
  .p-home-release__head {
    -webkit-box-flex: 1;
            flex: 1;
    padding: 0;
  }
  .p-home-release__wrapper {
    -webkit-box-pack: center;
    display: -webkit-box;
    display: flex;
            justify-content: center;
    gap: 0 96px;
  }
  .p-home-release__titleBox {
    -webkit-box-flex: 1;
            flex: 1;
  }
  .p-home-release__content {
    width: 65.7804459691%;
  }
  .p-home-release__list {
    margin-top: 0;
  }
  .p-home-release__item {
    padding: 4.5rem 2rem;
  }
  .p-home-release__link {
    -webkit-box-align: center;
    display: -webkit-box;
    display: flex;
            align-items: center;
    gap: 0 56px;
  }
  .p-home-release__text {
    margin-top: 0;
  }
  .p-home-release__titleBox::before {
    top: -155px;
    left: -89px;
    width: 155px;
    height: 381px;
  }
  .p-home-release__titleBox::after {
    top: -53px;
    left: 71px;
    width: 155px;
    height: 381px;
  }
  .p-home-contact__box {
    width: 99.9142367067%;
    padding: 6rem 10rem;
  }
  .p-home-contact__text {
    width: 69%;
    margin: 3.8rem auto 0;
    font-size: 1.8rem;
  }
  .p-home-contact .l-inner::before {
    right: 176px;
    bottom: 90px;
    width: 109px;
    height: 623px;
  }
  .p-home-contact .l-inner::after {
    top: 277px;
    left: 269px;
    width: 104px;
    height: 270px;
  }
  .p-home-contact__box::before {
    top: -91px;
    left: 6px;
    width: 118px;
    height: 500px;
  }
  .p-hero {
    height: 466px;
  }
  .p-release {
    background: #fff;
  }
  .p-release__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 9.2rem 10rem 13rem;
  }
  .p-release__list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
  .p-release__item {
    width: 17rem;
    max-width: 170px;
  }
  .p-release__link {
    padding: 1.8rem 0;
    font-size: 1.6rem;
  }
  .p-release__link.-current {
    font-size: 1.6rem;
  }
  .p-release__content {
    gap: 80px 0;
  }
  .p-release__contentBottom {
    gap: 32px;
  }
  .p-release-card {
    padding: 3.4rem 1rem 1rem;
  }
  .p-release-card__body {
    padding: 0 2.4rem 4.1rem;
  }
  .p-release-card__title {
    margin-top: 1.9rem;
    font-size: 2.4rem;
    letter-spacing: 2.7px;
  }
  .p-release__paginationLink::before {
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    bottom: -22px;
            clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
  }
  .p-release__bar--2 {
    top: -124px;
    right: 445px;
    width: 11.1rem;
    height: 24%;
  }
  .p-release__bar--3 {
    top: -106px;
    right: 304px;
    width: 11.1rem;
    height: 46%;
  }
  .p-release__bar--1 {
    top: -16px;
    right: 465px;
    width: 111px;
    height: 480px;
  }
  .p-release__bar--4 {
    right: 53px;
    width: 11.1rem;
    height: 54%;
  }
  .p-release-detail .l-inner {
    padding: 10rem 200px;
  }
  .p-release-detail__tag {
    font-size: 1.6rem;
  }
  .p-release-detail__date {
    font-size: 1.6rem;
  }
  .p-release-detail__title {
    margin-top: 4.5rem;
    font-size: 3.6rem;
  }
  .p-release-detail__contentWrapper {
    margin-top: 4.8rem;
  }
  .p-release-detail__top {
    padding: 5.4rem 0;
  }
  .p-release-detail__postTitle {
    font-size: 2.4rem;
    letter-spacing: 2.4px;
  }
  .p-release-detail__postTitle.-url {
    font-size: 1.6rem;
  }
  .p-release-detail__postText {
    margin-top: 2.3rem;
  }
  .p-release-detail__img img {
    height: 480px;
  }
  .p-release-detail__middle {
    padding: 4.8rem 0;
  }
  .p-release-detail__postSubTitle {
    letter-spacing: 2px;
  }
  .p-release-detail__bottom {
    padding: 4.8rem 0;
  }
  .p-release-detail__urlLink {
    letter-spacing: 1.6px;
  }
  .p-detail-contact__box {
    width: 99.9142367067%;
    padding: 6rem 10rem;
  }
  .p-detail-contact__text {
    width: 69%;
    margin: 3.8rem auto 0;
    font-size: 1.8rem;
  }
  .p-detail-contact .l-inner::before {
    right: 176px;
    bottom: 90px;
    width: 109px;
    height: 623px;
  }
  .p-detail-contact .l-inner::after {
    top: 277px;
    left: 269px;
    width: 104px;
    height: 270px;
  }
  .p-detail-contact__box::before {
    top: -91px;
    left: 6px;
    width: 118px;
    height: 500px;
  }
  .p-privacy h2 {
    font-size: 24px;
  }
  .p-privacy__bar--2 {
    top: -124px;
    right: 445px;
    width: 11.1rem;
    height: 24%;
  }
  .p-privacy__bar--3 {
    top: -106px;
    right: 304px;
    width: 11.1rem;
    height: 46%;
  }
  .p-privacy__bar--1 {
    top: -16px;
    right: 465px;
    width: 111px;
    height: 480px;
  }
  .p-privacy__bar--4 {
    right: 53px;
    width: 11.1rem;
    height: 54%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  html {
    font-size: 0.9765625vw;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
  html {
    font-size: 0.6944444444vw;
  }
}

@media screen and (max-width: 769px) {
  .u-pc {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .u-pc-l {
    display: none;
  }
}

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

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
/*# sourceMappingURL=style.css.map */