@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
.header {
  position: fixed;
  width: 100vw;
  z-index: 999;
}
.header__inner {
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
  }
}
.header__logo {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 100px;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header .pc-menu {
  display: flex;
  align-self: stretch;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .header .pc-menu {
    display: none;
  }
}
.header .pc-menu .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}
.header .pc-menu .left a {
  color: #FA4878;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .pc-menu .left a i {
  font-size: 18px;
}
.header .pc-menu .left p {
  font-size: 16px;
}
.header .pc-menu .left p span {
  font-weight: 700;
}
.header .pc-menu .right a {
  display: flex;
  padding: 10px 40px;
  font-size: 20px;
  color: #fff;
  background-color: #333;
  border-radius: 10px;
  align-items: center;
  gap: 20px;
}
.header .pc-menu .right a i {
  font-size: 30px;
  transition: all 0.3s ease;
}
.header .pc-menu .right a:hover {
  opacity: 1 !important;
}
.header .pc-menu .right a:hover i {
  color: #FA4878;
}
.header .pc-link {
  position: relative;
  margin-top: 24px;
  margin-left: auto;
  margin-right: 50px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 30px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .header .pc-link {
    display: none;
  }
}
.header .pc-link a {
  position: relative;
  padding-left: 12px;
}
.header .pc-link a::before {
  content: "";
  display: block;
  position: absolute;
  width: 2.5px;
  height: 2.5px;
  top: 5px;
  left: 0;
  border-radius: 10px;
  background-color: #333;
}
.header .pc-link a::after {
  content: "";
  display: block;
  position: absolute;
  width: 2.5px;
  height: 2.5px;
  bottom: 5px;
  left: 0;
  border-radius: 10px;
  background-color: #333;
}
.header .sp-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 99px;
  border: 1px solid #FA4878;
  background-color: #fff;
  position: fixed;
  top: 10px;
  right: 15px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .header .sp-menu-btn {
    display: block;
  }
  .header .sp-menu-btn div:nth-of-type(1) {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5px;
    height: 2.5px;
  }
  .header .sp-menu-btn div:nth-of-type(1)::after, .header .sp-menu-btn div:nth-of-type(1)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5px;
    height: 2.5px;
    border-radius: 9px;
    background-color: #FA4878;
    transition: all 0.3s ease;
  }
  .header .sp-menu-btn div:nth-of-type(2) {
    position: absolute;
    width: 32%;
    height: 32%;
    top: 34%;
    left: 34%;
    overflow: hidden;
  }
  .header .sp-menu-btn div:nth-of-type(2)::after, .header .sp-menu-btn div:nth-of-type(2)::before {
    content: "";
    position: absolute;
    height: 150%;
    width: 1px;
    background-color: #FA4878;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transition: all 0.3s ease;
  }
  .header .sp-menu-btn div:nth-of-type(2)::after {
    transform: translate(-50%, -50%) rotate(0) scale(0);
  }
  .header .sp-menu-btn div:nth-of-type(2)::before {
    transform: translate(-50%, -50%) rotate(0) scale(0);
  }
  .header .sp-menu-btn div:nth-of-type(3) {
    position: absolute;
    bottom: 33%;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5px;
    height: 2.5px;
  }
  .header .sp-menu-btn div:nth-of-type(3)::after, .header .sp-menu-btn div:nth-of-type(3)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5px;
    height: 2.5px;
    border-radius: 9px;
    background-color: #FA4878;
    transition: all 0.3s ease;
  }
}
.header .sp-menu {
  display: none;
  width: 100%;
  height: 100vh;
  max-width: 350px;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  background-color: #FA4878;
  z-index: 998;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .header .sp-menu {
    display: block;
  }
}
.header .sp-menu .inner {
  padding: 100px 25px;
}
.header .sp-menu .inner .logo {
  width: 120px;
}
.header .sp-menu .inner .link {
  position: relative;
  margin-top: 40px;
  margin-left: auto;
  margin-right: 50px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  row-gap: 20px;
  font-size: 16px;
  flex-wrap: wrap;
  width: 100%;
  color: #fff;
}
.header .sp-menu .inner .link li {
  width: 50%;
}
.header .sp-menu .inner .link a {
  position: relative;
  padding-left: 12px;
}
.header .sp-menu .inner .link a::before {
  content: "";
  display: block;
  position: absolute;
  width: 2.5px;
  height: 2.5px;
  top: 7px;
  left: 0;
  border-radius: 10px;
  background-color: #fff;
}
.header .sp-menu .inner .link a::after {
  content: "";
  display: block;
  position: absolute;
  width: 2.5px;
  height: 2.5px;
  bottom: 5px;
  left: 0;
  border-radius: 10px;
  background-color: #fff;
}
@keyframes r2 {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(-360deg);
  }
}
.header .sp-menu .inner .ctb {
  position: relative;
  width: 160px;
  height: 160px;
  margin-left: 50%;
  display: block;
  transform-origin: center;
  animation: r2 10s linear infinite;
  margin-top: 50px;
  margin-bottom: 50px;
}
.header .sp-menu .inner .ctb img {
  width: 100%;
}
.header .sp-menu .inner .link2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: #fff;
  font-size: 16px;
  width: 100%;
  margin-bottom: 96px;
}
.header .sp-menu .inner .link2 li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menuopen .sp-menu-btn div:nth-of-type(1)::after, .menuopen .sp-menu-btn div:nth-of-type(3)::after {
  transform: translateX(-5.2px);
}
.menuopen .sp-menu-btn div:nth-of-type(1)::before, .menuopen .sp-menu-btn div:nth-of-type(3)::before {
  transform: translateX(5.2px);
}
.menuopen .sp-menu-btn div:nth-of-type(2)::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}
.menuopen .sp-menu-btn div:nth-of-type(2)::before {
  transform: translate(-50%, -50%) rotate(-45deg) scale(1);
}
.menuopen .sp-menu {
  transform: translateX(0);
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 997;
  background-color: #333;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  display: none;
}
@media screen and (max-width: 768px) {
  body::after {
    display: block;
  }
}
body.menuopen {
  overflow: hidden;
}
body.menuopen::after {
  opacity: 0.6;
}

.footer {
  background-color: #FA4878;
  padding: 0px 30px 60px;
  width: 100vw;
  overflow: hidden;
}
.footer__inner {
  position: relative;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
}
.footer__content .top-btn {
  width: 50px;
  height: 50px;
  border-radius: 99px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #fff;
  gap: 4px;
  cursor: pointer;
}
.footer__content .top-btn:hover {
  background-color: #fff;
  color: #FA4878;
}
.footer__content .top-btn:hover svg {
  transform: translateX(-50%);
}
.footer__content .top-btn:hover svg path:last-child {
  display: block;
}
.footer__content .top-btn:hover svg path:first-child {
  display: none;
}
.footer__content .top-btn svg {
  transform: translateX(-50%);
}
.footer__content .top-btn svg path:last-child {
  display: none;
}
.footer__content .footer__logo {
  width: 120px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.footer__link {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 30px;
  font-size: 16px;
  margin-bottom: 96px;
}
.footer__link a {
  position: relative;
  padding-left: 12px;
  color: #fff;
}
.footer__link a::before {
  content: "";
  display: block;
  position: absolute;
  width: 2.5px;
  height: 2.5px;
  top: 5px;
  left: 0;
  border-radius: 10px;
  background-color: #fff;
}
.footer__link a::after {
  content: "";
  display: block;
  position: absolute;
  width: 2.5px;
  height: 2.5px;
  bottom: 5px;
  left: 0;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__link {
    position: relative;
    margin-top: 40px;
    margin-left: auto;
    margin-right: 50px;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    row-gap: 20px;
    font-size: 16px;
    flex-wrap: wrap;
    width: 100%;
    color: #fff;
    row-gap: 30px;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-bottom: 50px;
  }
  .footer__link li {
    width: 50%;
  }
  .footer__link a {
    position: relative;
    padding-left: 12px;
  }
  .footer__link a::before {
    content: "";
    display: block;
    position: absolute;
    width: 2.5px;
    height: 2.5px;
    top: 7px;
    left: 0;
    border-radius: 10px;
    background-color: #fff;
  }
  .footer__link a::after {
    content: "";
    display: block;
    position: absolute;
    width: 2.5px;
    height: 2.5px;
    bottom: 5px;
    left: 0;
    border-radius: 10px;
    background-color: #fff;
  }
}
.footer__link2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  color: #fff;
  font-size: 14px;
  width: 100%;
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  .footer__link2 {
    gap: 30px;
  }
}
.footer__link2 li a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__copyright {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  margin-bottom: 64px;
  text-align: center;
  width: 100%;
  color: #fff;
}
@keyframes r1 {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(-360deg);
  }
}
@keyframes r3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.footer .footer__ctb {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  display: block;
  transform-origin: center;
  animation: r1 10s linear infinite;
}
.footer .footer__ctb img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer .footer__ctb {
    position: relative;
    width: 160px;
    height: 160px;
    display: block;
    transform-origin: center;
    animation: r3 10s linear infinite;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .footer .footer__ctb img {
    width: 100%;
  }
}

.wave {
  position: relative;
  height: 60px; /*何も表示されない場合は各波の親要素に高さを持たせましょう。*/
}

canvas {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

.fv {
  width: 100vw;
  height: max(60vw, 600px);
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 100vh;
  }
}
.fv__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 120vw;
  height: 120vw;
  border-radius: 9999px;
  overflow: hidden;
  transform: translate(35vw, -60vw);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__img {
    width: 200vh;
    height: 200vh;
    transform: translate(100vh, -120vh);
  }
}
.fv__img__inner {
  position: absolute;
  width: 85vw;
  height: 60vw;
  left: 0;
  top: 60vw;
}
@media screen and (max-width: 768px) {
  .fv__img__inner {
    width: 100vh;
    height: 80vh;
    top: 120vh;
  }
}
.fv__img__inner .fv-swiper {
  height: 100%;
}
@media screen and (max-width: 425px) {
  .fv__img__inner .swiper-slide img {
    margin-left: min(270px, 65vw);
  }
}
.fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__inner {
  position: relative;
  padding: 0 100px;
  width: 100%;
  height: 100%;
  max-width: 1620px;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .fv__inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .fv__inner {
    padding: 0 15px;
  }
}
.fv__inner .fv__content {
  position: absolute;
  top: max(50%, 320px);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content {
    transform: none;
    top: auto;
    bottom: 30px;
    width: calc(100% - 30px);
  }
}
.fv__inner .fv__content .fv__ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .fv__inner .fv__content .fv__ttl {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content .fv__ttl {
    margin-left: 25px;
  }
}
.fv__inner .fv__content .fv__ttl p {
  font-size: 40px;
  line-height: 80px;
}
@media screen and (max-width: 1024px) {
  .fv__inner .fv__content .fv__ttl p {
    line-height: 40px;
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content .fv__ttl p {
    font-size: 25px;
    line-height: 48px;
  }
}
.fv__inner .fv__content .fv__ttl p:first-child {
  position: relative;
}
.fv__inner .fv__content .fv__ttl p:first-child::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  top: 28px;
  left: -36px;
  border-radius: 10px;
  background-color: #333;
}
@media screen and (max-width: 1024px) {
  .fv__inner .fv__content .fv__ttl p:first-child::before {
    left: -18px;
  }
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content .fv__ttl p:first-child::before {
    left: -28px;
    top: 17px;
    width: 3px;
    height: 3px;
  }
}
.fv__inner .fv__content .fv__ttl p:first-child::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  bottom: 24px;
  left: -36px;
  border-radius: 10px;
  background-color: #333;
}
@media screen and (max-width: 1024px) {
  .fv__inner .fv__content .fv__ttl p:first-child::after {
    left: -18px;
  }
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content .fv__ttl p:first-child::after {
    left: -28px;
    bottom: 14px;
    width: 3px;
    height: 3px;
  }
}
.fv__inner .fv__content .fv__tag {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .fv__inner .fv__content .fv__tag {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content .fv__tag {
    gap: 8px;
    flex-wrap: wrap;
  }
}
.fv__inner .fv__content .fv__tag li {
  padding: 8px 16px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.fv__inner .fv__content .fv__tag li:nth-of-type(1) {
  background-color: #FA4878;
}
.fv__inner .fv__content .fv__tag li:nth-of-type(2) {
  background-color: #38CBD1;
}
.fv__inner .fv__content .fv__tag li:nth-of-type(3) {
  background-color: #A2D138;
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content .fv__tag li {
    padding: 6px 8px;
  }
}
.fv__inner .fv__content .fv__tag li a {
  position: relative;
  padding-left: 12px;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content .fv__tag li a {
    font-size: 8px;
    white-space: nowrap;
    padding-left: 8px;
  }
}
.fv__inner .fv__content .fv__tag li a::before {
  content: "";
  display: block;
  position: absolute;
  width: 2.5px;
  height: 2.5px;
  top: 2px;
  left: 0;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content .fv__tag li a::before {
    top: 1px;
  }
}
.fv__inner .fv__content .fv__tag li a::after {
  content: "";
  display: block;
  position: absolute;
  width: 2.5px;
  height: 2.5px;
  bottom: 2px;
  left: 0;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content .fv__tag li a::after {
    bottom: 1px;
  }
}
.fv__inner .fv__content .fv__note {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content .fv__note {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .fv__inner .fv__content .button {
    margin-left: 15px;
  }
}

#top {
  /*ローディング*/
}
#top section {
  max-width: 1720px;
  padding: 0 50px;
  margin: 0 auto 180px;
}
@media screen and (max-width: 768px) {
  #top section {
    padding: 0 25px;
	  margin-bottom: 100px;
  }
}
#top section .section-ttl {
  position: relative;
  margin-bottom: 100px;
}
#top section .section-ttl .circle {
  width: 250px;
  height: 250px;
  border-radius: 999px;
  background-color: #FA4878;
  position: absolute;
  left: -178px;
  top: -80px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top section .section-ttl .circle {
    width: 150px;
    height: 150px;
    left: -86px;
    top: -42px;
  }
}
#top section .section-ttl .circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #fff;
  transform: translateX(-50%) translateY(-22px);
}
@media screen and (max-width: 768px) {
  #top section .section-ttl .circle::after {
    transform: translateX(-50%) translateY(-18px);
  }
}
#top section .section-ttl .circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #fff;
  transform: translateX(-50%) translateY(6px);
}
@media screen and (max-width: 768px) {
  #top section .section-ttl .circle::before {
    transform: translateX(-50%) translateY(2px);
  }
}
#top section .section-ttl h2 {
  position: relative;
  font-size: 40px;
  z-index: 2;
  font-family: "Inter", sans-serif;
}
#top section .section-ttl h2 span {
  font-size: 60px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top section .section-ttl h2 {
    text-transform: uppercase;
    font-size: 30px;
  }
  #top section .section-ttl h2 span {
    font-size: 50px;
  }
}
#top section .section-ttl p {
  font-size: 18px;
  color: #FA4878;
  margin-left: 100px;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  #top section .section-ttl p {
    font-size: 14px;
    margin-left: 70px;
    margin-top: 10px;
  }
}
#top section .bottom {
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
  margin-top: 100px;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  #top section .bottom {
    justify-content: flex-start;
    padding: 0;
  }
}
#top #info {
  margin-bottom: 180px;
}
@media screen and (max-width: 768px) {
  #top #info {
    padding: 0;
  }
}
#top #info h2 {
  font-family: "Inter", sans-serif;
  font-size: 34px;
  margin-top: 40px;
  margin-bottom: 50px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top #info h2 {
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 40px;
  }
}
#top #info .info-swiper {
  overflow: hidden;
  padding: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top #info .info-swiper {
    padding: 25px;
    height: 140vw;
  }
}
#top #info .info-swiper .left-bg {
  position: absolute;
  height: 100%;
  width: 30px;
  left: -1px;
  top: 0;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top #info .info-swiper .left-bg {
    width: 22px;
  }
}
#top #info .info-swiper .right-bg {
  position: absolute;
  height: 100%;
  width: 30px;
  right: -1px;
  top: 0;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #top #info .info-swiper .right-bg {
    width: 22px;
  }
}
#top #info .swiper-button-next,
#top #info .swiper-button-prev {
  z-index: 2;
}
#top #info .swiper-button-next::after,
#top #info .swiper-button-prev::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 10px;
  transition: all 0.3s ease;
}
#top #info .swiper-button-next:hover::after,
#top #info .swiper-button-prev:hover::after {
  background-color: #FA4878;
}
@media screen and (max-width: 768px) {
  #top #info .swiper-button-prev {
    left: 0;
  }
  #top #info .swiper-button-next {
    right: 0;
  }
}
#top #info .card {
  width: auto;
  border-radius: 20px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0 0 24px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top #info .card {
    padding: 0 0 16px;
    border-radius: 10px;
    aspect-ratio: 5/7;
  }
}
#top #info .card__img {
  height: 240px;
  width: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #top #info .card__img {
    height: 50%;
  }
}
#top #info .card__img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
#top #info .card__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  color: #777;
  margin-bottom: 20px;
  padding: 0 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top #info .card__head {
    padding: 0 10px;
    margin-bottom: 10px;
  }
}
#top #info .card__head .cat {
  font-size: 14px;
  color: #fff;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  background-color: #333;
}
@media screen and (max-width: 768px) {
  #top #info .card__head .cat {
    font-size: 10px;
    padding: 8px;
    position: absolute;
    top: -40px;
    right: 10px;
  }
}
#top #info .card__content {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  #top #info .card__content {
    padding: 0 10px;
  }
}
#top #info .bottom {
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #top #info .bottom {
    justify-content: flex-start;
    padding: 0 25px;
  }
}
#top #aboutus__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top #aboutus__inner {
    flex-direction: column;
    gap: 50px;
  }
}
#top #aboutus__inner .left {
  font-size: 30px;
  line-height: 44px;
}
@media screen and (max-width: 768px) {
  #top #aboutus__inner .left {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 20px;
    line-height: 24px;
  }
}
#top #aboutus__inner .right img {
  width: 80%;
}
@media screen and (max-width: 768px) {
  #top #aboutus__inner .right img {
    width: 180px;
  }
}
#top #service .card {
  width: 600px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #top #service .card {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
#top #service .card img {
  width: 100%;
  aspect-ratio: 600/450;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 16px;
}
#top #service .card__head p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
  color: #AAA;
}
@media screen and (max-width: 768px) {
  #top #service .card__head p {
    font-size: 14px;
  }
}
#top #service .card__head h3 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #top #service .card__head h3 {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
#top #service .card__head h3 .button-arrow {
  width: 80px;
  height: 20px;
  overflow-x: hidden;
  position: relative;
  margin-left: 18px;
}
@media screen and (max-width: 768px) {
  #top #service .card__head h3 .button-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
#top #service .card__head h3 .button-arrow svg:first-of-type {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(0);
  transition: all 0s ease;
  transition-delay: 0s;
}
#top #service .card__head h3 .button-arrow svg:last-of-type {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-100%);
  transition: all 0s ease;
  transition-delay: 0s;
}
#top #service .card__content {
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  #top #service .card__content {
    font-size: 16px;
    line-height: 25px;
  }
}
#top #service .card:hover .button-arrow svg:first-of-type {
  transform: translateX(100%);
  transition: all 0.2s ease;
  transition-delay: 0s;
}
#top #service .card:hover .button-arrow svg:last-of-type {
  transform: translateX(0);
  transition: all 0.2s ease;
  transition-delay: 0.3s;
}
#top #service .service-swiper {
  overflow: hidden;
  padding: 10px;
  margin: -5px;
}
@media screen and (max-width: 768px) {
  #top #service .service-swiper {
    padding: 5px;
  }
}
#top #service .service-swiper .swiper-slide {
  transform-origin: top center;
  transform: scale(0.8);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #top #service .service-swiper .swiper-slide {
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) {
  #top #service .service-swiper .swiper-slide:nth-child(n+4) {
    display: none;
  }
}
#top #service .service-swiper .swiper-slide-active {
  transform: scale(1);
}
#top #arch .card {
  aspect-ratio: 1080/720;
  position: relative;
}
#top #arch .card__cat {
  font-size: 14px;
  transform-origin: left;
  transform: rotate(90deg);
  position: absolute;
  top: 0;
  right: -130px;
}
@media screen and (max-width: 768px) {
  #top #arch .card__cat {
    position: relative;
    transform: none;
    top: auto;
    right: auto;
    font-size: 10px;
    width: 100%;
    text-align: right;
    padding-right: 5px;
    margin-bottom: 8px;
  }
}
#top #arch .card__head {
  position: absolute;
  bottom: 0;
  max-width: 395px;
}
@media screen and (max-width: 768px) {
  #top #arch .card__head {
    position: relative;
    max-width: none;
    margin-top: -20px;
  }
}
#top #arch .card__head p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  margin-bottom: 30px;
  color: #777;
}
@media screen and (max-width: 768px) {
  #top #arch .card__head p {
    margin-bottom: 20px;
  }
}
#top #arch .card__head h3 {
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  #top #arch .card__head h3 {
    font-size: 16px;
    line-height: 20px;
  }
}
#top #contact h2 {
  font-family: "Inter", sans-serif;
  font-size: 34px;
  margin-bottom: 100px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top #contact h2 {
    font-size: 24px;
    margin-bottom: 50px;
  }
}
#top #contact .leading {
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #top #contact .leading {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
#top #contact .pc-menu {
  display: flex;
  align-self: stretch;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #top #contact .pc-menu {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
#top #contact .pc-menu .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 768px) {
  #top #contact .pc-menu .left {
    align-items: center;
    gap: 16px;
  }
}
#top #contact .pc-menu .left a {
  color: #FA4878;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
#top #contact .pc-menu .left a i {
  font-size: 18px;
}
#top #contact .pc-menu .left p {
  font-size: 16px;
}
#top #contact .pc-menu .left p span {
  font-weight: 700;
}
#top #contact .pc-menu .right a {
  display: flex;
  padding: 10px 40px;
  font-size: 20px;
  color: #fff;
  background-color: #333;
  border-radius: 10px;
  align-items: center;
  gap: 20px;
}
#top #contact .pc-menu .right a i {
  font-size: 30px;
  transition: all 0.3s ease;
}
#top #contact .pc-menu .right a:hover {
  opacity: 1 !important;
}
#top #contact .pc-menu .right a:hover i {
  color: #FA4878;
}
#top #imgs {
  padding: 0 8px;
}
#top #imgs ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #top #imgs ul {
    gap: 8px;
  }
}
@media screen and (max-width: 425px) {
  #top #imgs ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
#top #imgs ul li {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top #imgs ul li {
    border-radius: 10px;
  }
}
#top #imgs ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top #loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: #ebebeb;
}
#top #loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#top #loading_box img {
  width: 200px;
}
@media (max-width: 1023px) {
  #top #loading_text .progressbar-text {
    font-size: 0.8rem !important;
  }
}

.service_fv {
  width: 100vw;
  height: 100vh;
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service_fv {
    max-height: 700px;
  }
}
.service_fv__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.service_fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service_fv__inner {
  position: relative;
  padding: 0 100px;
  width: 100%;
  height: 100%;
  max-width: 1620px;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .service_fv__inner {
    padding: 0 25px;
  }
}
.service_fv-ttl {
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .service_fv-ttl {
    margin-bottom: 0px;
  }
}
.service_fv-ttl .circle {
  width: 250px;
  height: 250px;
  border-radius: 999px;
  border: 3px solid #FA4878;
  position: absolute;
  left: -178px;
  top: -80px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .service_fv-ttl .circle {
    width: 150px;
    height: 150px;
    left: -86px;
    top: -42px;
  }
}
.service_fv-ttl .circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #FA4878;
  transform: translateX(-50%) translateY(-22px);
}
@media screen and (max-width: 768px) {
  .service_fv-ttl .circle::after {
    left: calc(50% + 15px);
    transform: translateX(-50%) translateY(-17px);
  }
}
.service_fv-ttl .circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #FA4878;
  transform: translateX(-50%) translateY(6px);
}
@media screen and (max-width: 768px) {
  .service_fv-ttl .circle::before {
    left: calc(50% + 15px);
    transform: translateX(-50%) translateY(5px);
  }
}
.service_fv-ttl h2 {
  position: relative;
  font-size: 40px;
  z-index: 2;
  font-family: "Inter", sans-serif;
}
.service_fv-ttl h2 span {
  font-size: 60px;
  color: #FA4878;
}
@media screen and (max-width: 768px) {
  .service_fv-ttl h2 {
    font-size: 30px;
    text-transform: uppercase;
    padding-left: 25px;
  }
  .service_fv-ttl h2 span {
    font-size: 50px;
  }
}
.service_fv-ttl p {
  position: relative;
  z-index: 2;
  font-size: 18px;
  margin-top: 40px;
  max-width: 700px;
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .service_fv-ttl p {
    display: none;
  }
}
.service_fv-ttl p span {
  font-weight: 700;
}
.service_fv-ttl h3 {
  font-size: 40px;
  margin-top: 60px;
  line-height: 48px;
  text-shadow: 1px 1px 5px #fff;
}
@media screen and (max-width: 768px) {
  .service_fv-ttl h3 {
    margin-top: 100px;
    font-size: 24px;
    line-height: 30px;
  }
}

#service section {
  width: 100%;
  max-width: 1720px;
  padding: 0 50px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 768px) {
  #service section {
    padding: 0 25px;
  }
}
#service section .section-ttl {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #service section .section-ttl {
    margin-bottom: 50px;
  }
}
#service section .section-ttl h3 {
  position: relative;
  font-size: 30px;
  line-height: 50px;
  font-weight: 700;
  color: #FA4878;
}
@media screen and (max-width: 768px) {
  #service section .section-ttl h3 {
    font-size: 18px;
    line-height: 30px;
  }
}
#service section .section-ttl h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  top: 24px;
  transform: translateY(-8px);
  left: -20px;
  border-radius: 10px;
  background-color: #FA4878;
}
@media screen and (max-width: 768px) {
  #service section .section-ttl h3::before {
    left: -15px;
    top: 17px;
  }
}
#service section .section-ttl h3::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  top: 24px;
  transform: translateY(8px);
  left: -20px;
  border-radius: 10px;
  background-color: #FA4878;
}
@media screen and (max-width: 768px) {
  #service section .section-ttl h3::after {
    left: -15px;
    transform: translateY(-3px);
  }
}
#service section .section-ttl p {
  margin-top: 24px;
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  #service section .section-ttl p {
    font-size: 16px;
    line-height: 25px;
    margin-top: 16px;
  }
}
#service .service_list {
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 1;
  margin: 0 auto;
  position: relative;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
	#service .service_list{
	aspect-ratio: 0;
  }
}
#service .service_list .card {
  position: absolute;
  display: block;
  width: min(28.6666666667vw, 430px);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #service .service_list .card {
    width: 100%;
  }
}
#service .service_list .card img {
  width: 100%;
  aspect-ratio: 600/450;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: min(1.0666666667vw, 16px);
}
@media screen and (max-width: 768px) {
  #service .service_list .card img {
    margin-bottom: 10px;
  }
}
#service .service_list .card__head p {
  font-family: "Inter", sans-serif;
  font-size: min(1.0666666667vw, 16px);
  margin-bottom: min(0.5333333333vw, 8px);
  color: #AAA;
}
@media screen and (max-width: 768px) {
  #service .service_list .card__head p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
#service .service_list .card__head h3 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: min(1.3333333333vw, 20px);
  font-weight: 700;
  margin-bottom: min(2vw, 30px);
}
@media screen and (max-width: 768px) {
  #service .service_list .card__head h3 {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
#service .service_list .card__head h3 .button-arrow {
  width: min(5.3333333333vw, 80px);
  height: min(1.3333333333vw, 20px);
  overflow-x: hidden;
  position: relative;
  margin-left: min(1.2vw, 18px);
}
@media screen and (max-width: 768px) {
  #service .service_list .card__head h3 .button-arrow {
    width: 50px;
    height: 9.4px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
#service .service_list .card__head h3 .button-arrow svg:first-of-type {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(0);
  transition: all 0s ease;
  transition-delay: 0s;
}
#service .service_list .card__head h3 .button-arrow svg:last-of-type {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-100%);
  transition: all 0s ease;
  transition-delay: 0s;
}
#service .service_list .card__content {
  font-size: min(1.2vw, 18px);
  line-height: min(2vw, 30px);
}
@media screen and (max-width: 768px) {
  #service .service_list .card__content {
    font-size: 16px;
    line-height: 25px;
  }
}
#service .service_list .card:hover .button-arrow svg:first-of-type {
  transform: translateX(100%);
  transition: all 0.2s ease;
  transition-delay: 0s;
}
#service .service_list .card:hover .button-arrow svg:last-of-type {
  transform: translateX(0);
  transition: all 0.2s ease;
  transition-delay: 0.3s;
}
#service .service_list .card_01 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #service .service_list .card_01 {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
}
#service .service_list .card_02 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #service .service_list .card_02 {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }
}
#service .service_list .card_03 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #service .service_list .card_03 {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
  }
}
#service .service_list .txt__00 {
  width: min(16.6666666667vw, 250px);
  height: min(16.6666666667vw, 250px);
  border-radius: min(66.6vw, 999px);
  background-color: #FA4878;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: min(2vw, 30px);
  gap: min(1.6vw, 24px);
  color: #fff;
  padding-bottom: min(2.4vw, 36px);
}
@media screen and (max-width: 768px) {
  #service .service_list .txt__00 {
    font-size: 30px;
    transform: none;
    position: relative;
    left: auto;
    top: auto;
    gap: 20px;
    width: 250px;
    height: 250px;
    margin: 0 auto 30px;
  }
}
#service .service_list .txt__00 svg {
  width: min(6.6666666667vw, 100px);
}
@media screen and (max-width: 768px) {
  #service .service_list .txt__00 svg {
    width: 100px;
  }
}
#service .service_list .txt__01 {
  position: absolute;
  left: 0;
  top: 0;
  width: min(23.3333333333vw, 350px);
  height: min(23.3333333333vw, 350px);
  border-radius: min(66.6vw, 999px);
  border: 1px solid #FA4878;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #service .service_list .txt__01 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 250px;
    height: 250px;
    margin: 80px auto 30px;
  }
}
#service .service_list .txt__01 p {
  width: min(17.3333333333vw, 260px);
  font-size: min(1.3333333333vw, 20px);
  line-height: min(2vw, 30px);
  font-weight: 700;
  color: #FA4878;
}
@media screen and (max-width: 768px) {
  #service .service_list .txt__01 p {
    font-size: 16px;
    width: 200px;
    line-height: 20px;
  }
}
#service .service_list .txt__01 svg {
  position: absolute;
  height: min(13.3333333333vw, 200px);
  transform: rotate(-120deg);
  bottom: max(-5.6666666667vw, -85px);
  right: max(-1.3333333333vw, -20px);
}
@media screen and (max-width: 768px) {
  #service .service_list .txt__01 svg {
    height: 100px;
    transform: none;
    bottom: auto;
    left: 113px;
    right: auto;
    top: -64px;
  }
}
#service .service_list .txt__02 {
  position: absolute;
  right: 0;
  top: 0;
  width: min(23.3333333333vw, 350px);
  height: min(23.3333333333vw, 350px);
  border-radius: min(66.6vw, 999px);
  border: 1px solid #FA4878;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #service .service_list .txt__02 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 250px;
    height: 250px;
    margin: 80px auto 30px;
  }
}
#service .service_list .txt__02 p {
  width: min(17.3333333333vw, 260px);
  font-size: min(1.3333333333vw, 20px);
  line-height: min(2vw, 30px);
  font-weight: 700;
  color: #FA4878;
}
@media screen and (max-width: 768px) {
  #service .service_list .txt__02 p {
    font-size: 16px;
    width: 200px;
    line-height: 20px;
  }
}
#service .service_list .txt__02 svg {
  position: absolute;
  height: min(13.3333333333vw, 200px);
  transform: rotate(-60deg);
  bottom: max(-5.6666666667vw, -85px);
  left: max(-1.3333333333vw, -20px);
}
@media screen and (max-width: 768px) {
  #service .service_list .txt__02 svg {
    height: 100px;
    transform: none;
    bottom: auto;
    left: 113px;
    top: -64px;
  }
}
#service .service_list .txt__03 {
  position: absolute;
  left: 50%;
  bottom: min(6.6666666667vw, 100px);
  transform: translateX(-50%);
  width: min(23.3333333333vw, 350px);
  height: min(23.3333333333vw, 350px);
  border-radius: min(66.6vw, 999px);
  border: 1px solid #FA4878;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #service .service_list .txt__03 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 250px;
    height: 250px;
    margin: 80px auto 30px;
    transform: none;
  }
}
#service .service_list .txt__03 p {
  width: min(17.3333333333vw, 260px);
  font-size: min(1.3333333333vw, 20px);
  line-height: min(2vw, 30px);
  font-weight: 700;
  color: #FA4878;
}
@media screen and (max-width: 768px) {
  #service .service_list .txt__03 p {
    font-size: 16px;
    width: 200px;
    line-height: 20px;
  }
}
#service .service_list .txt__03 svg {
  position: absolute;
  height: min(13.3333333333vw, 200px);
  transform: rotate(90deg) scaleX(-1);
  top: max(-10.6666666667vw, -160px);
  left: min(9.3333333333vw, 140px);
}
@media screen and (max-width: 768px) {
  #service .service_list .txt__03 svg {
    height: 100px;
    transform: none;
    left: 113px;
    top: -64px;
  }
}
#service .service_list .sp-arrow {
  display: none;
}
@media screen and (max-width: 768px) {
  #service .service_list .sp-arrow {
    display: block;
    margin: 30px auto;
    width: -moz-fit-content;
    width: fit-content;
    transform: translateX(10px);
  }
  #service .service_list .sp-arrow svg {
    height: 100px;
  }
}
#service .service_list .pctext {
  display: block;
}
@media screen and (max-width: 768px) {
  #service .service_list .pctext {
    display: none;
  }
}
#service .service_list .sptext {
  display: none;
}
@media screen and (max-width: 768px) {
  #service .service_list .sptext {
    display: block;
    text-align: center;
  }
}
#service .service_suport .support-swiper {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  #service .service_suport .support-swiper {
    margin-top: 0;
  }
}
#service .service_suport .card {
  position: relative;
  height: 500px;
  width: 60%;
  min-width: 700px;
  z-index: 1;
  transition: all 0.3s ease;
  transform-origin: top;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #service .service_suport .card {
    width: 90%;
    min-width: 0;
    height: 380px;
  }
}
#service .service_suport .card__inner {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
}
@media screen and (max-width: 768px) {
  #service .service_suport .card__inner {
    flex-direction: column;
  }
}
#service .service_suport .card .batch {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 3px solid #333;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Inter", sans-serif;
  right: 0;
  top: 0;
  transform: translate(35px, -55px);
  background-color: #F2F2F2;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #service .service_suport .card .batch {
    width: 68px;
    height: 68px;
    transform: translate(15px, -16px);
  }
}
#service .service_suport .card .batch span {
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #service .service_suport .card .batch span {
    font-size: 10px;
    margin-top: 14px;
  }
}
#service .service_suport .card .batch p {
  display: flex;
  font-size: 64px;
  margin-top: 32px;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #service .service_suport .card .batch p {
    font-size: 26px;
    margin-top: 1px;
  }
}
#service .service_suport .card .batch p::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background-color: #333;
  transform: rotate(45deg);
  margin-top: 30px;
  margin-left: 24px;
}
@media screen and (max-width: 768px) {
  #service .service_suport .card .batch p::after {
    height: 10px;
    margin-top: 16px;
    margin-left: 4px;
  }
}
#service .service_suport .card .left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #service .service_suport .card .left {
    width: 100%;
    height: 50%;
  }
}
#service .service_suport .card .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#service .service_suport .card .right {
  width: 50%;
  background-color: #F2F2F2;
  padding: 0 30px;
  display: flex;
  align-items: center;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  #service .service_suport .card .right {
    width: 100%;
    height: 50%;
    padding: 30px;
    display: block;
  }
}
#service .service_suport .card .right p {
  font-size: 24px;
  line-height: 40px;
}
@media screen and (max-width: 768px) {
  #service .service_suport .card .right p {
    font-size: 16px;
    line-height: 25px;
  }
}
#service .service_suport .card.swiper-slide-active {
  z-index: 2;
  opacity: 1;
}
#service .service_suport .card.swiper-slide-active .right {
  background-color: #FA4878;
  color: #fff;
}
#service .service_suport .card.swiper-slide-active .batch {
  border-color: #FA4878;
  background-color: #fff;
  color: #FA4878;
}
#service .service_suport .card.swiper-slide-active .batch p::after {
  background-color: #FA4878;
}
#service .service_suport .card.swiper-slide-prev {
  transform: translate(300px, -80px) scale(0.8);
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  #service .service_suport .card.swiper-slide-prev {
    transform: translate(100px, 80px) scale(0.8);
  }
}
#service .service_suport .card.swiper-slide-next {
  transform: translate(-300px, -80px) scale(0.8);
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  #service .service_suport .card.swiper-slide-next {
    transform: translate(-100px, 80px) scale(0.8);
  }
}
#service .service_feature ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  #service .service_feature ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 540px) {
  #service .service_feature ul {
    grid-template-columns: 1fr;
  }
}
#service .service_feature ul li {
  padding: 40px;
  background-color: #F2F2F2;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FA4878;
  gap: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  #service .service_feature ul li {
    padding: 30px;
    aspect-ratio: 1;
    max-height: 500px;
    max-width: 100%;
  }
}
#service .service_feature ul li i {
  font-size: 60px;
}
#service .service_feature ul li p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  #service .service_schedule .schedule-table {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 0 0 25px;
    overflow-x: scroll;
  }
}
#service .service_schedule table {
  position: relative;
  width: 800px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 425px) {
  #service .service_schedule table {
    width: 600px;
  }
}
#service .service_schedule table tr {
  display: flex;
}
#service .service_schedule table tr:first-of-type td {
  padding: 30px;
}
#service .service_schedule table tr:first-of-type td:first-of-type::after {
  content: "";
  position: absolute;
  width: calc((100% - 80px) / 3);
  height: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.16);
  z-index: -1;
}
#service .service_schedule table tr:first-of-type td:first-of-type span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 8px 30px;
  background-color: #000;
  color: #fff;
  font-weight: 400;
  margin-top: 15px;
}
#service .service_schedule table tr:first-of-type td:last-of-type::after {
  content: "";
  position: absolute;
  width: calc((100% - 80px) / 3);
  height: 100%;
  top: 0;
  background-image: linear-gradient(180deg, rgba(91, 94, 192, 0.16), rgba(213, 62, 140, 0.16) 33%, rgba(254, 86, 63, 0.16) 66%, rgba(255, 193, 79, 0.16));
  z-index: -1;
}
#service .service_schedule table tr:first-of-type td:last-of-type span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 8px 30px;
  background-image: linear-gradient(90deg, rgb(91, 94, 192), rgb(213, 62, 140) 33%, rgb(254, 86, 63) 66%, rgb(255, 193, 79));
  color: #fff;
  font-weight: 400;
  margin-top: 15px;
}
#service .service_schedule table tr:first-of-type td h3 {
  font-size: 14px;
  line-height: 20px;
}
#service .service_schedule table tr:first-of-type td img {
  margin-top: 15px;
  height: 26px;
  width: auto;
}
#service .service_schedule table tr:not(:first-of-type) th,
#service .service_schedule table tr:not(:first-of-type) td {
  background-image: linear-gradient(to right, #000, #000 5px, transparent 5px, transparent 10px);
  background-size: 10px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
#service .service_schedule table tr th {
  width: 80px;
  padding-top: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
#service .service_schedule table tr th p {
  font-size: 14px;
  margin-bottom: 24px;
}
@media screen and (max-width: 425px) {
  #service .service_schedule table tr th p {
    margin-bottom: 8px;
  }
}
#service .service_schedule table tr th span {
  font-size: 12px;
  margin-bottom: 8px;
}
#service .service_schedule table tr th svg {
  margin-left: 24px;
}
#service .service_schedule table tr td {
  width: calc((100% - 80px) / 3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 425px) {
  #service .service_schedule table tr td {
    padding: 15px;
  }
}
#service .service_schedule table tr td h4 {
  display: block;
  width: 100%;
  padding: 30px 0;
  text-align: center;
  font-size: 20px;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 10px;
}
@media screen and (max-width: 425px) {
  #service .service_schedule table tr td h4 {
    padding: 16px 0;
    font-size: 16px;
  }
}
#service .service_schedule table tr td p {
  margin-top: 15px;
  font-size: 12px;
  line-height: 20px;
}
@media screen and (max-width: 425px) {
  #service .service_schedule table tr td p {
    margin-top: 8px;
  }
}
@media screen and (max-width: 1024px) {
  #service .service_price .price-table {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 0 0 25px;
    overflow-x: scroll;
    overflow-y: visible;
    padding-top: 60px;
    margin-top: -40px;
  }
}
#service .service_price table {
  position: relative;
  width: 800px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 425px) {
  #service .service_price table {
    width: 600px;
  }
}
#service .service_price table tr {
  display: flex;
}
#service .service_price table tr:first-of-type td {
  padding: 40px;
}
#service .service_price table tr:first-of-type td::after {
  content: "";
  position: absolute;
  width: 25%;
  height: 100%;
  top: 0;
  z-index: -1;
}
#service .service_price table tr:first-of-type td:nth-of-type(1)::after {
  background-color: rgba(105, 203, 255, 0.16);
}
#service .service_price table tr:first-of-type td:nth-of-type(1) h3 {
  color: #2CAEDE;
}
#service .service_price table tr:first-of-type td:nth-of-type(1) span {
  background-color: #2CAEDE;
}
#service .service_price table tr:first-of-type td:nth-of-type(2)::after {
  background-color: rgba(55, 201, 19, 0.16);
}
#service .service_price table tr:first-of-type td:nth-of-type(2) h3 {
  color: #56B246;
}
#service .service_price table tr:first-of-type td:nth-of-type(2) span {
  background-color: #56B246;
}
#service .service_price table tr:first-of-type td:nth-of-type(2) svg {
  margin-top: -100px;
  margin-bottom: 5px;
}
#service .service_price table tr:first-of-type td:nth-of-type(3)::after {
  background-color: rgba(250, 72, 120, 0.16);
}
#service .service_price table tr:first-of-type td:nth-of-type(3) h3 {
  color: #FA4878;
}
#service .service_price table tr:first-of-type td:nth-of-type(3) span {
  background-color: #FA4878;
}
#service .service_price table tr:first-of-type td h3 {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
#service .service_price table tr:first-of-type td span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  color: #fff;
  font-weight: 400;
  margin-top: 15px;
  white-space: nowrap;
}
#service .service_price table tr th,
#service .service_price table tr td {
  background-image: linear-gradient(to right, #000, #000 5px, transparent 5px, transparent 10px);
  background-size: 10px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
#service .service_price table tr th {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 400;
  text-align: center;
}
#service .service_price table tr th p {
  font-size: 18px;
}
@media screen and (max-width: 425px) {
  #service .service_price table tr th p {
    font-size: 14px;
  }
}
#service .service_price table tr th span {
  font-size: 12px;
  line-height: 15px;
}
#service .service_price table tr td {
  width: 25%;
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 425px) {
  #service .service_price table tr td {
    padding: 20px 8px;
  }
}
#service .service_price table tr td p {
  font-size: 16px;
  font-weight: 700;
  line-height: 25px;
}
@media screen and (max-width: 425px) {
  #service .service_price table tr td p {
    font-size: 12px;
    line-height: 20px;
  }
}
#service .service_price table tr td h3 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  white-space: nowrap;
  color: #FA4878;
  font-weight: 700;
}
@media screen and (max-width: 425px) {
  #service .service_price table tr td h3 {
    font-size: 18px;
  }
}
#service .service_price table tr td h4 {
  font-size: 20px;
  white-space: nowrap;
  font-weight: 700;
}
@media screen and (max-width: 425px) {
  #service .service_price table tr td h4 {
    font-size: 16px;
  }
}
#service .service_price table tr td i {
  width: 48px;
  height: 48px;
  border-radius: 99px;
  border: 5px solid #333;
}
@media screen and (max-width: 425px) {
  #service .service_price table tr td i {
    width: 32px;
    height: 32px;
  }
}
#service .service_price ul {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 50px;
}
#service .service_price ul li {
  font-size: 14px;
  line-height: 30px;
  position: relative;
  padding-left: 26px;
}
@media screen and (max-width: 768px) {
  #service .service_price ul li {
    font-size: 12px;
  }
}
#service .service_price ul li::after {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 15px;
  left: 0;
}
#service .service_example .example .info {
  background-image: linear-gradient(to right, #000, #000 5px, transparent 5px, transparent 10px);
  background-size: 10px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  #service .service_example .example .info {
    padding-bottom: 8px;
  }
}
#service .service_example .example .info ul {
  display: flex;
  flex-wrap: wrap;
}
#service .service_example .example .info ul li {
  position: relative;
  padding: 16px;
  display: flex;
  gap: 16px;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #service .service_example .example .info ul li {
    padding: 8px;
    gap: 8px;
    font-size: 12px;
  }
}
#service .service_example .example .info ul li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #333;
}
@media screen and (max-width: 768px) {
  #service .service_example .example .info ul li::before {
    height: 14px;
  }
}
#service .service_example .example .info ul li::before:last-of-type {
  padding-left: 0;
}
#service .service_example .example .info ul li::before:last-of-type {
  padding-right: 0;
}
#service .service_example .example .info ul li::before:last-of-type::before {
  display: none;
}
#service .service_example .example .info ul li::before h3 {
  font-weight: 700;
}
#service .service_example .example .info ul li::before strong {
  font-size: 16px;
  color: #FA4878;
}
@media screen and (max-width: 768px) {
  #service .service_example .example .info ul li::before strong {
    font-size: 14px;
  }
}
#service .service_example .example .before,
#service .service_example .example .after {
  padding-top: 32px;
}
@media screen and (max-width: 768px) {
  #service .service_example .example .before,
  #service .service_example .example .after {
    padding-top: 16px;
  }
}
#service .service_example .example .before h2,
#service .service_example .example .after h2 {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #service .service_example .example .before h2,
  #service .service_example .example .after h2 {
    padding-top: 8px;
    font-size: 18px;
  }
}
#service .service_example .example .before ul,
#service .service_example .example .after ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
#service .service_example .example .before ul li img,
#service .service_example .example .after ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#service .service_example .example .after h2 {
  color: #FA4878;
}
#service .service_example .example .after ul {
  grid-template-columns: 1fr 1fr 1fr;
}
#service .service_example .example_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media screen and (max-width: 1200px) {
  #service .service_example .example_list {
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media screen and (max-width: 1024px) {
  #service .service_example .example_list {
    -moz-column-gap: 32px;
         column-gap: 32px;
    grid-template-columns: 1fr;
  }
}

#contact {
  padding-top: 250px;
}
#contact section {
  width: 100%;
  max-width: 1720px;
  padding: 0 50px;
  margin: 0 auto 120px;
  display: flex;
}
@media screen and (max-width: 768px) {
  #contact section {
    flex-direction: column;
    padding: 0 24px;
  }
}
#contact section .section-ttl {
  width: 50%;
  padding-right: 25px;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #contact section .section-ttl {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 50px;
  }
}
#contact section .section-ttl .circle {
  width: 250px;
  height: 250px;
  border-radius: 999px;
  border: 3px solid #FA4878;
  position: absolute;
  left: -178px;
  top: -80px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #contact section .section-ttl .circle {
    width: 150px;
    height: 150px;
    left: -86px;
    top: -42px;
  }
}
#contact section .section-ttl .circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #FA4878;
  transform: translateX(-50%) translateY(-22px);
}
@media screen and (max-width: 768px) {
  #contact section .section-ttl .circle::after {
    left: calc(50% + 15px);
    transform: translateX(-50%) translateY(-17px);
  }
}
#contact section .section-ttl .circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #FA4878;
  transform: translateX(-50%) translateY(6px);
}
@media screen and (max-width: 768px) {
  #contact section .section-ttl .circle::before {
    left: calc(50% + 15px);
    transform: translateX(-50%) translateY(5px);
  }
}
#contact section .section-ttl h2 {
  position: relative;
  font-size: 40px;
  z-index: 2;
  font-family: "Inter", sans-serif;
}
#contact section .section-ttl h2 span {
  font-size: 60px;
  color: #FA4878;
}
@media screen and (max-width: 768px) {
  #contact section .section-ttl h2 {
    font-size: 30px;
    text-transform: uppercase;
    padding-left: 25px;
  }
  #contact section .section-ttl h2 span {
    font-size: 50px;
  }
}
#contact section .section-ttl p {
  position: relative;
  z-index: 2;
  font-size: 18px;
  margin-top: 40px;
  max-width: 700px;
  font-size: 18px;
  line-height: 30px;
}
#contact section .section-ttl p span {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #contact section .section-ttl p {
    font-size: 16px;
    margin-top: 25px;
    line-height: 25px;
  }
}
#contact section .section-ttl .left {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Inter", sans-serif;
  gap: 8px;
}
#contact section .section-ttl .left a {
  color: #FA4878;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
#contact section .section-ttl .left a i {
  font-size: 18px;
}
#contact section .section-ttl .left p {
  margin-top: 0;
  font-size: 16px;
}
#contact section .section-ttl .left p span {
  font-weight: 700;
}
#contact section .contact {
  width: 50%;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #contact section .contact {
    width: 100%;
    padding-left: 0px;
  }
}
#contact section .contact h4 {
  font-size: 18px;
  color: #AAA;
  margin-bottom: 12px;
}
#contact section .contact .item,
#contact section .contact .item-zip,
#contact section .contact .item-2col {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
#contact section .contact .item-2col > p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 768px) {
	#contact section .contact .item-2col > p {
	  grid-template-columns: 1fr;
	}
}
#contact section .contact .item-2col > p label input {
  width: 100%;
}
#contact section .contact .item-zip {
  display: flex;
  align-items: center;
  gap: 12px;
}
#contact section .contact .item-zip input {
  max-width: 180px;
}
#contact section .contact input[type=text],
#contact section .contact input[type=email],
#contact section .contact input[type=tel] {
  width: 100%;
  font-size: 18px;
  line-height: 50px;
  padding: 0 16px;
  background-color: #F4F4F4;
  height: 50px;
}
#contact section .contact select {
  font-size: 18px;
  line-height: 50px;
  height: 50px;
  padding: 0 16px;
  background-color: #F4F4F4;
  width: 100%;
  color: #999;
}
#contact section .contact .fa-caret-right {
  position: absolute;
  right: 16px;
  top: 16px;
  transform: rotate(90deg);
  color: #999;
  font-size: 20px;
}
#contact section .contact textarea {
  font-size: 18px;
  padding: 16px;
  background-color: #F4F4F4;
  width: 100%;
}
#contact section .contact .item-2col label:has(.wpcf7-validates-as-required) {
  position: relative;
}
#contact section .contact .item-2col label:has(.wpcf7-validates-as-required)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 50px;
  background-color: #FA4878;
  z-index: 2;
}
#contact section .contact .item p:has(select):has(.wpcf7-validates-as-required),
#contact section .contact .item p:has(input):has(.wpcf7-validates-as-required) {
  position: relative;
}
#contact section .contact .item p:has(select):has(.wpcf7-validates-as-required)::before,
#contact section .contact .item p:has(input):has(.wpcf7-validates-as-required)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 50px;
  background-color: #FA4878;
  z-index: 2;
}
#contact section .contact p:has(textarea):has(.wpcf7-validates-as-required) {
  position: relative;
}
#contact section .contact p:has(textarea):has(.wpcf7-validates-as-required)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: #FA4878;
  z-index: 2;
}
#contact section .contact .wpcf7-list-item {
  margin: 0;
}
#contact section .contact .wpcf7-spinner {
  margin: 0;
  max-width: 0;
}
#contact section .contact .wpcf7-not-valid-tip {
  font-size: 12px;
  padding: 8px;
  background-color: #fff;
  z-index: 3;
  position: relative;
}
#contact section .contact input[type=radio] {
  display: none;
}
#contact section .contact input[type=radio] + span {
  position: relative;
  padding-left: 36px;
  margin-right: 40px;
  font-size: 18px;
  cursor: pointer;
}
#contact section .contact input[type=radio] + span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  border-radius: 99px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#contact section .contact input[type=radio]:checked + span {
  position: relative;
  padding-left: 36px;
  margin-right: 40px;
}
#contact section .contact input[type=radio]:checked + span::before {
  background-color: #FA4878;
}
#contact section .contact .check p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 12px;
  color: #AAA;
}
#contact section .contact .check p a {
  color: #333;
}
#contact section .contact .check p input {
  display: none;
}
#contact section .contact .check p input + span {
  display: flex;
  align-items: center;
}
#contact section .contact .check p input + span label {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #AAA;
  margin-right: 16px;
}
#contact section .contact .check p input:checked + span label {
  background-color: #FA4878;
}
#contact section .contact .submit {
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
}
#contact section .contact .submit button {
  display: flex;
  padding: 15px 40px;
  font-size: 20px;
  color: #fff;
  background-color: #333;
  border-radius: 10px;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
	#contact section .contact .submit button {
		padding: 15px;
		gap: 8px;
		width: 100%;
		font-size: 18px;
	}
}
#contact section .contact .submit button i {
  font-size: 30px;
}
#contact section .contact .submit button:hover {
  opacity: 1 !important;
  background-color: #FA4878;
}
#contact section .contact .wpcf7 form.sent .wpcf7-response-output {
  color: #333;
}
#contact section .contact .wpcf7-response-output {
  text-align: center;
  color: red;
  font-size: 12px;
  border: none;
}
#contact section .contact_finish {
  width: 50%;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #contact section .contact_finish {
    width: 100%;
    padding-left: 0px;
  }
}
#contact section .contact_finish .item {
  min-height: 50px;
  padding: 16px;
  margin-bottom: 30px;
}
#contact section .contact_finish .item.require {
  position: relative;
}
#contact section .contact_finish .item.require::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3px;
  height: 100%;
  background-color: #FA4878;
}
#contact section .contact_finish .buttom-complate {
  display: flex;
  padding: 15px 40px;
  font-size: 20px;
  color: #fff;
  background-color: #FA4878;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
  width: 100%;
  max-width: 310px;
}
#contact section .contact_finish .button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

#infomation {
  padding-top: 250px;
}
@media screen and (max-width: 768px) {
  #infomation {
    padding-top: 150px;
  }
}
#infomation section {
  width: 100%;
  max-width: 1720px;
  padding: 0 50px;
  margin: 0 auto 120px;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #infomation section {
    flex-direction: column;
    padding: 0 25px;
  }
}
#infomation section .left-container {
  width: 50%;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  #infomation section .left-container {
    width: 100%;
    padding: 0;
  }
}
#infomation section .left-container .cats {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
}
#infomation section .left-container .cats .search-cat {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  cursor: pointer;
}
#infomation section .left-container .cats .search-cat p {
  font-size: 18px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}
#infomation section .left-container .cats .search-cat p::before {
  content: "";
  width: 100px;
  height: 1px;
  margin-right: 20px;
  background-color: #333;
  transition: all 0.3s ease;
}
#infomation section .left-container .cats .search-cat span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin-left: 20px;
  display: flex;
  align-items: center;
}
#infomation section .left-container .cats .search-cat span::before {
  content: "";
  height: 10px;
  width: 1px;
  background-color: #AAA;
  margin-right: 10px;
}
#infomation section .left-container .cats .search-cat.selected p, #infomation section .left-container .cats .search-cat:hover p {
  font-weight: 700;
}
#infomation section .left-container .cats .search-cat.selected p::before, #infomation section .left-container .cats .search-cat:hover p::before {
  margin-left: 50px;
  width: 50px;
}
#infomation section .left-container .dates {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #333;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #infomation section .left-container .dates {
    justify-content: space-between;
    width: 100%;
  }
}
#infomation section .left-container .dates p {
  font-size: 18px;
  margin-right: 80px;
}
@media screen and (max-width: 768px) {
  #infomation section .left-container .dates p {
    margin-right: 0;
  }
}
#infomation section .left-container .dates .select {
  margin-left: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #infomation section .left-container .dates .select {
    margin-left: 0;
  }
}
#infomation section .left-container .dates .select:hover::after {
  background-color: #FA4878;
}
#infomation section .left-container .dates .select select {
  width: 100%;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 30px;
}
#infomation section .left-container .dates .select::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background-color: #333;
  transition: all 0.3s ease;
}
#infomation section .right-container {
  width: 50%;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  #infomation section .right-container {
    width: 100%;
    padding: 0;
  }
}
#infomation section .right-container .sort-erea {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}
#infomation section .right-container .sort-erea .select {
  margin-left: 40px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
#infomation section .right-container .sort-erea .select:hover::after {
  background-color: #FA4878;
}
#infomation section .right-container .sort-erea .select select {
  width: 100%;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  #infomation section .right-container .sort-erea .select select {
    padding-right: 20px;
  }
}
#infomation section .right-container .sort-erea .select::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background-color: #333;
  transition: all 0.3s ease;
}
#infomation section .right-container .sort-erea .page_count {
  display: flex;
}
#infomation section .right-container .sort-erea .page_count span {
  width: 1px;
  height: 24px;
  background-color: #333;
  transform: rotate(45deg);
  margin-left: 10px;
  margin-right: 8px;
  margin-top: 2px;
}
#infomation section .right-container .sort-erea .page_count p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
#infomation section .right-container .sort-erea .page_count p.fromto {
  margin-top: 3px;
}
#infomation section .right-container .sort-erea .page_count p.total {
  margin-top: 10px;
}
#infomation section .right-container .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#infomation section .right-container .list .card {
  width: calc(50% - 25px);
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  padding-bottom: 20px;
  margin-bottom: 50px;
}
@media (max-width: 1300px) {
  #infomation section .right-container .list .card {
    width: 100%;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  #infomation section .right-container .list .card {
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 375px) {
  #infomation section .right-container .list .card {
    width: 100%;
  }
}
#infomation section .right-container .list .card__img {
  height: 200px;
}
@media screen and (max-width: 768px) {
  #infomation section .right-container .list .card__img {
    height: 50%;
  }
}
#infomation section .right-container .list .card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#infomation section .right-container .list .card__head {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 768px) {
  #infomation section .right-container .list .card__head {
    padding: 10px 10px;
  }
}
#infomation section .right-container .list .card__head p {
  font-size: 12px;
  color: #AAA;
}
#infomation section .right-container .list .card__head span {
  padding: 8px 20px;
  background-color: #000000;
  display: flex;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #infomation section .right-container .list .card__head span {
    font-size: 10px;
    padding: 8px;
    position: absolute;
    top: -20px;
    right: 10px;
  }
}
#infomation section .right-container .list .card h3 {
  padding: 0 30px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  #infomation section .right-container .list .card h3 {
    padding: 0 10px;
  }
}
#infomation section .right-container .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
#infomation section .right-container .nav-links .next,
#infomation section .right-container .nav-links .prev {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #333;
  transition: all 0.3s ease;
}
#infomation section .right-container .nav-links .next:hover,
#infomation section .right-container .nav-links .prev:hover {
  background-color: #FA4878;
}
#infomation section .right-container .nav-links .current {
  font-weight: 700;
}
#infomation section .detail .thumnail {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #infomation section .detail .thumnail {
    border-radius: 10px;
  }
}
#infomation section .detail .thumnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#infomation section .detail .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 50px;
}
#infomation section .detail .head p {
  font-size: 12px;
  color: #AAA;
}
#infomation section .detail .head span {
  padding: 8px 20px;
  background-color: #333;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #infomation section .detail .head span {
    font-size: 10px;
    padding: 8px;
  }
}
#infomation section .detail .title {
  margin-top: 30px;
  font-size: 20px;
  line-height: 40px;
}
#infomation section .detail .content {
  margin-top: 40px;
}
#infomation section .detail .content p {
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  #infomation section .detail .content p {
    font-size: 16px;
    line-height: 25px;
  }
}
#infomation section .detail .content a {
  padding: 12px 24px;
  border: 1px solid #333;
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  font-size: 18px;
  margin: 40px 0;
  position: relative;
  padding-right: 124px;
  transition: all 0.3s ease;
}
#infomation section .detail .content a::after {
  content: "";
  position: absolute;
  display: block;
  right: 24px;
  top: 30px;
  width: 80px;
  height: 1px;
  background-color: #333;
  transition: all 0.3s ease;
}
#infomation section .detail .content a::before {
  content: "";
  position: absolute;
  display: block;
  right: 21px;
  top: 23px;
  width: 20px;
  height: 1px;
  transform: rotate(45deg);
  background-color: #333;
  transition: all 0.3s ease;
}
#infomation section .detail .content a:hover {
  background-color: #333;
  color: #fff;
  opacity: 1 !important;
}
#infomation section .detail .content a:hover::after, #infomation section .detail .content a:hover::before {
  background-color: #fff;
}
#infomation section .page {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 50px;
}
#infomation section .page a {
  display: block;
  position: relative;
  font-size: 18px;
  display: flex;
  gap: 30px;
  align-items: center;
}
#infomation section .page a[rel=next]::after {
  content: "";
  width: 10px;
  height: 10px;
  margin: 2.5px;
  background-color: #333;
  border-radius: 99px;
  transition: all 0.3s ease;
}
#infomation section .page a[rel=next]:hover {
  opacity: 1 !important;
}
#infomation section .page a[rel=next]:hover::after {
  width: 15px;
  height: 15px;
  background-color: #FA4878;
  margin: 0;
}
#infomation section .page a[rel=prev]::before {
  content: "";
  width: 10px;
  height: 10px;
  margin: 2.5px;
  background-color: #333;
  border-radius: 99px;
  transition: all 0.3s ease;
}
#infomation section .page a[rel=prev]:hover {
  opacity: 1 !important;
}
#infomation section .page a[rel=prev]:hover::before {
  width: 15px;
  height: 15px;
  background-color: #FA4878;
  margin: 0;
}
#infomation section .section-ttl {
  position: relative;
}
@media screen and (max-width: 768px) {
  #infomation section .section-ttl {
    margin-bottom: 50px;
  }
}
#infomation section .section-ttl .circle {
  width: 250px;
  height: 250px;
  border-radius: 999px;
  border: 3px solid #FA4878;
  position: absolute;
  left: -178px;
  top: -80px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #infomation section .section-ttl .circle {
    width: 150px;
    height: 150px;
    left: -86px;
    top: -42px;
  }
}
#infomation section .section-ttl .circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #FA4878;
  transform: translateX(-50%) translateY(-22px);
}
@media screen and (max-width: 768px) {
  #infomation section .section-ttl .circle::after {
    left: calc(50% + 15px);
    transform: translateX(-50%) translateY(-17px);
  }
}
#infomation section .section-ttl .circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #FA4878;
  transform: translateX(-50%) translateY(6px);
}
@media screen and (max-width: 768px) {
  #infomation section .section-ttl .circle::before {
    left: calc(50% + 15px);
    transform: translateX(-50%) translateY(5px);
  }
}
#infomation section .section-ttl h2 {
  position: relative;
  font-size: 40px;
  z-index: 2;
  font-family: "Inter", sans-serif;
}
#infomation section .section-ttl h2 span {
  font-size: 60px;
  color: #FA4878;
}
@media screen and (max-width: 768px) {
  #infomation section .section-ttl h2 {
    font-size: 30px;
    text-transform: uppercase;
    padding-left: 25px;
  }
  #infomation section .section-ttl h2 span {
    font-size: 50px;
  }
}
#infomation section .section-ttl p {
  position: relative;
  z-index: 2;
  font-size: 18px;
  margin-top: 40px;
  max-width: 700px;
  font-size: 18px;
  line-height: 30px;
}
#infomation section .section-ttl p span {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #infomation section .section-ttl p {
    font-size: 16px;
    margin-top: 25px;
    line-height: 25px;
  }
}
#infomation section .recomend {
  margin-top: 150px;
}
#infomation section .recomend h3 {
  font-size: 30px;
  margin-bottom: 80px;
}
#infomation section .recomend .list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#infomation section .recomend .list .card {
  display: flex;
  gap: 30px;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  #infomation section .recomend .list .card {
    gap: 10px;
  }
}
#infomation section .recomend .list .card__img {
  width: 30%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #infomation section .recomend .list .card__img {
    width: 50%;
    border-radius: 5px;
  }
}
#infomation section .recomend .list .card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#infomation section .recomend .list .card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #infomation section .recomend .list .card__content {
    gap: 10px;
  }
}
#infomation section .recomend .list .card p {
  font-size: 12px;
  color: #AAA;
}
#infomation section .recomend .list .card span {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 20px;
  background-color: #000000;
  display: flex;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #infomation section .recomend .list .card span {
    font-size: 10px;
    padding: 8px;
  }
}
#infomation section .recomend .list .card h4 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 18px;
  line-height: 30px;
}

#archive {
  padding-top: 250px;
}
@media screen and (max-width: 768px) {
  #archive {
    padding-top: 150px;
  }
}
#archive section {
  width: 100%;
  max-width: 1720px;
  padding: 0 50px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 768px) {
  #archive section {
    padding: 0 25px;
  }
}
#archive section .section-ttl {
  position: relative;
}
#archive section .section-ttl .circle {
  width: 250px;
  height: 250px;
  border-radius: 999px;
  border: 3px solid #FA4878;
  position: absolute;
  left: -178px;
  top: -80px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #archive section .section-ttl .circle {
    width: 150px;
    height: 150px;
    left: -86px;
    top: -42px;
  }
}
#archive section .section-ttl .circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #FA4878;
  transform: translateX(-50%) translateY(-22px);
}
@media screen and (max-width: 768px) {
  #archive section .section-ttl .circle::after {
    left: calc(50% + 15px);
    transform: translateX(-50%) translateY(-17px);
  }
}
#archive section .section-ttl .circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #FA4878;
  transform: translateX(-50%) translateY(6px);
}
@media screen and (max-width: 768px) {
  #archive section .section-ttl .circle::before {
    left: calc(50% + 15px);
    transform: translateX(-50%) translateY(5px);
  }
}
#archive section .section-ttl h2 {
  position: relative;
  font-size: 40px;
  z-index: 2;
  font-family: "Inter", sans-serif;
}
#archive section .section-ttl h2 span {
  font-size: 60px;
  color: #FA4878;
}
@media screen and (max-width: 768px) {
  #archive section .section-ttl h2 {
    font-size: 30px;
    text-transform: uppercase;
    padding-left: 25px;
  }
  #archive section .section-ttl h2 span {
    font-size: 50px;
  }
}
#archive section .section-ttl p {
  position: relative;
  z-index: 2;
  font-size: 18px;
  margin-top: 40px;
  max-width: 700px;
  font-size: 18px;
  line-height: 30px;
}
#archive section .section-ttl p span {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #archive section .section-ttl p {
    font-size: 16px;
    margin-top: 25px;
    line-height: 25px;
  }
}
#archive section .container {
  width: 100%;
}
#archive section .container .sort-erea {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  #archive section .container .sort-erea {
    flex-direction: column;
  }
}
#archive section .container .sort-erea .select {
  margin-left: 40px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
#archive section .container .sort-erea .select:hover::after {
  background-color: #FA4878;
}
#archive section .container .sort-erea .select select {
  width: 100%;
  cursor: pointer;
  padding-left: 20px;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  #archive section .container .sort-erea .select select {
    padding-right: 20px;
  }
}
#archive section .container .sort-erea .select::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 99px;
  background-color: #333;
  transition: all 0.3s ease;
}
#archive section .container .sort-erea .page_count {
  display: flex;
}
#archive section .container .sort-erea .page_count span {
  width: 1px;
  height: 24px;
  background-color: #333;
  transform: rotate(45deg);
  margin-left: 10px;
  margin-right: 8px;
  margin-top: 2px;
}
#archive section .container .sort-erea .page_count p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
}
#archive section .container .sort-erea .page_count p.fromto {
  margin-top: 3px;
}
#archive section .container .sort-erea .page_count p.total {
  margin-top: 10px;
}
#archive section .container .sort-erea .sort-order {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  #archive section .container .sort-erea .sort-order {
    width: 100%;
    justify-content: flex-end;
  }
}
#archive section .container .sort-erea .cats {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #archive section .container .sort-erea .cats {
    flex-direction: column;
    width: 100%;
  }
}
#archive section .container .sort-erea .cats .search-cat {
  display: flex;
  padding: 16px;
  gap: 16px;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #archive section .container .sort-erea .cats .search-cat {
    padding: 16px 0;
  }
}
#archive section .container .sort-erea .cats .search-cat p {
  font-size: 18px;
  transition: all 0.3s ease;
}
#archive section .container .sort-erea .cats .search-cat span {
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
#archive section .container .sort-erea .cats .search-cat hr {
  width: 1px;
  height: 30px;
  background-color: #333;
}
#archive section .container .sort-erea .cats .search-cat.selected p,
#archive section .container .sort-erea .cats .search-cat.selected span, #archive section .container .sort-erea .cats .search-cat:hover p,
#archive section .container .sort-erea .cats .search-cat:hover span {
  text-shadow: 0.2px 0.2px 0, 0.2px -0.2px 0px, -0.2px 0.2px 0, -0.2px -0.2px 0px, 0.2px 0px 0px, 0px 0.2px 0px, -0.2px 0px 0px, 0px -0.2px 0px;
}
#archive section .container .list {
/*   display: flex;
  flex-wrap: wrap;
  justify-content: space-between; */
  display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 8px;
}
#archive section .container .list .card {
  width: 100%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
	#archive section .container .list {
	  display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: 8px;
	}
}
@media screen and (max-width: 375px) {
  #archive section .container .list .card {
    width: 100%;
  }
}
#archive section .container .list .card__img {
  width: 100%;
}
#archive section .container .list .card__img svg {
  width: 100%;
  height: auto;
}
#archive section .container .list .card__head {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  display: none;
}
#archive section .container .list .card__head p {
  font-size: 12px;
  color: #AAA;
}
#archive section .container .list .card__head span {
  padding: 8px 20px;
  background-color: #000000;
  display: flex;
  align-items: center;
  color: #fff;
}
#archive section .container .list .card h3 {
  margin-top: 0;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #archive section .container .list .card h3 {
    font-size: 14px;
    line-height: 25px;
  }
}
#archive section .container .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
#archive section .container .nav-links .next,
#archive section .container .nav-links .prev {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #333;
  transition: all 0.3s ease;
}
#archive section .container .nav-links .next:hover,
#archive section .container .nav-links .prev:hover {
  background-color: #FA4878;
}
#archive section .container .nav-links .current {
  font-weight: 700;
}
#archive section .detail-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
#archive section .detail .thumnail {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #archive section .detail .thumnail {
    border-radius: 10px;
  }
}
#archive section .detail .thumnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#archive section .detail .head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto;
  margin-top: 50px;
  width: 100%;
  max-width: 800px;
}
#archive section .detail .head p {
  font-size: 12px;
  color: #AAA;
}
#archive section .detail .head span {
  padding: 8px 20px;
  background-color: #333;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #archive section .detail .head span {
    font-size: 10px;
    padding: 8px;
  }
}
#archive section .detail .title {
  font-size: 20px;
  line-height: 40px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  #archive section .detail .title {
    font-size: 18px;
    line-height: 30px;
  }
}
#archive section .detail .content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
}
#archive section .detail .content p {
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  #archive section .detail .content p {
    font-size: 16px;
    line-height: 25px;
  }
}
#archive section .detail .content a {
  padding: 12px 24px;
  border: 1px solid #333;
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  font-size: 18px;
  margin: 40px 0;
  position: relative;
  padding-right: 124px;
  transition: all 0.3s ease;
}
#archive section .detail .content a::after {
  content: "";
  position: absolute;
  display: block;
  right: 24px;
  top: 30px;
  width: 80px;
  height: 1px;
  background-color: #333;
  transition: all 0.3s ease;
}
#archive section .detail .content a::before {
  content: "";
  position: absolute;
  display: block;
  right: 21px;
  top: 23px;
  width: 20px;
  height: 1px;
  transform: rotate(45deg);
  background-color: #333;
  transition: all 0.3s ease;
}
#archive section .detail .content a:hover {
  background-color: #333;
  color: #fff;
  opacity: 1 !important;
}
#archive section .detail .content a:hover::after, #archive section .detail .content a:hover::before {
  background-color: #fff;
}
#archive section .page {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 50px;
}
#archive section .page a {
  display: block;
  position: relative;
  font-size: 18px;
  display: flex;
  gap: 30px;
  align-items: center;
}
#archive section .page a[rel=next]::after {
  content: "";
  width: 10px;
  height: 10px;
  margin: 2.5px;
  background-color: #333;
  border-radius: 99px;
  transition: all 0.3s ease;
}
#archive section .page a[rel=next]:hover {
  opacity: 1 !important;
}
#archive section .page a[rel=next]:hover::after {
  width: 15px;
  height: 15px;
  background-color: #FA4878;
  margin: 0;
}
#archive section .page a[rel=prev]::before {
  content: "";
  width: 10px;
  height: 10px;
  margin: 2.5px;
  background-color: #333;
  border-radius: 99px;
  transition: all 0.3s ease;
}
#archive section .page a[rel=prev]:hover {
  opacity: 1 !important;
}
#archive section .page a[rel=prev]:hover::before {
  width: 15px;
  height: 15px;
  background-color: #FA4878;
  margin: 0;
}
#archive section .bottom {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

#aboutus {
  padding-top: 250px;
}
@media screen and (max-width: 768px) {
  #aboutus {
    padding-top: 150px;
  }
}
#aboutus section {
  width: 100%;
  max-width: 1720px;
  padding: 0 50px;
  margin: 0 auto 120px;
  display: flex;
}
@media screen and (max-width: 1200px) {
  #aboutus section {
    flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  #aboutus section {
    padding: 0 25px;
  }
}
#aboutus section .left-container {
  width: 40%;
  padding-right: 25px;
}
@media screen and (max-width: 1200px) {
  #aboutus section .left-container {
    width: 100%;
    padding: 0;
  }
}
#aboutus section .right-container {
  width: 60%;
  padding-left: 25px;
}
@media screen and (max-width: 1200px) {
  #aboutus section .right-container {
    width: 100%;
    padding: 0;
  }
}
#aboutus section .right-container .info {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #aboutus section .right-container .info {
    flex-direction: column;
  }
}
#aboutus section .right-container .info table {
  width: 50%;
  flex: 1;
}
@media screen and (max-width: 768px) {
  #aboutus section .right-container .info table {
    width: 100%;
  }
}
#aboutus section .right-container .info table tr {
  padding: 12px 0;
  display: flex;
}
#aboutus section .right-container .info table tr th {
  width: 100px;
  font-size: 16px;
  line-height: 25px;
  color: #AAA;
  font-weight: 400;
}
#aboutus section .right-container .info table tr td {
  flex: 1;
  font-size: 14px;
  line-height: 25px;
}
#aboutus section .right-container .info iframe {
  width: 50%;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  #aboutus section .right-container .info iframe {
    width: 100%;
  }
}
#aboutus section .right-container .message {
  margin-top: 100px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  #aboutus section .right-container .message {
    flex-direction: column;
  }
}
#aboutus section .right-container .message h3 {
  display: flex;
  align-items: center;
  width: 50%;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #aboutus section .right-container .message h3 {
    width: 100%;
  }
}
#aboutus section .right-container .message h3::before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #333;
  margin-right: 20px;
}
#aboutus section .right-container .message p {
  width: 50%;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  #aboutus section .right-container .message p {
    width: 100%;
  }
}
#aboutus section .section-ttl {
  position: relative;
}
@media screen and (max-width: 768px) {
  #aboutus section .section-ttl {
    margin-bottom: 50px;
  }
}
#aboutus section .section-ttl .circle {
  width: 250px;
  height: 250px;
  border-radius: 999px;
  border: 3px solid #FA4878;
  position: absolute;
  left: -178px;
  top: -80px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #aboutus section .section-ttl .circle {
    width: 150px;
    height: 150px;
    left: -86px;
    top: -42px;
  }
}
#aboutus section .section-ttl .circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #FA4878;
  transform: translateX(-50%) translateY(-22px);
}
@media screen and (max-width: 768px) {
  #aboutus section .section-ttl .circle::after {
    left: calc(50% + 15px);
    transform: translateX(-50%) translateY(-17px);
  }
}
#aboutus section .section-ttl .circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #FA4878;
  transform: translateX(-50%) translateY(6px);
}
@media screen and (max-width: 768px) {
  #aboutus section .section-ttl .circle::before {
    left: calc(50% + 15px);
    transform: translateX(-50%) translateY(5px);
  }
}
#aboutus section .section-ttl h2 {
  position: relative;
  font-size: 40px;
  z-index: 2;
  font-family: "Inter", sans-serif;
}
#aboutus section .section-ttl h2 span {
  font-size: 60px;
  color: #FA4878;
}
@media screen and (max-width: 768px) {
  #aboutus section .section-ttl h2 {
    font-size: 30px;
    text-transform: uppercase;
    padding-left: 25px;
  }
  #aboutus section .section-ttl h2 span {
    font-size: 50px;
  }
}
#aboutus section .section-ttl p {
  position: relative;
  z-index: 2;
  font-size: 18px;
  margin-top: 40px;
  max-width: 700px;
  font-size: 18px;
  line-height: 30px;
}
#aboutus section .section-ttl p span {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #aboutus section .section-ttl p {
    font-size: 16px;
    margin-top: 25px;
    line-height: 25px;
  }
}

#privacy {
  padding: 200px 15px;
}
#privacy .content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
#privacy .content h1 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #privacy .content h1 {
    font-size: 24px;
  }
}
#privacy .content h2 {
  font-size: 22px;
  line-height: 40px;
  margin-bottom: 20px;
  counter-increment: section;
}
@media screen and (max-width: 768px) {
  #privacy .content h2 {
    font-size: 20px;
    line-height: 30px;
  }
}
#privacy .content h2::before {
  content: counter(section);
  color: #FA4878;
  margin-right: 20px;
  font-weight: 700;
}
#privacy .content p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #privacy .content p {
    font-size: 16px;
    line-height: 25px;
  }
}
#privacy .content ol {
  margin-bottom: 30px;
  margin-left: 40px;
}
#privacy .content ol li {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  counter-increment: linum;
  position: relative;
}
#privacy .content ol li::before {
  content: counter(linum) " /";
  position: absolute;
  top: 0;
  left: -30px;
  color: #AAA;
  margin-right: 20px;
  font-weight: 700;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

a {
  transition: all 0.3s ease;
  opacity: 1;
}
a:hover {
  opacity: 0.7;
}

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

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

main {
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.button {
  display: flex;
  align-items: center;
  font-size: 22px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .button {
    font-size: 18px;
    text-transform: uppercase;
  }
}
.button::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 99px;
  background-color: #FA4878;
  position: absolute;
  left: -16px;
  top: -10px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .button::before {
    width: 20px;
    height: 20px;
    left: -12px;
    top: -6px;
  }
}
.button span {
  position: relative;
  z-index: 1;
}
.button .button-arrow {
  width: 80px;
  height: 20px;
  overflow-x: hidden;
  position: relative;
  margin-left: 18px;
}
@media screen and (max-width: 768px) {
  .button .button-arrow {
    width: 50px;
  }
}
.button svg:first-of-type {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(0);
  transition: all 0s ease;
  transition-delay: 0s;
}
.button svg:last-of-type {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(-100%);
  transition: all 0s ease;
  transition-delay: 0s;
}
.button:hover svg:first-of-type {
  transform: translateX(100%);
  transition: all 0.2s ease;
  transition-delay: 0s;
}
.button:hover svg:last-of-type {
  transform: translateX(0);
  transition: all 0.2s ease;
  transition-delay: 0.3s;
}

.button-rev {
  display: flex;
  align-items: center;
  font-size: 22px;
  position: relative;
  margin-top: 50px;
}
.button-rev span {
  position: relative;
  z-index: 1;
}
.button-rev span::before {
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 99px;
  background-color: #FA4878;
  position: absolute;
  left: -16px;
  top: -10px;
  z-index: -1;
}
.button-rev .button-arrow {
  width: 80px;
  height: 20px;
  overflow-x: hidden;
  position: relative;
  margin-right: 18px;
}
.button-rev svg:first-of-type {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(0);
  transition: all 0s ease;
  transition-delay: 0s;
}
.button-rev svg:last-of-type {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateX(100%);
  transition: all 0s ease;
  transition-delay: 0s;
}
.button-rev:hover svg:first-of-type {
  transform: translateX(-100%);
  transition: all 0.2s ease;
  transition-delay: 0s;
}
.button-rev:hover svg:last-of-type {
  transform: translateX(0);
  transition: all 0.2s ease;
  transition-delay: 0.3s;
}

.w-100vw {
  width: 100vw;
  margin-left: calc((1620px - 100vw) / 2);
  margin-right: calc((1620px - 100vw) / 2);
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
}
@media screen and (max-width: 1620px) {
  .w-100vw {
    margin-left: -50px;
    margin-right: -50px;
  }
}

section {
  opacity: 0;
  transform: translateY(200px);
  transition: transform 1s ease, opacity 1s ease;
}
section.inview {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=site.css.map */