@charset "UTF-8";
@keyframes slidein-bound-right {
  0% {
    transform: translateX(500px);
  }
  30% {
    transform: translateX(0);
  }
  37% {
    transform: translateX(25px);
  }
  43% {
    transform: translateX(0);
  }
  53% {
    transform: translateX(-15px);
  }
  68% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slidein-bound-right-sp {
  0% {
    transform: translateX(300px);
  }
  30% {
    transform: translateX(0);
  }
  37% {
    transform: translateX(25px);
  }
  43% {
    transform: translateX(0);
  }
  53% {
    transform: translateX(-15px);
  }
  68% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slidein-bound-left {
  0% {
    transform: translateX(-500px);
  }
  30% {
    transform: translateX(0);
  }
  37% {
    transform: translateX(-25px);
  }
  43% {
    transform: translateX(0);
  }
  53% {
    transform: translateX(15px);
  }
  68% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slidein-bound-left-sp {
  0% {
    transform: translateX(-300px);
  }
  30% {
    transform: translateX(0);
  }
  37% {
    transform: translateX(-25px);
  }
  43% {
    transform: translateX(0);
  }
  53% {
    transform: translateX(15px);
  }
  68% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slidein-bound-bottom {
  0% {
    transform: translateY(250px);
  }
  30% {
    transform: translateY(0);
  }
  37% {
    transform: translateY(25px);
  }
  43% {
    transform: translateY(0);
  }
  53% {
    transform: translateY(15px);
  }
  68% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slidein-bound-bottom-sp {
  0% {
    transform: translateY(150px);
  }
  30% {
    transform: translateY(0);
  }
  37% {
    transform: translateY(25px);
  }
  43% {
    transform: translateY(0);
  }
  53% {
    transform: translateY(15px);
  }
  68% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes marquee-loop {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes flowing-anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes slide {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes slide-reverse {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-row {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes slide-row-reverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
ul {
  padding: 0;
  margin: 0;
}

ul > li {
  list-style: none;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: all 0.4s;
}

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

p {
  line-height: 1.7;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 0.6rem + 0.91vw, 22px);
  line-height: 1.7;
  /* はね返りを抑制 */
  overscroll-behavior: none;
}

body {
  overflow-x: hidden;
  background-color: #E63C66;
  color: #fff;
  /* はね返りを抑制 */
  overscroll-behavior: none;
}
body:has(#loader_wrap.active), body:has(.overlay-full.is-active) {
  overflow: hidden;
}

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

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

.container {
  max-width: 1400px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .container {
    width: 90%;
  }
}
.container-sl {
  max-width: 1240px !important;
  margin: 0 auto;
  width: 85%;
}
@media screen and (max-width: 1024px) {
  .container-sl {
    width: 90%;
  }
}
.container-md {
  max-width: 1300px !important;
  margin: 0 auto;
  width: 85%;
}
@media screen and (max-width: 1024px) {
  .container-md {
    width: 90%;
  }
}

header {
  position: relative;
  z-index: 100;
}

.section_title {
  display: block;
  text-align: center;
  font-size: clamp(24px, 0.954rem + 2.33vw, 60px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section_title {
    margin-bottom: 20px;
  }
}
.section_title-ja {
  display: block;
  font-size: clamp(16px, 0.8rem + 0.5vw, 24px);
  font-weight: 500;
}
.section_title-left {
  text-align: left;
}
.section_title-big {
  font-size: clamp(50px, 2.169rem + 4.08vw, 113px);
  line-height: 1.2;
  margin-top: -120px;
}
@media screen and (max-width: 1024px) {
  .section_title-big {
    margin-top: -100px;
  }
}
@media screen and (max-width: 768px) {
  .section_title-big {
    margin-top: -70px;
  }
}
.section_title-big .section_title-ja {
  font-size: clamp(20px, 0.856rem + 1.68vw, 46px);
}
.section_title-large {
  font-size: clamp(50px, 2.169rem + 4.08vw, 113px);
  line-height: 1.2;
}
.section_title-large .section_title-ja {
  font-size: clamp(20px, 0.856rem + 1.68vw, 46px);
}
.section-bg-img {
  width: 95%;
  max-width: 1824px;
  margin: 0 auto;
}

.subpage_fv {
  height: calc(100vh - 100px);
  min-height: 40vw;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .subpage_fv {
    height: auto;
    min-height: auto;
  }
}
.subpage_fv-inner {
  max-width: 1824px;
  width: 95%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .subpage_fv-inner {
    width: 100%;
  }
}
.subpage_fv_title {
  width: 95%;
  margin: auto;
  font-size: clamp(30px, 1.723rem + 0.65vw, 40px);
}
@media screen and (max-width: 768px) {
  .subpage_fv_title {
    font-size: 20px;
    width: 95%;
    margin-top: 50px;
    margin-bottom: 250px;
  }
}
.subpage_fv_title-ja {
  font-size: clamp(50px, 2.518rem + 2.59vw, 90px);
}
@media screen and (max-width: 768px) {
  .subpage_fv_title-ja {
    font-size: 45px;
  }
}
.subpage_fv_title span:not(.inlineblock) {
  display: block;
  line-height: 1.3;
}
.subpage_fv_title .inlineblock {
  display: inline-block;
}
.subpage_fv_img {
  margin-top: auto;
  margin-bottom: 40px;
  height: 55%;
  line-height: 0.5;
  position: relative;
}
@media screen and (max-width: 768px) {
  .subpage_fv_img {
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 0px;
  }
}
.subpage_fv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.subpage_fv_people {
  position: absolute;
  right: 3%;
  top: 10px;
  z-index: -1;
  width: 32%;
  transform: translateY(-100%);
}
@media screen and (max-width: 1024px) {
  .subpage_fv_people {
    width: 38%;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .subpage_fv_people {
    width: 80%;
  }
}
.subpage_fv_people img {
  transform: translateY(250px);
  animation: slidein-bound-bottom 0.8s ease-out forwards;
  width: 100%;
  height: auto;
}

main {
  min-height: 40vh;
  margin-top: 100px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 80px;
  }
}

.inview,
.inview_text {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s, transform 0.5s;
}
.inview-top,
.inview_text-top {
  transform: translateY(-15px);
}
.inview-left,
.inview_text-left {
  transform: translate(-15px, 0);
}
.inview-right,
.inview_text-right {
  transform: translate(15px, 0);
}

.inview.show,
.inview_text.show {
  opacity: 1;
  transform: translate(0);
}

.scrollanimation-right-bound {
  transform: translateX(500px);
}
@media screen and (max-width: 768px) {
  .scrollanimation-right-bound {
    transform: translateX(300px);
  }
}

.scrollanimation-left-bound {
  transform: translateX(-500px);
}
@media screen and (max-width: 768px) {
  .scrollanimation-left-bound {
    transform: translateX(-300px);
  }
}

.scrollanimation-bottom-bound {
  transform: translateY(250px);
}
@media screen and (max-width: 768px) {
  .scrollanimation-bottom-bound {
    transform: translateY(150px);
  }
}

.scrollanimation.active.scrollanimation-right-bound {
  animation: slidein-bound-right 0.8s ease-out forwards;
}
@media screen and (max-width: 768px) {
  .scrollanimation.active.scrollanimation-right-bound {
    animation: slidein-bound-right-sp 0.8s ease-out forwards;
  }
}
.scrollanimation.active.scrollanimation-left-bound {
  animation: slidein-bound-left 0.8s ease-out forwards;
}
@media screen and (max-width: 768px) {
  .scrollanimation.active.scrollanimation-left-bound {
    animation: slidein-bound-left-sp 0.8s ease-out forwards;
  }
}

.scrollanimation-bottom.active.scrollanimation-bottom-bound {
  animation: slidein-bound-bottom 0.8s ease-out forwards;
}
@media screen and (max-width: 768px) {
  .scrollanimation-bottom.active.scrollanimation-bottom-bound {
    animation: slidein-bound-bottom-sp 0.8s ease-out forwards;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  gap: 5px;
  max-width: 320px;
}
.btn-white {
  background-color: #fff;
  color: #E63C66;
  padding: 5px 10px 5px 25px;
  font-weight: 600;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .btn-white {
    padding: 5px 5px 5px 15px;
  }
}
.btn-white .circle-arrow {
  background-color: #E63C66;
}
.btn-white:hover {
  background-color: #E63C66;
  color: #fff;
}
.btn-white:hover .circle-arrow {
  background-color: #fff;
}
.btn-white:hover .circle-arrow::before, .btn-white:hover .circle-arrow::after {
  background-color: #E63C66;
}
.btn-pink {
  background-color: #E63C66;
  color: #fff;
  padding: 5px 10px 5px 25px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .btn-pink {
    padding: 5px 5px 5px 15px;
  }
}
.btn-pink .circle-arrow {
  background-color: #fff;
}
.btn-pink .circle-arrow::after, .btn-pink .circle-arrow::before {
  background-color: #E63C66;
  transition: all 0.4s;
}
.btn-pink:hover {
  background-color: #E63C66;
  color: #fff;
}
.btn-pink:hover .circle-arrow {
  background-color: #fff;
}
.btn-pink:hover .circle-arrow::before, .btn-pink:hover .circle-arrow::after {
  background-color: #E63C66;
}
.btn-border {
  border: 2px solid #E63C66;
}
@media screen and (max-width: 768px) {
  .btn-border {
    border-width: 1.5px;
  }
}

.siteHeader .btn-white {
  max-width: none;
  border: 2px solid #fff;
  padding: 8px 20px 8px 25px;
}

.icon::before {
  font-family: "FontAwesome";
  font-weight: 400;
}

.icon-after::after {
  font-family: "FontAwesome";
  font-weight: 400;
}
.icon-after-link::after {
  content: "\f08e";
}

.circle-arrow {
  position: relative;
  display: inline-block;
  max-width: 42px;
  height: auto;
  width: 13%;
  aspect-ratio: 1/1;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.4s;
}
@media screen and (max-width: 1024px) {
  .circle-arrow {
    width: 12%;
  }
}
@media screen and (max-width: 768px) {
  .circle-arrow {
    width: 10%;
  }
}
.circle-arrow::before, .circle-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 36%;
  width: 24%;
  max-width: 10px;
  height: 1.5px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0.5px) 50%;
  transition: all 0.4s;
}
@media screen and (max-width: 1024px) {
  .circle-arrow::before, .circle-arrow::after {
    right: 37%;
    width: 24%;
  }
}
@media screen and (max-width: 768px) {
  .circle-arrow::before, .circle-arrow::after {
    width: 7px;
    height: 1px;
  }
}
.circle-arrow::before {
  transform: rotate(45deg);
}
.circle-arrow::after {
  transform: rotate(-45deg);
}

.siteHeader .circle-arrow {
  max-width: 35px;
  width: 8%;
}

.overlay {
  z-index: 1000;
  transition: all 0.4s;
}
.overlay.is-active.overlay-full {
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.35);
  position: fixed;
  top: 0;
  left: 0;
}

.pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 24px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .pagenation {
    font-size: 16px;
  }
}
.pagenation .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-weight: 600;
}
.pagenation .page-numbers:hover {
  color: #E63C66;
}
@media screen and (max-width: 768px) {
  .pagenation .page-numbers {
    width: 30px;
    height: 30px;
  }
}
.pagenation .page-numbers.current {
  border: 1px solid #fff;
  color: #fff !important;
}
.pagenation .page-numbers.next:hover::after, .pagenation .page-numbers.prev:hover::after {
  border-color: #E63C66;
}
.pagenation .page-numbers.next::after, .pagenation .page-numbers.prev::after {
  content: "";
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .pagenation .page-numbers.next::after, .pagenation .page-numbers.prev::after {
    width: 6px;
    height: 6px;
    border-width: 2px;
  }
}
.pagenation .page-numbers.prev::after {
  transform: rotate(-135deg);
}

#loader_wrap {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #E63C66;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.loader {
  max-width: 650px;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .loader {
    max-width: 400px;
    width: 60%;
  }
}

.siteHeader {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
.siteHeader_container {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 20px;
  padding: 30px 48px;
  transition: all 0.4s;
}
@media screen and (max-width: 1024px) {
  .siteHeader_container {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 768px) {
  .siteHeader_container {
    padding: 30px 10px;
  }
}
.siteHeader_logo {
  margin-right: auto;
  width: 20%;
  max-width: 300px;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .siteHeader_logo {
    max-width: 250px;
    width: 40%;
  }
}
.siteHeader_logo a:hover {
  opacity: 0.8;
}
.siteHeader_btn {
  color: #E63C66;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 25px;
  padding: 8px 40px;
  font-size: clamp(14px, 0.7rem + 0.39vw, 20px);
  font-weight: 600;
  transition: all 0.4s;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .siteHeader_btn {
    padding: 5px 30px;
  }
}
@media screen and (max-width: 768px) {
  .siteHeader_btn {
    display: none;
  }
}
.siteHeader_btn:hover {
  background-color: #E63C66;
  color: #fff;
}
.siteHeader_navbtn {
  position: relative;
  width: 50px;
  height: 35px;
  cursor: pointer !important;
  background: none;
  border: none;
}
@media screen and (max-width: 1024px) {
  .siteHeader_navbtn {
    width: 40px;
    height: 25px;
  }
}
.siteHeader_navbtn span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}
.siteHeader_navbtn span:first-child {
  top: 0;
}
.siteHeader_navbtn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}
.siteHeader_navbtn span:last-child {
  bottom: 0;
}
.siteHeader_navbtn-close {
  position: relative;
  width: 42px;
  height: 35px;
  cursor: pointer;
  background: none;
  border: none;
}
.siteHeader_navbtn-close span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}
.siteHeader_navbtn-close span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(40deg);
}
.siteHeader_navbtn-close span:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(-40deg);
}
.siteHeader_nav {
  width: 30%;
  min-width: 400px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2000;
  background-color: #E63C66;
  box-shadow: -5px 0 6px rgba(0, 0, 0, 0.18);
  color: #fff;
  transition: all 0.4s;
  opacity: 0;
  transform: translateX(100%);
}
@media screen and (max-width: 768px) {
  .siteHeader_nav {
    width: 100%;
    min-width: auto;
  }
}
.siteHeader_nav.is-open {
  transform: translateX(0);
  opacity: 1;
}
.siteHeader_nav_contents {
  width: 90%;
  margin: 30px auto;
}
.siteHeader_nav_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.siteHeader_nav_logo {
  display: block;
  width: 45%;
  max-width: 192px;
}
.siteHeader_nav ul {
  margin: 70px 15px;
}
@media screen and (max-width: 1024px) {
  .siteHeader_nav ul {
    margin: 50px 5px;
  }
}
.siteHeader_nav_item {
  font-size: clamp(16px, 0.9rem + 0.3vw, 22px);
  font-weight: 500;
}
.siteHeader_nav_item + .siteHeader_nav_item {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .siteHeader_nav_item + .siteHeader_nav_item {
    margin-top: 30px;
  }
}
.siteHeader_nav_link {
  color: #fff !important;
  transition: all 0.4s;
}
.siteHeader_nav_link:hover .siteHeader_nav_link_text {
  opacity: 0.8;
}
.siteHeader_nav_link:hover .circle-arrow {
  background-color: #fff;
}
.siteHeader_nav_link:hover .circle-arrow::before, .siteHeader_nav_link:hover .circle-arrow::after {
  background-color: #E63C66;
  opacity: 1;
}
.siteHeader_nav_link_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  transition: all 0.4s;
}
.siteHeader_nav_btn + .siteHeader_nav_btn {
  margin-top: 20px;
}
.siteHeader_nav_corporate {
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .siteHeader_nav_corporate {
    font-size: 14px;
    margin-top: 30px;
  }
}
.siteHeader_nav_corporate:hover {
  opacity: 0.8;
}
.siteHeader.add-bg {
  background-color: rgba(0, 0, 0, 0.4);
}
.siteHeader.add-bg .siteHeader_container {
  padding-top: 15px;
  padding-bottom: 15px;
}
.siteHeader.add-bg .siteHeader_logo {
  width: 18%;
}
@media screen and (max-width: 768px) {
  .siteHeader.add-bg .siteHeader_logo {
    width: 40%;
    max-width: 250px;
  }
}
.siteHeader.add-bg .siteHeader_btn {
  padding: 6px 35px;
}
.siteHeader.add-bg .siteHeader_navbtn {
  width: 45px;
  height: 30px;
}
@media screen and (max-width: 1024px) {
  .siteHeader.add-bg .siteHeader_navbtn {
    width: 40px;
    height: 25px;
  }
}

.siteFooter {
  background-color: #051831;
  position: relative;
}
.siteFooter_container {
  width: 90%;
  max-width: 1620px;
  margin: 0 auto;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .siteFooter_container {
    max-width: 600px;
    padding-bottom: 30px;
  }
}
.siteFooter_topwrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 30px;
}
@media screen and (max-width: 768px) {
  .siteFooter_topwrapper {
    flex-direction: column;
  }
}
.siteFooter_company {
  width: 18.5%;
  min-width: 290px;
}
@media screen and (max-width: 768px) {
  .siteFooter_company {
    width: 100%;
    min-width: auto;
  }
}
.siteFooter_company-logo {
  display: block;
  width: 90%;
  max-width: 277px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .siteFooter_company-logo {
    width: 60%;
  }
}
.siteFooter_company-logo:hover {
  opacity: 0.8;
}
.siteFooter_company-name {
  font-weight: 700;
  font-size: clamp(16px, 0.818rem + 0.78vw, 28px);
  margin-bottom: 10px;
}
.siteFooter_company-address, .siteFooter_company-info {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .siteFooter_company-address, .siteFooter_company-info {
    font-size: 14px;
  }
}
.siteFooter_company-info {
  margin-top: 12px;
  line-height: 1.5;
}
.siteFooter_company-info a {
  display: inline-block;
  color: #fff !important;
}
.siteFooter_company-sitelink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #fff;
  padding: 12px 20px;
  box-sizing: border-box;
  margin: 20px 0 10px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .siteFooter_company-sitelink {
    font-size: 14px;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 768px) {
  .siteFooter_company-sitelink {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}
.siteFooter_company-sitelink::after {
  font-size: 14px;
}
.siteFooter_company-sitelink::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: -8px;
  right: -8px;
  transform: rotate(45deg);
  background-color: #fff;
}
.siteFooter_company-sitelink:hover {
  background-color: #fff;
  color: #051831 !important;
}
.siteFooter_copyright {
  width: 100%;
  font-size: 14px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .siteFooter_copyright {
    font-size: 10px;
  }
}
.siteFooter_nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .siteFooter_nav {
    width: 100%;
    flex: auto;
  }
}
.siteFooter_nav-sns {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 25px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .siteFooter_nav-sns {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .siteFooter_nav-sns {
    justify-content: center;
    margin-top: 30px;
  }
}
.siteFooter_nav-sns a {
  display: block;
  width: 4%;
  max-width: 31px;
  min-width: 20px;
}
.siteFooter_nav-sns a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .siteFooter_nav-sns a {
    width: 10%;
  }
}
.siteFooter_nav-menu {
  width: 100%;
  max-width: 730px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-left: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .siteFooter_nav-menu {
    grid-template-columns: 1fr 0.8fr;
    width: 96%;
    max-width: 500px;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .siteFooter_nav-menu {
    width: 100%;
    max-width: none;
  }
}
.siteFooter_nav-menu a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff !important;
}
.siteFooter_nav-menu a:hover {
  opacity: 0.8;
}
.siteFooter_nav-menu a p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.siteFooter_nav-menu a .circle-arrow {
  width: 22px;
}
@media screen and (max-width: 1024px) {
  .siteFooter_nav-menu a .circle-arrow {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .siteFooter_nav-menu a .circle-arrow::before, .siteFooter_nav-menu a .circle-arrow::after {
    width: 4px;
  }
}
.siteFooter_nav-btns {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 20px;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .siteFooter_nav-btns {
    gap: 15px;
  }
}
.siteFooter_nav-btn {
  max-width: 250px;
  width: 50%;
  font-size: 18px;
  padding: 8px 10px 8px 20px;
  border: 1.5px solid #fff;
  color: #051831;
}
@media screen and (max-width: 1024px) {
  .siteFooter_nav-btn {
    font-size: 16px;
    padding: 5px 10px 5px 15px;
  }
}
@media screen and (max-width: 768px) {
  .siteFooter_nav-btn {
    font-size: 14px;
    max-width: none;
    padding: 4px 5px 4px 10px;
  }
}
.siteFooter_nav-btn .circle-arrow {
  max-width: 30px;
  width: 12%;
  background-color: #051831;
}
@media screen and (max-width: 1024px) {
  .siteFooter_nav-btn .circle-arrow {
    width: 15%;
  }
}
@media screen and (max-width: 768px) {
  .siteFooter_nav-btn .circle-arrow {
    width: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .siteFooter_nav-btn .circle-arrow::before, .siteFooter_nav-btn .circle-arrow::after {
    width: 5px;
  }
}
.siteFooter_nav-btn:hover {
  background-color: #051831;
}
.siteFooter_nav-btn:hover .circle-arrow::before,
.siteFooter_nav-btn:hover .circle-arrow::after {
  background-color: #051831 !important;
}

.slide-regular {
  width: 96%;
  max-width: 2700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-top: 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .slide-regular {
    width: 100%;
  }
}
.slide-regular-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  position: relative;
  animation: slide-row 30s linear infinite;
}
.slide-regular-item {
  width: 20vw;
}
@media screen and (max-width: 1024px) {
  .slide-regular-item {
    width: 25vw;
  }
}
@media screen and (max-width: 768px) {
  .slide-regular-item {
    width: 35vw;
  }
}

.joblist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  color: #262626;
}
@media screen and (max-width: 1024px) {
  .joblist {
    gap: 25px;
  }
}
@media screen and (max-width: 768px) {
  .joblist {
    display: block;
  }
}
.joblist_item {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  background-color: #fff;
  color: #262626;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .joblist_item {
    gap: 20px;
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .joblist_item {
    border-radius: 5px;
    padding: 12px 10px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  }
}
@media screen and (max-width: 768px) {
  .joblist_item + .joblist_item {
    margin-top: 20px;
  }
}
.joblist_item-info {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.joblist_item-img {
  flex: 1;
  overflow: hidden;
}
.joblist_item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.joblist_item-title {
  font-size: clamp(16px, 0.5rem + 1.1vw, 30px);
  font-weight: 600;
  margin-bottom: 5px;
  padding-left: 10px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .joblist_item-title {
    margin-bottom: 3px;
  }
}
.joblist_item-title::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 80%;
  background-color: #E63C66;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.joblist_item-text {
  font-size: clamp(12px, 0.65rem + 0.26vw, 20px);
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .joblist_item-text {
    margin-bottom: 15px;
  }
}
.joblist_item:hover .joblist_btn {
  background-color: #E63C66 !important;
  color: #fff !important;
}
.joblist_item:hover .joblist_btn .circle-arrow {
  background-color: #fff !important;
}
.joblist_item:hover .joblist_btn .circle-arrow::before, .joblist_item:hover .joblist_btn .circle-arrow::after {
  background-color: #E63C66 !important;
}
.joblist_item:hover .joblist_item-img img {
  transform: scale(1.1);
}
.joblist_btn {
  margin-top: auto;
  font-size: clamp(14px, 0.75rem + 0.26vw, 16px);
  border-color: #E63C66;
  background-color: #fff !important;
  color: #E63C66 !important;
  border-width: 1.5px;
  padding: 3px 5px 3px 15px;
  transition: all 0.4s;
}
@media screen and (max-width: 1024px) {
  .joblist_btn {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .joblist_btn {
    padding: 2px 4px 2px 10px;
    font-size: 11px;
  }
}
.joblist_btn .circle-arrow {
  width: 13%;
  max-width: 28px;
  background-color: #E63C66 !important;
}
@media screen and (max-width: 1024px) {
  .joblist_btn .circle-arrow {
    width: 20px;
  }
}
@media screen and (max-width: 768px) {
  .joblist_btn .circle-arrow {
    width: 15px;
  }
}
.joblist_btn .circle-arrow::before, .joblist_btn .circle-arrow::after {
  width: 22%;
  background-color: #fff !important;
}
@media screen and (max-width: 1024px) {
  .joblist_btn .circle-arrow::before, .joblist_btn .circle-arrow::after {
    width: 5px;
  }
}
@media screen and (max-width: 768px) {
  .joblist_btn .circle-arrow::before, .joblist_btn .circle-arrow::after {
    width: 4px;
  }
}

.entrybox {
  position: relative;
  background-color: #E63C66;
  overflow: hidden;
}
.entrybox_text {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.entrybox_text_content {
  display: flex;
}
.entrybox_text_content div {
  flex-shrink: 0;
  display: inline-block;
  padding: 0 50px;
  animation: marquee-loop 20s linear infinite;
  width: 75%;
  max-width: 1000px;
}
@media screen and (max-width: 1024px) {
  .entrybox_text_content div {
    padding: 0 30px;
    max-width: 680px;
  }
}
@media screen and (max-width: 768px) {
  .entrybox_text_content div {
    width: 120%;
    min-width: 450px;
    max-width: 570px;
    padding: 0 20px;
    animation-duration: 18s;
  }
}
.entrybox .entrybox_swiper {
  margin-bottom: -5px;
}
.entrybox .swiper-slide_item {
  width: 70%;
  max-width: 1164px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .entrybox .swiper-slide_item {
    width: 100%;
    max-width: 500px;
  }
}
.entrybox_btns {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .entrybox_btns {
    bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .entrybox_btns {
    bottom: 15px;
    gap: 20px;
  }
}
.entrybox_btns .btn {
  width: 50%;
  max-width: 400px;
  margin-top: 30px;
  border-radius: 50px;
  color: #5163C9;
}
.entrybox_btns .btn:hover {
  background-color: #5163C9;
  color: #fff !important;
}
.entrybox_btns .btn:hover .circle-arrow::before,
.entrybox_btns .btn:hover .circle-arrow::after {
  background-color: #5163C9;
}
.entrybox_btns .circle-arrow {
  max-width: 55px;
  width: 22%;
  background-color: #5163C9;
}
@media screen and (max-width: 1024px) {
  .entrybox_btns .circle-arrow {
    width: 15%;
  }
}
.entrybox_btns .circle-arrow::before, .entrybox_btns .circle-arrow::after {
  right: 38%;
  width: 40%;
  max-width: 15px;
  height: 3px;
}
@media screen and (max-width: 1024px) {
  .entrybox_btns .circle-arrow::before, .entrybox_btns .circle-arrow::after {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .entrybox_btns .circle-arrow::before, .entrybox_btns .circle-arrow::after {
    width: 22%;
    height: 1px;
  }
}

.memberlist_link {
  display: block;
}
.memberlist_link:hover .memberlist_img img {
  transform: scale(1.1);
}
.memberlist_link:hover .memberlist_btn {
  transform: translateX(0);
}
.memberlist_img {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .memberlist_img {
    border-radius: 5px;
  }
}
.memberlist_img img {
  transition: transform 0.4s;
}
.memberlist_info {
  margin-top: 10px;
  color: #fff !important;
}
.memberlist_profile {
  display: flex;
  align-items: center;
  justify-content: left;
  flex-wrap: wrap;
  gap: 10px;
  font-size: clamp(12px, 0.659rem + 0.39vw, 18px);
}
@media screen and (max-width: 1024px) {
  .memberlist_profile {
    font-size: 12px;
  }
}
.memberlist_profile li {
  border: 1px solid #fff;
  padding: 2px 8px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .memberlist_profile li {
    padding: 1px 5px;
  }
}
.memberlist_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.memberlist_name {
  font-size: clamp(18px, 1.004rem + 0.52vw, 26px);
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .memberlist_name {
    font-size: 20px;
  }
}
.memberlist_btn {
  position: relative;
  display: inline-block;
  width: 12%;
  max-width: 50px;
  border-radius: 50%;
  height: auto;
  aspect-ratio: 1/1;
  background-color: rgba(255, 255, 255, 0.85);
  transform: translateX(-10px);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .memberlist_btn {
    width: 12%;
  }
}
.memberlist_btn::before, .memberlist_btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 38%;
  width: 30%;
  max-width: 10px;
  height: 1.5px;
  border-radius: 9999px;
  background-color: #93B82E;
  transform-origin: calc(100% - 0.5px) 50%;
}
@media screen and (max-width: 768px) {
  .memberlist_btn::before, .memberlist_btn::after {
    width: 7px;
  }
}
.memberlist_btn::before {
  transform: rotate(45deg);
}
.memberlist_btn::after {
  transform: rotate(-45deg);
}

.modalsystem {
  display: none;
  width: 76%;
  max-width: 1200px;
  min-width: 800px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1900;
  background-color: #fff;
  border: 6px solid #44BEC7;
  border-radius: 15px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .modalsystem {
    min-width: auto;
    width: 85%;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .modalsystem {
    width: 90%;
    max-width: 420px;
    border-width: 3px;
    border-radius: 5px;
  }
}
.modalsystem_title {
  background-color: #44BEC7;
  color: #fff;
  font-size: clamp(18px, 0.913rem + 0.91vw, 32px);
  font-weight: 700;
  line-height: 1;
  padding: 13px 20px;
  padding-bottom: 19px;
  margin-top: -1px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .modalsystem_title {
    padding: 8px 10px;
    padding-bottom: 14px;
  }
}
@media screen and (max-width: 768px) {
  .modalsystem_title {
    padding-bottom: 11px;
  }
}
.modalsystem_title p {
  line-height: 1.1;
}
.modalsystem_cloesbtn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 2px solid #fff;
  height: 69%;
  width: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: calc(50% - 3px);
  right: 10px;
  transform: translateY(-50%);
  box-sizing: border-box;
  transition: all 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modalsystem_cloesbtn {
    border-width: 1px;
    right: 5px;
    height: 55%;
    top: calc(50% - 1px);
  }
}
.modalsystem_cloesbtn:hover {
  background-color: #44BEC7;
}
.modalsystem_cloesbtn:hover span::before,
.modalsystem_cloesbtn:hover span::after {
  background-color: #fff;
}
.modalsystem_cloesbtn span {
  display: block;
  width: 55%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
}
.modalsystem_cloesbtn span::before, .modalsystem_cloesbtn span::after {
  content: "";
  width: 100%;
  height: 3px;
  background: #44BEC7;
  position: absolute;
  top: 50%;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .modalsystem_cloesbtn span::before, .modalsystem_cloesbtn span::after {
    height: 2px;
  }
}
.modalsystem_cloesbtn span::before {
  transform: translateY(-50%) rotate(45deg);
}
.modalsystem_cloesbtn span::after {
  transform: translateY(-50%) rotate(-45deg);
}
.modalsystem_contents {
  color: #262626;
  margin: 10px 25px 30px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .modalsystem_contents {
    margin: 8px auto 20px;
    padding: 0 10px 0;
    max-width: 800px;
  }
}
.modalsystem_contents_img {
  position: absolute;
  width: 25%;
  max-width: 273px;
  min-width: 190px;
  right: 4%;
  top: -5%;
}
@media screen and (max-width: 768px) {
  .modalsystem_contents_img {
    min-width: 200px;
    top: 45px;
    right: 8%;
  }
}
.modalsystem_main {
  font-size: clamp(16px, 0.788rem + 0.91vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}
.modalsystem_main span {
  font-size: clamp(18px, 0.822rem + 1.29vw, 38px);
  color: #E63C66;
  line-height: 1;
}
.modalsystem_main strong {
  font-size: clamp(24px, 1.075rem + 1.81vw, 52px);
  line-height: 1;
  vertical-align: bottom;
}
.modalsystem_info {
  font-size: clamp(14px, 0.708rem + 0.71vw, 25px);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 5px;
}
.modalsystem_list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px;
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .modalsystem_list {
    margin-top: 20px;
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .modalsystem_list {
    flex-direction: column;
    gap: 10px;
    margin-top: 60px;
  }
}
.modalsystem_item {
  width: calc((100% - 60px) / 3);
  background-color: #E63C66;
  border: 3px solid #E63C66;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .modalsystem_item {
    width: calc((100% - 30px) / 3);
    border-radius: 5px;
  }
}
@media screen and (max-width: 768px) {
  .modalsystem_item {
    width: 100%;
    display: flex;
    align-items: center;
    border: none;
  }
}
.modalsystem_item:nth-child(2) {
  background-color: #5163C9;
  border-color: #5163C9;
}
.modalsystem_item:nth-child(2) .modalsystem_item-num {
  background-color: #5163C9;
}
.modalsystem_item:nth-child(3) {
  background-color: #93B82E;
  border-color: #93B82E;
}
.modalsystem_item:nth-child(3) .modalsystem_item-num {
  background-color: #93B82E;
}
.modalsystem_item-num {
  position: absolute;
  top: -2px;
  left: -2px;
  background-color: #E63C66;
  color: #fff;
  font-size: clamp(10px, 0.534rem + 0.39vw, 16px);
  font-weight: 600;
  padding: 6px 12px 13px 5px;
  border-radius: 0 0 30px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .modalsystem_item-num {
    border-radius: 0 0 20px;
    padding: 6px 9px 10px 5px;
  }
}
.modalsystem_item-img {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .modalsystem_item-img {
    width: 40%;
    margin-left: -1px;
  }
}
.modalsystem_item-img picture {
  display: block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 0;
}
.modalsystem_item-name {
  text-align: center;
  font-size: clamp(18px, 0.973rem + 0.65vw, 28px);
  color: #fff;
  padding: 13px;
}
@media screen and (max-width: 1024px) {
  .modalsystem_item-name {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 768px) {
  .modalsystem_item-name {
    flex: 1;
  }
}
.modalsystem_item-name-small {
  font-size: clamp(16px, 0.818rem + 0.78vw, 28px);
}
.modalsystem_item-name strong,
.modalsystem_item-name small {
  display: block;
  font-weight: 600;
  line-height: 1.2;
}
.modalsystem_item-name small {
  margin-top: 5px;
  font-size: clamp(14px, 0.629rem + 0.52vw, 20px);
}
@media screen and (max-width: 1024px) {
  .modalsystem_item-name small {
    margin-top: 3px;
  }
}
.modalsystem_btn {
  margin: 40px auto 0;
  max-width: 400px;
  padding: 4px 8px 4px 15px;
  font-size: clamp(12px, 0.629rem + 0.52vw, 20px);
  border-color: #44BEC7;
  color: #44BEC7;
}
@media screen and (max-width: 1024px) {
  .modalsystem_btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .modalsystem_btn {
    margin-top: 20px;
    border-width: 1.5px;
  }
}
.modalsystem_btn:hover {
  background-color: #44BEC7 !important;
}
.modalsystem_btn:hover .circle-arrow::before,
.modalsystem_btn:hover .circle-arrow::after {
  background-color: #44BEC7;
}
.modalsystem_btn .circle-arrow {
  width: 9%;
  background-color: #44BEC7;
}
@media screen and (max-width: 1024px) {
  .modalsystem_btn .circle-arrow {
    width: 7%;
  }
}
@media screen and (max-width: 1024px) {
  .modalsystem_btn .circle-arrow::before, .modalsystem_btn .circle-arrow::after {
    width: 26%;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

body:has(.addstyleForm input[type=submit]) .grecaptcha-badge {
  visibility: visible;
}

.addstyleForm .form-name {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .addstyleForm .form-name {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.addstyleForm .form-require {
  color: #E63C66;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  border: 1px solid #E63C66;
  padding: 0 12px;
  margin-left: 10px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .addstyleForm .form-require {
    font-size: 10px;
    padding: 0 10px;
  }
}
.addstyleForm .form-privacypolicy {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .addstyleForm .form-privacypolicy {
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.addstyleForm .form-privacypolicy label {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .addstyleForm .form-privacypolicy label {
    text-align: left;
    margin-left: 0;
  }
}
.addstyleForm .form-privacypolicy a {
  color: #5163C9;
  font-weight: 500;
}
.addstyleForm .form-privacypolicy a:hover {
  text-decoration: underline;
}
.addstyleForm .form-privacypolicy > p {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .addstyleForm .form-privacypolicy > p {
    font-size: 14px;
  }
}
.addstyleForm .form-privacypolicy .wpcf7-list-item {
  width: 100% !important;
}
.addstyleForm .form-privacypolicy .wpcf7-list-item-label {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .addstyleForm .form-privacypolicy .wpcf7-list-item-label {
    font-size: 16px;
  }
}
.addstyleForm .form-privacypolicy .wpcf7-checkbox {
  text-align: left;
  margin-left: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.addstyleForm .form-privacypolicy .wpcf7-not-valid-tip {
  display: none !important;
}
.addstyleForm form {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 55px 20px;
  font-size: 18px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .addstyleForm form {
    gap: 35px 20px;
  }
}
.addstyleForm form > * {
  width: 100%;
}
.addstyleForm form label {
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  box-sizing: border-box;
}
.addstyleForm form input:not([type=checkbox], [type=radio]),
.addstyleForm form select,
.addstyleForm form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #DDDDDD;
  box-sizing: border-box;
  padding: 5px 10px;
  font-size: 18px;
  transition: all 0.2s;
  background-color: #fff;
  color: #262626;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .addstyleForm form input:not([type=checkbox], [type=radio]),
  .addstyleForm form select,
  .addstyleForm form textarea {
    font-size: 16px;
    min-height: 42px;
  }
}
.addstyleForm form input:not([type=checkbox], [type=radio]):focus, .addstyleForm form input:not([type=checkbox], [type=radio]):active,
.addstyleForm form select:focus,
.addstyleForm form select:active,
.addstyleForm form textarea:focus,
.addstyleForm form textarea:active {
  outline: none;
  border-color: #44BEC7;
}
.addstyleForm form textarea {
  min-height: 380px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .addstyleForm form textarea {
    min-height: 250px;
  }
}
@media screen and (max-width: 768px) {
  .addstyleForm form .wpcf7-checkbox {
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 0.5rem;
    gap: 20px;
  }
}
.addstyleForm form .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  width: calc(50% - 10px);
  min-width: 280px;
}
.addstyleForm form label:has(input[type=checkbox]) {
  cursor: pointer;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .addstyleForm form label:has(input[type=checkbox]) {
    font-size: 16px;
  }
}
.addstyleForm form label:has(input[type=checkbox]) span {
  vertical-align: middle;
  line-height: 1.7;
}
.addstyleForm form label:has(input[type=checkbox]):hover {
  color: #5163C9;
}
.addstyleForm form input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  margin: 2px;
  margin-right: 10px;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .addstyleForm form input[type=checkbox] {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
}
.addstyleForm form input[type=checkbox]:checked {
  background-color: #5163C9;
}
.addstyleForm form input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: 1.5px;
  left: 7px;
  transform: rotate(45deg);
  width: 5px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
@media screen and (max-width: 768px) {
  .addstyleForm form input[type=checkbox]:checked:before {
    top: 2px;
    width: 3px;
    height: 9px;
    border-width: 2px;
  }
}
.addstyleForm form .wpcf7-radio {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 1rem;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .addstyleForm form .wpcf7-radio {
    margin-top: 20px;
    margin-left: 0.5rem;
    gap: 20px;
  }
}
.addstyleForm form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.addstyleForm form label:has(input[type=radio]) {
  cursor: pointer;
}
.addstyleForm form label:has(input[type=radio]) span {
  vertical-align: middle;
  line-height: 1.7;
}
.addstyleForm form input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #DDDDDD;
  border-radius: 50%;
  margin: 0;
  margin-right: 10px;
}
.addstyleForm form input[type=radio]:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #5163C9;
}
.addstyleForm form .radiobtn-btnblock .wpcf7-radio {
  display: flex;
  align-items: center;
  justify-content: left;
  flex-direction: row;
  gap: 20px;
  margin: -20px 0 0;
}
@media screen and (max-width: 768px) {
  .addstyleForm form .radiobtn-btnblock .wpcf7-radio {
    gap: 10px;
  }
}
.addstyleForm form .radiobtn-btnblock .wpcf7-radio label {
  min-width: 200px;
  padding: 10px 2px;
  border: 1.5px solid #5163C9;
  border-radius: 5px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1rem;
  color: #5163C9;
  transition: all 0.2s;
  cursor: pointer !important;
}
.addstyleForm form .radiobtn-btnblock .wpcf7-radio label input[type=radio] {
  display: none;
}
.addstyleForm form .radiobtn-btnblock .wpcf7-radio label:has(input[type=radio]:checked), .addstyleForm form .radiobtn-btnblock .wpcf7-radio label:hover {
  color: #fff !important;
  background-color: #5163C9;
}
@media screen and (max-width: 768px) {
  .addstyleForm form .radiobtn-btnblock .wpcf7-radio label {
    min-width: auto !important;
    font-size: 14px;
    padding: 8px 2px;
  }
}
.addstyleForm form .radiobtn-btnblock .wpcf7-list-item {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .addstyleForm form .radiobtn-btnblock .wpcf7-list-item {
    width: calc((100% - 10px) / 2);
  }
}
.addstyleForm form select.wpcf7-form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.addstyleForm form .dropdown-menu_wrapper {
  position: relative;
}
.addstyleForm form .dropdown-menu_wrapper::after {
  content: "";
  position: absolute;
  display: inline-block;
  border-top: 1.5px solid #BDBDBD;
  border-right: 1.5px solid #BDBDBD;
  height: 10px;
  width: 10px;
  top: 15px;
  right: 20px;
  transform: rotate(135deg);
  pointer-events: none;
}
.addstyleForm form input[type=submit] {
  max-width: 300px;
  width: 100%;
  margin: 30px auto 0;
  padding: 15px 5px;
  background-color: #E63C66;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-align: center;
  border: none;
  border-radius: 50px;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .addstyleForm form input[type=submit] {
    margin-top: 30px;
    padding: 8px 5px;
    font-size: 14px;
    min-height: 40px !important;
  }
}
.addstyleForm form input[type=submit]:hover {
  background-color: #CC495D;
}
.addstyleForm form input[type=submit]:disabled {
  background-color: #B3AAAB;
}
.addstyleForm form .wpcf7-not-valid-tip {
  margin-top: 10px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .addstyleForm form .wpcf7-not-valid-tip {
    font-size: 14px;
  }
}
.addstyleForm .wpcf7 form .wpcf7-response-output {
  margin-top: -20px;
  padding: 15px;
  border: none !important;
  color: #fff;
  font-weight: 500;
  background-color: #93B82E;
}
.addstyleForm .wpcf7 form.sent .wpcf7-response-output {
  background-color: #93B82E;
}
.addstyleForm .wpcf7 form.invalid .wpcf7-response-output,
.addstyleForm .wpcf7 form.unaccepted .wpcf7-response-output,
.addstyleForm .wpcf7 form.payment-required .wpcf7-response-output {
  background-color: #E63C66;
}

.pageDefault_title {
  text-align: center;
  font-size: clamp(26px, 1.109rem + 2.2vw, 60px);
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .pageDefault_title {
    margin-top: 40px;
  }
}
.pageDefault_contents {
  background-color: #fff;
  color: #262626;
  padding: 50px 60px;
  border-radius: 10px;
  margin-top: 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .pageDefault_contents {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 768px) {
  .pageDefault_contents {
    padding: 15px 10px;
    border-radius: 5px;
    margin-top: 30px;
  }
}
.pageDefault_contents > * + h2 {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .pageDefault_contents > * + h2 {
    margin-top: 30px;
  }
}
.pageDefault_contents p + p {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .pageDefault_contents p + p {
    margin-top: 20px;
  }
}
.pageDefault_contents h2 {
  margin-bottom: 10px;
}
.pageDefault_contents .wp-block-list {
  list-style: disc;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .pageDefault_contents .wp-block-list {
    margin-top: 10px;
  }
}
.pageDefault_contents .wp-block-list li {
  list-style: disc;
  line-height: 1.4;
  margin-left: 20px;
}
.pageDefault_contents .wp-block-list li + li {
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .pageDefault_contents .wp-block-list li + li {
    margin-top: 5px;
  }
}
.pageDefault_contents a {
  color: #E63C66 !important;
}
.pageDefault_contents a:hover {
  opacity: 0.8;
}

#privacypolicy {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #privacypolicy {
    font-size: 14px;
  }
}
#privacypolicy .container {
  max-width: 1200px !important;
}
#privacypolicy .pageDefault_contents > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.page-404 {
  padding-top: 20vh;
  padding-bottom: 20vh;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-404 {
    padding-top: 10vh;
    padding-bottom: 13vh;
  }
}
.page-404 h2 {
  font-size: clamp(18px, 0.867rem + 1.1vw, 35px);
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page-404 h2 {
    font-size: 22px;
    line-height: 1.5;
  }
}
.page-404 p {
  line-height: 1.5;
}
.page-404 .btn {
  margin: 0 auto;
  border: 1.5px solid #fff;
  margin-top: 50px;
}