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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin: 0;
  color: #242A2C;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

svg {
  display: block;
}

.w_container {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .w_container {
    max-width: 90%;
    margin: 0 auto;
  }
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media (max-width: 767px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
}
.header__inner {
  max-width: 1280px;
  height: 74px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__logo {
  flex-shrink: 0;
  transition: 0.3s all;
}
.header__logo:hover {
  opacity: 0.7;
}
.header__logo img {
  display: block;
  height: 42px;
  width: auto;
}
.header__nav {
  margin-left: auto;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__item {
  position: relative;
}
.header__item > a,
.header__item > .header__trigger {
  color: #222;
  transition: 0.3s ease;
}
.header__item > a:hover,
.header__item > .header__trigger:hover {
  background: linear-gradient(90deg, #B553CC, #EA4D6F, #FD9B2E);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.header__item > a {
  color: #222;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
}
.header__item.has-child > .header__trigger::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid #333;
  border-bottom: 1.5px solid #333;
  transform: rotate(45deg);
  transition: 0.25s;
}
.header__item.has-child.is-open > .header__trigger::after {
  transform: rotate(-135deg);
}
.header__sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 240px;
  padding: 8px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  z-index: 100;
}
.header__sub-menu li {
  width: 100%;
}
.header__sub-menu a {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.header__sub-menu a:hover {
  background: #F8F9FB;
  color: #C74BD7;
}
.header__sub-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}
.header__buttons {
  display: flex;
  gap: 14px;
  margin-left: 40px;
}
.header__trigger {
  color: #222;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.header__item.is-open .header__sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #D8DDE3;
  color: #232A31;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}
.btn-login:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 143px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, #C74BD7 0%, #F48A35 100%);
  box-shadow: 0 8px 24px rgba(244, 138, 53, 0.18);
  transition: all 0.25s ease;
}
.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(244, 138, 53, 0.25);
}

.sp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 1002;
}
.sp-header__inner {
  height: 100%;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sp-header__logo img {
  width: 104px;
  display: block;
}

.sp-header__hamburger {
  position: fixed;
  top: -18px;
  right: -16px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C74BD7 0%, #F48A35 100%);
  z-index: 1003;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.sp-header__hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}
.sp-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.sp-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.sp-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sp-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}
.sp-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  padding: 96px 28px 40px;
  background: #fff;
  border-radius: 28px 0 0 28px;
  transform: translateX(100%);
  transition: 0.35s ease;
  z-index: 1001;
}
.sp-nav.is-open {
  transform: translateX(0);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.14);
}
.sp-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sp-nav__menu li a {
  display: block;
  color: #222;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}
.sp-nav__buttons {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-nav__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
  font-size: 17px;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}
.sp-nav__arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.3s;
}
.sp-nav__item.is-open .sp-nav__arrow {
  transform: rotate(-135deg);
}
.sp-nav__item.is-open .sp-nav__sub-menu {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}
.sp-nav__sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.3s ease;
  padding-left: 16px;
}
.sp-nav__sub-menu li {
  margin-top: 12px;
}
.sp-nav__sub-menu a {
  color: #666;
  font-size: 15px;
  font-weight: 500;
}

.firstview {
  padding: 10% 0 240px 0;
  background-image: url(../img/FV_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .firstview {
    padding: 80px 0 240px 0;
  }
}
.firstview .fv-light {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 75%);
  filter: blur(90px);
  opacity: 1;
  pointer-events: none;
}
.firstview .fv-light-1 {
  width: 650px;
  height: 650px;
  top: -80px;
  left: -80px;
  -webkit-animation: fvFloat1 10s ease-in-out infinite;
          animation: fvFloat1 10s ease-in-out infinite;
}
.firstview .fv-light-2 {
  width: 800px;
  height: 800px;
  top: 120px;
  right: -160px;
  -webkit-animation: fvFloat2 13s ease-in-out infinite;
          animation: fvFloat2 13s ease-in-out infinite;
}
.firstview .fv-light-3 {
  width: 550px;
  height: 550px;
  bottom: -100px;
  left: 45%;
  -webkit-animation: fvFloat3 11s ease-in-out infinite;
          animation: fvFloat3 11s ease-in-out infinite;
}
.firstview .firstview_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .firstview .firstview_inner {
    flex-direction: column;
  }
}
.firstview .firstview_inner .firstview_left h2 {
  font-size: 36px;
  letter-spacing: 2.52px;
  line-height: 130%; /* 46.8px */
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .firstview .firstview_inner .firstview_left h2 {
    font-size: 32px;
    line-height: 150%; /* 46.8px */
    margin-bottom: 24px;
  }
}
.firstview .firstview_inner .firstview_left h2 span {
  background: linear-gradient(90deg, #B553CC, #EA4D6F, #FD9B2E, #B553CC);
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: gradientText 8s ease-in-out infinite;
          animation: gradientText 8s ease-in-out infinite;
  font-size: clamp(34px, 1.53vw + 28.26px, 40px);
}
.firstview .firstview_inner .firstview_left p {
  letter-spacing: 0.8px;
  font-size: 16px;
  line-height: 165%; /* 26.4px */
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .firstview .firstview_inner .firstview_left p {
    margin-bottom: 24px;
  }
}
.firstview .firstview_inner .firstview_right img {
  width: 650px;
}
@media (max-width: 767px) {
  .firstview .firstview_inner .firstview_right img {
    width: 100%;
    margin-bottom: 32px;
  }
}

@-webkit-keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes fvFloat1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(180px, 120px);
  }
}
@keyframes fvFloat1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(180px, 120px);
  }
}
@-webkit-keyframes fvFloat2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-140px, 100px);
  }
}
@keyframes fvFloat2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-140px, 100px);
  }
}
@-webkit-keyframes fvFloat3 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(80px, -120px);
  }
}
@keyframes fvFloat3 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(80px, -120px);
  }
}
.firstview_right .fv_lottie {
  width: 650px;
  display: block;
}
@media (max-width: 767px) {
  .firstview_right .fv_lottie {
    width: 100%;
    margin-bottom: 32px;
  }
}

.fv-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .fv-buttons {
    flex-direction: column;
  }
}
.fv-buttons .fv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s ease;
}
.fv-buttons .fv-btn:hover {
  transform: translateY(-2px);
}
.fv-buttons .fv-btn--contact {
  width: 196px;
  color: #fff;
  background: linear-gradient(90deg, #C74BD7 0%, #EA4D6F 25%, #FD9B2E 50%, #EA4D6F 75%, #C74BD7 100%);
  background-size: 300% 100%;
  -webkit-animation: gradientMove 6s linear infinite;
          animation: gradientMove 6s linear infinite;
  box-shadow: 0 8px 24px rgba(199, 75, 215, 0.18);
}
@media (max-width: 767px) {
  .fv-buttons .fv-btn--contact {
    width: 250px;
  }
}
.fv-buttons .fv-btn--download {
  width: 230px;
  color: #333;
  background: #fff;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #C74BD7 0%, #F48A35 100%) border-box;
}
@media (max-width: 767px) {
  .fv-buttons .fv-btn--download {
    width: 250px;
  }
}
.fv-buttons .fv-btn__icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

@-webkit-keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.CTA {
  position: relative;
  z-index: 5;
  margin-top: -140px;
}
@media (max-width: 767px) {
  .CTA {
    margin-top: -195px;
  }
}
.CTA .CTA_inner {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 0 17.1px 0 rgba(239, 161, 161, 0.25);
  padding: 24px 80px 48px 80px;
  opacity: 0;
  transform: translateY(40px);
  -webkit-animation: fadeUp 1s ease forwards;
          animation: fadeUp 1s ease forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
@media (max-width: 767px) {
  .CTA .CTA_inner {
    padding: 20px 16px 16px 16px;
  }
}
.CTA .CTA_inner h4 {
  font-size: clamp(18px, 0.51vw + 16.09px, 20px);
  text-align: center;
  line-height: 150%; /* 30px */
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.CTA .CTA_inner h4 span {
  color: #F97777;
}
.CTA .CTA_inner .CTA_area {
  display: flex;
  gap: 48px;
}
@media (max-width: 767px) {
  .CTA .CTA_inner .CTA_area {
    flex-direction: column;
    gap: 16px;
  }
}
.CTA .CTA_inner .CTA_area .CTA_left {
  display: flex;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 0 17.8px 0 rgba(196, 137, 165, 0.25);
  padding: 16px;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.CTA .CTA_inner .CTA_area .CTA_left:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(196, 137, 165, 0.25), 0 8px 20px rgba(196, 137, 165, 0.15);
}
.CTA .CTA_inner .CTA_area .CTA_left .CTA_left_left h5 {
  background: var(--main1, #E75D01);
  border-radius: 12.5px;
  color: #fff;
  display: inline-block;
  padding: 3px 18px;
  font-size: 14px;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}
.CTA .CTA_inner .CTA_area .CTA_left .CTA_left_left img {
  width: 185px;
  margin-bottom: 13px;
}
.CTA .CTA_inner .CTA_area .CTA_left .CTA_left_left p {
  font-size: clamp(12px, 0.26vw + 11.04px, 13px);
  line-height: 160%; /* 20.8px */
  letter-spacing: 0.65px;
}
.CTA .CTA_inner .CTA_area .CTA_left .CTA_left_left .CTA_btn {
  margin-top: 16px;
}
.CTA .CTA_inner .CTA_area .CTA_left .CTA_left_left .CTA_btn .more-link {
  width: 220px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  background: linear-gradient(90deg, #FF7A00 0%, #FF5F3A 50%, #FF4D4D 100%);
  box-shadow: 0 8px 20px rgba(255, 95, 58, 0.25), 0 4px 10px rgba(255, 122, 0, 0.15);
  transition: 0.3s ease;
}
.CTA .CTA_inner .CTA_area .CTA_left .CTA_left_left .CTA_btn .more-link .more-link__arrow {
  font-size: 20px;
  transition: 0.3s ease;
}
.CTA .CTA_inner .CTA_area .CTA_left .CTA_left_right img {
  width: 140px;
}
.CTA .CTA_inner .CTA_area .CTA_right .CTA_left_left h5 {
  background-color: #0ABAB5;
}
.CTA .CTA_inner .CTA_area .CTA_right .CTA_left_left .CTA_btn .more-link {
  background: linear-gradient(90deg, #38D2C7 0%, #42B7F5 50%, #8A5BFF 100%);
  box-shadow: 0 8px 20px rgba(66, 183, 245, 0.25), 0 4px 10px rgba(138, 91, 255, 0.15);
}
.CTA .CTA_inner .CTA_area .CTA_right .CTA_left_left .CTA_btn:hover .more-link {
  box-shadow: 0 14px 28px rgba(66, 183, 245, 0.35), 0 8px 16px rgba(138, 91, 255, 0.2);
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.Title .Title_sub {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
}
@media (max-width: 767px) {
  .Title .Title_sub {
    margin-bottom: 16px;
  }
}
.Title .Title_sub img {
  width: 15px;
}
.Title .Title_sub h5 {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  background: var(--1, linear-gradient(91deg, #B553CC 0.44%, #EA4D6F 50.14%, #FD9B2E 99.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Title h1 {
  font-size: clamp(24px, 2.04vw + 16.35px, 32px);
  font-weight: 700;
  line-height: 130%; /* 41.6px */
  letter-spacing: 2.24px;
}

.about {
  padding-top: 124px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .about {
    padding: 72px 0 16px 0;
  }
}
.about .about_inner {
  display: flex;
  gap: 48px;
  align-items: center;
}
@media (max-width: 767px) {
  .about .about_inner {
    flex-direction: column;
  }
}
.about .about_inner .about_left {
  width: 640px;
}
@media (max-width: 767px) {
  .about .about_inner .about_left {
    width: 100%;
  }
}
.about .about_inner .about_left p {
  font-weight: 500;
  margin-top: 24px;
  font-size: clamp(15px, 0.26vw + 14.04px, 16px);
  letter-spacing: 0.8px;
  line-height: 170%; /* 27.2px */
}
.about .about_inner .about_left p .gradation {
  background: var(--1, linear-gradient(91deg, #B553CC 0.44%, #EA4D6F 50.14%, #FD9B2E 99.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about .about_inner .about_left p .assist {
  color: #0ABAB5;
}
.about .about_inner .about_left p .reply {
  color: #E75D01;
}
.about .about_inner .about_right img {
  width: 464px;
}
@media (max-width: 767px) {
  .about .about_inner .about_right img {
    width: 100%;
  }
}

.merit {
  padding: 120px 0 200px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .merit {
    padding: 80px 0;
  }
}
.merit::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 1000px;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  background: rgba(230, 218, 245, 0.55);
  border-radius: 50%;
  z-index: -10;
}
@media (max-width: 1200px) {
  .merit::before {
    width: 200%;
    height: 1800px;
  }
}
@media (max-width: 500px) {
  .merit::before {
    width: 300%;
    height: 2000px;
  }
}
.merit .merit_inner {
  position: relative;
  z-index: 1;
}
.merit .merit_inner .Title {
  text-align: center;
}
.merit .merit_inner .Title .Title_sub {
  justify-content: center;
}
.merit .merit_inner .Title h1 span {
  background: linear-gradient(91deg, #B553CC 55.87%, #EA4D6F 73.07%, #FD9B2E 99.83%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
}
.merit .merit_inner .merit_area {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .merit .merit_inner .merit_area {
    flex-direction: column;
  }
}
.merit .merit_inner .merit_area .merit_box {
  width: 284px;
  text-align: center;
  border-radius: 5px;
  background: #FFF;
  box-shadow: 0 0 2.9px 0 rgba(124, 124, 124, 0.25) inset, 0 0 20.5px 0 rgba(148, 109, 147, 0.25);
  padding: 16px;
}
@media (max-width: 767px) {
  .merit .merit_inner .merit_area .merit_box {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 8px;
  }
}
.merit .merit_inner .merit_area .merit_box .merit_tag {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .merit .merit_inner .merit_area .merit_box .merit_tag {
    justify-content: flex-start;
  }
}
.merit .merit_inner .merit_area .merit_box .merit_tag .reply {
  color: #E75D01;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%; /* 15px */
  letter-spacing: 0.5px;
  border-radius: 15px;
  border: 0.8px solid #E75D01;
  background: rgba(231, 93, 1, 0.14);
  padding: 2px 12px;
}
.merit .merit_inner .merit_area .merit_box .merit_tag .assist {
  color: #0ABAB5;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%; /* 15px */
  letter-spacing: 0.5px;
  border-radius: 15px;
  border: 0.8px solid #0ABAB5;
  background: rgba(10, 186, 181, 0.14);
  padding: 2px 12px;
}
.merit .merit_inner .merit_area .merit_box .merit_text h3 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
}
@media (max-width: 767px) {
  .merit .merit_inner .merit_area .merit_box .merit_text h3 {
    text-align: left;
  }
}
.merit .merit_inner .merit_area .merit_box .merit_text h3 span {
  background: var(--1, linear-gradient(91deg, #B553CC 0.44%, #EA4D6F 50.14%, #FD9B2E 99.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.merit .merit_inner .merit_area .merit_box .merit_text p {
  font-size: 14px;
  margin-bottom: 1px;
}
@media (max-width: 767px) {
  .merit .merit_inner .merit_area .merit_box .merit_text p {
    text-align: left;
  }
}
.merit .merit_inner .merit_area .merit_box img {
  width: 150px;
  margin: 16px auto 0 auto;
}
@media (max-width: 767px) {
  .merit .merit_inner .merit_area .merit_box img {
    width: 40%;
    height: 100%;
  }
}

.service {
  overflow: hidden;
  margin: 56px 0 80px 0;
}
.service .service_inner .Title .Title_sub {
  justify-content: center;
}
.service .service_inner .Title h1 {
  text-align: center;
}
.service .service_inner .service_area {
  margin-top: 64px;
}
.service .service_inner .service_area .service_reply {
  display: flex;
  align-items: stretch;
  position: relative;
}
@media (max-width: 767px) {
  .service .service_inner .service_area .service_reply {
    flex-direction: column;
  }
}
.service .service_inner .service_area .service_reply .service_reply_left {
  background: #FEF7F4;
  padding: 48px 24px;
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .service .service_inner .service_area .service_reply .service_reply_left {
    width: 100%;
    padding: 32px 0;
  }
}
.service .service_inner .service_area .service_reply .service_reply_left::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: -100vw;
  width: 100vw;
  height: 100%;
  background: #FEF7F4;
  z-index: -1;
}
@media (max-width: 767px) {
  .service .service_inner .service_area .service_reply .service_reply_left::before {
    left: -100vw;
    width: 300vw;
    background: #FEF7F4;
  }
}
.service .service_inner .service_area .service_reply .service_reply_left .logo {
  margin: 0 auto;
  width: 290px;
}
.service .service_inner .service_area .service_reply .service_reply_left .service_reply_text {
  margin: 24px 0;
}
.service .service_inner .service_area .service_reply .service_reply_left .service_reply_text p {
  font-size: 14px;
  line-height: 150%; /* 19.5px */
  letter-spacing: 0.65px;
  text-align: center;
}
.service .service_inner .service_area .service_reply .service_reply_left .service_reply_merit {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.service .service_inner .service_area .service_reply .service_reply_left .service_reply_merit p {
  font-size: 14px;
  font-weight: 500;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
}
.service .service_inner .service_area .service_reply .service_reply_left .service_reply_merit span {
  font-weight: 700;
  font-size: 20px;
  background: var(--1, linear-gradient(91deg, #B553CC 0.44%, #EA4D6F 50.14%, #FD9B2E 99.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service .service_inner .service_area .service_reply .service_reply_left .service_reply_function {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  justify-content: center;
}
@media (max-width: 767px) {
  .service .service_inner .service_area .service_reply .service_reply_left .service_reply_function {
    gap: 12px;
  }
}
.service .service_inner .service_area .service_reply .service_reply_left .service_reply_function p {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  background-color: #FCE8DB;
  width: 163px;
  height: 64px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%; /* 21px */
  letter-spacing: 0.7px;
  color: #E75D01;
}
@media (max-width: 767px) {
  .service .service_inner .service_area .service_reply .service_reply_left .service_reply_function p img {
    width: 20px;
  }
}
@media (max-width: 767px) {
  .service .service_inner .service_area .service_reply .service_reply_left .service_reply_function p {
    width: 107px;
    font-size: 12px;
    height: 44px;
  }
}
.service .service_inner .service_area .service_reply .service_reply_left .service_reply_btn {
  margin-top: 48px;
  text-align: center;
}
.service .service_inner .service_area .service_reply .service_reply_left .service_reply_btn a {
  color: #fff;
  display: inline-block;
  padding: 13px 64px;
  border-radius: 10px;
  background: linear-gradient(91deg, #B553CC 0.44%, #EA4D6F 50.14%, #FD9B2E 99.83%);
  transition: all 0.3s ease;
  background-size: 200% 100%;
}
.service .service_inner .service_area .service_reply .service_reply_left .service_reply_btn a:hover {
  transform: translateY(-4px);
  background-position: 100% 0;
  box-shadow: 0 12px 30px rgba(234, 77, 111, 0.35);
}
.service .service_inner .service_area .service_reply .service_reply_right {
  padding: 64px 32px;
  width: 65%;
  background: #FEFAF8;
  z-index: 2;
  position: relative;
}
@media (max-width: 767px) {
  .service .service_inner .service_area .service_reply .service_reply_right {
    width: 100%;
  }
}
.service .service_inner .service_area .service_reply .service_reply_right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -100vw;
  width: 100vw;
  height: 100%;
  background: #FEFAF8;
  z-index: -1;
}
@media (max-width: 767px) {
  .service .service_inner .service_area .service_reply .service_reply_right::before {
    left: -100vw;
    width: 300vw;
    background: #FEFAF8;
  }
}
.service .service_inner .service_area .service_reply .service_reply_right img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.service .service_inner .service_area .service_assist .service_reply_left {
  background: #F5FCFC;
}
.service .service_inner .service_area .service_assist .service_reply_left::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: -100vw;
  width: 100vw;
  height: 100%;
  background: #F5FCFC;
  z-index: -1;
}
@media (max-width: 767px) {
  .service .service_inner .service_area .service_assist .service_reply_left::before {
    left: -100vw;
    width: 300vw;
    background: #F5FCFC;
  }
}
.service .service_inner .service_area .service_assist .service_reply_left .service_reply_function p {
  background-color: #E0F3F4;
  color: #0ABAB5;
}
.service .service_inner .service_area .service_assist .service_reply_right {
  background: #F9FDFD;
}
.service .service_inner .service_area .service_assist .service_reply_right::before {
  background: #F9FDFD;
  z-index: -1;
}
@media (max-width: 767px) {
  .service .service_inner .service_area .service_assist .service_reply_right::before {
    left: -100vw;
    width: 300vw;
    background: #F9FDFD;
  }
}

.casestudy {
  margin-top: 80px;
  padding: 80px;
  background-image: url(../img/case_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .casestudy {
    margin-top: 32px;
    padding: 32px 0;
  }
}
.casestudy .Title .Title_sub {
  justify-content: center;
}
.casestudy .Title h1 {
  text-align: center;
}
.casestudy .caseSwiper {
  position: relative;
  width: 100%;
  padding: 0 40px;
  margin: 80px 0;
  overflow: hidden !important;
}
@media (max-width: 767px) {
  .casestudy .caseSwiper {
    margin: 40px 0;
  }
}
.casestudy .case_card {
  display: flex;
  gap: 32px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #F5DCE2;
  box-shadow: 0 4px 30px rgba(181, 83, 204, 0.08);
}
.casestudy .case_card .case_img {
  flex-shrink: 0;
}
.casestudy .case_card .case_img img {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  display: block;
}
.casestudy .case_card .case_content {
  flex: 1;
}
.casestudy .case_card .case_content h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.casestudy .case_card .case_content .case_text {
  color: #666;
  line-height: 1.8;
}
.casestudy .case_card .case_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ff7a00;
  border: 1px solid #ff7a00;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.casestudy .case_card .case_tag.reply {
  color: #E75D01;
  border-color: #E75D01;
}
.casestudy .case_card .case_tag.assist {
  color: #0ABAB5;
  border-color: #0ABAB5;
}
.casestudy .case_card .case_tag.both {
  background: linear-gradient(91deg, #B553CC 0.44%, #EA4D6F 50.14%, #FD9B2E 99.83%);
  color: #fff;
  border: none;
}
.casestudy .case_card .case_category {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.casestudy .case_prev,
.casestudy .case_next {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #F5DCE2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}
.casestudy .case_prev:hover,
.casestudy .case_next:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 25px rgba(237, 87, 105, 0.15);
}
.casestudy .case_prev::before,
.casestudy .case_next::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #ED5769;
  border-right: 2px solid #ED5769;
}
.casestudy .case_prev {
  left: 0;
}
.casestudy .case_prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.casestudy .case_next {
  right: 0;
}
.casestudy .case_next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}
@media (max-width: 767px) {
  .casestudy .caseSwiper {
    padding: 0 50px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .casestudy .caseSwiper {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .casestudy .case_card {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .casestudy .case_card .case_img img {
    width: 100%;
    height: 220px;
  }
  .casestudy .case_card .case_content h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .casestudy .case_prev,
.casestudy .case_next {
    width: 40px;
    height: 40px;
  }
}

.news {
  margin: 120px 0;
}
.news .news_inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .news .news_inner {
    flex-direction: column;
    gap: 0;
  }
}
.news .Title {
  width: 20%;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .news .Title {
    width: 100%;
  }
}
.news .Title .news_archive_link {
  width: 140px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, #B553CC 0%, #EA4D6F 50%, #FD9B2E 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}
.news .Title .news_archive_link span {
  transition: 0.3s ease;
}
.news .Title .news_archive_link:hover {
  transform: translateY(-2px);
}
.news .Title .news_archive_link:hover span {
  transform: translateX(4px);
}
.news .news_list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.news .news_item {
  display: flex;
  gap: 40px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}
.news .news_item:hover {
  transform: translateY(-4px);
}
.news .news_item:hover .news_img img {
  transform: scale(1.05);
}
.news .news_item:hover h3 {
  color: #EA4D6F;
}
.news .news_img {
  width: 260px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .news .news_img {
    width: 100%;
  }
}
.news .news_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.news .news_content {
  flex: 1;
}
.news .news_tag_area {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.news .news_tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: #F8EEF9;
  color: #EA4D6F;
}
.news h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.news p {
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .news .news_list {
    margin-top: 24px;
    width: 100%;
  }
  .news .news_item {
    flex-direction: column;
    gap: 20px;
  }
  .news .news_img {
    width: 100%;
  }
  .news h3 {
    font-size: 20px;
  }
  .news p {
    font-size: 15px;
  }
}

.CTA_footer {
  margin: 80px 0 0 0;
  padding: 80px 0;
  background-image: url(../img/FV_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer {
  background: #fff;
  border-top: 1px solid #F3E5EB;
  padding: 60px 0 16px 0;
}
.footer .footer_logo_img {
  transition: 0.3s all;
}
.footer .footer_logo_img:hover {
  opacity: 0.7;
}
.footer .footer_logo {
  width: 186px;
}
.footer .footer_text {
  margin-top: 24px;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}
.footer .footer_text span {
  background: var(--1, linear-gradient(91deg, #B553CC 0.44%, #EA4D6F 50.14%, #FD9B2E 99.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer .footer_instagram {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #222;
  font-weight: 500;
}
.footer .footer_instagram img {
  width: 36px;
}
.footer .footer_btn {
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: 0.3s;
}
.footer .footer_btn:hover {
  transform: translateY(-2px);
}
.footer .footer_btn.contact {
  color: #fff;
  background: linear-gradient(91deg, #B553CC 0.44%, #EA4D6F 50.14%, #FD9B2E 99.83%);
}
.footer .footer_btn.login {
  background: #fff;
  border: 1px solid #DCDCDC;
  color: #222;
}

.footer_nav a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}
.footer_nav a .footer_arrow {
  color: #ED5769;
  font-size: 20px;
  line-height: 1;
  transition: 0.3s;
}
.footer_nav a:hover {
  color: #ED5769;
}
.footer_nav a:hover .footer_arrow {
  transform: translateX(4px);
}

.footer_pc .footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer_pc .footer_left {
  width: 30%;
}
.footer_pc .footer_center {
  display: flex;
  gap: 80px;
}
.footer_pc .footer_nav h3 {
  background: var(--1, linear-gradient(91deg, #B553CC 0.44%, #EA4D6F 50.14%, #FD9B2E 99.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  margin-bottom: 16px;
}
.footer_pc .footer_nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_pc .footer_nav a {
  color: #222;
  font-weight: 500;
}
.footer_pc .footer_right {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer_pc .copyright {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #F3E5EB;
  text-align: center;
  font-size: 12px;
  color: #777;
}

.footer_sp .footer_sp_inner {
  padding: 0 24px;
}
.footer_sp .footer_nav {
  margin-bottom: 40px;
}
.footer_sp .footer_nav h3 {
  color: #EA4D6F;
  margin-bottom: 20px;
  font-size: 20px;
}
.footer_sp .footer_nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer_sp .footer_logo {
  margin-top: 40px;
}
.footer_sp .footer_sp_btn {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer_sp .copyright {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #F3E5EB;
  text-align: center;
  font-size: 12px;
  color: #777;
}

.FV_page {
  background-image: url(../img/FV_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 157px;
  padding-bottom: 96px;
}
@media (max-width: 767px) {
  .FV_page {
    padding: 64px 0 40px 0;
  }
}
.FV_page .FV_page_inner .Page_title h1 {
  background: var(--1, linear-gradient(91deg, #B553CC 0.44%, #EA4D6F 50.14%, #FD9B2E 99.83%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 52px */
  letter-spacing: 2.8px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .FV_page .FV_page_inner .Page_title h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.FV_page .FV_page_inner .Page_title p {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 165%; /* 26.4px */
  letter-spacing: 0.8px;
  text-align: center;
}

.news_archive {
  padding: 100px 0;
}
.news_archive .news_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.news_archive .news_item {
  max-width: 890px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #F6DDE3;
  box-shadow: 0 0 20px rgba(234, 77, 111, 0.06);
  transition: 0.3s ease;
  text-decoration: none;
  color: inherit;
}
@media (max-width: 767px) {
  .news_archive .news_item {
    flex-direction: column;
  }
}
.news_archive .news_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(234, 77, 111, 0.12);
}
.news_archive .news_item:hover .news_img img {
  transform: scale(1.05);
}
.news_archive .news_item:hover .news_arrow {
  transform: translateX(6px);
}
.news_archive .news_item:hover h3 {
  color: #EA4D6F;
}
.news_archive .news_img {
  width: 200px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .news_archive .news_img {
    width: 100%;
  }
}
.news_archive .news_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  transition: 0.5s ease;
}
.news_archive .news_content {
  flex: 1;
}
.news_archive .news_tag_area {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.news_archive .news_tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: #FDF4F6;
  color: #EA4D6F;
  font-size: 12px;
  font-weight: 700;
}
.news_archive h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 12px;
  transition: 0.3s ease;
}
.news_archive p {
  font-size: 15px;
  line-height: 180%;
  color: #555;
}
.news_archive .news_arrow {
  flex-shrink: 0;
  color: #EA4D6F;
  font-size: 28px;
  font-weight: 300;
  transition: 0.3s ease;
}

.pagination {
  margin-top: 80px;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination .page-numbers li {
  margin: 0;
}
.pagination .page-numbers a,
.pagination .page-numbers span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  transition: 0.3s ease;
}
.pagination .page-numbers a:hover {
  color: #EA4D6F;
}
.pagination .page-numbers .current {
  background: linear-gradient(90deg, #B553CC 0%, #EA4D6F 50%, #FD9B2E 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(234, 77, 111, 0.2);
}
.pagination .page-numbers .prev,
.pagination .page-numbers .next {
  font-size: 28px;
  font-weight: 300;
}

.single_news {
  padding: 120px 0;
  background: linear-gradient(180deg, rgba(255, 246, 249, 0.8) 0%, #fff 100%);
}
.single_news .single_news_inner {
  max-width: 960px;
}
.single_news .single_news_article {
  background: #fff;
  border: 1px solid #F6DDE3;
  border-radius: 20px;
  padding: 64px 80px;
  box-shadow: 0 0 28px rgba(234, 77, 111, 0.08);
}
.single_news .single_news_meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.single_news .single_news_meta time {
  color: #999;
  font-size: 14px;
}
.single_news .single_news_tag {
  padding: 6px 14px;
  border-radius: 999px;
  background: #F8EEF9;
  color: #EA4D6F;
  font-size: 13px;
  font-weight: 700;
}
.single_news .single_news_title {
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 1.2px;
  margin-bottom: 40px;
}
.single_news .single_news_thumbnail {
  margin-bottom: 48px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.single_news .single_news_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.single_news .single_news_content {
  font-size: 16px;
  line-height: 2;
  color: #333;
}
.single_news .single_news_content p {
  margin-bottom: 28px;
}
.single_news .single_news_content h2 {
  margin: 56px 0 24px;
  padding-left: 16px;
  border-left: 4px solid #EA4D6F;
  font-size: 24px;
  line-height: 1.6;
}
.single_news .single_news_content h3 {
  margin: 40px 0 16px;
  font-size: 20px;
}
.single_news .single_news_content ul {
  margin: 24px 0;
  padding-left: 1.5em;
}
.single_news .single_news_content li {
  margin-bottom: 12px;
}
.single_news .single_news_pager {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  background: #fff;
  border: 1px solid #F6DDE3;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 20px rgba(234, 77, 111, 0.06);
}
.single_news .single_news_pager_item {
  flex: 1;
}
.single_news .single_news_pager_item a {
  display: block;
  color: #222;
  transition: 0.3s ease;
}
.single_news .single_news_pager_item a:hover {
  color: #EA4D6F;
  transform: translateY(-2px);
}
.single_news .single_news_pager_item .pager_label {
  display: block;
  margin-bottom: 8px;
  color: #999;
  font-size: 13px;
  font-weight: 700;
}
.single_news .single_news_pager_item strong {
  font-size: 15px;
  line-height: 1.6;
}
.single_news .single_news_pager_item.next {
  text-align: right;
  border-left: 1px solid #F1E1E6;
  padding-left: 24px;
}
.single_news .single_news_back {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.single_news .single_news_back_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #B553CC 0%, #EA4D6F 50%, #FD9B2E 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(234, 77, 111, 0.18);
  transition: 0.3s ease;
}
.single_news .single_news_back_btn span {
  transition: 0.3s ease;
}
.single_news .single_news_back_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(234, 77, 111, 0.25);
}
.single_news .single_news_back_btn:hover span {
  transform: translateX(-4px);
}
@media (max-width: 767px) {
  .single_news {
    padding: 80px 0;
  }
  .single_news .single_news_article {
    padding: 32px 20px;
  }
  .single_news .single_news_title {
    font-size: 22px;
  }
  .single_news .single_news_pager {
    flex-direction: column;
  }
  .single_news .single_news_pager_item.next {
    text-align: left;
    border-left: none;
    border-top: 1px solid #F1E1E6;
    padding-left: 0;
    padding-top: 20px;
  }
}
/*# sourceMappingURL=style.css.map */