@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
}

.back-to-top {
  display: none;
}

footer {
  width: 100%;
  padding: 40px 0;
  box-shadow: 0 1px 6px #eeeeee;
  position: relative;
}
footer .footer_container {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
footer .footer_container .footer-title {
  display: flex;
  align-items: flex-start;
}
footer .footer_container .footer-title_link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 6px;
}
footer .footer_container .footer-title_link .aurens-logo {
  width: 88px;
  height: auto;
}
footer .footer_container .footer-title_link .span {
  font-size: 14px;
  color: #686868;
  line-height: 14px;
}
footer .footer_container .footer_nav {
  margin-bottom: 20px;
}
footer .footer_container .footer_nav .footer-nav_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  gap: 0 20px;
}
footer .footer_container .footer_nav .footer-nav_list .footer-nav_list-item a {
  font-size: 14px;
  font-weight: 900;
}
footer .footer_container .footer_nav .footer-privacy {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
footer .footer_container .footer_nav .footer-privacy a {
  font-size: 14px;
}
footer .copyr {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  font-size: 12px;
}
footer button {
  display: inline-block;
  width: auto;
}
footer button a {
  height: 100%;
  display: inline-flex;
  text-align: center;
}
footer button a .button-left {
  width: 36px;
  line-height: 40px;
  height: 100%;
  background-color: #338CB7;
}
footer button a .button-left .contact-i::before {
  color: #fff;
}
footer button a .button-right {
  padding: 0 14px;
  height: 100%;
  background-color: #0070A6;
  color: #fff;
  font-size: 14px;
  line-height: 40px;
}

header {
  width: 100%;
  height: 67px;
  background-color: #ffffff;
  position: fixed;
  display: flex;
  top: 0;
  justify-content: space-between;
  box-shadow: 0 1px 10px #cfcfcf;
  z-index: 200;
}
header .header-title {
  display: flex;
  align-items: center;
  padding-left: 40px;
}
header .header-title_link {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2px 6px;
}
header .header-title_link .aurens-logo {
  width: 98px;
  height: auto;
}
header .header-title_link .span {
  font-size: 14px;
  color: #686868;
  line-height: 14px;
}
header .header-nav {
  display: flex;
}
header .header-nav #wrapper {
  display: flex;
  align-items: center;
}
header .header-nav #wrapper .header-nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 28px;
}
header .header-nav #wrapper .header-nav_list .header-nav_list-item a {
  font-size: 16px;
  font-weight: 900;
}
header .header-nav .header_mobile-right {
  display: flex;
}
header .header-nav .header_mobile-right .burger-btn {
  display: none;
}
header .header-nav .header_mobile-right a .header-contact {
  width: 134px;
  height: 100%;
  margin-left: 50px;
  background-color: #0070A6;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-nav .header_mobile-right a .header-contact .header-contact_container {
  display: flex;
  flex-direction: column;
}
header .header-nav .header_mobile-right a .header-contact .header-contact_container .header-contact_img {
  width: 30px;
  height: auto;
  display: inline;
  margin: 0 auto 8px;
}
header .header-nav .header_mobile-right a .header-contact .header-contact_container .header-contact_text {
  color: #ffffff;
  font-size: 12px;
}

@media screen and (max-width: 960px) {
  header {
    height: 60px;
    box-shadow: 0 1px 6px #eeeeee;
  }
  header .header-title {
    padding-left: 30px;
  }
  header .header-nav #wrapper {
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #fff;
  }
  header .header-nav #wrapper .header-nav_list {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  header .header-nav #wrapper .header-nav_list .header-nav_list-item {
    padding-bottom: 20px;
    border-left: none;
    border-bottom: 1px solid rgba(54, 54, 54, 0.2);
    margin-right: 0;
    margin-bottom: 40px;
  }
  header .header-nav #wrapper .header-nav_list .header-nav_list-item a {
    font-size: 16px;
    font-weight: 900;
  }
  header .header-nav #wrapper .header-nav_list .header-nav_list-item:first-child {
    border-bottom: 1px solid rgba(54, 54, 54, 0.2);
  }
  header .header-nav #wrapper.fade {
    visibility: visible;
    opacity: 1;
  }
  header .header-nav .header_mobile-right .burger-btn {
    display: block;
    width: 42px;
    height: 42px;
    position: relative;
    z-index: 110;
    margin-top: 10px;
    border: none;
    background: unset;
  }
  header .header-nav .header_mobile-right .bar {
    width: 39px;
    height: 1px;
    display: block;
    position: absolute;
    background-color: #363636;
  }
  header .header-nav .header_mobile-right .bar_top {
    top: 10px;
  }
  header .header-nav .header_mobile-right .bar_mid {
    top: 50%;
  }
  header .header-nav .header_mobile-right .bar_bottom {
    bottom: 10px;
  }
  header .header-nav .header_mobile-right .burger-btn.close .bar_top {
    transform: translate(-50%, 10px) rotate(45deg);
    transition: transform 0.3s;
  }
  header .header-nav .header_mobile-right .burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity 0.3s;
  }
  header .header-nav .header_mobile-right .burger-btn.close .bar_bottom {
    transform: translate(-50%, -8px) rotate(-45deg);
    transition: transform 0.3s;
  }
  header .header-nav .header_mobile-right a .header-contact {
    width: 120px;
    margin-left: 20px;
  }
  header .header-nav .header_mobile-right a .header-contact .header-contact_container {
    display: flex;
    flex-direction: column;
  }
  header .header-nav .header_mobile-right a .header-contact .header-contact_container .header-contact_img {
    width: 28px;
    height: 28px;
    margin: 0 auto 6px;
  }
  footer {
    padding: 30px 0;
  }
  footer .footer_container {
    width: 80%;
  }
  footer .footer_container .footer-title_link {
    gap: 6px;
  }
  footer .footer_container .footer-title_link .aurens-logo {
    width: 78px;
  }
  footer .footer_container .footer-title_link .span {
    font-size: 13px;
    line-height: 13px;
  }
  footer .footer_container .footer_nav .footer-nav_list {
    margin-bottom: 6px;
    gap: 0 16px;
  }
  footer .footer_container .footer_nav .footer-privacy {
    gap: 0 16px;
  }
  footer .footer_container .footer_nav .footer-privacy a {
    font-size: 13px;
  }
}
@media screen and (max-width: 520px) {
  header .header-title {
    padding-left: 20px;
  }
  header .header-title_link {
    flex-wrap: wrap;
  }
  header .header-title_link .aurens-logo {
    width: 90px;
  }
  header .header-title_link .span {
    font-size: 12px;
    line-height: 12px;
  }
  footer {
    padding: 20px 0;
  }
  footer .footer_container {
    width: 96%;
  }
  footer .footer_container .footer-title_link {
    gap: 4px;
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer_container .footer-title_link .aurens-logo {
    width: 68px;
  }
  footer .footer_container .footer_nav {
    flex-basis: 50%;
  }
  footer .footer_container .footer_nav .footer-nav_list {
    margin-bottom: 2px;
    gap: 0 12px;
    flex-direction: column;
  }
  footer .footer_container .footer_nav .footer-privacy {
    gap: 0 12px;
  }
  footer .footer_container .footer_nav .footer-privacy a {
    font-size: 12px;
  }
}
/* ふわふわアニメーション1 */
@keyframes float-1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10px, 15px);
  }
  50% {
    transform: translate(-5px, 10px);
  }
  75% {
    transform: translate(-10px, -5px);
  }
}
/* ふわふわアニメーション2（少し違う動き） */
@keyframes float-2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(-12px, 10px);
  }
  66% {
    transform: translate(8px, -8px);
  }
}
@keyframes float-rotate {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(5deg);
  }
  50% {
    transform: translate(-5px, -10px) rotate(-3deg);
  }
  75% {
    transform: translate(-10px, 5px) rotate(3deg);
  }
}
@keyframes float-scale {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-5px, -10px) scale(1.05);
  }
}
#asistTop {
  padding-top: 60px;
}
#asistTop .page_top_btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 102px;
  height: 102px;
  background-color: unset;
  border: none;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  #asistTop .page_top_btn {
    right: 12px;
    width: 88px;
    height: 88px;
  }
}
#asistTop .page_top_btn:hover {
  animation: katakata 0.64s steps(1) infinite alternate;
}
@keyframes katakata {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
#asistTop #FV {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
#asistTop #FV .bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#asistTop #FV {
  /* アニメーション要素のコンテナ */
}
#asistTop #FV .animation-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#asistTop #FV {
  /* 共通の図形スタイル */
}
#asistTop #FV .shape {
  position: absolute;
  opacity: 0.6;
}
#asistTop #FV .shape img {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 1024px) {
  #asistTop #FV .shape img {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 768px) {
  #asistTop #FV .shape img {
    transform: scale(0.6);
  }
}
#asistTop #FV {
  /* 静止図形 */
}
#asistTop #FV .static {
  animation: none !important;
  opacity: 0.4;
}
#asistTop #FV {
  /* アニメーション - 回転 */
}
#asistTop #FV .anim-rotate {
  animation: rotate 5s linear infinite;
}
#asistTop #FV {
  /* アニメーション - 浮遊 */
}
#asistTop #FV .anim-float {
  animation: float 2s ease-in-out infinite;
}
#asistTop #FV {
  /* アニメーション - 点滅＋回転 */
}
#asistTop #FV .anim-blink-rotate {
  animation: blinkRotate 4s ease-in-out infinite;
}
#asistTop #FV {
  /* アニメーション - スライド */
}
#asistTop #FV .anim-slide {
  animation: slide 2s linear infinite;
}
#asistTop #FV {
  /* アニメーション - 拡大縮小 */
}
#asistTop #FV .anim-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}
#asistTop #FV {
  /* アニメーション - ジャンプ */
}
#asistTop #FV .anim-jump {
  animation: jump 2s ease-in-out infinite;
}
#asistTop #FV {
  /* アニメーション - 落下 */
}
#asistTop #FV .anim-fall {
  animation: fall 5s ease-in infinite;
}
#asistTop #FV .pos-1 {
  top: 5%;
  left: 10%;
}
#asistTop #FV .pos-2 {
  top: 8%;
  left: 75%;
  transform: rotate(90deg);
}
#asistTop #FV .pos-3 {
  top: 12%;
  left: 40%;
}
#asistTop #FV .pos-4 {
  top: 15%;
  left: 88%;
}
#asistTop #FV .pos-5 {
  top: 18%;
  left: 25%;
}
#asistTop #FV .pos-6 {
  top: 22%;
  left: 60%;
}
#asistTop #FV .pos-7 {
  top: 25%;
  left: 21%;
}
#asistTop #FV .pos-8 {
  top: 28%;
  left: 82%;
  transform: rotate(90deg);
}
#asistTop #FV .pos-9 {
  top: 32%;
  left: 45%;
  transform: rotate(90deg);
}
#asistTop #FV .pos-10 {
  top: 35%;
  left: 15%;
}
#asistTop #FV .pos-11 {
  top: 38%;
  left: 70%;
}
#asistTop #FV .pos-12 {
  top: 42%;
  left: 92%;
}
#asistTop #FV .pos-13 {
  top: 45%;
  left: 30%;
  transform: rotate(90deg);
}
#asistTop #FV .pos-14 {
  top: 48%;
  left: 55%;
}
#asistTop #FV .pos-15 {
  top: 52%;
  left: 8%;
}
#asistTop #FV .pos-16 {
  top: 55%;
  left: 78%;
}
#asistTop #FV .pos-17 {
  top: 58%;
  left: 35%;
}
#asistTop #FV .pos-18 {
  top: 62%;
  left: 65%;
}
#asistTop #FV .pos-19 {
  top: 65%;
  left: 12%;
  transform: rotate(90deg);
}
#asistTop #FV .pos-20 {
  top: 68%;
  left: 85%;
}
#asistTop #FV .pos-21 {
  top: 72%;
  left: 48%;
}
#asistTop #FV .pos-22 {
  top: 75%;
  left: 20%;
}
#asistTop #FV .pos-23 {
  top: 78%;
  left: 72%;
}
#asistTop #FV .pos-24 {
  top: 82%;
  left: 40%;
}
#asistTop #FV .pos-25 {
  top: 85%;
  left: 5%;
}
#asistTop #FV .pos-26 {
  top: 88%;
  left: 90%;
}
#asistTop #FV .pos-27 {
  top: 40%;
  left: 55%;
}
#asistTop #FV .pos-28 {
  top: 40%;
  left: 28%;
}
#asistTop #FV .pos-29 {
  top: 3%;
  left: 50%;
}
#asistTop #FV .pos-30 {
  top: 10%;
  left: 95%;
}
#asistTop #FV .pos-31 {
  top: 20%;
  left: 50%;
}
#asistTop #FV .pos-32 {
  top: 30%;
  left: 2%;
  transform: rotate(90deg);
}
#asistTop #FV .pos-34 {
  top: 50%;
  left: 95%;
}
#asistTop #FV .pos-35 {
  top: 60%;
  left: 3%;
}
#asistTop #FV .pos-36 {
  top: 70%;
  left: 60%;
}
#asistTop #FV .pos-37 {
  top: 80%;
  left: 15%;
  transform: rotate(90deg);
}
#asistTop #FV .pos-38 {
  top: 90%;
  left: 75%;
}
#asistTop #FV .pos-39 {
  top: 13%;
  left: 65%;
  transform: rotate(270deg);
}
#asistTop #FV .pos-40 {
  top: 43%;
  left: 22%;
}
#asistTop #FV .pos-41 {
  top: 17%;
  left: 85%;
}
#asistTop #FV .pos-42 {
  top: 33%;
  left: 12%;
}
#asistTop #FV .pos-44 {
  top: 67%;
  left: 38%;
  transform: scaleY(-1);
}
#asistTop #FV .pos-45 {
  top: 27%;
  left: 75%;
}
#asistTop #FV .pos-46 {
  top: 47%;
  left: 8%;
  transform: rotate(90deg);
}
#asistTop #FV .pos-47 {
  top: 40%;
  left: 82%;
}
#asistTop #FV .pos-48 {
  top: 23%;
  left: 42%;
}
#asistTop #FV .pos-49 {
  top: 58%;
  left: 78%;
  transform: rotate(90deg);
}
#asistTop #FV .pos-50 {
  top: 14%;
  left: 18%;
}
#asistTop #FV .pos-51 {
  top: 73%;
  left: 48%;
}
#asistTop #FV .pos-52 {
  top: 38%;
  left: 6%;
  transform: rotate(90deg);
}
#asistTop #FV .pos-53 {
  top: 52%;
  left: 92%;
}
#asistTop #FV {
  /* アニメーション定義 */
}
@keyframes blink {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes blinkRotate {
  0%, 100% {
    opacity: 0.4;
    transform: rotate(0deg);
  }
  50% {
    opacity: 0.9;
    transform: rotate(180deg);
  }
}
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-5px);
  }
}
@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(150vh) rotate(360deg);
    opacity: 0;
  }
}
#asistTop #FV {
  /* コンテンツエリア */
}
#asistTop #FV .content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #333;
}
#asistTop #FV .ttl {
  color: #083995;
  font-size: 66px;
  font-weight: 600;
  line-height: 70px;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.262745098);
}
@media screen and (max-width: 1280px) {
  #asistTop #FV .ttl {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #FV .ttl {
    font-size: 40px;
    line-height: 50px;
  }
}
#asistTop #FV .ttl__box {
  background: #fff;
  border-radius: 62px;
  box-shadow: 0 6px 20px rgba(12, 128, 234, 0.1803921569);
  width: 40%;
  height: 26%;
  text-align: center;
  align-content: center;
}
@media screen and (max-width: 1280px) {
  #asistTop #FV .ttl__box {
    border-radius: 56px;
    width: 470px;
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #FV .ttl__box {
    border-radius: 42px;
    width: 370px;
    height: 160px;
  }
}
#asistTop #FV .ttl__sub {
  margin: 0;
  font-size: 24px;
}
@media screen and (max-width: 1280px) {
  #asistTop #FV .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #FV .ttl__sub {
    font-size: 16px;
  }
}
#asistTop #FV {
  /* animation-delayのバリエーション */
}
#asistTop #FV .delay-0 {
  animation-delay: 0s;
}
#asistTop #FV .delay-1 {
  animation-delay: 0.5s;
}
#asistTop #FV .delay-2 {
  animation-delay: 1s;
}
#asistTop #FV .delay-3 {
  animation-delay: 1.5s;
}
#asistTop #products {
  position: relative;
  padding: 60px 0;
}
#asistTop #products .ttl {
  color: #083995;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1280px) {
  #asistTop #products .ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .ttl {
    font-size: 26px;
  }
}
#asistTop #products .ttl__sub {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  #asistTop #products .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .ttl__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .ttl__sub {
    font-size: 16px;
  }
}
#asistTop #products .deco {
  position: absolute;
  opacity: 0.6;
}
#asistTop #products .deco__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
#asistTop #products .deco-1 {
  filter: brightness(0) saturate(100%) invert(64%) sepia(23%) saturate(1245%) hue-rotate(107deg) brightness(92%) contrast(91%);
  top: 136px;
  left: 38px;
  width: 80px;
  transform: rotate(270deg);
}
@media screen and (max-width: 1280px) {
  #asistTop #products .deco-1 {
    width: 64px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .deco-1 {
    top: 106px;
    left: 20px;
    width: 56px;
  }
}
#asistTop #products .deco-2 {
  filter: brightness(0) saturate(100%) invert(68%) sepia(42%) saturate(1334%) hue-rotate(318deg) brightness(100%) contrast(93%);
  top: 66px;
  left: 150px;
  width: 28px;
  transform: rotate(90deg);
}
@media screen and (max-width: 1280px) {
  #asistTop #products .deco-2 {
    width: 22.4px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .deco-2 {
    display: none;
  }
}
#asistTop #products .deco-3 {
  top: 100px;
  left: 40%;
  width: 37px;
  transform: rotate(180deg);
}
@media screen and (max-width: 1280px) {
  #asistTop #products .deco-3 {
    width: 29.6px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .deco-3 {
    top: 80px;
    left: 30%;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .deco-3 {
    left: 26%;
  }
}
#asistTop #products .deco-4 {
  filter: brightness(0) saturate(100%) invert(64%) sepia(23%) saturate(1245%) hue-rotate(107deg) brightness(92%) contrast(91%);
  top: 45px;
  right: 37%;
  width: 50px;
  transform: scaleX(-1);
}
@media screen and (max-width: 1280px) {
  #asistTop #products .deco-4 {
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .deco-4 {
    display: none;
  }
}
#asistTop #products .deco-5 {
  filter: brightness(0) saturate(100%) invert(68%) sepia(42%) saturate(1334%) hue-rotate(318deg) brightness(100%) contrast(93%);
  right: 25%;
  top: 154px;
  width: 80px;
  animation: float-1 6s ease-in-out infinite;
}
@media screen and (max-width: 1280px) {
  #asistTop #products .deco-5 {
    width: 64px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #products .deco-5 {
    width: 56px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .deco-5 {
    right: 15%;
    top: 134px;
  }
}
#asistTop #products .deco-6 {
  top: 100px;
  right: 100px;
  width: 30px;
  transform: rotate(90deg);
}
@media screen and (max-width: 1280px) {
  #asistTop #products .deco-6 {
    width: 24px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .deco-6 {
    display: none;
  }
}
#asistTop #products .deco-7 {
  filter: brightness(0) saturate(100%) invert(64%) sepia(23%) saturate(1245%) hue-rotate(107deg) brightness(92%) contrast(91%);
  bottom: 316px;
  right: 170px;
  width: 92px;
}
@media screen and (max-width: 1280px) {
  #asistTop #products .deco-7 {
    right: 96px;
    width: 73.6px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #products .deco-7 {
    right: 70px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .deco-7 {
    right: 26px;
  }
}
#asistTop #products .deco-8 {
  bottom: 102px;
  left: 21%;
  width: 60px;
  animation: float-rotate 6s ease-in-out infinite;
}
@media screen and (max-width: 1280px) {
  #asistTop #products .deco-8 {
    width: 48px;
  }
}
#asistTop #products .deco-9 {
  filter: brightness(0) saturate(100%) invert(68%) sepia(42%) saturate(1334%) hue-rotate(318deg) brightness(100%) contrast(93%);
  bottom: 60px;
  left: 29%;
  width: 64px;
  transform: rotate(90deg);
}
@media screen and (max-width: 1280px) {
  #asistTop #products .deco-9 {
    width: 51.2px;
  }
}
#asistTop #products .deco-10 {
  bottom: 89px;
  right: 12%;
  width: 14px;
}
@media screen and (max-width: 1280px) {
  #asistTop #products .deco-10 {
    width: 11.2px;
  }
}
#asistTop #products .product__blue, #asistTop #products .product__pink, #asistTop #products .product__green {
  padding: 4% 4% 8%;
  margin: 0 3%;
  display: grid;
  justify-items: center;
  border-radius: 62px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #asistTop #products .product__blue, #asistTop #products .product__pink, #asistTop #products .product__green {
    border-radius: 46px;
    grid-template-rows: 10% 6% 44% 40%;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .product__blue, #asistTop #products .product__pink, #asistTop #products .product__green {
    border-radius: 36px;
  }
}
#asistTop #products .product__blue {
  box-shadow: 0 6px 20px rgba(12, 128, 234, 0.1803921569);
}
#asistTop #products .product__pink {
  box-shadow: 0 6px 20px rgba(230, 168, 160, 0.3);
}
#asistTop #products .product__green {
  box-shadow: 0 6px 20px rgba(144, 236, 187, 0.3);
}
#asistTop #products .product__ttl, #asistTop #products .product__ttl--green, #asistTop #products .product__ttl--pink {
  color: #083995;
  font-size: 38px;
  font-weight: 500;
  line-height: 36px;
  font-family: "Montserrat", sans-serif;
  margin: 2% 0;
}
@media screen and (max-width: 1024px) {
  #asistTop #products .product__ttl, #asistTop #products .product__ttl--green, #asistTop #products .product__ttl--pink {
    font-size: 34px;
    margin: 3% 0;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .product__ttl, #asistTop #products .product__ttl--green, #asistTop #products .product__ttl--pink {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .product__ttl, #asistTop #products .product__ttl--green, #asistTop #products .product__ttl--pink {
    font-size: 26px;
  }
}
#asistTop #products .product__ttl--pink {
  color: #F48272;
}
#asistTop #products .product__ttl--green {
  color: #5CC08B;
}
#asistTop #products .product__border, #asistTop #products .product__border--green, #asistTop #products .product__border--pink {
  border-bottom: 4px solid #BCDFFF;
  width: 140px;
  margin-bottom: 4%;
}
@media screen and (max-width: 1024px) {
  #asistTop #products .product__border, #asistTop #products .product__border--green, #asistTop #products .product__border--pink {
    margin-bottom: 3%;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .product__border, #asistTop #products .product__border--green, #asistTop #products .product__border--pink {
    width: 80px;
    margin-bottom: 3%;
  }
}
#asistTop #products .product__border--pink {
  border-bottom: 4px solid #FFD7D2;
}
#asistTop #products .product__border--green {
  border-bottom: 4px solid #C1E8D3;
}
#asistTop #products .product__num, #asistTop #products .product__num--04, #asistTop #products .product__num--green, #asistTop #products .product__num--pink {
  font-size: 120px;
  color: #dde5f2;
  position: absolute;
  top: -75px;
  left: 96px;
  -webkit-text-stroke: 2px #3660b0;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1440px) {
  #asistTop #products .product__num, #asistTop #products .product__num--04, #asistTop #products .product__num--green, #asistTop #products .product__num--pink {
    font-size: 100px;
  }
}
@media screen and (max-width: 1280px) {
  #asistTop #products .product__num, #asistTop #products .product__num--04, #asistTop #products .product__num--green, #asistTop #products .product__num--pink {
    font-size: 90px;
    top: -60px;
    left: 76px;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  #asistTop #products .product__num, #asistTop #products .product__num--04, #asistTop #products .product__num--green, #asistTop #products .product__num--pink {
    font-size: clamp(3.75rem, 1.6477rem + 6.993vw, 5rem);
    top: -46px;
    left: 50px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .product__num, #asistTop #products .product__num--04, #asistTop #products .product__num--green, #asistTop #products .product__num--pink {
    font-size: 54px;
    top: -40px;
    left: 36px;
  }
}
#asistTop #products .product__num--pink {
  color: rgba(230, 168, 160, 0.1882352941);
  -webkit-text-stroke: 2px #C98076;
}
#asistTop #products .product__num--green {
  color: rgba(144, 236, 187, 0.1882352941);
  -webkit-text-stroke: 2px #00A58C;
}
#asistTop #products .product__num--04 {
  -webkit-text-stroke: unset;
  text-shadow: 2px 2px 0 #3660b0, -2px 2px 0 #3660b0, 2px -2px 0 #3660b0, -2px -2px 0 #3660b0, 2px 0 0 #3660b0, -2px 0 0 #3660b0, 0 2px 0 #3660b0, 0 -2px 0 #3660b0;
}
#asistTop #products .product__box {
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 1024px) {
  #asistTop #products .product__box {
    display: grid;
    justify-items: center;
    height: -moz-fit-content;
    height: fit-content;
    padding: 24px 0 46px;
  }
}
#asistTop #products .product__img {
  max-width: 95%;
  max-height: 95%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #asistTop #products .product__img {
    border-radius: 18px;
  }
}
#asistTop #products .product__img--bluebox, #asistTop #products .product__img--greenbox, #asistTop #products .product__img--pinkbox {
  aspect-ratio: 5/3;
  max-width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(12, 128, 234, 0.1019607843);
  border-radius: 32px;
}
@media screen and (max-width: 1024px) {
  #asistTop #products .product__img--bluebox, #asistTop #products .product__img--greenbox, #asistTop #products .product__img--pinkbox {
    max-width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .product__img--bluebox, #asistTop #products .product__img--greenbox, #asistTop #products .product__img--pinkbox {
    max-width: 95%;
    border-radius: 28px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .product__img--bluebox, #asistTop #products .product__img--greenbox, #asistTop #products .product__img--pinkbox {
    border-radius: 26px;
  }
}
#asistTop #products .product__img--pinkbox {
  background-color: rgba(230, 168, 160, 0.1882352941);
}
#asistTop #products .product__img--greenbox {
  background-color: rgba(144, 236, 187, 0.1882352941);
}
#asistTop #products .product__txt {
  width: 40%;
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.1rem;
  margin: unset;
}
@media screen and (max-width: 1440px) {
  #asistTop #products .product__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 1280px) {
  #asistTop #products .product__txt {
    width: 45%;
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #products .product__txt {
    width: 90%;
  }
}
#asistTop #products .product__more {
  position: absolute;
  bottom: 50px;
  right: 100px;
  margin-top: 24px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1280px) {
  #asistTop #products .product__more {
    bottom: 38px;
    right: 66px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .product__more {
    bottom: 22px;
    right: 46px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .product__more {
    bottom: 16px;
    right: 34px;
  }
}
#asistTop #products .product__more--btn {
  width: 191px;
}
@media screen and (max-width: 1280px) {
  #asistTop #products .product__more--btn {
    width: 160px;
  }
}
#asistTop #products .product__more--btn {
  right: 34px;
}
@media screen and (max-width: 768px) {
  #asistTop #products .product__more--btn {
    display: none;
  }
}
#asistTop #products .product__more--btnSP {
  display: none;
}
@media screen and (max-width: 768px) {
  #asistTop #products .product__more--btnSP {
    display: block;
    width: 100px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .product__more--btnSP {
    width: 80px;
  }
}
#asistTop #products .product__more:hover {
  transform: scale(1.05);
}
#asistTop #products .product__prev {
  width: 86px;
  height: 86px;
}
@media screen and (max-width: 1440px) {
  #asistTop #products .product__prev {
    width: 76px;
    height: 76px;
  }
}
@media screen and (max-width: 1280px) {
  #asistTop #products .product__prev {
    width: 66px;
    height: 66px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .product__prev {
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .product__prev {
    width: 46px;
    height: 46px;
  }
}
#asistTop #products .product__next {
  width: 86px;
  height: 86px;
  transform: rotate(180deg);
}
@media screen and (max-width: 1440px) {
  #asistTop #products .product__next {
    width: 76px;
    height: 76px;
  }
}
@media screen and (max-width: 1280px) {
  #asistTop #products .product__next {
    width: 66px;
    height: 66px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .product__next {
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .product__next {
    width: 46px;
    height: 46px;
  }
}
#asistTop #products .swiper {
  width: 86%;
  overflow: visible;
}
@media screen and (max-width: 1280px) {
  #asistTop #products .swiper {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .swiper {
    width: 97%;
  }
}
#asistTop #products .swiper-container {
  overflow: hidden;
  padding: 60px 14px;
}
#asistTop #products .swiper-slide {
  transition: all 0.4s ease;
}
#asistTop #products .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
#asistTop #products .swiper-button-prev {
  left: 74px;
}
@media screen and (max-width: 1280px) {
  #asistTop #products .swiper-button-prev {
    left: 60px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #products .swiper-button-prev {
    left: 46px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .swiper-button-prev {
    left: 6px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .swiper-button-prev {
    left: 0;
  }
}
#asistTop #products .swiper-button-next {
  right: 74px;
}
@media screen and (max-width: 1280px) {
  #asistTop #products .swiper-button-next {
    right: 60px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #products .swiper-button-next {
    right: 46px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #products .swiper-button-next {
    right: 6px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #products .swiper-button-next {
    right: 0;
  }
}
#asistTop #products .swiper-button-prev::after, #asistTop #products .swiper-button-next::after {
  content: "";
}
#asistTop #products .swiper-button-prev:hover {
  transform: translateX(-20px);
  transition: 1s;
}
#asistTop #products .swiper-button-next:hover {
  transform: translateX(20px);
  transition: 1s;
}
#asistTop #qa {
  margin: 2% auto 8%;
}
#asistTop #qa .ttl {
  color: #083995;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1280px) {
  #asistTop #qa .ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #qa .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #qa .ttl {
    font-size: 26px;
  }
}
#asistTop #qa .ttl__sub {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  #asistTop #qa .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #qa .ttl__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #qa .ttl__sub {
    font-size: 16px;
  }
}
#asistTop #qa .qa__wrap {
  padding: 60px 100px;
  margin: 2% auto;
  display: grid;
  justify-items: center;
  border-radius: 62px;
  box-shadow: 0 6px 20px rgba(12, 128, 234, 0.1803921569);
  width: 70%;
  height: 76vh;
}
@media screen and (max-width: 1280px) {
  #asistTop #qa .qa__wrap {
    padding: 40px 80px;
    border-radius: 54px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #qa .qa__wrap {
    border-radius: 46px;
    margin: 5% auto;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #qa .qa__wrap {
    padding: 26px 56px;
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #qa .qa__wrap {
    padding: 26px;
    border-radius: 36px;
  }
}
#asistTop #qa .qa__inner {
  overflow-y: scroll;
  width: 100%;
  height: 95%;
}
#asistTop #qa .qa__inner::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}
#asistTop #qa .qa__inner::-webkit-scrollbar-track {
  background-color: #f6f6f6;
}
#asistTop #qa .qa__inner::-webkit-scrollbar-thumb {
  background-color: #d9d9d9;
}
#asistTop #qa .qa__category {
  margin: 20px;
}
#asistTop #qa .qa__category--ttl {
  color: #083995;
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 4px;
}
@media screen and (max-width: 1280px) {
  #asistTop #qa .qa__category--ttl {
    font-size: 26px;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #qa .qa__category--ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #qa .qa__category--ttl {
    font-size: 20px;
  }
}
#asistTop #qa .qa__head {
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.1rem;
  width: 94%;
  height: 56px;
  background-color: #083995;
  border-radius: 20px;
  padding: 0 18px;
  align-content: center;
}
@media screen and (max-width: 1280px) {
  #asistTop #qa .qa__head {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #qa .qa__head {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
#asistTop #qa .qa__txt {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 0.1rem;
  width: 94%;
  border-radius: 20px;
  padding: 10px 0 28px 18px;
  align-content: center;
}
@media screen and (max-width: 1280px) {
  #asistTop #qa .qa__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #qa .qa__txt {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #qa .qa__txt {
    line-height: 28px;
  }
}
#asistTop #contacts {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 6% 0 10%;
  overflow: hidden;
  z-index: 1;
}
#asistTop #contacts::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -242px;
  width: 541px;
  height: 541px;
  background-image: url("../images/asistSeries/bg_lu.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.6;
  z-index: -1;
  animation: float-1 6s ease-in-out infinite;
}
@media screen and (max-width: 1440px) {
  #asistTop #contacts::before {
    width: 432.8px;
    height: 432.8px;
  }
}
@media screen and (max-width: 1280px) {
  #asistTop #contacts::before {
    width: 378.7px;
    height: 378.7px;
  }
}
#asistTop #contacts::after {
  content: "";
  position: absolute;
  bottom: -169px;
  right: -173px;
  width: 943px;
  height: 754px;
  background-image: url("../images/asistSeries/bg_rb.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.6;
  z-index: -1;
  animation: float-2 6s ease-in-out infinite;
}
@media screen and (max-width: 1440px) {
  #asistTop #contacts::after {
    width: 754.4px;
    height: 603.2px;
  }
}
@media screen and (max-width: 1280px) {
  #asistTop #contacts::after {
    width: 660.1px;
    height: 527.8px;
  }
}
#asistTop #contacts .contact__txt {
  font-size: 20px;
  margin: 2% 0;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  #asistTop #contacts .contact__txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #contacts .contact__txt {
    padding: 0 70px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #contacts .contact__txt {
    font-size: 16px;
    padding: 0 20px;
  }
}
#asistTop #contacts .ttl {
  color: #083995;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1280px) {
  #asistTop #contacts .ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #contacts .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #contacts .ttl {
    font-size: 26px;
  }
}
#asistTop #contacts .ttl__sub {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  #asistTop #contacts .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #contacts .ttl__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #contacts .ttl__sub {
    font-size: 16px;
  }
}
#asistTop #contacts .btn__wrap {
  display: flex;
  gap: 5%;
  margin: 5% 0;
}
@media screen and (max-width: 768px) {
  #asistTop #contacts .btn__wrap {
    display: grid;
    gap: 40px;
    margin: 7% 0;
  }
}
#asistTop #contacts .btn__shadow {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: #0C80EA;
  font-size: 22px;
  background-color: #fff;
  width: 555px;
  height: 130px;
  border-radius: 20px;
  border: none;
  box-shadow: 2px 6px 20px rgba(12, 128, 234, 0.1803921569);
  cursor: pointer;
}
@media screen and (max-width: 1440px) {
  #asistTop #contacts .btn__shadow {
    width: 440px;
    height: 110px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #contacts .btn__shadow {
    width: 340px;
    height: 80px;
    font-size: 18px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #contacts .btn__shadow {
    width: 280px;
    height: 80px;
    font-size: 16px;
    border-radius: 12px;
  }
}
#asistTop #contacts .btn__shadow:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 3px 14px rgba(12, 128, 234, 0.1803921569);
}
#asistTop #contacts .btn__icon {
  width: 25px;
}
@media screen and (max-width: 768px) {
  #asistTop #contacts .btn__icon {
    width: 22px;
  }
}
@media screen and (max-width: 480px) {
  #asistTop #contacts .btn__icon {
    width: 18px;
  }
}
#asistTop #contacts .address__wrap {
  display: flex;
  gap: 40px;
  margin: 5% 0;
}
@media screen and (max-width: 1280px) {
  #asistTop #contacts .address__wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #contacts .address__wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #contacts .address__wrap {
    display: block;
    margin: 8% 0;
  }
}
#asistTop #contacts .address__unit {
  text-align: left;
}
#asistTop #contacts .address__unit::before {
  content: "";
  width: 214px;
  height: 6.5px;
  display: inline-block;
  background-image: url("../images/asistSeries/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  #asistTop #contacts .address__unit::before {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #contacts .address__unit::before {
    width: 160px;
  }
}
#asistTop #contacts .address__unit::after {
  content: "";
  width: 214px;
  height: 6.5px;
  display: inline-block;
  background-image: url("../images/asistSeries/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  margin-top: 10px;
}
@media screen and (max-width: 1280px) {
  #asistTop #contacts .address__unit::after {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #contacts .address__unit::after {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #contacts .address__unit::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #contacts .address__unit--last::after {
    content: "";
    width: 160px;
    height: 6.5px;
    display: inline-block;
    background-image: url("../images/asistSeries/line.svg");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    margin-top: 10px;
  }
}
#asistTop #contacts .address__name {
  font-size: 20px;
  margin-bottom: 14px;
}
@media screen and (max-width: 1280px) {
  #asistTop #contacts .address__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #contacts .address__name {
    font-size: 16px;
  }
}
#asistTop #contacts .address__txt {
  margin: unset;
}
@media screen and (max-width: 1280px) {
  #asistTop #contacts .address__txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #contacts .address__txt {
    font-size: 13px;
  }
}
#asistTop #contacts .address__box {
  height: 100px;
}
@media screen and (max-width: 1280px) {
  #asistTop #contacts .address__box {
    height: 90px;
  }
}
@media screen and (max-width: 1024px) {
  #asistTop #contacts .address__box {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #asistTop #contacts .address__box {
    height: unset;
    padding-bottom: 30px;
  }
}

#asistGw {
  padding-top: 60px;
}
#asistGw .page_top_btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 102px;
  height: 102px;
  background-color: unset;
  border: none;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  #asistGw .page_top_btn {
    right: 12px;
    width: 88px;
    height: 88px;
  }
}
#asistGw .page_top_btn:hover {
  animation: katakata 0.64s steps(1) infinite alternate;
}
@keyframes katakata {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
#asistGw #FV {
  height: 100vh;
  background-image: linear-gradient(to top, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%), url("../images/asistSeries/bg_blue.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  #asistGw #FV {
    background-size: 1080px auto;
    height: 70vh;
    min-height: 700px;
  }
}
#asistGw #FV .ttl {
  color: #083995;
  font-size: 46px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-right: 56px;
}
@media screen and (max-width: 1440px) {
  #asistGw #FV .ttl {
    font-size: 38px;
    padding-right: 46px;
  }
}
@media screen and (max-width: 1280px) {
  #asistGw #FV .ttl {
    font-size: 30px;
    padding-right: 36px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #FV .ttl {
    font-size: 24px;
    padding-right: 30px;
  }
}
#asistGw #FV .ttl__wrap {
  height: 156px;
  width: 692px;
  text-align: right;
  align-content: center;
  background-color: #fff;
  border-radius: 0 40px 40px 0;
  border-top: 1px solid #083995;
  border-right: 1px solid #083995;
  border-bottom: 1px solid #083995;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistGw #FV .ttl__wrap {
    height: 124.8px;
    width: 553.6px;
    border-radius: 0 30px 30px 0;
  }
}
@media screen and (max-width: 1280px) {
  #asistGw #FV .ttl__wrap {
    height: 109.2px;
    width: 484.4px;
    border-radius: 0 26px 26px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #FV .ttl__wrap {
    height: 93.6px;
    width: 415.2px;
    border-radius: 0 24px 24px 0;
  }
}
#asistGw #FV .ttl__wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 182px;
  height: 86px;
  background-image: url("../images/asistSeries/titlepic_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  #asistGw #FV .ttl__wrap::before {
    height: 68.8px;
    width: 145.6px;
  }
}
@media screen and (max-width: 1280px) {
  #asistGw #FV .ttl__wrap::before {
    height: 60.2px;
    width: 127.4px;
  }
}
#asistGw #FV .img {
  width: 96%;
  display: grid;
  justify-items: end;
}
@media screen and (max-width: 1024px) {
  #asistGw #FV .img {
    width: 100%;
    justify-items: center;
    margin-top: 40px;
  }
}
#asistGw #FV .img__box {
  background-color: rgba(12, 128, 234, 0.1882352941);
  border-radius: 32px;
  width: 977px;
  height: 567px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistGw #FV .img__box {
    width: 781.6px;
    height: 453.6px;
  }
}
@media screen and (max-width: 1280px) {
  #asistGw #FV .img__box {
    width: 683.9px;
    height: 396.9px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #FV .img__box {
    width: 586.2px;
    height: 340.2px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #FV .img__box {
    border-radius: 26px;
    width: 97%;
    height: 210px;
  }
}
#asistGw #FV .img__box img {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  #asistGw #FV .img__box img {
    border-radius: 18px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
  }
}
#asistGw #FV .img__txt {
  color: #083995;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  align-content: center;
  position: absolute;
  bottom: 30px;
  left: -380px;
  width: 500px;
  height: 86px;
  background-color: #fff;
  border-radius: 28px;
  border: 1px solid #083995;
}
#asistGw #FV .img__txt span {
  font-size: 26px;
  padding: 0 4px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1440px) {
  #asistGw #FV .img__txt span {
    font-size: 24px;
  }
}
@media screen and (max-width: 1280px) {
  #asistGw #FV .img__txt span {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #FV .img__txt span {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  #asistGw #FV .img__txt {
    font-size: 20px;
    width: 456px;
    height: 72px;
    border-radius: 22px;
  }
}
@media screen and (max-width: 1280px) {
  #asistGw #FV .img__txt {
    font-size: 18px;
    width: 416px;
    height: 62px;
    border-radius: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #FV .img__txt {
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 480px) {
  #asistGw #FV .img__txt {
    font-size: 16px;
    width: 95%;
  }
}
#asistGw #overview {
  position: relative;
  padding-top: 2%;
  margin-bottom: 10%;
}
@media screen and (max-width: 1024px) {
  #asistGw #overview {
    height: unset;
    margin-bottom: 180px;
  }
}
#asistGw #overview .ttl {
  color: #083995;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1280px) {
  #asistGw #overview .ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #overview .ttl {
    font-size: 26px;
  }
}
#asistGw #overview .ttl__sub {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  #asistGw #overview .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .ttl__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #overview .ttl__sub {
    font-size: 16px;
  }
}
#asistGw #overview .bg {
  background-color: rgba(12, 128, 234, 0.1882352941);
  height: 822px;
  width: 64%;
  position: absolute;
  right: 0;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 1280px) {
  #asistGw #overview .bg {
    height: 802px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .bg {
    height: 562px;
    width: 90%;
    bottom: -36px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .bg {
    height: 644px;
    width: 90%;
    bottom: -16px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #overview .bg {
    height: 760px;
    top: 262px;
    border-radius: 26px 0 0 26px;
  }
}
#asistGw #overview .content__wrap {
  display: flex;
  gap: 3%;
  align-items: center;
  margin-top: 3%;
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .content__wrap {
    display: block;
  }
}
#asistGw #overview .content__left {
  background-color: #377AB6;
  border-radius: 0 36px 36px 0;
  width: 55%;
  height: 578px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistGw #overview .content__left {
    height: 472px;
  }
}
@media screen and (max-width: 1280px) {
  #asistGw #overview .content__left {
    height: 408px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .content__left {
    width: 90%;
    height: 503px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .content__left {
    height: 416px;
    border-radius: 0 26px 26px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #overview .content__left {
    height: 218px;
  }
}
#asistGw #overview .content__left img {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  #asistGw #overview .content__left img {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
  }
}
@media screen and (max-width: 480px) {
  #asistGw #overview .content__left img {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}
@media screen and (max-width: 480px) {
  #asistGw #overview .content__left img {
    border-radius: 16px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
#asistGw #overview .content__right {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .content__right {
    width: 100%;
    display: grid;
    justify-items: end;
  }
}
#asistGw #overview .content__txt {
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 32px;
  background-color: #fff;
  border-radius: 32px;
  position: relative;
  padding: 60px 38px;
  width: 90%;
}
@media screen and (max-width: 1440px) {
  #asistGw #overview .content__txt {
    line-height: 28px;
  }
}
@media screen and (max-width: 1280px) {
  #asistGw #overview .content__txt {
    font-size: 16px;
    padding: 50px 30px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .content__txt {
    padding: 30px;
    width: 76%;
    margin: 3% 7%;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .content__txt {
    border-radius: 26px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #overview .content__txt {
    letter-spacing: 1px;
    padding: 24px;
    border-radius: 16px;
    width: 76%;
  }
}
#asistGw #overview .typewriter {
  color: #083995;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  #asistGw #overview .typewriter {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .typewriter {
    font-size: 18px;
  }
}
#asistGw #overview .typewriter::after {
  content: "|";
  color: #333;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
#asistGw #overview .deco {
  position: absolute;
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  #asistGw #overview .deco {
    transform: scale(0.8);
  }
}
#asistGw #overview .deco__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
#asistGw #overview .deco-1 {
  top: 20px;
  left: 38px;
  width: 28px;
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .deco-1 {
    display: none;
  }
}
#asistGw #overview .deco-2 {
  top: 66px;
  left: 100px;
  width: 108px;
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .deco-2 {
    top: 49px;
    left: 30%;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .deco-2 {
    width: 62px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #overview .deco-2 {
    left: 11%;
  }
}
#asistGw #overview .deco-3 {
  top: 88px;
  left: 38%;
  width: 68px;
  transform: rotate(270deg);
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .deco-3 {
    display: none;
  }
}
#asistGw #overview .deco-4 {
  top: 150px;
  right: 38%;
  width: 25px;
}
@media screen and (max-width: 1440px) {
  #asistGw #overview .deco-4 {
    top: 120px;
  }
}
@media screen and (max-width: 1280px) {
  #asistGw #overview .deco-4 {
    top: 110px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .deco-4 {
    top: 86px;
    right: 160px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .deco-4 {
    width: 19px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #overview .deco-4 {
    top: 60px;
    right: 50px;
  }
}
#asistGw #overview .deco-5 {
  right: 30px;
  top: 54px;
  width: 67px;
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .deco-5 {
    top: 660px;
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .deco-5 {
    width: 50px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #overview .deco-5 {
    top: 324px;
    left: 5px;
  }
}
#asistGw #overview .deco-6 {
  bottom: -80px;
  left: 220px;
  width: 26px;
}
@media screen and (max-width: 1440px) {
  #asistGw #overview .deco-6 {
    bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .deco-6 {
    bottom: -114px;
    left: 50px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .deco-6 {
    width: 20px;
  }
}
#asistGw #overview .deco-7 {
  bottom: -54px;
  left: 278px;
  width: 48px;
}
@media screen and (max-width: 1440px) {
  #asistGw #overview .deco-7 {
    bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .deco-7 {
    bottom: -84px;
    left: 80px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .deco-7 {
    width: 35px;
  }
}
#asistGw #overview .deco-8 {
  bottom: 6px;
  right: 15%;
  width: 75px;
  transform: rotate(90deg);
}
@media screen and (max-width: 1280px) {
  #asistGw #overview .deco-8 {
    bottom: -11px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #overview .deco-8 {
    bottom: -20px;
    right: 15%;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #overview .deco-8 {
    width: 56px;
  }
}
#asistGw #feature .feature__wrap {
  padding: 2% 5%;
  margin-bottom: 5%;
}
#asistGw #feature .card {
  background-color: rgba(12, 128, 234, 0.1);
  border-radius: 32px;
  border: 1px solid #083995;
  padding: 24px 30px 60px;
  display: grid;
  justify-items: center;
  text-align: center;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1024px) {
  #asistGw #feature .card {
    border-radius: 26px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #feature .card {
    padding: 16px 18px 60px;
  }
}
#asistGw #feature .card__wrap {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  gap: 3%;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 1280px) {
  #asistGw #feature .card__wrap {
    grid-template-columns: 50% 50%;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #feature .card__wrap {
    grid-template-columns: 80%;
    gap: 2%;
    margin-bottom: 400px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #feature .card__wrap {
    grid-template-columns: 90%;
  }
}
#asistGw #feature .card__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 26px;
}
@media screen and (max-width: 1024px) {
  #asistGw #feature .card__img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #feature .card__img {
    border-radius: 16px;
  }
}
#asistGw #feature .card__ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  #asistGw #feature .card__ttl {
    font-size: 20px;
    margin: 14px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #feature .card__ttl {
    font-size: 18px;
  }
}
#asistGw #feature .card__border {
  width: 130px;
  border-bottom: 4px solid #377AB6;
  margin-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  #asistGw #feature .card__border {
    width: 90px;
  }
}
#asistGw #feature .card__txt {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 30px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  #asistGw #feature .card__txt {
    font-size: 16px;
  }
}
#asistGw #feature .card:hover {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
#asistGw #feature .card__wrap .card {
  transform: scale(1);
  opacity: 1;
}
#asistGw #feature .card__wrap.has-hover .card:not(:hover) {
  transform: scale(0.9);
  opacity: 0.7;
}
#asistGw #contacts {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 70%, rgb(255, 255, 255) 100%), url("../images/asistSeries/bg_blue.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 40px;
  text-align: center;
  display: grid;
  justify-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #asistGw #contacts {
    background-size: 1080px auto;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #contacts {
    height: unset;
    padding-bottom: 80px;
  }
}
#asistGw #contacts .contact__box {
  width: 54%;
  min-width: 860px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #083995;
  display: grid;
  justify-items: center;
  align-content: center;
  margin: 40px 0 100px;
  padding: 40px 0;
}
@media screen and (max-width: 1280px) {
  #asistGw #contacts .contact__box {
    width: 70%;
    min-width: unset;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #contacts .contact__box {
    width: 78%;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #contacts .contact__box {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #contacts .contact__box {
    width: 80%;
  }
}
#asistGw #contacts .contact__txt {
  margin: 2% 0;
}
@media screen and (max-width: 768px) {
  #asistGw #contacts .contact__txt {
    padding: 0 16px;
  }
}
#asistGw #contacts .ttl {
  color: #083995;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1280px) {
  #asistGw #contacts .ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #contacts .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #contacts .ttl {
    font-size: 26px;
  }
}
#asistGw #contacts .ttl__sub {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  #asistGw #contacts .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #contacts .ttl__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #contacts .ttl__sub {
    font-size: 16px;
  }
}
#asistGw #contacts .btn__wrap {
  display: flex;
  gap: 5%;
  margin: 5% 0;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #asistGw #contacts .btn__wrap {
    display: block;
  }
}
#asistGw #contacts .btn__img {
  width: 30px;
}
@media screen and (max-width: 768px) {
  #asistGw #contacts .btn__img {
    width: 25px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #contacts .btn__img {
    width: 20px;
  }
}
#asistGw #contacts .btn__blue {
  color: #083995;
  font-size: 22px;
  font-weight: 500;
  width: 40%;
  height: 100px;
  border-radius: 32px;
  background-color: rgba(12, 128, 234, 0.062745098);
  border: none;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
#asistGw #contacts .btn__blue:hover {
  color: #fff;
  background-color: rgba(8, 57, 149, 0.3019607843);
}
@media screen and (max-width: 1280px) {
  #asistGw #contacts .btn__blue {
    font-size: 20px;
    width: 37%;
    height: 90px;
    border-radius: 28px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #contacts .btn__blue {
    font-size: 16px;
    width: 40%;
    height: 74px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #contacts .btn__blue {
    margin: 20px auto;
    width: 70%;
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  #asistGw #contacts .btn__blue {
    font-size: 15px;
    height: 60px;
    border-radius: 16px;
  }
}
#asistGw #contacts .address__wrap {
  display: flex;
  gap: 40px;
  margin: 5% 0;
}
@media screen and (max-width: 1280px) {
  #asistGw #contacts .address__wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #contacts .address__wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #contacts .address__wrap {
    display: block;
    margin: 8% 0;
  }
}
#asistGw #contacts .address__unit {
  text-align: left;
}
#asistGw #contacts .address__unit::before {
  content: "";
  width: 214px;
  height: 6.5px;
  display: inline-block;
  background-image: url("../images/asistSeries/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  #asistGw #contacts .address__unit::before {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #contacts .address__unit::before {
    width: 160px;
  }
}
#asistGw #contacts .address__unit::after {
  content: "";
  width: 214px;
  height: 6.5px;
  display: inline-block;
  background-image: url("../images/asistSeries/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  margin-top: 10px;
}
@media screen and (max-width: 1280px) {
  #asistGw #contacts .address__unit::after {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #contacts .address__unit::after {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #contacts .address__unit::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #contacts .address__unit--last::after {
    content: "";
    width: 160px;
    height: 6.5px;
    display: inline-block;
    background-image: url("../images/asistSeries/line.svg");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    margin-top: 10px;
  }
}
#asistGw #contacts .address__name {
  font-size: 20px;
  margin-bottom: 14px;
}
@media screen and (max-width: 1280px) {
  #asistGw #contacts .address__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #contacts .address__name {
    font-size: 16px;
  }
}
#asistGw #contacts .address__txt {
  margin: unset;
}
@media screen and (max-width: 1280px) {
  #asistGw #contacts .address__txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #contacts .address__txt {
    font-size: 13px;
  }
}
#asistGw #contacts .address__box {
  height: 100px;
}
@media screen and (max-width: 1280px) {
  #asistGw #contacts .address__box {
    height: 90px;
  }
}
@media screen and (max-width: 1024px) {
  #asistGw #contacts .address__box {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #asistGw #contacts .address__box {
    height: unset;
    padding-bottom: 30px;
  }
}

#asistJinji {
  padding-top: 60px;
}
#asistJinji .page_top_btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 102px;
  height: 102px;
  background-color: unset;
  border: none;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  #asistJinji .page_top_btn {
    right: 12px;
    width: 88px;
    height: 88px;
  }
}
#asistJinji .page_top_btn:hover {
  animation: katakata 0.64s steps(1) infinite alternate;
}
@keyframes katakata {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
#asistJinji #FV {
  height: 100vh;
  background-image: linear-gradient(to top, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%), url("../images/asistSeries/bg_green.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  #asistJinji #FV {
    background-size: 1080px auto;
    height: 70vh;
    min-height: 700px;
  }
}
#asistJinji #FV .ttl {
  color: #5CC08B;
  font-size: 46px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-right: 56px;
}
@media screen and (max-width: 1440px) {
  #asistJinji #FV .ttl {
    font-size: 38px;
    padding-right: 46px;
  }
}
@media screen and (max-width: 1280px) {
  #asistJinji #FV .ttl {
    font-size: 30px;
    padding-right: 36px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #FV .ttl {
    font-size: 24px;
    padding-right: 30px;
  }
}
#asistJinji #FV .ttl__wrap {
  height: 156px;
  width: 562px;
  text-align: right;
  align-content: center;
  background-color: #fff;
  border-radius: 0 40px 40px 0;
  border-top: 1px solid #5CC08B;
  border-right: 1px solid #5CC08B;
  border-bottom: 1px solid #5CC08B;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistJinji #FV .ttl__wrap {
    height: 124.8px;
    width: 449.6px;
    border-radius: 0 30px 30px 0;
  }
}
@media screen and (max-width: 1280px) {
  #asistJinji #FV .ttl__wrap {
    height: 109.2px;
    width: 393.4px;
    border-radius: 0 26px 26px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #FV .ttl__wrap {
    height: 93.6px;
    width: 337.2px;
    border-radius: 0 24px 24px 0;
  }
}
#asistJinji #FV .ttl__wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 182px;
  height: 86px;
  background-image: url("../images/asistSeries/titlepic_green.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  #asistJinji #FV .ttl__wrap::before {
    height: 68.8px;
    width: 145.6px;
  }
}
@media screen and (max-width: 1280px) {
  #asistJinji #FV .ttl__wrap::before {
    height: 60.2px;
    width: 127.4px;
  }
}
#asistJinji #FV .img {
  width: 96%;
  display: grid;
  justify-items: end;
}
@media screen and (max-width: 1024px) {
  #asistJinji #FV .img {
    width: 100%;
    justify-items: center;
    margin-top: 40px;
  }
}
#asistJinji #FV .img__box {
  background-color: rgba(176, 238, 205, 0.3058823529);
  border-radius: 32px;
  width: 977px;
  height: 567px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistJinji #FV .img__box {
    width: 781.6px;
    height: 453.6px;
  }
}
@media screen and (max-width: 1280px) {
  #asistJinji #FV .img__box {
    width: 683.9px;
    height: 396.9px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #FV .img__box {
    width: 586.2px;
    height: 340.2px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #FV .img__box {
    border-radius: 26px;
    width: 97%;
    height: 210px;
  }
}
#asistJinji #FV .img__box img {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  #asistJinji #FV .img__box img {
    border-radius: 18px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
  }
}
#asistJinji #FV .img__txt {
  color: #5CC08B;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  align-content: center;
  position: absolute;
  bottom: 30px;
  left: -380px;
  width: 500px;
  height: 86px;
  background-color: #fff;
  border-radius: 28px;
  border: 1px solid #5CC08B;
}
#asistJinji #FV .img__txt span {
  font-size: 26px;
  padding: 0 4px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1440px) {
  #asistJinji #FV .img__txt span {
    font-size: 24px;
  }
}
@media screen and (max-width: 1280px) {
  #asistJinji #FV .img__txt span {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #FV .img__txt span {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  #asistJinji #FV .img__txt {
    font-size: 20px;
    width: 456px;
    height: 72px;
    border-radius: 22px;
  }
}
@media screen and (max-width: 1280px) {
  #asistJinji #FV .img__txt {
    font-size: 18px;
    width: 416px;
    height: 62px;
    border-radius: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #FV .img__txt {
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #FV .img__txt {
    font-size: 16px;
    width: 95%;
  }
}
#asistJinji #overview {
  position: relative;
  padding-top: 2%;
  padding-bottom: 10%;
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview {
    height: unset;
    margin-bottom: 180px;
  }
}
#asistJinji #overview .ttl {
  color: #083995;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1280px) {
  #asistJinji #overview .ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .ttl {
    font-size: 26px;
  }
}
#asistJinji #overview .ttl__sub {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  #asistJinji #overview .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .ttl__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .ttl__sub {
    font-size: 16px;
  }
}
#asistJinji #overview .ttl {
  color: #5CC08B;
}
#asistJinji #overview .bg {
  background-color: rgba(176, 238, 205, 0.3058823529);
  height: 802px;
  width: 64%;
  position: absolute;
  right: 0;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 1440px) {
  #asistJinji #overview .bg {
    height: 734px;
  }
}
@media screen and (max-width: 1280px) {
  #asistJinji #overview .bg {
    height: 694px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .bg {
    width: 90%;
    bottom: 54px;
    height: 530px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .bg {
    height: 600px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .bg {
    height: 702px;
    top: 262px;
    border-radius: 26px 0 0 26px;
  }
}
#asistJinji #overview .content__wrap {
  display: flex;
  gap: 3%;
  align-items: center;
  margin-top: 3%;
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .content__wrap {
    display: block;
  }
}
#asistJinji #overview .content__left {
  background-color: #5CC08B;
  border-radius: 0 36px 36px 0;
  width: 55%;
  height: 578px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistJinji #overview .content__left {
    height: 472px;
  }
}
@media screen and (max-width: 1280px) {
  #asistJinji #overview .content__left {
    height: 408px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .content__left {
    width: 90%;
    height: 503px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .content__left {
    height: 416px;
    border-radius: 0 26px 26px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .content__left {
    height: 218px;
  }
}
#asistJinji #overview .content__left img {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  #asistJinji #overview .content__left img {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .content__left img {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .content__left img {
    border-radius: 16px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
#asistJinji #overview .content__right {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .content__right {
    width: 100%;
    display: grid;
    justify-items: end;
  }
}
#asistJinji #overview .content__txt {
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 32px;
  background-color: #fff;
  border-radius: 32px;
  position: relative;
  padding: 60px 38px 100px;
  width: 90%;
}
@media screen and (max-width: 1440px) {
  #asistJinji #overview .content__txt {
    line-height: 28px;
  }
}
@media screen and (max-width: 1280px) {
  #asistJinji #overview .content__txt {
    font-size: 16px;
    padding: 50px 30px 80px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .content__txt {
    width: 76%;
    margin: 3% 7%;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .content__txt {
    border-radius: 26px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .content__txt {
    letter-spacing: 1px;
    padding: 24px 24px 100px;
    border-radius: 16px;
    width: 76%;
  }
}
#asistJinji #overview .content__txt--footnote {
  color: #E51C26;
  font-size: 14px;
  position: absolute;
  bottom: 50px;
}
@media screen and (max-width: 1280px) {
  #asistJinji #overview .content__txt--footnote {
    font-size: 12px;
    bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .content__txt--footnote {
    bottom: 22px;
  }
}
#asistJinji #overview .typewriter {
  color: #5CC08B;
  font-size: 22px;
  min-height: 1.6em;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  #asistJinji #overview .typewriter {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .typewriter {
    font-size: 18px;
  }
}
#asistJinji #overview .typewriter::after {
  content: "|";
  color: #333;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
#asistJinji #overview .deco {
  position: absolute;
  opacity: 0.6;
  filter: brightness(0) saturate(100%) invert(64%) sepia(23%) saturate(1245%) hue-rotate(107deg) brightness(92%) contrast(91%);
}
@media screen and (max-width: 1440px) {
  #asistJinji #overview .deco {
    transform: scale(0.8);
  }
}
#asistJinji #overview .deco__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
#asistJinji #overview .deco-1 {
  top: 20px;
  left: 38px;
  width: 28px;
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .deco-1 {
    display: none;
  }
}
#asistJinji #overview .deco-2 {
  top: 66px;
  left: 100px;
  width: 108px;
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .deco-2 {
    top: 49px;
    left: 30%;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .deco-2 {
    width: 62px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .deco-2 {
    left: 11%;
  }
}
#asistJinji #overview .deco-3 {
  top: 88px;
  left: 38%;
  width: 68px;
  transform: rotate(270deg);
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .deco-3 {
    display: none;
  }
}
#asistJinji #overview .deco-4 {
  top: 150px;
  right: 38%;
  width: 25px;
}
@media screen and (max-width: 1440px) {
  #asistJinji #overview .deco-4 {
    top: 120px;
  }
}
@media screen and (max-width: 1280px) {
  #asistJinji #overview .deco-4 {
    top: 110px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .deco-4 {
    top: 86px;
    right: 160px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .deco-4 {
    width: 19px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .deco-4 {
    top: 60px;
    right: 50px;
  }
}
#asistJinji #overview .deco-5 {
  right: 30px;
  top: 54px;
  width: 67px;
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .deco-5 {
    top: 660px;
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .deco-5 {
    width: 50px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .deco-5 {
    top: 324px;
    left: 5px;
  }
}
#asistJinji #overview .deco-6 {
  bottom: 80px;
  left: 220px;
  width: 26px;
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .deco-6 {
    bottom: -14px;
    left: 50px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .deco-6 {
    width: 20px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .deco-6 {
    bottom: -50px;
  }
}
#asistJinji #overview .deco-7 {
  bottom: 102px;
  left: 278px;
  width: 48px;
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .deco-7 {
    bottom: 24px;
    left: 80px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .deco-7 {
    bottom: 10px;
    width: 35px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .deco-7 {
    bottom: -20px;
  }
}
#asistJinji #overview .deco-8 {
  bottom: 170px;
  right: 15%;
  width: 75px;
  transform: rotate(90deg);
}
@media screen and (max-width: 1440px) {
  #asistJinji #overview .deco-8 {
    bottom: 120px;
  }
}
@media screen and (max-width: 1280px) {
  #asistJinji #overview .deco-8 {
    bottom: 100px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #overview .deco-8 {
    bottom: 90px;
    right: 15%;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #overview .deco-8 {
    width: 56px;
    bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #overview .deco-8 {
    bottom: 20px;
  }
}
#asistJinji #feature .feature__wrap {
  padding: 2% 5%;
  margin-bottom: 5%;
}
#asistJinji #feature .card {
  background-color: rgba(176, 238, 205, 0.2980392157);
  border-radius: 32px;
  border: 1px solid #5CC08B;
  padding: 24px 30px 60px;
  display: grid;
  justify-items: center;
  text-align: center;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1024px) {
  #asistJinji #feature .card {
    border-radius: 26px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #feature .card {
    padding: 16px 18px 60px;
  }
}
#asistJinji #feature .card__wrap {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  gap: 3%;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 1280px) {
  #asistJinji #feature .card__wrap {
    grid-template-columns: 50% 50%;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #feature .card__wrap {
    grid-template-columns: 80%;
    gap: 2%;
    margin-bottom: 400px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #feature .card__wrap {
    grid-template-columns: 90%;
  }
}
#asistJinji #feature .card__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 26px;
}
@media screen and (max-width: 1024px) {
  #asistJinji #feature .card__img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #feature .card__img {
    border-radius: 16px;
  }
}
#asistJinji #feature .card__ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  #asistJinji #feature .card__ttl {
    font-size: 20px;
    margin: 14px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #feature .card__ttl {
    font-size: 18px;
  }
}
#asistJinji #feature .card__border {
  width: 130px;
  border-bottom: 4px solid #83C580;
  margin-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  #asistJinji #feature .card__border {
    width: 90px;
  }
}
#asistJinji #feature .card__txt {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 30px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  #asistJinji #feature .card__txt {
    font-size: 16px;
  }
}
#asistJinji #feature .card:hover {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
#asistJinji #feature .card__wrap .card {
  transform: scale(1);
  opacity: 1;
}
#asistJinji #feature .card__wrap.has-hover .card:not(:hover) {
  transform: scale(0.9);
  opacity: 0.7;
}
#asistJinji #contacts {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 70%, rgb(255, 255, 255) 100%), url("../images/asistSeries/bg_green.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 40px;
  text-align: center;
  display: grid;
  justify-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #asistJinji #contacts {
    background-size: 1080px auto;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts {
    height: unset;
    padding-bottom: 80px;
  }
}
#asistJinji #contacts .contact__box {
  width: 54%;
  min-width: 860px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #5CC08B;
  display: grid;
  justify-items: center;
  align-content: center;
  margin: 40px 0 100px;
  padding: 40px 0;
}
@media screen and (max-width: 1280px) {
  #asistJinji #contacts .contact__box {
    width: 70%;
    min-width: unset;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #contacts .contact__box {
    width: 78%;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts .contact__box {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #contacts .contact__box {
    width: 80%;
  }
}
#asistJinji #contacts .contact__txt {
  margin: 2% 0;
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts .contact__txt {
    padding: 0 16px;
  }
}
#asistJinji #contacts .ttl {
  color: #083995;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1280px) {
  #asistJinji #contacts .ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #contacts .ttl {
    font-size: 26px;
  }
}
#asistJinji #contacts .ttl__sub {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  #asistJinji #contacts .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts .ttl__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #contacts .ttl__sub {
    font-size: 16px;
  }
}
#asistJinji #contacts .ttl {
  color: #5CC08B;
}
#asistJinji #contacts .btn__wrap {
  display: flex;
  gap: 5%;
  margin: 5% 0;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts .btn__wrap {
    display: block;
  }
}
#asistJinji #contacts .btn__img {
  width: 30px;
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts .btn__img {
    width: 25px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #contacts .btn__img {
    width: 20px;
  }
}
#asistJinji #contacts .btn__green {
  color: #5CC08B;
  font-size: 22px;
  font-weight: 500;
  width: 40%;
  height: 100px;
  border-radius: 32px;
  background-color: rgba(144, 236, 187, 0.2980392157);
  border: none;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
#asistJinji #contacts .btn__green:hover {
  color: #fff;
  background-color: rgba(92, 192, 139, 0.8588235294);
}
@media screen and (max-width: 1280px) {
  #asistJinji #contacts .btn__green {
    font-size: 20px;
    width: 37%;
    height: 90px;
    border-radius: 28px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #contacts .btn__green {
    font-size: 16px;
    width: 40%;
    height: 74px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts .btn__green {
    margin: 20px auto;
    width: 70%;
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  #asistJinji #contacts .btn__green {
    font-size: 15px;
    height: 60px;
    border-radius: 16px;
  }
}
#asistJinji #contacts .address__wrap {
  display: flex;
  gap: 40px;
  margin: 5% 0;
}
@media screen and (max-width: 1280px) {
  #asistJinji #contacts .address__wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #contacts .address__wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts .address__wrap {
    display: block;
    margin: 8% 0;
  }
}
#asistJinji #contacts .address__unit {
  text-align: left;
}
#asistJinji #contacts .address__unit::before {
  content: "";
  width: 214px;
  height: 6.5px;
  display: inline-block;
  background-image: url("../images/asistSeries/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  #asistJinji #contacts .address__unit::before {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #contacts .address__unit::before {
    width: 160px;
  }
}
#asistJinji #contacts .address__unit::after {
  content: "";
  width: 214px;
  height: 6.5px;
  display: inline-block;
  background-image: url("../images/asistSeries/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  margin-top: 10px;
}
@media screen and (max-width: 1280px) {
  #asistJinji #contacts .address__unit::after {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #contacts .address__unit::after {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts .address__unit::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts .address__unit--last::after {
    content: "";
    width: 160px;
    height: 6.5px;
    display: inline-block;
    background-image: url("../images/asistSeries/line.svg");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    margin-top: 10px;
  }
}
#asistJinji #contacts .address__name {
  font-size: 20px;
  margin-bottom: 14px;
}
@media screen and (max-width: 1280px) {
  #asistJinji #contacts .address__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #contacts .address__name {
    font-size: 16px;
  }
}
#asistJinji #contacts .address__txt {
  margin: unset;
}
@media screen and (max-width: 1280px) {
  #asistJinji #contacts .address__txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #contacts .address__txt {
    font-size: 13px;
  }
}
#asistJinji #contacts .address__box {
  height: 100px;
}
@media screen and (max-width: 1280px) {
  #asistJinji #contacts .address__box {
    height: 90px;
  }
}
@media screen and (max-width: 1024px) {
  #asistJinji #contacts .address__box {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #asistJinji #contacts .address__box {
    height: unset;
    padding-bottom: 30px;
  }
}
#asistJinji #contacts .address__unit::before {
  filter: brightness(0) saturate(100%) invert(64%) sepia(23%) saturate(1245%) hue-rotate(107deg) brightness(92%) contrast(91%);
}
#asistJinji #contacts .address__unit::after {
  filter: brightness(0) saturate(100%) invert(64%) sepia(23%) saturate(1245%) hue-rotate(107deg) brightness(92%) contrast(91%);
}

#asistKintai {
  padding-top: 60px;
}
#asistKintai .page_top_btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 102px;
  height: 102px;
  background-color: unset;
  border: none;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  #asistKintai .page_top_btn {
    right: 12px;
    width: 88px;
    height: 88px;
  }
}
#asistKintai .page_top_btn:hover {
  animation: katakata 0.64s steps(1) infinite alternate;
}
@keyframes katakata {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
#asistKintai #FV {
  height: 100vh;
  background-image: linear-gradient(to top, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%), url("../images/asistSeries/bg_pink.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  #asistKintai #FV {
    background-size: 1080px auto;
    height: 70vh;
    min-height: 700px;
  }
}
#asistKintai #FV .ttl {
  color: #F48272;
  font-size: 46px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-right: 56px;
}
@media screen and (max-width: 1440px) {
  #asistKintai #FV .ttl {
    font-size: 38px;
    padding-right: 46px;
  }
}
@media screen and (max-width: 1280px) {
  #asistKintai #FV .ttl {
    font-size: 30px;
    padding-right: 36px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #FV .ttl {
    font-size: 24px;
    padding-right: 30px;
  }
}
#asistKintai #FV .ttl__wrap {
  height: 156px;
  width: 562px;
  text-align: right;
  align-content: center;
  background-color: #fff;
  border-radius: 0 40px 40px 0;
  border-top: 1px solid #F48272;
  border-right: 1px solid #F48272;
  border-bottom: 1px solid #F48272;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistKintai #FV .ttl__wrap {
    height: 124.8px;
    width: 449.6px;
    border-radius: 0 30px 30px 0;
  }
}
@media screen and (max-width: 1280px) {
  #asistKintai #FV .ttl__wrap {
    height: 109.2px;
    width: 393.4px;
    border-radius: 0 26px 26px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #FV .ttl__wrap {
    height: 93.6px;
    width: 337.2px;
    border-radius: 0 24px 24px 0;
  }
}
#asistKintai #FV .ttl__wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 182px;
  height: 86px;
  background-image: url("../images/asistSeries/titlepic_pink.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  #asistKintai #FV .ttl__wrap::before {
    height: 68.8px;
    width: 145.6px;
  }
}
@media screen and (max-width: 1280px) {
  #asistKintai #FV .ttl__wrap::before {
    height: 60.2px;
    width: 127.4px;
  }
}
#asistKintai #FV .img {
  width: 96%;
  display: grid;
  justify-items: end;
}
@media screen and (max-width: 1024px) {
  #asistKintai #FV .img {
    width: 100%;
    justify-items: center;
    margin-top: 40px;
  }
}
#asistKintai #FV .img__box {
  background-color: rgba(230, 168, 160, 0.3058823529);
  border-radius: 32px;
  width: 977px;
  height: 567px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistKintai #FV .img__box {
    width: 781.6px;
    height: 453.6px;
  }
}
@media screen and (max-width: 1280px) {
  #asistKintai #FV .img__box {
    width: 683.9px;
    height: 396.9px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #FV .img__box {
    width: 586.2px;
    height: 340.2px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #FV .img__box {
    border-radius: 26px;
    width: 97%;
    height: 210px;
  }
}
#asistKintai #FV .img__box img {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  #asistKintai #FV .img__box img {
    border-radius: 18px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
  }
}
#asistKintai #FV .img__txt {
  color: #F48272;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  align-content: center;
  position: absolute;
  bottom: 30px;
  left: -360px;
  width: 460px;
  height: 86px;
  background-color: #fff;
  border-radius: 28px;
  border: 1px solid #F48272;
}
#asistKintai #FV .img__txt span {
  font-size: 26px;
  padding: 0 4px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1440px) {
  #asistKintai #FV .img__txt span {
    font-size: 24px;
  }
}
@media screen and (max-width: 1280px) {
  #asistKintai #FV .img__txt span {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #FV .img__txt span {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  #asistKintai #FV .img__txt {
    font-size: 20px;
    width: 426px;
    height: 72px;
    border-radius: 22px;
  }
}
@media screen and (max-width: 1280px) {
  #asistKintai #FV .img__txt {
    font-size: 18px;
    width: 386px;
    height: 62px;
    border-radius: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #FV .img__txt {
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #FV .img__txt {
    font-size: 16px;
    width: 95%;
  }
}
#asistKintai #overview {
  position: relative;
  padding-top: 2%;
  padding-bottom: 10%;
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview {
    height: unset;
    margin-bottom: 180px;
  }
}
#asistKintai #overview .ttl {
  color: #083995;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1280px) {
  #asistKintai #overview .ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .ttl {
    font-size: 26px;
  }
}
#asistKintai #overview .ttl__sub {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  #asistKintai #overview .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .ttl__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .ttl__sub {
    font-size: 16px;
  }
}
#asistKintai #overview .ttl {
  color: #F48272;
}
#asistKintai #overview .bg {
  background-color: rgba(230, 168, 160, 0.3058823529);
  height: 802px;
  width: 64%;
  position: absolute;
  right: 0;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 1440px) {
  #asistKintai #overview .bg {
    height: 734px;
  }
}
@media screen and (max-width: 1280px) {
  #asistKintai #overview .bg {
    height: 694px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .bg {
    width: 90%;
    bottom: 54px;
    height: 530px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .bg {
    height: 600px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .bg {
    height: 702px;
    top: 262px;
    border-radius: 26px 0 0 26px;
  }
}
#asistKintai #overview .content__wrap {
  display: flex;
  gap: 3%;
  align-items: center;
  margin-top: 3%;
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .content__wrap {
    display: block;
  }
}
#asistKintai #overview .content__left {
  background-color: #F48272;
  border-radius: 0 36px 36px 0;
  width: 55%;
  height: 578px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistKintai #overview .content__left {
    height: 472px;
  }
}
@media screen and (max-width: 1280px) {
  #asistKintai #overview .content__left {
    height: 408px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .content__left {
    width: 90%;
    height: 503px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .content__left {
    height: 416px;
    border-radius: 0 26px 26px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .content__left {
    height: 218px;
  }
}
#asistKintai #overview .content__left img {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  #asistKintai #overview .content__left img {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .content__left img {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .content__left img {
    border-radius: 16px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
#asistKintai #overview .content__right {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .content__right {
    width: 100%;
    display: grid;
    justify-items: end;
  }
}
#asistKintai #overview .content__txt {
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 32px;
  background-color: #fff;
  border-radius: 32px;
  position: relative;
  padding: 60px 38px 100px;
  width: 90%;
}
@media screen and (max-width: 1440px) {
  #asistKintai #overview .content__txt {
    line-height: 28px;
  }
}
@media screen and (max-width: 1280px) {
  #asistKintai #overview .content__txt {
    font-size: 16px;
    padding: 50px 30px 80px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .content__txt {
    width: 76%;
    margin: 3% 7%;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .content__txt {
    border-radius: 26px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .content__txt {
    letter-spacing: 1px;
    padding: 24px 24px 100px;
    border-radius: 16px;
    width: 76%;
  }
}
#asistKintai #overview .content__txt--footnote {
  color: #E51C26;
  font-size: 14px;
  position: absolute;
  bottom: 50px;
}
@media screen and (max-width: 1280px) {
  #asistKintai #overview .content__txt--footnote {
    font-size: 12px;
    bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .content__txt--footnote {
    bottom: 22px;
  }
}
#asistKintai #overview .typewriter {
  color: #F48272;
  font-size: 22px;
  min-height: 1.6em;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  #asistKintai #overview .typewriter {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .typewriter {
    font-size: 18px;
  }
}
#asistKintai #overview .typewriter::after {
  content: "|";
  color: #333;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
#asistKintai #overview .deco {
  position: absolute;
  opacity: 0.6;
  filter: brightness(0) saturate(100%) invert(68%) sepia(42%) saturate(1334%) hue-rotate(318deg) brightness(100%) contrast(93%);
}
@media screen and (max-width: 1440px) {
  #asistKintai #overview .deco {
    transform: scale(0.8);
  }
}
#asistKintai #overview .deco__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
#asistKintai #overview .deco-1 {
  top: 20px;
  left: 38px;
  width: 28px;
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .deco-1 {
    display: none;
  }
}
#asistKintai #overview .deco-2 {
  top: 66px;
  left: 100px;
  width: 108px;
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .deco-2 {
    top: 49px;
    left: 30%;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .deco-2 {
    width: 62px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .deco-2 {
    left: 11%;
  }
}
#asistKintai #overview .deco-3 {
  top: 88px;
  left: 38%;
  width: 68px;
  transform: rotate(270deg);
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .deco-3 {
    display: none;
  }
}
#asistKintai #overview .deco-4 {
  top: 150px;
  right: 38%;
  width: 25px;
}
@media screen and (max-width: 1440px) {
  #asistKintai #overview .deco-4 {
    top: 120px;
  }
}
@media screen and (max-width: 1280px) {
  #asistKintai #overview .deco-4 {
    top: 110px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .deco-4 {
    top: 86px;
    right: 160px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .deco-4 {
    width: 19px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .deco-4 {
    top: 60px;
    right: 50px;
  }
}
#asistKintai #overview .deco-5 {
  right: 30px;
  top: 54px;
  width: 67px;
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .deco-5 {
    top: 660px;
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .deco-5 {
    width: 50px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .deco-5 {
    top: 324px;
    left: 5px;
  }
}
#asistKintai #overview .deco-6 {
  bottom: 80px;
  left: 220px;
  width: 26px;
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .deco-6 {
    bottom: -14px;
    left: 50px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .deco-6 {
    width: 20px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .deco-6 {
    bottom: -50px;
  }
}
#asistKintai #overview .deco-7 {
  bottom: 102px;
  left: 278px;
  width: 48px;
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .deco-7 {
    bottom: 24px;
    left: 80px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .deco-7 {
    bottom: 10px;
    width: 35px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .deco-7 {
    bottom: -20px;
  }
}
#asistKintai #overview .deco-8 {
  bottom: 170px;
  right: 15%;
  width: 75px;
  transform: rotate(90deg);
}
@media screen and (max-width: 1440px) {
  #asistKintai #overview .deco-8 {
    bottom: 120px;
  }
}
@media screen and (max-width: 1280px) {
  #asistKintai #overview .deco-8 {
    bottom: 100px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #overview .deco-8 {
    bottom: 90px;
    right: 15%;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #overview .deco-8 {
    width: 56px;
    bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #overview .deco-8 {
    bottom: 20px;
  }
}
#asistKintai #feature .feature__wrap {
  padding: 2% 5%;
  margin-bottom: 5%;
}
#asistKintai #feature .card {
  background-color: rgba(230, 168, 160, 0.2980392157);
  border-radius: 32px;
  border: 1px solid #F48272;
  padding: 24px 30px 60px;
  display: grid;
  justify-items: center;
  text-align: center;
  transition: all 0.6s ease;
}
@media screen and (max-width: 1024px) {
  #asistKintai #feature .card {
    border-radius: 26px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #feature .card {
    padding: 16px 18px 60px;
  }
}
#asistKintai #feature .card__wrap {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  gap: 3%;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 1280px) {
  #asistKintai #feature .card__wrap {
    grid-template-columns: 50% 50%;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #feature .card__wrap {
    grid-template-columns: 80%;
    gap: 2%;
    margin-bottom: 400px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #feature .card__wrap {
    grid-template-columns: 90%;
  }
}
#asistKintai #feature .card__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 26px;
}
@media screen and (max-width: 1024px) {
  #asistKintai #feature .card__img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #feature .card__img {
    border-radius: 16px;
  }
}
#asistKintai #feature .card__ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  #asistKintai #feature .card__ttl {
    font-size: 20px;
    margin: 14px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #feature .card__ttl {
    font-size: 18px;
  }
}
#asistKintai #feature .card__border {
  width: 130px;
  border-bottom: 4px solid #F48272;
  margin-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  #asistKintai #feature .card__border {
    width: 90px;
  }
}
#asistKintai #feature .card__txt {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 30px;
  text-align: left;
}
#asistKintai #feature .card__txt span {
  color: #E51C26;
  font-size: 14px;
  position: absolute;
  bottom: 10px;
  left: 32px;
}
@media screen and (max-width: 480px) {
  #asistKintai #feature .card__txt span {
    font-size: 12px;
    left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #feature .card__txt {
    font-size: 16px;
  }
}
#asistKintai #feature .card:hover {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
#asistKintai #feature .card__wrap .card {
  transform: scale(1);
  opacity: 1;
}
#asistKintai #feature .card__wrap.has-hover .card:not(:hover) {
  transform: scale(0.9);
  opacity: 0.7;
}
#asistKintai #contacts {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 70%, rgb(255, 255, 255) 100%), url("../images/asistSeries/bg_pink.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 40px;
  text-align: center;
  display: grid;
  justify-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #asistKintai #contacts {
    background-size: 1080px auto;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts {
    height: unset;
    padding-bottom: 80px;
  }
}
#asistKintai #contacts .contact__box {
  width: 54%;
  min-width: 860px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #F48272;
  display: grid;
  justify-items: center;
  align-content: center;
  margin: 40px 0 100px;
  padding: 40px 0;
}
@media screen and (max-width: 1280px) {
  #asistKintai #contacts .contact__box {
    width: 70%;
    min-width: unset;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #contacts .contact__box {
    width: 78%;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts .contact__box {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #contacts .contact__box {
    width: 80%;
  }
}
#asistKintai #contacts .contact__txt {
  margin: 2% 0;
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts .contact__txt {
    padding: 0 16px;
  }
}
#asistKintai #contacts .ttl {
  color: #083995;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1280px) {
  #asistKintai #contacts .ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #contacts .ttl {
    font-size: 26px;
  }
}
#asistKintai #contacts .ttl__sub {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  #asistKintai #contacts .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts .ttl__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #contacts .ttl__sub {
    font-size: 16px;
  }
}
#asistKintai #contacts .ttl {
  color: #F48272;
}
#asistKintai #contacts .btn__wrap {
  display: flex;
  gap: 5%;
  margin: 5% 0;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts .btn__wrap {
    display: block;
  }
}
#asistKintai #contacts .btn__img {
  width: 30px;
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts .btn__img {
    width: 25px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #contacts .btn__img {
    width: 20px;
  }
}
#asistKintai #contacts .btn__pink {
  color: #F48272;
  font-size: 22px;
  font-weight: 500;
  width: 40%;
  height: 100px;
  border-radius: 32px;
  background-color: rgba(230, 168, 160, 0.2980392157);
  border: none;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
#asistKintai #contacts .btn__pink:hover {
  color: #fff;
  background-color: rgba(230, 168, 160, 0.8588235294);
}
@media screen and (max-width: 1280px) {
  #asistKintai #contacts .btn__pink {
    font-size: 20px;
    width: 37%;
    height: 90px;
    border-radius: 28px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #contacts .btn__pink {
    font-size: 16px;
    width: 40%;
    height: 74px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts .btn__pink {
    margin: 20px auto;
    width: 70%;
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  #asistKintai #contacts .btn__pink {
    font-size: 15px;
    height: 60px;
    border-radius: 16px;
  }
}
#asistKintai #contacts .address__wrap {
  display: flex;
  gap: 40px;
  margin: 5% 0;
}
@media screen and (max-width: 1280px) {
  #asistKintai #contacts .address__wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #contacts .address__wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts .address__wrap {
    display: block;
    margin: 8% 0;
  }
}
#asistKintai #contacts .address__unit {
  text-align: left;
}
#asistKintai #contacts .address__unit::before {
  content: "";
  width: 214px;
  height: 6.5px;
  display: inline-block;
  background-image: url("../images/asistSeries/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  #asistKintai #contacts .address__unit::before {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #contacts .address__unit::before {
    width: 160px;
  }
}
#asistKintai #contacts .address__unit::after {
  content: "";
  width: 214px;
  height: 6.5px;
  display: inline-block;
  background-image: url("../images/asistSeries/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  margin-top: 10px;
}
@media screen and (max-width: 1280px) {
  #asistKintai #contacts .address__unit::after {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #contacts .address__unit::after {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts .address__unit::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts .address__unit--last::after {
    content: "";
    width: 160px;
    height: 6.5px;
    display: inline-block;
    background-image: url("../images/asistSeries/line.svg");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    margin-top: 10px;
  }
}
#asistKintai #contacts .address__name {
  font-size: 20px;
  margin-bottom: 14px;
}
@media screen and (max-width: 1280px) {
  #asistKintai #contacts .address__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #contacts .address__name {
    font-size: 16px;
  }
}
#asistKintai #contacts .address__txt {
  margin: unset;
}
@media screen and (max-width: 1280px) {
  #asistKintai #contacts .address__txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #contacts .address__txt {
    font-size: 13px;
  }
}
#asistKintai #contacts .address__box {
  height: 100px;
}
@media screen and (max-width: 1280px) {
  #asistKintai #contacts .address__box {
    height: 90px;
  }
}
@media screen and (max-width: 1024px) {
  #asistKintai #contacts .address__box {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #asistKintai #contacts .address__box {
    height: unset;
    padding-bottom: 30px;
  }
}
#asistKintai #contacts .address__unit::before {
  filter: brightness(0) saturate(100%) invert(68%) sepia(42%) saturate(1334%) hue-rotate(318deg) brightness(100%) contrast(93%);
}
#asistKintai #contacts .address__unit::after {
  filter: brightness(0) saturate(100%) invert(68%) sepia(42%) saturate(1334%) hue-rotate(318deg) brightness(100%) contrast(93%);
}

#asistDensi {
  padding-top: 60px;
}
#asistDensi .page_top_btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 102px;
  height: 102px;
  background-color: unset;
  border: none;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  #asistDensi .page_top_btn {
    right: 12px;
    width: 88px;
    height: 88px;
  }
}
#asistDensi .page_top_btn:hover {
  animation: katakata 0.64s steps(1) infinite alternate;
}
@keyframes katakata {
  0% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
#asistDensi #FV {
  height: 100vh;
  background-image: linear-gradient(to top, rgb(255, 255, 255) 5%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%), url("../images/asistSeries/bg_blue.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  #asistDensi #FV {
    background-size: 1080px auto;
    height: 70vh;
    min-height: 700px;
  }
}
#asistDensi #FV .ttl {
  color: #083995;
  font-size: 52px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-right: 56px;
}
@media screen and (max-width: 1440px) {
  #asistDensi #FV .ttl {
    font-size: 40px;
    padding-right: 46px;
  }
}
@media screen and (max-width: 1280px) {
  #asistDensi #FV .ttl {
    font-size: 36px;
    padding-right: 36px;
  }
}
@media screen and (max-width: 1280px) {
  #asistDensi #FV .ttl {
    font-size: 30px;
    padding-right: 30px;
  }
}
#asistDensi #FV .ttl__wrap {
  height: 156px;
  width: 572px;
  text-align: right;
  align-content: center;
  background-color: #fff;
  border-radius: 0 40px 40px 0;
  border-top: 1px solid #083995;
  border-right: 1px solid #083995;
  border-bottom: 1px solid #083995;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistDensi #FV .ttl__wrap {
    height: 124.8px;
    width: 457.6px;
    border-radius: 0 30px 30px 0;
  }
}
@media screen and (max-width: 1280px) {
  #asistDensi #FV .ttl__wrap {
    height: 109.2px;
    width: 400.4px;
    border-radius: 0 26px 26px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #FV .ttl__wrap {
    height: 93.6px;
    width: 343.2px;
    border-radius: 0 24px 24px 0;
  }
}
#asistDensi #FV .ttl__wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 182px;
  height: 86px;
  background-image: url("../images/asistSeries/titlepic_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  #asistDensi #FV .ttl__wrap::before {
    height: 68.8px;
    width: 145.6px;
  }
}
@media screen and (max-width: 1280px) {
  #asistDensi #FV .ttl__wrap::before {
    height: 60.2px;
    width: 127.4px;
  }
}
#asistDensi #FV .img {
  width: 96%;
  display: grid;
  justify-items: end;
}
@media screen and (max-width: 1024px) {
  #asistDensi #FV .img {
    width: 100%;
    justify-items: center;
    margin-top: 40px;
  }
}
#asistDensi #FV .img__box {
  background-color: rgba(12, 128, 234, 0.1882352941);
  border-radius: 32px;
  width: 977px;
  height: 567px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistDensi #FV .img__box {
    width: 781.6px;
    height: 453.6px;
  }
}
@media screen and (max-width: 1280px) {
  #asistDensi #FV .img__box {
    width: 683.9px;
    height: 396.9px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #FV .img__box {
    width: 586.2px;
    height: 340.2px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #FV .img__box {
    border-radius: 26px;
    width: 97%;
    height: 210px;
  }
}
#asistDensi #FV .img__box img {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  #asistDensi #FV .img__box img {
    border-radius: 18px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
  }
}
#asistDensi #FV .img__txt {
  color: #083995;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  align-content: center;
  position: absolute;
  bottom: 30px;
  left: -380px;
  width: 500px;
  height: 86px;
  background-color: #fff;
  border-radius: 28px;
  border: 1px solid #083995;
}
#asistDensi #FV .img__txt span {
  font-size: 26px;
  padding: 0 4px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1440px) {
  #asistDensi #FV .img__txt span {
    font-size: 24px;
  }
}
@media screen and (max-width: 1280px) {
  #asistDensi #FV .img__txt span {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #FV .img__txt span {
    font-size: 20px;
  }
}
@media screen and (max-width: 1440px) {
  #asistDensi #FV .img__txt {
    font-size: 20px;
    width: 456px;
    height: 72px;
    border-radius: 22px;
  }
}
@media screen and (max-width: 1280px) {
  #asistDensi #FV .img__txt {
    font-size: 18px;
    width: 416px;
    height: 62px;
    border-radius: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #FV .img__txt {
    bottom: -110px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #FV .img__txt {
    font-size: 16px;
    width: 95%;
  }
}
#asistDensi #overview {
  position: relative;
  padding-top: 2%;
  padding-bottom: 10%;
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview {
    height: unset;
    margin-bottom: 180px;
  }
}
#asistDensi #overview .ttl {
  color: #083995;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1280px) {
  #asistDensi #overview .ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #overview .ttl {
    font-size: 26px;
  }
}
#asistDensi #overview .ttl__sub {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  #asistDensi #overview .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .ttl__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #overview .ttl__sub {
    font-size: 16px;
  }
}
#asistDensi #overview .bg {
  background-color: rgba(12, 128, 234, 0.1882352941);
  height: 822px;
  width: 64%;
  position: absolute;
  right: 0;
  border-radius: 40px 0 0 40px;
}
@media screen and (max-width: 1440px) {
  #asistDensi #overview .bg {
    height: 782px;
  }
}
@media screen and (max-width: 1280px) {
  #asistDensi #overview .bg {
    height: 752px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .bg {
    height: 532px;
    width: 90%;
    bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .bg {
    bottom: 25px;
    height: 622px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #overview .bg {
    height: 720px;
    top: 262px;
    border-radius: 26px 0 0 26px;
  }
}
#asistDensi #overview .content__wrap {
  display: flex;
  gap: 3%;
  align-items: center;
  margin-top: 3%;
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .content__wrap {
    display: block;
  }
}
#asistDensi #overview .content__left {
  background-color: #377AB6;
  border-radius: 0 36px 36px 0;
  width: 55%;
  height: 578px;
  position: relative;
}
@media screen and (max-width: 1440px) {
  #asistDensi #overview .content__left {
    height: 472px;
  }
}
@media screen and (max-width: 1280px) {
  #asistDensi #overview .content__left {
    height: 408px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .content__left {
    width: 90%;
    height: 503px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .content__left {
    height: 416px;
    border-radius: 0 26px 26px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #overview .content__left {
    height: 218px;
  }
}
#asistDensi #overview .content__left img {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  #asistDensi #overview .content__left img {
    width: calc(100% - 50px);
    height: calc(100% - 50px);
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #overview .content__left img {
    width: calc(100% - 30px);
    height: calc(100% - 30px);
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #overview .content__left img {
    border-radius: 16px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
#asistDensi #overview .content__right {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .content__right {
    width: 100%;
    display: grid;
    justify-items: end;
  }
}
#asistDensi #overview .content__txt {
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 32px;
  background-color: #fff;
  border-radius: 32px;
  position: relative;
  padding: 60px 38px;
  width: 90%;
}
@media screen and (max-width: 1440px) {
  #asistDensi #overview .content__txt {
    line-height: 28px;
  }
}
@media screen and (max-width: 1280px) {
  #asistDensi #overview .content__txt {
    font-size: 16px;
    padding: 50px 30px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .content__txt {
    padding: 30px;
    width: 76%;
    margin: 3% 7%;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .content__txt {
    border-radius: 26px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #overview .content__txt {
    letter-spacing: 1px;
    padding: 24px;
    border-radius: 16px;
    width: 76%;
  }
}
#asistDensi #overview .typewriter {
  color: #083995;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 1280px) {
  #asistDensi #overview .typewriter {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .typewriter {
    font-size: 18px;
  }
}
#asistDensi #overview .typewriter::after {
  content: "|";
  color: #333;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
#asistDensi #overview .deco {
  position: absolute;
  opacity: 0.6;
}
@media screen and (max-width: 1440px) {
  #asistDensi #overview .deco {
    transform: scale(0.8);
  }
}
#asistDensi #overview .deco__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
#asistDensi #overview .deco-1 {
  top: 20px;
  left: 38px;
  width: 28px;
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .deco-1 {
    display: none;
  }
}
#asistDensi #overview .deco-2 {
  top: 66px;
  left: 100px;
  width: 108px;
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .deco-2 {
    top: 49px;
    left: 30%;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .deco-2 {
    width: 62px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #overview .deco-2 {
    left: 11%;
  }
}
#asistDensi #overview .deco-3 {
  top: 88px;
  left: 38%;
  width: 68px;
  transform: rotate(270deg);
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .deco-3 {
    display: none;
  }
}
#asistDensi #overview .deco-4 {
  top: 150px;
  right: 38%;
  width: 25px;
}
@media screen and (max-width: 1440px) {
  #asistDensi #overview .deco-4 {
    top: 120px;
  }
}
@media screen and (max-width: 1280px) {
  #asistDensi #overview .deco-4 {
    top: 110px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .deco-4 {
    top: 86px;
    right: 160px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .deco-4 {
    width: 19px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #overview .deco-4 {
    top: 60px;
    right: 50px;
  }
}
#asistDensi #overview .deco-5 {
  right: 30px;
  top: 54px;
  width: 67px;
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .deco-5 {
    top: 660px;
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .deco-5 {
    width: 50px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #overview .deco-5 {
    top: 324px;
    left: 5px;
  }
}
#asistDensi #overview .deco-6 {
  bottom: 70px;
  left: 220px;
  width: 26px;
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .deco-6 {
    bottom: -114px;
    left: 50px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .deco-6 {
    width: 20px;
  }
}
#asistDensi #overview .deco-7 {
  bottom: 92px;
  left: 278px;
  width: 48px;
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .deco-7 {
    bottom: -84px;
    left: 80px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .deco-7 {
    width: 35px;
  }
}
#asistDensi #overview .deco-8 {
  bottom: 112px;
  right: 15%;
  width: 75px;
  transform: rotate(90deg);
}
@media screen and (max-width: 1280px) {
  #asistDensi #overview .deco-8 {
    bottom: 100px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #overview .deco-8 {
    bottom: -20px;
    right: 15%;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #overview .deco-8 {
    width: 56px;
  }
}
#asistDensi #feature .feature__wrap {
  padding: 2% 5%;
  margin-bottom: 5%;
}
#asistDensi #feature .card {
  background-color: rgba(12, 128, 234, 0.1);
  border-radius: 32px;
  border: 1px solid #083995;
  padding: 24px 30px 60px;
  display: grid;
  justify-items: center;
  text-align: center;
  transition: all 0.6s ease;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #asistDensi #feature .card {
    border-radius: 26px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #feature .card {
    padding: 16px 18px 60px;
  }
}
#asistDensi #feature .card__wrap {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 3%;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #asistDensi #feature .card__wrap {
    grid-template-columns: 80%;
    gap: 2%;
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #feature .card__wrap {
    grid-template-columns: 90%;
  }
}
#asistDensi #feature .card__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 26px;
}
@media screen and (max-width: 1024px) {
  #asistDensi #feature .card__img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #feature .card__img {
    border-radius: 16px;
  }
}
#asistDensi #feature .card__ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  #asistDensi #feature .card__ttl {
    font-size: 20px;
    margin: 14px 0;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #feature .card__ttl {
    font-size: 18px;
  }
}
#asistDensi #feature .card__border {
  width: 130px;
  border-bottom: 4px solid #377AB6;
  margin-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  #asistDensi #feature .card__border {
    width: 90px;
  }
}
#asistDensi #feature .card__txt {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 30px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  #asistDensi #feature .card__txt {
    font-size: 16px;
  }
}
#asistDensi #feature .card:hover {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
#asistDensi #feature .card__wrap .card {
  transform: scale(1);
  opacity: 1;
}
#asistDensi #feature .card__wrap.has-hover .card:not(:hover) {
  transform: scale(0.9);
  opacity: 0.7;
}
#asistDensi #contacts {
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 70%, rgb(255, 255, 255) 100%), url("../images/asistSeries/bg_blue.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 40px;
  text-align: center;
  display: grid;
  justify-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #asistDensi #contacts {
    background-size: 1080px auto;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts {
    height: unset;
    padding-bottom: 80px;
  }
}
#asistDensi #contacts .contact__box {
  width: 54%;
  min-width: 860px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #083995;
  display: grid;
  justify-items: center;
  align-content: center;
  margin: 40px 0 100px;
  padding: 40px 0;
}
@media screen and (max-width: 1280px) {
  #asistDensi #contacts .contact__box {
    width: 70%;
    min-width: unset;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #contacts .contact__box {
    width: 78%;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts .contact__box {
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #contacts .contact__box {
    width: 80%;
  }
}
#asistDensi #contacts .contact__txt {
  margin: 2% 0;
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts .contact__txt {
    padding: 0 16px;
  }
}
#asistDensi #contacts .ttl {
  color: #083995;
  font-size: 38px;
  font-weight: normal;
  text-align: center;
  margin: 0;
  padding-top: 24px;
}
@media screen and (max-width: 1280px) {
  #asistDensi #contacts .ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts .ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #contacts .ttl {
    font-size: 26px;
  }
}
#asistDensi #contacts .ttl__sub {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  #asistDensi #contacts .ttl__sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts .ttl__sub {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #contacts .ttl__sub {
    font-size: 16px;
  }
}
#asistDensi #contacts .btn__wrap {
  display: flex;
  gap: 5%;
  margin: 5% 0;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts .btn__wrap {
    display: block;
  }
}
#asistDensi #contacts .btn__img {
  width: 30px;
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts .btn__img {
    width: 25px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #contacts .btn__img {
    width: 20px;
  }
}
#asistDensi #contacts .btn__blue {
  color: #083995;
  font-size: 22px;
  font-weight: 500;
  width: 40%;
  height: 100px;
  border-radius: 32px;
  background-color: rgba(12, 128, 234, 0.062745098);
  border: none;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
#asistDensi #contacts .btn__blue:hover {
  color: #fff;
  background-color: rgba(8, 57, 149, 0.3019607843);
}
@media screen and (max-width: 1280px) {
  #asistDensi #contacts .btn__blue {
    font-size: 20px;
    width: 37%;
    height: 90px;
    border-radius: 28px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #contacts .btn__blue {
    font-size: 16px;
    width: 40%;
    height: 74px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts .btn__blue {
    margin: 20px auto;
    width: 70%;
    border-radius: 20px;
  }
}
@media screen and (max-width: 480px) {
  #asistDensi #contacts .btn__blue {
    font-size: 15px;
    height: 60px;
    border-radius: 16px;
  }
}
#asistDensi #contacts .address__wrap {
  display: flex;
  gap: 40px;
  margin: 5% 0;
}
@media screen and (max-width: 1280px) {
  #asistDensi #contacts .address__wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #contacts .address__wrap {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts .address__wrap {
    display: block;
    margin: 8% 0;
  }
}
#asistDensi #contacts .address__unit {
  text-align: left;
}
#asistDensi #contacts .address__unit::before {
  content: "";
  width: 214px;
  height: 6.5px;
  display: inline-block;
  background-image: url("../images/asistSeries/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  #asistDensi #contacts .address__unit::before {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #contacts .address__unit::before {
    width: 160px;
  }
}
#asistDensi #contacts .address__unit::after {
  content: "";
  width: 214px;
  height: 6.5px;
  display: inline-block;
  background-image: url("../images/asistSeries/line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  margin-top: 10px;
}
@media screen and (max-width: 1280px) {
  #asistDensi #contacts .address__unit::after {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #contacts .address__unit::after {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts .address__unit::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts .address__unit--last::after {
    content: "";
    width: 160px;
    height: 6.5px;
    display: inline-block;
    background-image: url("../images/asistSeries/line.svg");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    margin-top: 10px;
  }
}
#asistDensi #contacts .address__name {
  font-size: 20px;
  margin-bottom: 14px;
}
@media screen and (max-width: 1280px) {
  #asistDensi #contacts .address__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #contacts .address__name {
    font-size: 16px;
  }
}
#asistDensi #contacts .address__txt {
  margin: unset;
}
@media screen and (max-width: 1280px) {
  #asistDensi #contacts .address__txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #contacts .address__txt {
    font-size: 13px;
  }
}
#asistDensi #contacts .address__box {
  height: 100px;
}
@media screen and (max-width: 1280px) {
  #asistDensi #contacts .address__box {
    height: 90px;
  }
}
@media screen and (max-width: 1024px) {
  #asistDensi #contacts .address__box {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #asistDensi #contacts .address__box {
    height: unset;
    padding-bottom: 30px;
  }
}/*# sourceMappingURL=style_asist.css.map */