@charset "utf-8";

/*----------------------------------------------
BASE
------------------------------------------------*/
:root {
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --text: #444;
  --text-b: #333;
  --white: #fff;
  --primary: #001157;
  --gray: #F5F5F5;
}

body {
  width: 100%;
  height: 100%;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

p {
  line-height: 30px;
}

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

svg {
  margin-bottom: -1px;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

@media screen and (max-width:768px) {
  p {
    font-size: 14px;
    line-height: 24px;
  }

  br {
    display: none;
  }
}

/*----------------------------------------------
  共通
------------------------------------------------*/

.top-h2::before {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin: 0 auto 20px;
  border-radius: 50px;
  background: var(--primary);
}

.top-h2 {
  color: var(--primary);
  font-size: 80px;
  font-family: 'Montserrat';
  text-align: center;
  font-weight: 600;
  letter-spacing: 5px;
}

.top-h2-mini {
  display: block;
  margin: -5px 0 0;
  font-size: 20px;
  text-align: center;
  letter-spacing: 2px;
}

/*ボタン*/
.btn {
  display: flex;
  align-items: center;
  gap: 50px;
  transition: 0.5s;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 50px 10px 50px;
  border-radius: 50px;
  background: var(--primary);
  text-align: center;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
}

.btn:hover {
  background: #2c386b;
  transition: ease 0.5s;
}

.btn:hover span {
  transform: translate(5px, 0px);
}

.btn span {
  display: inline-block;
  width: 35px;
  height: 35px;
  padding-top: 5px;
  background: var(--white);
  border-radius: 100%;
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
  transition: transform 0.5s ease;
}

/*階層ページ*/
.pagebg {
  background-image: url(../img/pagebg-l.svg), url(../img/pagebg-r.svg);
  background-repeat: repeat-y, repeat-y;
  background-position: left center, right center;
  background-size: 15vw;
  background-attachment: fixed;
}

.header-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 315px;
  margin: 60px 0 0;
  padding: 30px;
  background: url(../img/headerimg.png);
  background-size: cover;
  background-position: right;
}

.header-text {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  font-family: 'Montserrat';
  color: var(--primary);
  font-weight: 600;
}

.header-text h2 {
  font-size: min(8vw, 70px);
  margin-bottom: 10px;
  text-shadow: 0 0 10px #FFFBF6,
    0 0 10px #FFFBF6,
    0 0 10px #FFFBF6,
    0 0 10px #FFFBF6;
}

.header-text p {
  font-size: min(4vw, 30px);
  font-weight: 700;
  text-shadow: 0 0 10px #FFFBF6,
    0 0 10px #FFFBF6,
    0 0 10px #FFFBF6,
    0 0 10px #FFFBF6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.breadcrumbs {
  width: 100%;
  height: 40px;
  padding-left: 30px;
  background: var(--white);
  border-top: solid 1px #E2E2E2;
  border-bottom: solid 1px #E2E2E2;
}

.breadcrumbs p {
  max-width: 1000px;
  width: 100%;
  margin: 5px auto 0;
  text-align: left;
  font-weight: 700;
}

.breadcrumbs span {
  color: #919191;
}

.page {
  width: min(85vw, 1000px);
  margin: 150px auto;
}

.gray {
  position: relative;
}

.gray-color {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: var(--gray);
  mix-blend-mode: multiply;
}

.page-gray {
  position: relative;
  z-index: 1;
  width: min(85vw, 1000px);
  margin: 0 auto;
  padding: 100px 0;
}

.page-h2 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0 0 50px;
  font-size: 36px;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.page-h2::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 40px;
  margin-top: 2px;
  background-color: var(--primary);
}

@media screen and (max-width:768px) {
  .top-h2 {
    font-size: 11vw;

  }

  .top-h2-mini {
    font-size: 4vw;
  }

  .header-img {
    height: 200px;
    background-size: cover;
    background-position: calc(100% - -80px) center;
  }

  .header-text h2 {
    margin-bottom: 0;
  }
}

@media screen and (max-width:500px) {
  .page {
    margin: 100px auto;
  }

  .page-h2 {
    font-size: 7vw;
  }

  .page-h2::before {
    height: calc(75 / 1024 * 100vw);
  }

  .header-img {
    height: 150px;
    background-size: cover;
    background-position: calc(100% - -80px) center;
  }
}

@media screen and (max-width:355px) {
  .btn {
    padding: 10px calc(150 / 1024 * 100vw);
    font-size: calc(40 / 1024 * 100vw);
    gap: calc(75 / 1024 * 100vw);
  }

  .btn span {
    display: inline-block;
    width: calc(75 / 1024 * 100vw);
    height: calc(75 / 1024 * 100vw);
    padding-top: calc(15 / 1024 * 100vw);
    font-size: calc(40 / 1024 * 100vw);
  }
}

/*----------------------------------------------
  header
------------------------------------------------*/
header {
  position: fixed;
  z-index: 10;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 30px;
  background: #fff;
  box-shadow: 0 0 6px 0 #00000016;
}

.header-pc {
  display: block;
}

.header-sp {
  display: none;
}

.header-pc>ul {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 60px;
  font-weight: 500;
}

.header-pc>ul>li>a {
  display: block;
  transition: all 0.2s ease;
  height: 60px;
  padding-top: 20px;
}

.header-pc>ul>li>a:hover {
  color: #919191;
}

.header-pc>ul>li:last-child>a {
  display: flex;
  align-items: center;
  gap: 10px;
  height: auto;
  padding: 10px 30px;
  background: var(--primary);
  border-radius: 50px;
  color: var(--white);
}

.header-pc>ul>li:last-child>a::before {
  content: "\f0e0";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

header>h1 {
  width: 250px;
}

.ddmenu {
  position: relative;
}

.ddmenu>ul {
  position: absolute;
  top: 64px;
  left: -55px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s ease;
  visibility: hidden;
  pointer-events: none;
  padding: 10px 20px;
  background: var(--white);
  box-shadow: 0 0 6px 0 #00000016;
  border-radius: 5px;
}

.ddmenu>ul::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0px;
  width: 100%;
  height: 4px;
}

.ddmenu:hover>ul {
  left: -55px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.ddmenu>ul>li {
  width: 140px;
  border-bottom: 1px solid #E2E2E2;
}

.ddmenu>ul>li:last-child {
  border-bottom: none;
}

.ddmenu>ul>li>a {
  display: block;
  padding-left: 5px;
  line-height: 50px;
  text-align: left;
}

.ddmenu>ul>li>a:hover {
  color: #919191;
}

/*-header-sp-*/
input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.header-sp {
  position: fixed;
  z-index: 10;
  top: 5px;
  right: 15px;
  height: 3rem;
}

.header_hamburger_btn {
  display: flex;
  position: relative;
  top: 0;
  z-index: 100;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.header_hamburger_btn span {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  content: "";
  width: 2rem;
  height: 2px;
  margin: 0 auto;
  background-color: #333;
  border-radius: 2rem;
}

.header_hamburger_btn span:nth-of-type(1) {
  top: 15px;
  transition: all 0.5s;
}

.header_hamburger_btn span:nth-of-type(2) {
  top: 25px;
  transition: all 0.2s;
}

.header_hamburger_btn span:nth-of-type(3) {
  top: 35px;
  transition: all 0.5s;
}

input[type="checkbox"]:checked+.header_hamburger_btn span:nth-of-type(1) {
  top: 25px;
  transform: rotate(45deg);
}

input[type="checkbox"]:checked+.header_hamburger_btn span:nth-of-type(2) {
  opacity: 0;
}

input[type="checkbox"]:checked+.header_hamburger_btn span:nth-of-type(3) {
  top: 25px;
  transform: rotate(-45deg);
}

.header_hamburger_nav {
  position: fixed;
  z-index: 9;
  top: 0px;
  right: -120%;
  width: 90%;
  height: 100%;
  list-style: none;
  overflow-y: scroll;
  background: var(--white);
  color: var(--text);
  transition: all 0.5s;
  text-align: center;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.header_hamburger_nav>ul>li {
  border-bottom: solid 1px #E2E2E2;
  padding: 0 20px;
  text-align: left;
}

.header_hamburger_nav>ul>li:last-child {
  border: none;
  text-align: center;
}


.header_hamburger_nav a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #E2E2E2;
  border-right: solid 2px #E2E2E2;
  transform: rotate(45deg);
}

.header_hamburger_nav>ul>li:first-child>a::after,
.header_hamburger_nav>ul>li:last-child>a::after {
  display: none;
}

.header_hamburger_nav>ul>li:nth-of-type(3)>span {
  display: block;
  padding: 20px 0 10px;
}

.header_hamburger_nav>ul>li:nth-of-type(3) a {
  padding-left: 20px;
}

.header_hamburger_nav>ul>li:last-child a {
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  color: var(--primary);
  border: solid 1px var(--primary);
}

.header_hamburger_nav>.copyright {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  border-top: solid 1px #E2E2E2;
  font-size: 10px;
}

.header_hamburger_nav>ul>li:last-child a::before {
  content: "\f0e0";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

.header_hamburger_nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  transition: transform 0.5s ease;
}

.header_hamburger_nav a:hover {
  opacity: .7;
}

.header_hamburger_nav>ul>li>a>img {
  width: auto;
  height: 40px;
}

.hamburger_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 4;
}

/* チェック状態で表示 */
input[type="checkbox"]:checked~.hamburger_bg {
  opacity: 1;
  visibility: visible;
}

.header_hamburger_nav::-webkit-scrollbar {
  display: none;
}


input[type="checkbox"]:checked~.header_hamburger_nav {
  right: 0;
}

@media screen and (max-height:650px) {
  .header_hamburger_nav>.copyright {
    position: relative;
    margin: 50px auto 0;
  }
}

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

  .header-sp {
    display: block;
  }

  header {
    padding: 0 20px;
  }

  header>h1 {
    max-width: 200px;
    width: 50%;
  }
}

/*----------------------------------------------
  footer
------------------------------------------------*/
.contact {
  padding: 100px;
  background-color: #182353;
  background-image: url(../img/footerbg01.svg), url(../img/footerbg02.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: contain;
  color: var(--white);
  text-align: center;
}

.contact h2 {
  color: var(--white);
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 5px;
}

.contact p {
  width: min(85vw, 900px);
  margin: 0 auto;
  padding: 20px 0 50px;
}

.contact>h2>span {
  display: block;
  padding-bottom: 10px;
  color: var(--white);
  font-size: 20px;
  font-family: 'Montserrat';
  text-align: center;
  font-weight: 600;
  letter-spacing: 2px;
}

.contact>ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: min(85vw, 900px);
  margin: 0 auto;
}

.contact>ul>li {
  width: 100%;
}

.contact>ul>li>a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}

.contact>ul>li:last-child>a {
  font-size: 30px;
  font-weight: 600;
}

.contact>ul>li:first-child>a::before,
.contact>ul>li:last-child>a::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 40px;
  text-decoration: none;
  color: #B1110E;
}

.contact>ul>li:first-child>a::before {
  content: "\f0e0";
}

.contact>ul>li:last-child>a::before {
  content: "\f095";
  transform: rotate(100deg);
}

@media screen and (max-width:900px) {
  .contact {
    padding: 100px 0px;
  }

  .contact>ul {
    flex-direction: column;
    gap: 20px;
  }

  .contact>ul>li {
    width: min(85vw, 500px);
    margin: 0 auto;
  }

  .contact>ul>li:first-child>a::before,
  .contact>ul>li:last-child>a::before {
    font-size: 28px;
  }

  .contact>ul>li>a {
    padding: 20px;
    font-size: min(5vw, 28px);
  }

  .contact>ul>li:last-child>a {
    font-size: min(6vw, 30px);
    font-weight: 600;
  }

  .contact {
    background-position: left top, right bottom;
    background-size: 40%;
  }
}

@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*footer*/
footer {
  background: var(--white);
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  border-bottom: solid 1px #E2E2E2;
}

.address {
  width: 35%;
}

.address p {
  font-size: 14px;
  line-height: 20px !important;
  color: #666;
}

.address p:nth-child(2) {
  font-weight: 800;
  padding-bottom: 10px;
  font-size: 16px;
  color: var(--text);
  line-height: 25px !important;
}

.address img {
  max-width: 400px;
  width: 100%;
  padding-bottom: 20px;
}

.footer ul {
  display: flex;
  gap: 50px;
  font-weight: 700;
}

.footer>ul>li:nth-of-type(3)>p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

footer>p {
  padding: 15px 50px;
  font-size: 10px;
  font-weight: 400;
  line-height: 10px;
}

@media screen and (max-width:1400px) {
  .footer {
    padding: 30px;
  }

  .footer ul {
    gap: 30px;
    font-size: 14px;
  }

  footer>p {
    text-align: center;
  }

  .address p {
    font-size: 14px;
    line-height: 20px;
  }

}

@media screen and (max-width:1100px) {
  .footer ul {
    flex-direction: column;
    width: 20%;
  }

  .address {
    width: 50%;
  }
}

@media screen and (max-width:768px) {
  .footer ul {
    display: none;
  }

  .footer {
    justify-content: center;
  }

  .address {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width:500px) {
  .address {
    width: 100%;
    text-align: left;
  }
}


/*----------------------------------------------
  top
------------------------------------------------*/
/*TOPページデザイン*/
.topbg {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  height: -webkit-fill-available;
}

.section-top {
  position: relative;
  width: 100%;
  height: 100vh;
  animation-name: fade;
  animation-duration: .5s;
  animation-timing-function: ease-in;
  animation-delay: .5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}


@keyframes fade {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
  }
}

.top>p>span {
  font-size: 2.2vw;
  line-height: calc(50 / 1024 * 100vw);
  font-weight: 700;
  letter-spacing: 5px;
  text-shadow: 0 0 10px #fff,
    0 0 10px #fff,
    0 0 10px #fff,
    0 0 10px #fff;
  color: var(--text-b);
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.top {
  position: absolute;
  bottom: 100px;
  left: 100px;
}

.top>ul {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.top>ul>li {
  padding: 25px 50px;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
}

.topsvg {
  position: fixed;
  z-index: 0;
}

.shapes {
  position: absolute;
  height: 100vh;
  height: -webkit-fill-available;
  right: -150px;
}


@media screen and (max-width:1600px) {
  .shapes {
    width: 80%;
  }
}

@media screen and (max-width:1400px) {
  .top {
    left: 50px;
    bottom: 50px;
  }

  .top>ul>li {
    font-size: 16px;
  }

  .shapes {
    width: 90%;
  }
}

@media screen and (max-width:1024px) {
  .topblock {
    display: block;
  }

  .top>p>span {
    font-size: 3vw;
    line-height: calc(70 / 1024 * 100vw);
  }

  .shapes {
    width: 100%;
  }

  .top>ul>li {
    width: 200px;
    text-align: center;
    padding: 20px;
    font-size: 16px;
  }
}

@media screen and (max-width:768px) {
  .top>ul {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
    gap: 15px;
  }

  .top>ul>li {
    width: 200px;
    text-align: center;
    padding: 15px 30px;
    font-size: 14px;
    letter-spacing: 2px;
  }


  .shapes {
    width: 110%;
    right: -120px;
    top: 50px;
  }

}

@media screen and (max-width:600px) {
  .shapes {
    width: 120%;
    right: -80px;
    top: 50px;
  }

  .top>p>span {
    font-size: 4.5vw;
    line-height: calc(100 / 1024 * 100vw);
    letter-spacing: 3px;
  }
}

@media screen and (max-width:500px) {
  .top {
    left: 25px;
    bottom: 30px;
  }

  .shapes {
    width: 120%;
    right: -80px;
    top: 50px;
  }
}

@media screen and (max-width: 1000px) and (min-height: 800px) {
  .section-top {
    height: 800px;
  }
}

@media screen and (max-width: 500px) and (min-height: 700px) {
  .section-top {
    height: 700px;
  }
}

@media screen and (max-width: 1100px) and (min-height: 1000px) {
  .section-top {
    height: 700px;
  }
}

@media screen and (max-width: 1000px) and (max-height: 500px) {
  .section-top {
    height: 800px;
  }
}

@media screen and (max-width: 500px) and (max-height: 600px) {
  .section-top {
    height: 600px;
  }
}

.circles {
  top: 0;
  left: 0;
  width: 50%;
  height: 100vh;
  height: -webkit-fill-available;
  overflow: hidden;
  padding-left: 300px;
  mix-blend-mode: multiply;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -30px;
}


.circles li:nth-child(1) {
  left: 3%;
  width: 20px;
  height: 20px;
  animation-delay: -14s;
  animation-duration: 22s;
  border-radius: 500px;
}

.circles li:nth-child(2) {
  left: 12%;
  width: 35px;
  height: 35px;
  animation-delay: 3s;
  animation-duration: 18s;
  border-radius: 0;
}

.circles li:nth-child(3) {
  left: 27%;
  width: 50px;
  height: 50px;
  animation-delay: -5s;
  animation-duration: 27s;
  border-radius: 500px;
}

.circles li:nth-child(4) {
  left: 41%;
  width: 25px;
  height: 25px;
  animation-delay: -9s;
  animation-duration: 19s;
  border-radius: 0;
}

.circles li:nth-child(5) {
  left: 54%;
  width: 30px;
  height: 30px;
  animation-delay: 6s;
  animation-duration: 30s;
  border-radius: 500px;
}

.circles li:nth-child(6) {
  left: 68%;
  width: 18px;
  height: 18px;
  animation-delay: -12s;
  animation-duration: 20s;
  border-radius: 0;
}

.circles li:nth-child(7) {
  left: 82%;
  width: 45px;
  height: 45px;
  animation-delay: 8s;
  animation-duration: 28s;
  border-radius: 500px;
}

.circles li:nth-child(8) {
  left: 95%;
  width: 33px;
  height: 33px;
  animation-delay: -3s;
  animation-duration: 24s;
  border-radius: 0;
}

.circles li:nth-child(9) {
  left: 6%;
  width: 48px;
  height: 48px;
  animation-delay: -17s;
  animation-duration: 25s;
  border-radius: 500px;
}

.circles li:nth-child(10) {
  left: 17%;
  width: 22px;
  height: 22px;
  animation-delay: -2s;
  animation-duration: 12s;
  border-radius: 0;
}

.circles li:nth-child(11) {
  left: 31%;
  width: 43px;
  height: 43px;
  animation-delay: 10s;
  animation-duration: 29s;
  border-radius: 500px;
}

.circles li:nth-child(12) {
  left: 46%;
  width: 14px;
  height: 14px;
  animation-delay: -8s;
  animation-duration: 15s;
  border-radius: 0;
}

.circles li:nth-child(13) {
  left: 61%;
  width: 55px;
  height: 55px;
  animation-delay: 7s;
  animation-duration: 21s;
  border-radius: 500px;
}

.circles li:nth-child(14) {
  left: 73%;
  width: 27px;
  height: 27px;
  animation-delay: -11s;
  animation-duration: 13s;
  border-radius: 0;
}

.circles li:nth-child(15) {
  left: 88%;
  width: 38px;
  height: 38px;
  animation-delay: -6s;
  animation-duration: 26s;
  border-radius: 500px;
}

.circles li:nth-child(16) {
  left: 9%;
  width: 36px;
  height: 36px;
  animation-delay: 5s;
  animation-duration: 19s;
  border-radius: 0;
}

.circles li:nth-child(17) {
  left: 23%;
  width: 30px;
  height: 30px;
  animation-delay: -15s;
  animation-duration: 30s;
  border-radius: 500px;
}

.circles li:nth-child(18) {
  left: 39%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
  animation-duration: 11s;
  border-radius: 0;
}

.circles li:nth-child(19) {
  left: 50%;
  width: 50px;
  height: 50px;
  animation-delay: 4s;
  animation-duration: 23s;
  border-radius: 500px;
}

.circles li:nth-child(20) {
  left: 65%;
  width: 16px;
  height: 16px;
  animation-delay: -10s;
  animation-duration: 14s;
  border-radius: 0;
}

.circles li:nth-child(21) {
  left: 78%;
  width: 58px;
  height: 58px;
  animation-delay: -7s;
  animation-duration: 25s;
  border-radius: 500px;
}

.circles li:nth-child(22) {
  left: 90%;
  width: 12px;
  height: 12px;
  animation-delay: 2s;
  animation-duration: 16s;
  border-radius: 0;
}

.circles li:nth-child(23) {
  left: 13%;
  width: 30px;
  height: 30px;
  animation-delay: -1s;
  animation-duration: 20s;
  border-radius: 500px;
}

.circles li:nth-child(24) {
  left: 34%;
  width: 24px;
  height: 24px;
  animation-delay: -19s;
  animation-duration: 13s;
  border-radius: 0;
}

.circles li:nth-child(25) {
  left: 77%;
  width: 40px;
  height: 40px;
  animation-delay: -13s;
  animation-duration: 27s;
  border-radius: 500px;
}



@keyframes animate {

  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    background-color: #8181fd20;
  }

  100% {
    background-color: #8181fd20;
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }

}


@media (max-width: 768px) {
  .circles li {
    display: none;
  }

  .circles li:nth-child(1) {
    display: block;
    left: 5%;
    width: 22px;
    height: 22px;
    animation-delay: -8s;
    animation-duration: 17s;
    border-radius: 500px;
  }

  .circles li:nth-child(3) {
    display: block;
    left: 13%;
    width: 18px;
    height: 18px;
    animation-delay: 3s;
    animation-duration: 15s;
    border-radius: 0;
  }

  .circles li:nth-child(5) {
    display: block;
    left: 21%;
    width: 25px;
    height: 25px;
    animation-delay: -5s;
    animation-duration: 20s;
    border-radius: 500px;
  }

  .circles li:nth-child(6) {
    display: block;
    left: 29%;
    width: 14px;
    height: 14px;
    animation-delay: 1s;
    animation-duration: 13s;
    border-radius: 0;
  }

  .circles li:nth-child(8) {
    display: block;
    left: 37%;
    width: 24px;
    height: 24px;
    animation-delay: -2s;
    animation-duration: 16s;
    border-radius: 500px;
  }

  .circles li:nth-child(9) {
    display: block;
    left: 45%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
    animation-duration: 14s;
    border-radius: 0;
  }

  .circles li:nth-child(11) {
    display: block;
    left: 53%;
    width: 16px;
    height: 16px;
    animation-delay: -7s;
    animation-duration: 18s;
    border-radius: 500px;
  }

  .circles li:nth-child(12) {
    display: block;
    left: 61%;
    width: 12px;
    height: 12px;
    animation-delay: 6s;
    animation-duration: 11s;
    border-radius: 0;
  }

  .circles li:nth-child(13) {
    display: block;
    left: 69%;
    width: 25px;
    height: 25px;
    animation-delay: -6s;
    animation-duration: 19s;
    border-radius: 500px;
  }

  .circles li:nth-child(15) {
    display: block;
    left: 76%;
    width: 10px;
    height: 10px;
    animation-delay: 2s;
    animation-duration: 12s;
    border-radius: 0;
  }

  .circles li:nth-child(17) {
    display: block;
    left: 82%;
    width: 22px;
    height: 22px;
    animation-delay: -3s;
    animation-duration: 17s;
    border-radius: 500px;
  }

  .circles li:nth-child(18) {
    display: block;
    left: 87%;
    width: 13px;
    height: 13px;
    animation-delay: 5s;
    animation-duration: 15s;
    border-radius: 0;
  }

  .circles li:nth-child(20) {
    display: block;
    left: 92%;
    width: 19px;
    height: 19px;
    animation-delay: -4s;
    animation-duration: 14s;
    border-radius: 500px;
  }

  .circles li:nth-child(22) {
    display: block;
    left: 96%;
    width: 8px;
    height: 8px;
    animation-delay: 0s;
    animation-duration: 10s;
    border-radius: 0;
  }

  .circles li:nth-child(25) {
    display: block;
    left: 99%;
    width: 23px;
    height: 23px;
    animation-delay: -1s;
    animation-duration: 16s;
    border-radius: 500px;
  }
}



/*----------------------------------------------
  about
------------------------------------------------*/
.section-about {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  text-align: center;
}

.about {
  position: relative;
  width: min(85vw, 1000px);
  margin: 0 auto;
  padding: 100px 0 100px;
}

.about>h2 {
  color: var(--primary);
  font-family: 'Montserrat';
  font-size: 110px;
  letter-spacing: 10px;
  font-weight: 600;
}

.about>div>h3 {
  margin: 50px 0;
  color: var(--primary);
  font-size: 50px;
  letter-spacing: 5px;
  line-height: 5rem;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.about>div>p {
  margin: 50px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 50px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--text-b);
}

@media screen and (max-width:1024px) {
  .about>div>h3 {
    margin: 30px 0;
    font-size: 5vw;
    line-height: calc(80 / 1024 * 100vw);
    letter-spacing: 2px;
  }

  .about>div>p {
    font-size: 16px;
    line-height: 40px;
  }
}

@media screen and (max-width:768px) {
  .about>h2 {
    font-size: 12vw;
    letter-spacing: 5px;
    text-align: left;
  }

  .about>div>h3 {
    margin: 30px 0;
    font-size: 7vw;
    line-height: calc(120 / 1024 * 100vw);
    letter-spacing: 1px;
    font-weight: 700;
    text-align: left;
  }

  .about>div>p {
    margin: 30px 0;
    text-align: left;
    font-size: 16px;
    line-height: 2rem;
    font-weight: 600;
  }

  .section-about {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    text-align: center;
  }
}

@media screen and (max-width:500px) {

  .about>h2 {
    font-size: 10vw;
    letter-spacing: 5px;
    font-weight: 700;
  }

  .about>div>h3 {
    margin: 20px 0 30px;
    font-size: 9vw;
    line-height: calc(150 / 1024 * 100vw);
    letter-spacing: 0px;
  }

  .about>div>p {
    margin: 20px 0 30px;
    text-align: left;
    font-size: 15px;
    line-height: 2rem;
    font-weight: 600;
  }
}

/*----------------------------------------------
  service
------------------------------------------------*/

.section-service {
  position: relative;
  background: linear-gradient(to bottom,
      rgba(245, 245, 245, 1) 0%,
      rgba(245, 245, 245, 0.9) 15%);
}

.obj {
  position: absolute;
  top: calc(-350 / 1024 * 100vw);
  width: 30vw;
}

.obj2 {
  position: absolute;
  top: 400px;
  right: 0;
}

.obj3 {
  position: absolute;
  bottom: -150px;
}

.service {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 100px;
  overflow-x: hidden;
}

.service li {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 100px 0;
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
  background: var(--white);
  box-shadow: 0 5px 10px 0 #00000025;
}

.service li:nth-child(2) {
  flex-direction: row-reverse;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}

.service>ul>li>img {
  width: 400px;
}

.service-text {
  padding: 0 60px;
}

.service-text h3 {
  padding-bottom: 10px;
  border-bottom: dotted 3px #E2E2E2;
  font-size: 36px;
  line-height: 50px;
  letter-spacing: 3px;
  color: var(--primary);
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.service-text p {
  margin: 30px 0;
}

@media screen and (max-width:1024px) {
  .obj {
    top: calc(-400 / 1024 * 100vw);
    width: 40vw;
  }

  .obj2 {
    display: none;
  }

  .obj3 {
    width: 40vw;
    bottom: calc(-100 / 1024 * 100vw);
  }

  .service li {
    width: 650px;
    margin: 230px auto;
    padding: 170px 70px 50px;
    text-align: center;
  }

  .service li,
  .service li:nth-child(2) {
    flex-direction: column;
    align-items: normal;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .service>ul>li>img {
    width: 50%;
    position: absolute;
    top: -180px;
    right: 0;
    left: 0;
    margin: 0 auto;
  }

  .service-text {
    padding: 0;
  }
}

@media screen and (max-width:768px) {
  .service li {
    width: 90vw;
    margin: 40vw auto 10vw;
    padding: 22vw 50px 30px;
  }

  .service>ul>li>img {
    width: 45%;
    position: absolute;
    top: calc(-240 / 1024 * 100vw);
  }

  .service-text h3 {
    font-size: 5.5vw;
    line-height: calc(80 / 1024 * 100vw);
    letter-spacing: 2px;
  }
}

@media screen and (max-width:500px) {
  .service li {
    padding: 37vw 30px 30px;
  }

  .service-text h3 {
    font-size: 6.5vw;
    line-height: calc(100 / 1024 * 100vw);
  }

  .service>ul>li>img {
    width: 60%;
    position: absolute;
    top: calc(-240 / 1024 * 100vw);
  }

  .service-text p {
    text-align: left;
  }
}

/*----------------------------------------------
  group
------------------------------------------------*/
.section-group {
  margin-top: 300px;
  padding: 100px 30px;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  text-align: center;
}

.section-group>p {
  padding: 30px 0;
}

.section-group>ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.section-group>ul>li {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  max-width: 700px;
  padding: 20px;
  border: solid 2px var(--primary);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 3px 6px 0 #00000016;
  color: var(--primary);
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}

.section-group>ul>li>img {
  width: 90px;
}

.group-text p:first-child {
  font-size: 20px;
  font-weight: 900;
}

.group-text>p:first-child>span {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

@media screen and (max-width:1024px) {
  .section-group>ul {
    flex-direction: column;
  }

  .section-group {
    margin-top: 200px;
  }
}

@media screen and (max-width:768px) {
  .section-group>p {
    text-align: left;
  }

  .section-group {
    margin-top: 150px;
  }

  .section-group {
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
}

@media screen and (max-width:500px) {
  .section-group>ul>li {
    flex-direction: column;
    text-align: center;
  }

  .group-text p:first-child {
    font-size: 16px;
  }

  .section-group>ul>li>img {
    width: 50%;
    margin: 0 auto;
  }

}

/*----------------------------------------------
PAGE-CHARACTERISTICS
------------------------------------------------*/
.page-group ul {
  display: flex;
  gap: 30px;
}

.page-group li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 30px;
  background-color: #fff;
  border: solid 2px var(--primary);
  border-radius: 10px;
  box-shadow: 0 3px 6px 0 #00000016;
  text-align: center;
}

.page-group-text p:first-of-type {
  font-size: min(5vw, 20px);
  font-weight: 800;
  color: var(--text-b);
}

.page-group>ul>li>img {
  width: 200px;
}

.page-group-img {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  width: 100%;
  height: 60px;
  margin: 30px auto;
  padding: 5px 0;
  border-radius: 50px;
  background: var(--primary);
  text-align: center;
}

.page-group-img img {
  max-width: 280px;
  width: 65%;
}

.page-point li {
  width: 100%;
  margin: 30px 0;
  padding: 50px;
  border: solid 1px #B9B9B9;
  border-radius: 10px;
  background: var(--white);
}

.page-point h3 {
  display: flex;
  gap: 10px;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-point h3::before {
  content: "ー";
  display: block;
  color: var(--primary);
}

.workflow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.workflow li {
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 3px 6px 0 #00000016;
  text-align: center;
}

.workflow img {
  width: 70%;
}

.workflow h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 30px;
}

.workflow>li>h3>span {
  display: block;
  color: var(--primary);
}

.workflow h3::after {
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  margin: 20px auto;
  border-radius: 50px;
  background: #E2E2E2;
}

.workflow p {
  line-height: 20px;
  text-align: left;
}

@media screen and (max-width:1024px) {
  .page-group ul {
    flex-direction: column;
  }

  .page-group li {
    gap: 50px;
    flex-direction: row;
    text-align: left;
  }

  .page-group>ul>li>img {
    width: 150px;
  }

  .workflow {
    grid-template-columns: 1fr 1fr;
  }

  .workflow img {
    width: 50%;
  }

  .workflow li {
    padding: 50px;
  }

  .workflow p {
    padding-left: 10%;
  }

  .workflow h3::after {
    width: 70%;
  }
}

@media screen and (max-width:768px) {
  .page-group li {
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }

  .page-group>ul>li>img {
    width: 200px;
  }

  .page-point li {
    padding: 30px;
  }

  .workflow li {
    padding: 30px;
  }

  .workflow p {
    padding-left: 0;
  }
}

@media screen and (max-width:500px) {
  .page-point h3 {
    font-size: 5vw;
    line-height: calc(70 / 1024 * 100vw);
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .workflow p {
    padding-left: 10%;
  }
}

/*----------------------------------------------
PAGE-SERVICE
------------------------------------------------*/
.page-service {
  display: flex;
  gap: 100px;
}

.page-service>div>p:nth-of-type(2) {
  margin: 20px 0;
  font-size: 24px;
  color: var(--primary);
  border-bottom: solid 1px #B9B9B9;
  line-height: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

.page-service ul>li::before {
  content: "●";
  color: var(--primary);
  margin-right: 10px;
}

.page-service ul>li {
  display: flex;
  margin: 20px 0;
  letter-spacing: 1px;
}

.page-service img {
  width: 50%;
}

.support {
  background: var(--white);
  border-radius: 10px;
  padding: 60px 100px 10px;
  border: solid 1px var(--primary);
}

.support-h3 {
  margin: 50px 0 20px;
  font-size: 24px;
  font-weight: 700;
}

.support-h3 span {
  color: var(--primary);
}

.container {
  position: relative;
}

.container:after {
  content: "";
  width: 2px;
  border-left: 2px solid var(--primary);
  position: absolute;
  top: 8px;
  bottom: -5px;
  left: 8px;
}

.container dl {
  overflow: hidden;
}

.support-lastchild dd,
.container dd {
  margin: 0 0 50px 50px;
  position: relative;
  text-align: left;
  border-bottom: 2px solid #E2E2E2;
  padding: 0 0 10px;
}

.support-lastchild dd {
  border-bottom: none;
  padding: 0;
}

.support-lastchild h4,
.container>dl>dd>h4 {
  display: flex;
  font-weight: bold;
  font-size: 24px;
  margin: 0 0 20px;
  letter-spacing: 3px;
  color: var(--text-b);
}

.support-lastchild h4:before,
.container>dl>dd>h4:before {
  display: block;
  content: "";
  z-index: 200;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: -50px;
  top: 5px;
}

@media screen and (max-width:1024px) {
  .page-service {
    gap: 30px;
  }
}

@media screen and (max-width:768px) {
  .page-service {
    flex-direction: column-reverse;
    align-items: center;
  }

  .page-service img {
    width: 40%;
  }

  .support {
    padding: 40px 40px 0;
  }

}

@media screen and (max-width:500px) {
  .page-service img {
    width: 70%;
  }

  .support-lastchild h4,
  .container>dl>dd>h4 {
    font-size: 4.5vw;
    letter-spacing: 1px;
    line-height: calc(70 / 1024 * 100vw);
  }

  .support-lastchild h4:before,
  .container>dl>dd>h4:before {
    width: 3vw;
    height: 3vw;
    left: -35px;
    top: 7px;
  }

  .support-lastchild dd,
  .container dd {
    margin: 0 0 50px 35px;
  }

  .container:after {
    left: calc(12 / 1024 * 100vw);
    bottom: -7px;
  }

  .support {
    padding: 50px 30px 0;
  }

  .support-h3 {
    font-size: 5vw;
  }
}

/*----------------------------------------------
PAGE-RECRUIT
------------------------------------------------*/
.recruit-table {
  width: 100%;
  margin: 30px 0;
  border: solid 1px #B9B9B9;
}

.recruit-table th {
  width: 30%;
  padding: 20px;
  border: solid 1px #B9B9B9;
  background: var(--gray);
  text-align: center;
  vertical-align: middle;
}

.recruit-table td {
  width: 70%;
  padding: 20px;
  border-bottom: solid 1px #B9B9B9;
  background: var(--white);
  line-height: 30px;
}

.recruit-02 {
  text-align: center;
}

.recruit-02 li {
  width: 100%;
  margin: 30px 0;
  padding: 30px;
  border: solid 1px #919191;
  border-radius: 10px;
  background: var(--white);
  text-align: left;
}

.recruit-02 h3 {
  display: flex;
  padding-bottom: 15px;
  border-bottom: solid 1px #E2E2E2;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-b);
}

.recruit-02>ul>li>p {
  display: flex;
  align-items: flex-start;
  padding-top: 15px;
}

.recruit-02>ul>li>h3>span {
  color: var(--primary);
  margin-right: 10px;
  font-size: 24px;
}

.recruit-02>ul>li>p>span {
  font-size: 24px;
  color: #B9B9B9;
  margin-right: 10px;
}

.recruit-02>p {
  margin: 30px auto;
}

@media screen and (max-width: 768px) {

  .recruit-table th,
  .recruit-table td {
    display: block;
    width: 100%;
  }

  .recruit-table td {
    font-size: 14px;
    border: solid 1px #B9B9B9;
  }
}


@media screen and (max-width: 500px) {
  .recruit-02 h3 {
    font-size: 4.5vw;
  }

  .recruit-02>ul>li>h3>span {
    line-height: 16px;
  }

  .recruit-02 li {
    margin: 20px 0;
    padding: 20px;
  }
}

/*----------------------------------------------
PAGE-COMPANY
------------------------------------------------*/
.page-company img {
  width: 100%;
  border-radius: 10px;
}

.company-img {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 50px auto;
}

.company-img>figure {
  max-width: 200px;
  width: 100%;
  text-align: center;
}

.company-img>figure>figcaption {
  padding-top: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.company-img>figure>figcaption>span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-b);
}

.company-h3 {
  margin: 50px 0 20px;
  font-size: min(4.7vw, 24px);
  color: var(--primary);
  font-weight: 700;
  line-height: 40px;
}

.company-table {
  width: 100%;
  margin: 0 0 100px;
}

.company-table th {
  width: 30%;
  padding: 30px 0 30px 30px;
  vertical-align: middle;
  letter-spacing: 5px;
  color: var(--text-b);
}

.company-table td {
  width: 70%;
  padding: 30px 0;
}


.company-table th,
.company-table td {
  border-bottom: solid 1px #B9B9B9;
}

@media screen and (max-width:500px) {
  .company-h3 {
    font-size: 4.7vw;
    line-height: calc(80 / 1024 * 100vw);

  }

  .company-img>figure>figcaption>span {
    font-size: 3vw;
  }

  .company-img>figure>figcaption {
    font-size: 4.5vw;
  }

  .company-img>figure {
    width: 40%;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 10px;
  }

  .company-table th {
    border: none;
    padding: 30px 10px 0;
  }
}

/*----------------------------------------------
PAGE-CONTACT
------------------------------------------------*/
.contactpage .page {
  width: min(90vw, 1000px);
}

.page-contact {
  margin: 20px 0;
  padding: 50px 100px;
  background: var(--white);
  box-shadow: 0 0 6px 0 #00000020;
}

.contact-text,
.contact-textarea {
  width: 100%;
  height: 40px;
  background: #F9F9F9;
  border: solid 1px #E2E2E2;
  padding-left: 10px;
}

.contact-textarea {
  height: 200px;
  margin-bottom: 50px;
  padding-top: 5px;
}

.page-contact p {
  margin-top: 10px;
}

.page-contact label {
  display: block;
  margin: 20px 0 5px;
}

.page-contact p:last-of-type {
  font-size: 14px;
  line-height: 20px;
}

.contact-submit {
  display: block;
  max-width: 250px;
  width: 80%;
  margin: 0 0 10px;
  padding: 10px;
  border-radius: 50px;
  background-color: #222;
  color: var(--white);
  text-align: center;
}

.contact-textlast {
  text-align: center;
  margin-bottom: 20px;
}

.contact-textlast a {
  color: #0088FF;
  border-bottom: solid 1px #0088FF;
}

.p-postal-code {
  width: 200px;
  margin: 0 0 5px;
}

.required {
  color: #ff0400;
  margin-left: 5px;
}

.address-none {
  margin: 0 0 20px 15px;
  font-size: 12px;
}

/*お問い合わせ確認画面*/
.contact-h3 {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: var(--text-b);
}

.formTable {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  width: 100%;
  margin: 0 0 50px;
}

.contact-submitbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.formTable tr {
  display: block;
  width: 100%;
  margin: 30px 0 10px;
}

.formTable td {
  white-space: normal;
  word-break: break-word;
}

.formTable>tbody>tr:last-of-type>td {
  display: block;
  width: 100%;
}

.formTable th::before {
  content: "●";
}

.formTable th::after {
  content: ":";
  margin-right: 20px;
}

.contact-send {
  display: block;
  margin: 20px 0;
}

@media screen and (max-width:1024px) {}

@media screen and (max-width:768px) {
  .page-contact {
    padding: 50px 30px;
  }

  .formTable th {
    margin: 10px 0 10px;
  }

  .formTable th,
  .formTable td {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width:500px) {
  .page-contact p:last-of-type {
    font-size: 12px;
    line-height: 20px;
  }

  .contact-submitbox {
    flex-direction: column;
    gap: 0;
  }
}

/*----------------------------------------------
PAGE-PRIVACY POLICY
------------------------------------------------*/
.privacypolicy p {
  font-size: 14px;
  margin: 50px 0 0;
}

.privacypolicy p:last-child {
  text-align: center;
}

.pp-color {
  display: block;
  font-size: 16px;
  color: var(--primary);
  font-weight: 700;
}

.pp-address {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 20px 0;
}

.pp-address>p {
  width: 100%;
  padding: 20px;
  margin: 0;
  border-radius: 10px;
  border: solid 1px var(--primary);
  text-align: center;
  line-height: 20px;
}

.pp-address>p>span:first-of-type {
  margin-bottom: 10px;
}


@media screen and (max-width:900px) {
  .pp-address {
    flex-direction: column;
    gap: 20px;
  }

  .pp-address>p {
    max-width: 500px;
  }
}

@media screen and (max-width:500px) {

  .pp-address>p {
    text-align: left !important;
  }
}

/*----------------------------------------------
ANIMATION
------------------------------------------------*/
.fade-in {
  opacity: 0;
}

.inview {
  animation-name: fade-in;
  animation-duration: .5s;
  animation-timing-function: ease-in;
  animation-delay: .5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.obj.inview,
.obj3.inview {
  animation-name: fade-in2;
  overflow: hidden;
}

.obj2.inview {
  animation-name: fade-in3;
  overflow: hidden;
}

.service li.inview {
  animation-duration: .3s;
  animation-timing-function: ease-in;
  animation-delay: .2s;
  animation-name: slide-r;
}

.service li:nth-of-type(2).inview {
  animation-duration: .3s;
  animation-timing-function: ease-in;
  animation-delay: .2s;
  animation-name: slide-l;
}

@keyframes fade-in {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fade-in2 {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes fade-in3 {
  0% {
    transform: translateX(40px);
    opacity: 0;
    overflow: hidden;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
    overflow: hidden;
  }
}

@keyframes slide-r {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes slide-l {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }

  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(0px);
  }
}

.anime-up.displayed span {
  animation: showText 1s backwards;
  display: inline-block;
}

.anime-up.displayed>span {
  overflow: hidden;
}

.anime-up span {
  opacity: 0;
  visibility: hidden;
}

.anime-up.displayed span {
  opacity: 1;
  visibility: visible;
}

.anime-up.displayed>span>span {
  animation: showTextFromBottom 0.5s backwards;
}


@media screen and (max-width:1024px) {
  .service li.inview {
    animation-name: fade-in !important;
  }
}
