@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
span {
  line-height: inherit;
}
body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: #fff;
  color: #515151;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body:has(.header__hamburger.open) {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}
a {
  text-decoration: none;
}
a.underline {
  color: #34A3CD;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .3s;
}
@media (hover: hover) {
  a.underline:hover,
  a.underline:focus {
    color: #004D84;
  }
}
.josefin,
.josefin span {
  font-family: 'Josefin Sans', sans-serif;
}

@media all and (max-width: 767px) {
  * {
    line-height: 1.75em;
  }
}

@media all and (max-width: 370px) {
  body {
    font-size: 14px;
  }
}


/* アニメーション */
@keyframes handwriting {
  0% {
    fill: transparent;
    stroke-dashoffset: 2000;
  }
  60% {
    fill: transparent;
  }
  100% {
    fill: #fff;
    stroke-dashoffset: 0;
  }
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes scroll {
  0% {
    top: 100%;
    height: 0;
  }
  40% {
    top: 100%;
    height: 80px;
  }
  75%, 100% {
    top: calc(100% + 80px);
    height: 0;
  }
}
@keyframes fluidrotate {
  0% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}
@keyframes floating {
  0% {
    top: 0;
  }
  45% {
    top: -0.5em;
  }
  100% {
    top: 0;
  }
}


/* 共通部分 */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  padding: 20px 0;
  transition: background-color .3s;
}
.header--top {
  opacity: 0;
}
.header--top.show {
  animation: fadein 0.5s ease-in 2.5s forwards;
}
.in-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc(100% + 24px);
  mask-image:
    linear-gradient(to bottom, black calc(100% - 24px), transparent 100%);
  -webkit-mask-image:
    linear-gradient(to bottom, black calc(100% - 24px), transparent 100%);
  backdrop-filter: blur(5px);
  pointer-events: none;
}
.in-content::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc(100% + 32px);
  background-color: rgba(255, 255, 255, 0.5);
  filter: blur(12px);
}
header .inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1406px;
}
.header__logo {
  position: relative;
  z-index: 3;
  filter: brightness(1000%);
  transition: filter .3s;
}
.header__logo a {
  position: relative;
  display: inline-block;
  width: 70px;
  transition: transform .3s;
}
.in-content .header__logo {
  filter: brightness(100%);
}
.header__hamburger {
  display: none;
}
.header__link li {
  display: inline-block;
  margin-left: 3em;
}
.header__link a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.25em;
  transition: color .3s;
}
.in-content .header__link a {
  color: #34A3CD;
}
.header__link a::before {
  content: "";
  position: absolute;
  top: -0.2em;
  left: -1em;
  transform: scale(0);
  width: 2em;
  height: 2em;
  background-color: #34A3CD;
  border-radius: 50%;
  transition: transform .3s, background-color .3s;
}
.in-content .header__link a::before {
  background-color: #FFDAEC;
}
.header__link a span {
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
}
@media (hover: hover) {
  .header__logo a:hover,
  .header__logo a:focus {
    transform: scale(1.1)
  }
  .header__link a:hover::before,
  .header__link a:focus::before {
    transform: scale(1);
    animation: floating 3s ease-in-out 0s infinite;
  }
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.mgnb2 {
  margin-bottom: 2em;
}
.text--center,
.text--center-left {
  text-align: center;
}
.font14 {
  font-size: 0.875em;
}
.text--indent {
  text-indent: -0.5em;
}
.btn {
  position: relative;
  display: inline-block;
  width: 15em;
  margin: 2em 10px;
  padding: 0;
  border: none;
  font-size: 1em;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, #0d3871 5%, #004d84, #006294, #0078a2, #008dae, #2098be);
  transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}
.btn--gray::before {
  background-image: linear-gradient(135deg, #C3C3C3, #E1E1E1);
}
.btn span {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0.75em 0.75em 0.6em;
  background-color: #fff;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
  color: #515151;
  font-size: 1.125em;
  font-weight: bold;
  text-align: center;
}
.btn--jpn span {
  padding: 0.75em;
  font-size: 1em;
  font-weight: 500;
}

@media (hover: hover) {
  .btn:hover::before,
  .btn:focus::before {
    transform: translate(20px, -20px);
    background-image: linear-gradient(135deg, #34A3CD, #46aedd, #7eaeed, #b2adef, #deabe6, #ffacd4);
  }
  .btn--gray:hover::before,
  .btn--gray:focus::before {
    background-image: linear-gradient(135deg, #C3C3C3, #E1E1E1);
  }
}

.contact {
  margin-top: 200px;
  padding: 50px 0;
  background-color: #0d3871;
  color: #fff;
  text-align: center;
}
.top__content + .contact {
  margin-top: 0;
}
.contact__title {
  font-size: 3.5em;
}
.contact__text span {
  display: inline-block;
}

footer {
  margin-top: auto;
  padding: 20px 0;
  background-color: #F1F5FA;
}
footer .inner {
  max-width: 1406px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer a {
  position: relative;
  display: block;
  color: #999;
}
footer a::before {
  content: "";
  position: absolute;
  top: -0.2em;
  left: -1em;
  transform: scale(0);
  width: 2em;
  height: 2em;
  background-color: #FFDAEC;
  border-radius: 50%;
  transition: transform .3s, background-color .3s;
}
footer a span {
  position: relative;
  z-index: 2;
}
footer small {
  display: block;
  color: #999;
  font-size: 0.875em;
}
@media (hover: hover) {
  footer a:hover::before,
  footer a:focus::before {
    transform: scale(1);
    animation: floating 3s ease-in-out 0s infinite;
  }
}

@media all and (max-width: 1400px) {
  .header__link li {
    margin-left: 2em;
  }
  .header__link a {
    font-size: 1.125em;
  }
}

@media all and (max-width: 1050px) {
  .header__logo a {
    width: 60px;
  }
  .contact {
    margin-top: 150px;
  }
}

@media all and (max-width: 767px) {
  header {
    padding: 15px 0;
  }
  header .inner {
    padding: 0 15px;
  }
  .header__logo.open {
    filter: brightness(1000%);
  }
  .header__logo a {
    width: 41px;
  }
  .header__hamburger {
    position: relative;
    z-index: 2;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    transition: background-color .2s;
  }
  .in-content .header__hamburger {
    background-color: #34A3CD;
  }
  .header__hamburger.open {
    background-color: transparent;
  }
  .header__hamburger span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background-color: #34A3CD;
    border-radius: 2px;
    transition: background-color .3s;
  }
  .in-content .header__hamburger span {
    background-color: #fff;
  }
  .header__hamburger span::before,
  .header__hamburger span::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: inherit;
    border-radius: 2px;
    transition: top 0.3s, transform .3s;
  }
  .header__hamburger span::after {
    top: 7px;
  }
  .header__hamburger.open span {
    background-color: transparent;
  }
  .header__hamburger.open span::before {
    top: 0;
    transform: rotate(45deg);
    background-color: #fff;
  }
  .header__hamburger.open span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #fff;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    -webkit-clip-path: circle(0% at calc(100% - 40px) 38px);
    clip-path: circle(0% at calc(100% - 40px) 38px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
  nav.open {
    -webkit-clip-path: circle(200% at calc(100% - 40px) 38px);
    clip-path: circle(200% at calc(100% - 40px) 38px);
  }
  nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right top, #34A3CD 5%, #0D3871);
  }
  nav .header__link {
    height: 100vh;
    overflow: auto;
    overscroll-behavior-y: contain;
    padding: 100px 0;
  }
  nav .header__link li {
    display: block;
    margin: 1.5em 0;
    text-align: center;
  }
  nav .header__link a,
  nav.open .header__link a {
    color: #fff;
    font-size: 1.25em;
  }

  .text--center-left {
    text-align: left;
  }
  .btn::before {
    left: -6px;
    bottom: -6px;
  }
  @media (hover: hover) {
    .btn:hover::before,
    .btn:focus::before {
      transform: translate(12px, -12px);
    }
  }

  .contact {
    margin-top: 55px;
    padding: 45px 0 33px;
  }
  .contact__title {
    font-size: 3em;
  }

  footer {
    padding: 15px 0;
  }
  footer a {
    font-size: 0.85em;
  }
  footer small {
    font-size: 0.75em;
  }
}


/* TOP */
.top__background {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-image: linear-gradient(to bottom, #004d84, #006294, #0078a2, #008dae, #2098be, #34A3CD, #46aedd, #7eaeed, #b2adef, #deabe6 95%, #ffacd4);
}
.particles {
  opacity: 0;
}
.particles.show {
  animation: fadein 0.5s ease-in 2.5s forwards;
}

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
}
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.fv__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  width: calc(100% - 40px);
  color: #fff;
  text-align: center;
}
.fv__title {
  display: flex;
  justify-content: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.fv__title svg {
  display: inline-block;
}
.fv__develop {
  width: 48.14%;
}
.fv__and {
  width: 20.63%;
}
.fv__creation {
  width: 31.1%;
}
.fv__title path {
  fill: none;
  stroke: #fff;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  stroke-width: 1;
}
.fv__title.show path {
  animation: handwriting 1.5s ease-in 0.25s forwards;
}
.fv__exp {
  position: relative;
  opacity: 0;
  padding: 1.5em 0 2em;
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.fv__exp.show {
  animation: fadein 0.5s ease-in 1.85s forwards;
}
.fv__exp::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 0;
  margin-right: -0.5px;
  background-color: #fff;
  animation: scroll 2s ease 0s infinite
}
.fv__exp.show::after {
  animation: scroll 2s ease 2.75s infinite
}

.inner--left {
  text-align: left;
}
.inner--right {
  text-align: right;
}
.inner--block {
  position: relative;
  z-index: 3;
  display: inline-block;
  margin-right: -0.5em;
  text-align: left;
}

.top__content {
  overflow: hidden;
  padding-top: 350px;
  background: linear-gradient(to bottom, transparent 0px, rgba(255, 255, 255, 0.9) 200px, #fff 250px);
}
.top__title {
  color: #004D84;
  font-size: 3.5em;
  font-weight: 600;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
}
.top__text {
  min-height: 4em;
  margin-bottom: 1em;
  font-size: 1.125em;
  letter-spacing: 0.025em;
  line-height: 2em;
}

.about,
.service,
.works,
.products,
.news {
  position: relative;
  margin: 350px 0;
  opacity: 0;
  transition: opacity .5s;
  transition-delay: .1s;
}
.news {
  margin-bottom: 240px;
}
.about.show,
.service.show,
.works.show,
.products.show,
.news.show {
  opacity: 1;
}
.about .inner::before,
.service .inner::before,
.works .inner::before,
.products .inner::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 43%;
  max-width: 473px;
  height: 525px;
  background: transparent url(../img/top_about.svg) center center / contain no-repeat;
}
.service .inner::before {
  left: 0;
  right: auto;
  width: 46%;
  max-width: 506px;
  background-image: url(../img/top_service.svg);
}
.works .inner::before {
  width: 46%;
  max-width: 506px;
  background-image: url(../img/top_works.svg);
}
.products .inner::before {
  left: 0;
  right: auto;
  width: 46%;
  max-width: 506px;
  background-image: url(../img/top_products.svg);
}
.about .inner::after,
.service .inner::after,
.works .inner::after,
.products .inner::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translate(35%, -55%);
  width: 60vw;
  max-width: 750px;
  height: 55vw;
  max-height: 675px;
  background-color: #C1E3F0;
  animation: fluidrotate 24s ease 0s infinite;
}
.service .inner::after {
  left: 0;
  right: auto;
  transform: translate(-35%, -55%);
  background-color: #FFDAEC;
  animation: fluidrotate 24s ease -6s infinite;
}
.works .inner::after {
  background-color: #CCDDF1;
  animation: fluidrotate 24s ease -12s infinite;
}
.products .inner::after {
  left: 0;
  right: auto;
  transform: translate(-35%, -55%);
  background-color: #DFD9F5;
  animation: fluidrotate 24s ease -18s infinite;
}

.news-list {
  margin: 1em 0 1.5em;
}
.news-list--top {
  margin-top: 0;
}
.news-list--top {
  display: none;
}
.news-list--top.active {
  display: block;
}
.news-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 1.6em 1.5em 1.6em 10.5em;
  border-bottom: 1px solid #34A3CD;
  color: #515151;
  letter-spacing: 0.025em;
  line-height: 1.5em;
}
.news-list a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 0;
  background-image: linear-gradient(135deg, #34A3CD, #46aedd, #7eaeed, #b2adef, #deabe6, #ffacd4);
  transition: opacity .3s, height .3s;
}
.news-list a time {
  position: absolute;
  top: 50%;
  left: 1.5em;
  transform: translateY(-50%);
}
.news-list .tag-blog,
.news-list .tag-products,
.news-list .tag-notice {
  position: relative;
  display: inline-block;
  width: 6em;
  padding: 0.5em 0 0.25em;
  background-color: #FFB5D9;
  border-radius: 100vmax;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9em;
  line-height: 1em;
  text-align: center;
}
.news-list .tag-products {
  background-color: #BDB7E2;
}
.news-list .tag-notice {
  background-color: #94CEE5;
}
.news-list a p {
  flex: 1;
  position: relative;
  line-height: 1.5em;
}
.news-tab {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 1em;
  border-bottom: 1px solid #34A3CD;
}
.news-tab li {
  position: relative;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.news-tab li button {
  position: relative;
  width: 100%;
  padding: 0.5em 0 0.25em;
  background-color: transparent;
  border: none;
  color: inherit;
  font-size: 1.125em;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}
.news-tab li button::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  background-image: linear-gradient(135deg, #34A3CD, #46aedd, #7eaeed, #b2adef, #deabe6, #ffacd4);
  transition: opacity .3s, height .3s;
}
.news-tab li button.active::before {
  opacity: 0.5;
  height: 100%;
}
.news-tab li button span {
  position: relative;
  font-family: 'Josefin Sans', sans-serif;
}
@media (hover: hover) {
  .news-list a:hover::before,
  .news-list a:focus::before {
    opacity: 0.5;
    height: 100%;
  }
  .news-tab li button:hover::before,
  .news-tab li button:focus::before {
    opacity: 0.5;
    height: 100%;
  }
}
@media all and (max-width: 1200px) {
  .fv__exp {
    font-size: 1.25em;
  }

  .inner--block {
    padding: 0 50px;
  }
}

@media all and (max-width: 1050px) {
  .inner--block {
    width: 50%;
    min-width: 360px;
    margin-right: 0;
  }

  .top__text br {
    display: none;
  }

  .about,
  .service,
  .works,
  .products,
  .news {
    margin: 20% 0;
  }
  .news {
    margin-bottom: 15%;
  }
  .about .inner::before {
    right: 50px;
  }
  .service .inner::before {
    left: 30px;
  }
  .works .inner::before {
    right: 40px;
  }
  .products .inner::before {
    left: 32px;
  }
  .about .inner::after,
  .works .inner::after {
    transform: translate(25%, -55%);
  }
  .service .inner::after,
  .products .inner::after {
    transform: translate(-25%, -55%);
  }
}

@media all and (max-width: 1000px) {
  .top__content {
    padding-top: 250px;
  }
  .top__text {
    font-size: 1em;
  }
}

@media all and (max-width: 767px) {
  .fv__box {
    transform: translate(-50%, -45%);
  }
  .fv__title {
    display: block;
  }
  .fv__develop {
    width: 96.28%;
    margin-bottom: 1.35%
  }
  .fv__and {
    width: 41.26%;
  }
  .fv__creation {
    width: 62.2%;
  }
  .fv__exp {
    padding: 1.5em 0;
    font-size: 1.125em;
    line-height: 2em;
  }
  .fv__exp span {
    display: inline-block;
  }

  .inner--left,
  .inner--right {
    max-width: 450px;
    margin: 0 auto;
    text-align: initial;
  }
  .inner--block {
    width: 100%;
    min-width: auto;
    padding: 0;
  }

  .top__content {
    padding-top: 150px;
    background: linear-gradient(to bottom, transparent 0px, rgba(255, 255, 255, 0.9) 100px, #fff 150px);
  }
  .top__title {
    font-size: 3em;
  }
  .top__text {
    padding-bottom: 65%;
  }
  .top__btn {
    text-align: center;
  }

  .about,
  .service,
  .works,
  .products,
  .news {
    margin: 80px 0;
  }
  .news {
    max-width: 450px;
    margin: 0 auto 55px;
  }
  .about .inner::before,
  .service .inner::before,
  .works .inner::before,
  .products .inner::before {
    top: auto;
    left: auto;
    right: 24px;
    bottom: 100px;
    transform: translateY(0);
    width: 61.3vw;
    max-width: 276px;
    height: 68.8vw;
    max-height: 310px;
  }
  .service .inner::before {
    bottom: 110px;
    width: 68.3vw;
    max-width: 307px;
    height: 59.7vw;
    max-height: 269px;
  }
  .works .inner::before {
    right: 20px;
    bottom: 105px;
    width: 68.3vw;
    max-width: 308px;
    height: 62.3vw;
    max-height: 280px;
  }
  .products .inner::before {
    bottom: 110px;
    width: 72vw;
    max-width: 317px;
    height: 64vw;
    max-height: 288px;
  }
  .about .inner::after,
  .service .inner::after,
  .works .inner::after,
  .products .inner::after {
    width: 117vw;
    max-width: 527px;
    height: 106vw;
    max-height: 477px;
  }
  .about .inner::after {
    transform: translate(30%, -70%);
  }
  .service .inner::after {
    transform: translate(-30%, -55%);
  }
  .works .inner::after {
    transform: translate(30%, -45%);
  }
  .products .inner::after {
    transform: translate(-30%, -55%);
  }

  .news-list {
    margin: 0.5em 0;
  }
  .news-list a {
    padding: 3em 1em 1em;
  }
  .news-list a time {
    top: 1.75em;
    left: 1.11em;
    font-size: 0.9em;
  }
  .news-list .tag-blog,
  .news-list .tag-products,
  .news-list .tag-notice {
    position: absolute;
    top: 1em;
    left: 8em;
    font-size: 0.85em;
  }
  .news-tab {
    gap: 0.5em;
  }
  .news-tab li button span {
    font-size: 0.85em;
  }
}


/* 下層ページ */
.content__wrapper {
  padding: 100px 0 40px;
  opacity: 0;
  transition: opacity .5s;
  transition-delay: .1s;
}
.content__wrapper.content__wrapper--404 {
  padding-bottom: 0;
}
.content__wrapper.content__wrapper--404 .btn {
  margin-top: 72px;
}
.content__wrapper.show {
  opacity: 1;
}

.content__title {
  overflow: hidden;
  background: linear-gradient(to bottom, #0D3871, #34A3CE);
  color: #fff;
  text-align: center;
}
.content__title .inner {
  padding: 180px 20px 100px;
  font-size: 3.75em;
}
.content__title .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content__title .content__title--about::before {
  background: transparent url(../img/title_about.svg) right 20px top 50px / 340px auto no-repeat;
}
.content__title .content__title--service::before {
  background: transparent url(../img/title_service.svg) right 20px top 45px / 350px auto no-repeat;
}
.content__title .content__title--works::before {
  background: transparent url(../img/title_works.svg) right 20px top 60px / 350px auto no-repeat;
}
.content__title .content__title--products::before {
  background: transparent url(../img/title_products.svg) right 20px top 52px / 360px auto no-repeat;
}
.content__title h1 {
  position: relative;
  line-height: 1.25em;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.15);
}

.breadcrumbs {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: right;
}
.breadcrumbs li {
  display: inline-block;
  margin-left: 1.75em;
  font-size: 0.85em;
}
.breadcrumbs li:first-child {
  margin-left: 0;
}
.breadcrumbs li a {
  position: relative;
  color: #515151;
  transition: opacity .3s;
}
.breadcrumbs li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.125em;
  transform: translateY(-50%) rotate(45deg);
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid #2D9FC8;
  border-right: 2px solid #2D9FC8;
}
@media (hover: hover) {
  .breadcrumbs li a:hover,
  .breadcrumbs li a:focus {
    opacity: 0.7;
  }
}

.content__head {
  position: relative;
  margin-bottom: 0.75em;
  padding-top: 1.25em;
  color: #004D84;
  font-size: 3.5em;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
}
.content__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-38%);
  z-index: -1;
  width: 3.25em;
  height: 3em;
  border-radius: 50%;
}
.content__head--about::before {
  background-color: #C1E3F0;
}
.content__head--service::before,
.content__head--recruit::before {
  background-color: #FFDAEC;
}
.content__head--works::before {
  background-color: #CCDDF1;
}
.show .content__head::before {
  animation: fluidrotate 25s ease 0s infinite;
}
.content__head span {
  position: absolute;
  top: 0.6em;
  left: 1.5em;
  color: rgba(89, 89, 89, 0.2);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75em;
  text-shadow: none;
}

.content__subhead {
  padding-bottom: 0.75em;
  color: #2D9FC8;
  font-size: 1.125em;
}

.content__catch--large,
.content__catch {
  margin-bottom: 1em;
  color: #2D9FC8;
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.025em;
}
.content__catch--large {
  display: inline-block;
  background-image: linear-gradient(to bottom, #006294, #0078a2, #34A3CD, #46aedd, #7eaeed, #b2adef, #deabe6, #ffacd4);
  background-clip: text;
  color: transparent;
  font-size: 2.25em;
  line-height: 1.5em;
}

.content__table {
  width: 100%;
  margin: -1.25em 0;
  table-layout: fixed;
}
.content__table tr {
  border-bottom: 1px solid #34A3CD;
}
.content__table tr:last-child {
  border-bottom: 0;
}
.content__table th {
  width: 150px;
  font-weight: bold;
  text-align: left;
}
.content__table th,
.content__table td {
  padding: 1.25em 0;
}

.list-decimal {
  list-style: decimal;
  padding-left: 1.2em;
}
.list-disc {
  list-style: disc;
  padding-left: 1.5em;
}

@media all and (max-width: 1200px) {
  .content__head::before {
    top: -0.25em;
    transform: translateX(-20%);
  }
}

@media all and (max-width: 1050px) {
  .content__title .inner {
    padding: 120px 20px 50px;
    font-size: 3.25em;
  }
  .content__title .content__title--about::before {
    background-size: 250px auto;
  }
  .content__title .content__title--service::before {
    background-position: right 20px top 16px;
    background-size: 250px auto;
  }
  .content__title .content__title--works::before {
    background-position: right 20px top 30px;
    background-size: 250px auto;
  }
  .content__title .content__title--products::before {
    background-position: right 20px top 24px;
    background-size: 250px auto;
  }

  .content__head {
    font-size: 3em;
  }
}

@media all and (max-width: 767px) {
  .content__wrapper {
    padding: 50px 0 30px;
  }
  .content__wrapper.content__wrapper--404 .btn {
    margin-top: 48px;
  }

  .content__title .inner {
    padding: 70px 20px 20px;
    font-size: 2.5em;
  }
  .content__title .content__title--about::before {
    background-position: right 65px top 10px;
    background-size: 165px auto;
  }
  .content__title .content__title--service::before {
    background-position: right 54px top 1px;
    background-size: 160px auto;
  }
  .content__title .content__title--works::before {
    background-position: right 50px top 7px;
    background-size: 155px auto;
  }
  .content__title .content__title--products::before {
    background-position: right 50px top 3px;
    background-size: 160px auto;
  }

  .breadcrumbs {
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
  }
  .content__head {
    margin-bottom: 0.5em;
    font-size: 2.25em;
  }
  .content__head::before {
    top: -0.4em;
    transform: translateX(-17%);
  }

  .content__catch--large {
    font-size: 1.5em;
  }
  .content__catch {
    font-size: 1.125em;
    letter-spacing: 0;
  }
  .content__catch br {
    display: none;
  }

  .content__table th,
  .content__table td {
    display: block;
  }
  .content__table th {
    width: 100%;
    padding-bottom: 0;
  }
  .content__table td {
    padding-top: 0.5em;
  }
}


/* About */
.about__access {
  display: flex;
  flex-direction: row-reverse;
}
.about__access + .about__access {
  margin-top: 60px;
}
.about__address {
  flex: 1;
  padding-left: 45px;
}
.about__map {
  width: 63%;
  height: 400px;
}
.about__map iframe {
  width: 100%;
  height: 100%;
}

@media all and (max-width: 1023px) {
  .about__map {
    width: 60%;
    height: 350px;
  }
}

@media all and (max-width: 767px) {
  .about__access {
    display: block;
  }
  .about__address {
    padding: 0 0 0.5em;
  }
  .about__map {
    width: 100%;
    height: 300px;
  }
}


/* Service */
.services__list {
  clear: both;
}
.services__list dt {
  float: left;
  font-weight: bold;
  width: 10em;
}
.services__list dd {
  margin-left: 10em;
}

@media all and (max-width: 767px) {
  .services__list {
    font-size: 0.85em;
  }
  .services__list dt {
    float: none;
  }
  .services__list dd {
    margin-left: 1em;
    margin-bottom: 0.5em;
  }
}


/* Works */
.works__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -3.5%;
}
.works__list:after {
  content: "";
  display: block;
  width: 31%;
  height: 0;
}
.works__list > li {
  position: relative;
  width: 31%;
  margin-bottom: 3.5%;
  overflow: hidden;
}
.works__list a {
  display: block;
}
.works__list-image {
  position: relative;
}
.works__list-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #0D3871;
}
.works__list-inner {
  padding: 1.5em 2em;
  background: linear-gradient(to bottom, #0D3871, #34A3CE);
  color: #fff;
}
.works__list-inner h3 {
  font-size: 1.25em;
}
.works__list-inner li {
  line-height: 1.5em;
}
.works__list-web {
  position: relative;
  width: 5.75em;
  margin: 1em 0 0 auto;
  text-align: right;
}
.works__list-web::before {
  content: "→";
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 100%;
  font-size: 1.25em;
}
@media (hover: hover) {
  .works__list-inner {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16.5vw;
    max-height: 189px;
    background: linear-gradient(to bottom, rgba(15, 56, 113, 0.9), rgba(52, 163, 206, 0.9));
    transition: top .3s;
  }
  .works__list a:hover .works__list-inner,
  .works__list a:focus .works__list-inner {
    top: 0;
  }
  .works__list-web {
    position: absolute;
    right: 2em;
    bottom: 1.5em;
  }
}

@media all and (max-width: 1023px) {
  .works__list {
    margin-bottom: -4%;
  }
  .works__list > li {
    width: 48%;
    margin-bottom: 4%;
  }
  @media (hover: hover) {
    .works__list-inner {
      height: 25.75vw;
      max-height: 262px;
    }
  }
}

@media all and (max-width: 675px) {
  .works__list {
    max-width: 500px;
    margin: 0 auto;
  }
  .works__list > li {
    width: 100%;
    margin-bottom: 25px;
  }
  .works__list-inner {
    padding: 15px 20px;
  }
  @media (hover: hover) {
    .works__list-inner {
      height: 50vw;
      max-height: 282px;
    }
  }
}


/* News */
.news-list--mgn {
  margin-top: -1em;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.pagination a,
.pagination span {
  position: relative;
  display: block;
  width: 2em;
  height: 2em;
  margin: 0 0.4em;
  border: 2px solid transparent;
  border-radius: 50%;
  color: #515151;
  font-weight: 500;
  line-height: 1.7em;
  text-align: center;
  transition: background-color .3s, color .3s;
}
.pagination .current {
  border: 2px solid #34A3CD;
  color: #34A3CD;
}

.inner--narrow {
  max-width: 800px;
}
.news-detail__head {
  color: #2D9FC8;
  font-size: 1.75em;
}
.news-detail__date {
  padding: 2em 0;
  text-align: right;
}
.news-detail__content {
  margin-bottom: 3em;
}
.news-detail__content h2 {
  font-size: 1.5em;
  font-weight: bold;
}
.news-detail__content h3 {
  font-size: 1.25em;
  font-weight: bold;
}
.news-detail__content h4 {
  font-size: 1.1em;
  font-weight: bold;
}
.news-detail__content h5,
.news-detail__content h6 {
  font-weight: bold;
}
.news-detail__content ul {
  list-style: disc;
  padding-left: 1.5em;
}
.news-detail__content ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.has-text-align-left {
  text-align: left;
}
.has-text-align-center {
  text-align: center;
}
.has-text-align-right {
  text-align: right;
}
.news-detail__content a {
  color: #34A3CD;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .3s;
}
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3em;
}
.navigation__next,
.navigation__prev {
  position: relative;
  display: block;
  width: 55px;
  height: 55px;
  margin-top: 5px;
  border-radius: 50%;
  color: #515151;
  font-size: 1.5em;
  line-height: 55px;
  text-align: center;
  transition: background-color .3s, color .3s;
}

@media (hover: hover) {
  .news-detail__content a:hover,
  .news-detail__content a:focus {
    color: #004D84;
  }
  .pagination a:hover {
    background-color: #34A3CD;
    color: #fff;
  }
  .pagination .next:hover::before,
  .pagination .next:hover::after,
  .pagination .prev:hover::before,
  .pagination .prev:hover::after {
    border-left: 2px solid #34A3CD;
    border-bottom: 2px solid #34A3CD;
  }

  .navigation__next:hover,
  .navigation__prev:hover {
    background-color: #34A3CD;
    color: #fff;
  }
}

@media all and (max-width: 767px) {
  .pagination {
    margin-top: 50px;
  }

  .news-detail__head {
    font-size: 1.5em;
  }
  .news-detail__date {
    padding: 1em 0;
  }

  .navigation .btn {
    width: 10em;
  }
}


/* Recruit */
.recruit__pepole {
  display: grid;
  grid-template-rows: 3.5em 1fr;
  grid-template-columns: 280px 1fr;
}
.recruit__pepole + .recruit__pepole {
  margin-top: 60px;
}
.recruit__pepole-image {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  overflow: hidden;
  width: 230px;
  height: 230px;
  border-radius: 50%;
}
.recruit__pepole-name {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  padding-top: 0.75em;
}
.recruit__pepole-name h3 {
  display: inline-block;
  font-size: 1.125em;
}
.recruit__pepole-name ul {
  display: inline-block;
  padding-left: 3em;
}
.recruit__pepole-name li {
  display: inline-block;
  padding-right: 0.75em;
  color: #34A3CD;
  font-weight: 500;
}
.recruit__pepole-profile {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
.recruit__pepole-profile dl {
  clear: both;
  margin-bottom: 0.5em;
}
.recruit__pepole-profile dt {
  float: left;
}
.recruit__pepole-profile dd {
  padding-left: 6em;
}

@media all and (max-width: 1050px) {
  .recruit__pepole {
    grid-template-rows: 2.75em 1fr;
    grid-template-columns: 260px 1fr;
  }
  .recruit__pepole-name {
    padding-top: 0;
  }
}

@media all and (max-width: 767px) {
  .recruit__pepole {
    display: block;
  }
  .recruit__pepole + .recruit__pepole {
    margin-top: 35px;
  }
  .recruit__pepole-image {
    display: inline-block;
    width: 125px;
    height: 125px;
    vertical-align: middle;
  }
  .recruit__pepole-name {
    display: inline-block;
    vertical-align: middle;
    padding-left: 1em;
  }
  .recruit__pepole-name ul {
    display: block;
    padding-left: 0;
  }
  .recruit__pepole-profile {
    padding-top: 1em;
  }
}


/* Contact */
.contact__form,
.contact__form--confirm {
  margin: 4em 0 3em;
}
.contact__form dt {
  margin-bottom: 0.75em;
  font-weight: 500;
}
.contact__form dt label {
  display: inline-block;
  margin-right: 0.5em;
}
.contact__required {
  display: inline-block;
  margin-right: 1em;
  padding: 0.2em 0.75em 0.3em;
  background-color: #34A3CD;
  border-radius: 2em;
  color: #fff;
  font-size: 0.85em;
  line-height: 1em;
}
.contact__caution {
  display: inline-block;
  color: #34A3CD;
  font-size: 0.85em;
}
.contact__error {
  display: none;
  margin: 0.25em 0 -0.5em;
  color: #ff007b;
}
#your-type-error.contact__error {
  margin-bottom: -1.25em;
}
.wpcf7-not-valid-tip {
  position: absolute;
  top: -2.5em;
  left: 0;
  color: #ff007b;
  font-weight: bold;
}
.radio .wpcf7-not-valid-tip {
  top: -1.5em;
}
.contact__form dd {
  position: relative;
  margin: 0 0 2.5em;
  padding: 0 3px 3px 0;
  background-image: linear-gradient(to left, #0d3871 5%, #004d84, #006294, #0078a2, #008dae, #2098be, #34A3CD, #46aedd, #7eaeed, #b2adef, #deabe6 95%, #ffacd4);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.contact__form dd.radio {
  background-image: none;
  box-shadow: none;
}
.contact__form dd:has(.wpcf7-not-valid-tip) {
  margin-top: 2.5em;
}
.contact__form dd.radio:has(.wpcf7-not-valid-tip) {
  margin-top: 1.75em;
}
.contact__form dd.radio .wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 0 2em;
}
.contact__form dd.radio .wpcf7-list-item {
  margin: 0;
}
.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form input[type="tel"],
.contact__form textarea {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin: 0;
  padding: 0.7em 1em;
  background-color: #fff;
  border: none;
  border-radius: 0;
  font-size: 1em;
  resize: none;
  outline: none;
  transition: box-shadow .3s;
}
.contact__form textarea {
  height: 15em;
}
.contact__form dd.radio label {
  position: relative;
  display: block;
  margin: 0.7em 0;
  padding-left: 1.75em;
  font-weight: 500;
  cursor: pointer;
}
.contact__form dd.radio label::before,
.contact__form dd.radio label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.contact__form dd.radio label::before {
  left: 0;
  width: 1.25em;
  height: 1.25em;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.contact__form dd.radio label:has(input:checked) {
  color: #34A3CD;
  font-weight: bold;
}
.contact__form dd.radio label:has(input:checked)::after {
  left: 0.25em;
  width: 0.75em;
  height: 0.75em;
  background-color: #34A3CD;
}
.contact__form dd.radio input[type="radio"] {
  display: none
}
.contact__agreement {
  margin: 5em 0 0.5em;
  text-align: center;
}
.contact__agreement label {
  position: relative;
  display: inline-block;
  padding-left: 2em;
  text-align: left;
  cursor: pointer;
}
.contact__agreement label::before,
.contact__agreement label::after {
  content: "";
  position: absolute;
}
.contact__agreement label::before {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.125em;
  height: 1.125em;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.contact__agreement label:has(input:checked)::after {
  top: 45%;
  left: 0.25em;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.75em;
  border-right: 3px solid #34A3CD;
  border-bottom: 3px solid #34A3CD;
}
.contact__agreement label input,
.contact__agreement label br {
  display: none;
}
.contact__form--confirm dd {
  min-height: 3.4em;
  margin: 0.75em 0 2.5em;
  padding: 0.7em 1em;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.contact__form--confirm dd.radio {
  padding: 0.7em 0;
  box-shadow: none;
}
#confirm-your-cat {
  position: relative;
  display: inline-block;
  padding-left: 1.75em;
  font-weight: bold;
}
#confirm-your-cat::before,
#confirm-your-cat::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
#confirm-your-cat::before {
  left: 0;
  width: 1.25em;
  height: 1.25em;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
#confirm-your-cat::after {
  left: 0.25em;
  width: 0.75em;
  height: 0.75em;
  background-color: #515151;
}
#confirm-your-message {
  white-space: pre-line;
}
.contact__submit {
  text-align: center;
}
.contact__submit .btn + .btn {
  margin-left: 3em;
}
.contact__submit .btn:disabled {
  opacity: 0.5;
  filter: grayscale(1);
  pointer-events: none;
}
.wpcf7 form .wpcf7-response-output {
  margin-bottom: 0;
  border: none;
  color: #ff007b;
  font-weight: bold;
  text-align: center;
}
.wpcf7-form {
  margin-bottom: 150px;
}
@media (hover: hover) {
  .contact__form input[type="text"]:hover,
  .contact__form input[type="text"]:focus,
  .contact__form input[type="email"]:hover,
  .contact__form input[type="email"]:focus,
  .contact__form input[type="tel"]:hover,
  .contact__form input[type="tel"]:focus,
  .contact__form textarea:hover,
  .contact__form textarea:focus {
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
  }
}

#submit-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  place-content: center;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(15, 56, 113, 0.7), rgba(52, 163, 206, 0.7));
  color: #fff;
}
#submit-modal.show {
  display: grid;
}
.loader {
  transform: translateZ(0);
  overflow: hidden;
  width: 1em;
  height: 1em;
  margin: 0px auto 0.5em;
  border-radius: 50%;
  font-size: 30px;
  animation: load 1.7s infinite ease, round 1.7s infinite ease;
}
@keyframes load {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes round {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.contact__thanks {
  margin-bottom: 2em;
  color: #34A3CD;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.5em;
  text-align: center;
}
.contact__thanks span {
  display: inline-block;
}
.contact__text {
  margin-bottom: 1em;
}
.contact__btn {
  margin-top: 50px;
  margin-bottom: 150px;
}

@media all and (max-width: 1050px) {
  .contact__form dd,
  .contact__form--confirm dd {
    margin-bottom: 2em;
  }
  .wpcf7-form,
  .contact__btn {
    margin-bottom: 90px;
  }
}

@media all and (max-width: 767px) {
  .contact__form,
  .contact__form--confirm {
    margin: 3em 0 2em;
  }
  #your-type-error.contact__error {
    margin-bottom: -0.25em;
  }
  .radio .wpcf7-not-valid-tip {
    top: -2.25em;
  }
  .contact__form dd.radio:has(.wpcf7-not-valid-tip) {
    margin-top: 2.5em;
  }
  .contact__form dd.radio .wpcf7-radio {
    display: block;
  }
  .contact__form dd.radio .wpcf7-list-item {
    display: block;
  }
  .contact__form textarea {
    height: 12em;
  }
  .contact__form dd.radio label {
    margin: 0.75em 0 0;
  }
  .contact__agreement {
    margin: 4em 0 0;
  }
  .wpcf7-form {
    margin-bottom: 40px;
  }
  .contact__submit .btn + .btn {
    margin-top: 0;
    margin-left: 10px;
  }

  .contact__thanks {
    margin-bottom: 1.5em;
  }
  .contact__btn {
    margin: 30px 0 40px;
  }
}

@media all and (max-width: 500px) {
  .contact__agreement label br {
    display: inline;
  }
}


/* Privacy Policy */
.privacy__content h2 {
  padding-top: 2em;
  font-weight: 500;
}

/* Cookie同意バナー */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 99;
  opacity: 0;
  width: calc(100% - 24px);
  max-width: 1080px;
  padding: 24px 0;
  background: linear-gradient(to bottom, rgba(13, 56, 113, 0.8), rgba(52, 163, 206, 0.8));
  border-radius: 100vmax;
  backdrop-filter: blur(5px);
  transition: opacity .3s;
}
.cookie-banner.show--top {
  animation: fadein 0.5s ease-in 2.5s forwards;
}
.cookie-banner.show--other {
  animation: fadein 0.5s ease-in 0.5s forwards;
}
.cookie-banner.showed {
  opacity: 1;
}
.cookie-banner .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-banner p {
  flex: 1;
  padding-right: 10px;
  color: #fff;
  line-height: 1.5em;
}
.cookie-banner a {
  color: #FFDAEC;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .3s;
}
.cookie-banner button {
  width: 3em;
  height: 3em;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  color: #34A3CD;
  font-size: 1em;
  font-weight: bold;
  line-height: 3.2em;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

@media (hover: hover) {
  .cookie-banner a:hover,
  .cookie-banner a:focus {
    color: #fff;
  }
  .cookie-banner button:hover,
  .cookie-banner button:focus {
    color: #0D3871;
  }
}

@media all and (max-width: 900px) {
  .cookie-banner .inner {
    max-width: 700px;
    font-size: 0.9em;
  }
}
@media all and (max-width: 767px) {
  .cookie-banner {
    padding: 20px 0;
  }
  .cookie-banner .inner {
    padding-left: 28px;
    padding-right: 14px;
    font-size: 0.85em;
  }
  .cookie-banner p br {
    display: none;
  }
}


/* Products */
#colorBG .content__title {
  background: linear-gradient(to bottom, #34A3CD, #91ED6A);
}
#colorPP .content__title {
  background: linear-gradient(to bottom, #7060AC, #E382BC);
}
#colorRO .content__title {
  background: linear-gradient(to bottom, #F94444, #F1CC64);
}

.main--products .content__title .inner {
  padding: 160px 20px 100px;
  font-size: 3.5em;
}
.main--products .content__title h1 {
  line-height: 1.5em;
}
.main--products .content__title p {
  padding: 60px 0 40px;
  font-size: 0.42em;
  font-weight: 500;
  line-height: 1.5em;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.15);
}

.products__wrapper {
  opacity: 0;
  margin: 160px auto;
  transition: opacity .5s;
  transition-delay: .1s;
}
.products__wrapper.show {
  opacity: 1;
}

.products__title {
  font-size: 3em;
  line-height: 1.5em;
  text-align: center;
}
#colorBG .products__title {
  color: #34A3CD;
}
#colorPP .products__title {
  color: #7060AC;
}
#colorRO .products__title {
  color: #F94444;
}

.products__heading,
.products__slider-heading {
  font-size: 2.2em;
  line-height: 1.5em;
  text-align: center;
}
.products__slider-heading {
  font-size: 2.5em;
}
.products__text {
  padding-top: 1.3em;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.75em;
  text-align: center;
}

.products__li-rt {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.products__lt-ri {
  display: flex;
  align-items: center;
}
.products__li-rt .products__right-text,
.products__lt-ri .products__left-text {
  position: relative;
  z-index: 2;
  flex: 1;
  margin-left: -84px;
}
.products__lt-ri .products__left-text {
  margin-left: auto;
  margin-right: -84px;
}
.products__li-rt .products__right-text::before,
.products__lt-ri .products__left-text::before {
  content: "";
  position: absolute;
  top: -28px;
  left: -40px;
  z-index: 1;
  width: calc(100% + 80px);
  height: calc(100% + 56px);
  backdrop-filter: blur(5px);
  -webkit-mask-image:
    linear-gradient(to right, transparent, black 16px, black calc(100% - 16px), transparent),
    linear-gradient(to bottom, transparent, black 16px, black calc(100% - 16px), transparent);
  mask-image:
    linear-gradient(to right, transparent, black 16px, black calc(100% - 16px), transparent),
    linear-gradient(to bottom, transparent, black 16px, black calc(100% - 16px), transparent);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  border-radius: 12px;
}
.products__li-rt .products__right-text::after,
.products__lt-ri .products__left-text::after {
  content: "";
  position: absolute;
  top: -28px;
  left: -40px;
  z-index: 1;
  width: calc(100% + 80px);
  height: calc(100% + 56px);
  background-color: rgba(255, 255, 255, 0.5);
  filter: blur(10px);
}
.products__li-rt .products__left-image,
.products__lt-ri .products__right-image {
  position: relative;
  z-index: 1;
  width: 600px;
}
.products__li-rt .products__heading,
.products__li-rt .products__text,
.products__lt-ri .products__heading,
.products__lt-ri .products__text {
  position: relative;
  z-index: 2;
  text-align: left;
}

.swiper-container {
  position: relative;
}
.products__slider-heading + .swiper-container {
  margin-top: 40px;
}
.products__slider {
  counter-reset: listnum;
}
.products__slider li {
  position: relative;
  height: auto;
  padding-top: 2.85em;
}
.products__slider li::before {
	content: counter(listnum);
  counter-increment: listnum;
  position: absolute;
  top: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 4.5em;
  font-weight: bold;
}
#colorBG .products__slider li::before {
  color: #34A3CD;
}
#colorPP .products__slider li::before {
  color: #7060AC;
}
#colorRO .products__slider li::before {
  color: #F94444;
}
.products__slider li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 5.75em;
  height: 5.75em;
  border-radius: 50%;
}
#colorBG .products__slider li::after {
  background-color: #34A3CD;
}
#colorPP .products__slider li::after {
  background-color: #7060AC;
}
#colorRO .products__slider li::after {
  background-color: #F94444;
}
.products__slider li .products__slider-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 28px 60px;
  border-radius: 12px;
}
#colorBG .products__slider li .products__slider-inner {
  background: linear-gradient(to bottom, #34A3CD, #91ED6A);
}
#colorPP .products__slider li .products__slider-inner {
  background: linear-gradient(to bottom, #7060AC, #E382BC);
}
#colorRO .products__slider li .products__slider-inner {
  background: linear-gradient(to bottom, #F94444, #F1CC64);
}
.products__slider li .products__slider-inner::before {
  content: "";
  position: absolute;
  top: -2.6em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 5.25em;
  height: 5.25em;
  background-color: #fff;
  border-radius: 50%;
}
.products__slider li .products__slider-inner::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 28px);
  background-color: #fff;
  border-radius: 8px;
}
.products__slider li .products__heading,
.products__slider li .products__text {
  position: relative;
  z-index: 5;
  line-height: 1.5em;
}
.products__slider li .products__text {
  text-align: left;
}
.main--products .swiper-button-next,
.main--products .swiper-button-prev {
  width: 64px;
  height: 64px;
}
.main--products .swiper-button-next {
  right: -100px
}
.main--products .swiper-button-prev {
  left: -100px
}
.main--products .swiper-button-next:after,
.main--products .swiper-button-prev:after {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
  font-size: 32px;
  font-weight: bold;
  line-height: 64px;
  text-align: center;
}
.main--products .swiper-button-next:after {
  padding-left: 4px;
}
.main--products .swiper-button-prev:after {
  padding-right: 4px;
}
#colorBG .swiper-button-next:after,
#colorBG .swiper-button-prev:after {
  border-color: #34A3CD;
  color: #34A3CD;
}
#colorPP .swiper-button-next:after,
#colorPP .swiper-button-prev:after {
  border-color: #7060AC;
  color: #7060AC;
}
#colorRO .swiper-button-next:after,
#colorRO .swiper-button-prev:after {
  border-color: #F94444;
  color: #F94444;
}

.products__image-only {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.products__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.products__list a {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 1em;
  opacity: 0;
  overflow: hidden;
  padding: 20px 24px 68px;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  transition: opacity .5s, background .5s;
  transition-delay: .1s;
}
.products__list a.show {
  opacity: 1;
}
.products__list a.colorBG {
  background-image: linear-gradient(to bottom, #34A3CD, #91ED6A);
}
.products__list a.colorPP {
  background-image: linear-gradient(to bottom, #7060AC, #E382BC);
}
.products__list a.colorRO {
  background-image: linear-gradient(to bottom, #F94444, #F1CC64);
}
.products__list a.screen::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}
.products__list a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 56, 113, 0.9), rgba(52, 163, 206, 0.9));
    transition: top .3s;
}
.products__list-title {
  position: relative;
  z-index: 2;
  display: grid;
  place-content: center start;
  padding-bottom: 0.25em;
  border-bottom: 1px solid #fff;
  font-size: 1.35em;
  font-weight: bold;
  line-height: 1.5em;
}
.products__list-text {
  position: relative;
  z-index: 2;
  line-height: 1.5em;
}
.products__list .josefin {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 24px;
}

@media (hover: hover) {
  .products__list a:hover::after,
  .products__list a:focus::after {
    top: 0;
  }
}

@media all and (max-width: 1366px) {
  .main--products .swiper-button-next {
    right: -32px
  }
  .main--products .swiper-button-prev {
    left: -32px
  }
}

@media all and (max-width: 1200px) {
  .main--products .swiper-button-next {
    right: -20px
  }
  .main--products .swiper-button-prev {
    left: -20px
  }
}

@media all and (max-width: 1050px) {
  .main--products .content__title .inner {
    padding: 120px 20px 40px;
    font-size: 3em;
  }
  .main--products .content__title p {
    padding: 40px 0;
  }

  .products__wrapper {
    max-width: 750px;
    margin: 120px auto;
  }

  .products__title {
    font-size: 2.5em;
  }

  .products__heading {
    font-size: 2em;
  }
  .products__slider-heading {
    font-size: 2.2em;
  }
  .products__text {
    padding-top: 1em;
    font-size: 1.25em;
  }

  .products__li-rt,
  .products__lt-ri {
    display: block;
  }
  .products__li-rt .products__right-text,
  .products__lt-ri .products__left-text {
    margin: auto;
  }
  .products__li-rt .products__right-text::before,
  .products__lt-ri .products__left-text::before,
  .products__li-rt .products__right-text::after,
  .products__lt-ri .products__left-text::after {
    width: 100%;
    height: 100%;
  }
  .products__li-rt .products__left-image,
  .products__lt-ri .products__right-image {
    width: 100%;
    margin: 24px auto 0;
  }

  .products__slider-heading + .swiper-container {
    margin-top: 30px;
  }
  .products__slider li {
    padding-top: 2.65em;
  }
  .products__slider li::after {
    width: 5.3em;
    height: 5.3em;
  }
  .products__slider li::before {
    font-size: 3.75em;
  }
  .products__slider li .products__slider-inner {
    padding: 44px 28px 48px;
  }
  .products__slider li .products__slider-inner::before {
    top: -2.4em;
    width: 4.8em;
    height: 4.8em;
  }
  .main--products .swiper-button-next,
  .main--products .swiper-button-prev {
    width: 44px;
    height: 44px;
  }
  .main--products .swiper-button-next:after,
  .main--products .swiper-button-prev:after {
    font-size: 20px;
    line-height: 44px;
  }
}

@media all and (max-width: 767px) {
  .main--products .content__title .inner {
    padding: 80px 20px 20px;
    font-size: 2.4em;
  }
  .main--products .content__title p {
    font-size: 0.46em;
  }

  .products__wrapper {
    margin: 80px auto;
  }

  .products__title {
    font-size: 1.75em;
  }

  .products__heading {
    font-size: 1.5em;
  }
  .products__slider-heading {
    font-size: 1.75em;
  }
  .products__text {
    font-size: 1em;
    text-align: left;
  }

  .products__li-rt,
  .products__lt-ri {
    display: block;
  }
  .products__li-rt .products__right-text,
  .products__lt-ri .products__left-text {
    margin: auto;
  }
  .products__li-rt .products__left-image,
  .products__lt-ri .products__right-image {
    width: calc(100% + 20px);
    margin-top: 24px;
  }
  .products__li-rt .products__left-image {
    margin-left: -20px;
  }

  .products__slider-heading + .swiper-container {
    margin-top: 20px;
  }
}
