@charset "UTF-8";
.l_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.l_header_wrap {
  display: flex;
  justify-content: space-between;
  padding-top: clamp(1.5rem, 0.5801886792rem + 2.358490566vw, 4rem);
  padding-left: clamp(2.6rem, 1.1650943396rem + 3.679245283vw, 6.5rem);
  padding-right: clamp(2.6rem, 1.1650943396rem + 3.679245283vw, 6.5rem);
}
.l_header_nav {
  display: flex;
  align-items: center;
  gap: 2.8645833333vw;
}
.l_header_list {
  display: flex;
  gap: 2.6041666667vw;
}
.l_header_list a {
  display: block;
  position: relative;
  color: #0A2335;
  font-size: 14px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
.l_header_list a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0A2335;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}
.l_header_list a:hover::after {
  border-color: #0A2335;
  transform-origin: left top;
  transform: scale(1, 1);
}
@media only screen and (max-width: 768px) {
  .l_header_list a:hover::after {
    content: none;
    transform: none;
  }
}
.l_header_btn a {
  display: block;
  background-color: #2440B9;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  padding: 10px;
  border-radius: 999px;
  width: 132px;
  text-align: center;
  border: 1px solid #2440B9;
  transition: all 0.3s;
  letter-spacing: 0.2em;
}
.l_header_btn a:hover {
  color: #2440B9;
  background-color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .l_header_btn a:hover {
    color: #ffffff;
    background-color: #2440B9;
    opacity: 1;
  }
}
.l_header_logo {
  width: clamp(11rem, 9.8962264151rem + 2.8301886792vw, 14rem);
}

/* ハンバーガーボタン */
.l_header_toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: none;
  border: 1px solid #0A2335;
  /* ◯の枠線 */
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
  transition: 0.3s;
}

.l_header_toggle span {
  display: block;
  width: 11px;
  height: 1px;
  background: #0A2335;
  border-radius: 2px;
  transition: 0.3s;
  position: relative;
}

/* 2本線（中央を消す） */
.l_header_toggle span:nth-child(3) {
  display: none;
}

/* 通常時の位置調整 */
.l_header_toggle span:nth-child(1) {
  transform: translateY(-2px);
}

.l_header_toggle span:nth-child(2) {
  transform: translateY(2px);
}

/* バツ印のときは位置をリセットして回転 */
.l_header_toggle.active span:nth-child(1) {
  transform: translateY(0) rotate(25deg);
}

.l_header_toggle.active span:nth-child(2) {
  transform: translateY(0) rotate(-25deg);
  margin: -1px;
}

/* スマホ用 */
@media (max-width: 768px) {
  .l_header_wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .l_header_toggle {
    display: flex;
    /* スマホで表示 */
  }
  .l_header_nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: #fff;
    padding: 80px 20px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    flex-direction: column;
    gap: 20px;
  }
  .l_header_nav.open {
    right: 0;
  }
  .l_header_list {
    flex-direction: column;
    gap: 15px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .l_header_list {
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .l_header_list li {
    width: 47%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .l_header_btn {
    margin-top: 20px;
  }
}
/* オーバーレイ（背景） */
.l_header_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.l_header_overlay.show {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .l_header_nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: #fff;
    padding: 85px 41px 40px;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
    flex-direction: column;
    gap: 20px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
  }
  .l_header_nav.open {
    opacity: 1;
    visibility: visible;
  }
  figure.l_header_nav_logo {
    width: 91px;
    position: absolute;
    top: 33px;
    left: 20px;
  }
}
.l_footer {
  position: relative;
  padding-top: clamp(4.5rem, 3.7641509434rem + 1.8867924528vw, 6.5rem);
  padding-bottom: clamp(1rem, -2.1273584906rem + 8.0188679245vw, 9.5rem);
}
@media only screen and (max-width: 768px) {
  .l_footer {
    padding-bottom: 100px;
  }
}
.l_footer::before {
  content: "";
  width: 500px;
  height: 340px;
  background-image: url("../img/ft_deco.webp");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .l_footer::before {
    content: none;
  }
}
.l_footer_top a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  gap: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "Jost", sans-serif;
}
.l_footer_top a img {
  width: 35px;
}
.l_footer_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(5rem, 4.4481132075rem + 1.4150943396vw, 6.5rem);
}
@media only screen and (max-width: 768px) {
  .l_footer_inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 38px;
  }
}
.l_footer_inner figure {
  width: clamp(15.6rem, 13.9811320755rem + 4.1509433962vw, 20rem);
}
.l_footer_nav {
  display: flex;
  align-items: center;
  gap: 54px;
}
.l_footer_list {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 54px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .l_footer_list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .l_footer_list li {
    width: 46%;
  }
}
.l_footer_list li a {
  display: block;
  position: relative;
  color: #0A2335;
  font-size: 14px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
.l_footer_list li a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0A2335;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}
.l_footer_list li a:hover::after {
  border-color: #0A2335;
  transform-origin: left top;
  transform: scale(1, 1);
}
@media only screen and (max-width: 768px) {
  .l_footer_list li a:hover::after {
    content: none;
    transform: none;
  }
}
.l_footer_list .l_footer_btn a {
  display: block;
  background-color: #2440B9;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  padding: clamp(0.7rem, 0.5896226415rem + 0.2830188679vw, 1rem);
  border-radius: 999px;
  width: 132px;
  text-align: center;
  border: 1px solid #2440B9;
  transition: all 0.3s;
  letter-spacing: 0.2em;
}
.l_footer_list .l_footer_btn a:hover {
  color: #2440B9;
  background-color: #ffffff;
}
.l_footer_list .l_footer_btn a:hover::after {
  content: none;
}
@media only screen and (max-width: 768px) {
  .l_footer_list .l_footer_btn a:hover {
    background-color: #2440B9;
    color: #ffffff;
    opacity: 1;
  }
}
.l_footer_btn a {
  display: block;
  background-color: #2440B9;
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  padding: 10px;
  border-radius: 999px;
  width: 132px;
  text-align: center;
  border: 1px solid #2440B9;
  transition: all 0.3s;
  letter-spacing: 0.2em;
}
.l_footer_btn a:hover {
  color: #2440B9;
  background-color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .l_footer_btn a:hover {
    background-color: #2440B9;
    color: #ffffff;
  }
}
.l_footer_copy {
  margin-top: 5rem;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 768px) {
  .l_footer_copy {
    text-align: left;
  }
}
.l_footer .privacy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  margin-left: auto;
  margin-right: 0;
  font-size: 14px;
  color: rgb(10, 35, 53);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .l_footer .privacy {
    margin-left: 0;
    margin-right: auto;
    margin-top: 30px;
  }
}
.l_footer .privacy a {
  display: block;
  position: relative;
  color: #0A2335;
  font-size: 14px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
.l_footer .privacy a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #0A2335;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}
.l_footer .privacy a:hover::after {
  border-color: #0A2335;
  transform-origin: left top;
  transform: scale(1, 1);
}

.l_container {
  max-width: 1050px;
  width: 100%;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .l_container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}

.l_container_1200 {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .l_container_1200 {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}

.container_inner {
  width: 100%;
}
@media only screen and (min-width: 767px) {
  .container_inner {
    max-width: 95.72%;
    margin-left: auto;
    margin-right: auto;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  color: #181818;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

p {
  text-align: left;
}

.br {
  display: inline-block;
}

.wrapper {
  overflow-x: hidden;
}

a {
  cursor: pointer;
}

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

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

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

@media only screen and (min-width: 767px) {
  .tb {
    display: block;
  }
}

a:hover {
  opacity: 0.7;
}

.l_mv {
  position: relative;
}
.l_mv_line_wrap {
  position: fixed;
  bottom: 60px;
  right: 48px;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .l_mv_line_wrap {
    bottom: 20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.l_mv_line {
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}
.l_mv_line a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent linear-gradient(180deg, #94F990 0%, #27D5DA 100%) 0% 0% no-repeat padding-box;
  border-radius: 50%;
  width: 198px;
  height: 198px;
  transition: all 0.3s;
}
.l_mv_line a:hover {
  filter: brightness(1.1);
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .l_mv_line a {
    width: 366px;
    height: 58px;
    border-radius: 999px;
    flex-direction: row;
    gap: 10px;
  }
}
.l_mv_line a p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 3px;
  line-height: 1.5;
  margin-top: 2px;
}
@media only screen and (max-width: 768px) {
  .l_mv_line a p {
    margin-top: 0;
    position: relative;
  }
}
.l_mv_line a p::after {
  content: "";
  width: 13px;
  height: 24px;
  background-image: url("../img/btn_arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 77%;
  right: 46%;
  transform: rotate(90deg);
}
@media only screen and (max-width: 768px) {
  .l_mv_line a p::after {
    content: "";
    width: 7px;
    height: 12px;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
  }
}
.l_mv_line figure {
  width: 51px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -30px;
}
@media only screen and (max-width: 768px) {
  .l_mv_line figure {
    width: 40px;
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
  }
}
.l_mv_scroll {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .l_mv_scroll {
    bottom: 100px;
  }
}
.l_mv_scroll_text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-family: "Jost", sans-serif;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .l_mv_scroll_text {
    margin-bottom: 7px;
  }
}
.l_mv_scroll .scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  /* 三角の間隔 */
}
.l_mv_scroll .scroll-down span {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid #ccc;
  -webkit-animation: triangleFlash 2s infinite;
          animation: triangleFlash 2s infinite;
}
@media only screen and (max-width: 768px) {
  .l_mv_scroll .scroll-down span {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid #ccc;
  }
}
.l_mv_scroll .scroll-down span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.l_mv_scroll .scroll-down span:nth-child(2) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.l_mv_scroll .scroll-down span:nth-child(3) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
@-webkit-keyframes triangleFlash {
  0% {
    border-top-color: #007bff;
  }
  /* 青 */
  50% {
    border-top-color: #ccc;
  }
  /* グレー */
  100% {
    border-top-color: #ccc;
  }
}
@keyframes triangleFlash {
  0% {
    border-top-color: #007bff;
  }
  /* 青 */
  50% {
    border-top-color: #ccc;
  }
  /* グレー */
  100% {
    border-top-color: #ccc;
  }
}

@-webkit-keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.l_message {
  position: relative;
  padding-top: clamp(8.7rem, 5.8301886792rem + 7.358490566vw, 16.5rem);
  padding-bottom: clamp(6.7rem, 3.8301886792rem + 7.358490566vw, 14.5rem);
}
.l_message::before {
  content: "";
  width: clamp(11.9rem, 7.0066037736rem + 12.5471698113vw, 25.2rem);
  height: clamp(7.5rem, 4.5198113208rem + 7.641509434vw, 15.6rem);
  background-image: url("../img/icon_burd.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 5%;
  right: 17%;
}
@media only screen and (max-width: 768px) {
  .l_message::before {
    top: 1.5%;
    right: 6%;
  }
}
.l_message_title {
  text-align: center;
}
.l_message_decorated {
  position: relative;
  display: inline-block;
  z-index: 1;
  opacity: 0;
}
.l_message_decorated::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.8), rgba(0, 123, 255, 0.6), rgba(0, 255, 150, 0.6), rgba(255, 255, 255, 0.8));
  filter: blur(50px);
  z-index: -1;
  -webkit-animation: rotateGradient 10s linear infinite;
          animation: rotateGradient 10s linear infinite;
}
.l_message_water.animate {
  -webkit-animation: waterReveal 2.5s ease forwards;
          animation: waterReveal 2.5s ease forwards;
  font-size: clamp(3.4rem, 2.8849056604rem + 1.320754717vw, 4.8rem);
  font-family: "Jost", sans-serif;
  letter-spacing: 4.8px;
  font-weight: 500;
}
.l_message_catch {
  margin-top: clamp(2.5rem, 1.6537735849rem + 2.1698113208vw, 4.8rem);
  font-size: clamp(1.8rem, 1.2849056604rem + 1.320754717vw, 3.2rem);
  text-align: center;
  font-family: "Noto Serif", serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 5;
  font-weight: 550;
}
@media only screen and (max-width: 768px) {
  .l_message_catch {
    letter-spacing: 0;
  }
}
.l_message_text {
  max-width: 842px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: clamp(2.5rem, 1.5801886792rem + 2.358490566vw, 5rem);
  font-size: clamp(1.6rem, 1.4528301887rem + 0.3773584906vw, 2rem);
  letter-spacing: 2px;
  line-height: 2.15;
}
@media only screen and (max-width: 768px) {
  .l_message_text {
    letter-spacing: 0.05em;
  }
}

@-webkit-keyframes waterReveal {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.9);
  }
  60% {
    opacity: 0.8;
    filter: blur(3px);
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes waterReveal {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.9);
  }
  60% {
    opacity: 0.8;
    filter: blur(3px);
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@-webkit-keyframes rotateGradient {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotateGradient {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.l_support {
  position: relative;
  background-image: url("../img/support_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: clamp(4rem, 3.2641509434rem + 1.8867924528vw, 6rem);
  padding-bottom: clamp(4rem, 2.4547169811rem + 3.9622641509vw, 8.2rem);
}
.l_support_title {
  font-size: clamp(3.2rem, 2.6113207547rem + 1.5094339623vw, 4.8rem);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 4.8px;
  text-align: center;
}
.l_support_catch {
  font-size: clamp(1.8rem, 1.2849056604rem + 1.320754717vw, 3.2rem);
  font-family: "Noto Serif", serif;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 550;
  margin-top: 6px;
}
.l_support_list {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .l_support_list {
    flex-direction: column;
    gap: 3rem;
  }
}
.l_support_item {
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 8px 8px rgba(193, 193, 193, 0.0588235294);
  padding: 2rem 1.2rem;
  position: relative;
  width: 250px;
}
@media only screen and (max-width: 768px) {
  .l_support_item {
    width: 100%;
  }
}
.l_support_num {
  color: #5895FF;
  font-family: "Lexend Deca", sans-serif;
  font-size: 3.6rem;
  letter-spacing: 2.53px;
  position: absolute;
  top: -20px;
  left: 0;
}
.l_support_h3 {
  font-size: 1.8rem;
  text-align: center;
  line-height: 24px;
  letter-spacing: 0;
  margin-top: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #5895FF;
  font-family: "Noto Serif", serif;
  font-weight: 600;
}
.l_support_text {
  font-size: 1.6rem;
  margin-top: 2rem;
  text-align: center;
  letter-spacing: 0.8px;
  line-height: 26px;
}
.l_support_arrow {
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
}

/*アニメーション*/
.l_support_catch {
  position: relative;
  display: inline-block;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}

/* 筆背景 */
.l_support_catch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/support_line.webp") no-repeat center/cover;
  transform: translateY(-50%);
  z-index: -1;
  /* マスクで描かれる演出 */
  -webkit-mask-image: url("../img/support_line.webp");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  -webkit-mask-size: 0% 100%;
  mask-image: url("../img/support_line.webp");
  mask-repeat: no-repeat;
  mask-position: left center;
  mask-size: 0% 100%;
}

.l_support_catch.active::before {
  -webkit-animation: drawBrush 1s forwards;
          animation: drawBrush 1s forwards;
}

@-webkit-keyframes drawBrush {
  to {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}

@keyframes drawBrush {
  to {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
}
.l_cv {
  padding-top: 10rem;
  padding-bottom: clamp(4rem, 2.5283018868rem + 3.7735849057vw, 8rem);
  background-image: url("../img/cv_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.l_cv .dots {
  background-image: radial-gradient(circle at center, orange 20%, transparent 25%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.4em;
}
.l_cv_area {
  background-color: #ffffff;
  border-radius: 11px;
  padding-top: 4rem;
  padding-bottom: 29px;
  padding-left: clamp(1.6rem, 0.3490566038rem + 3.2075471698vw, 5rem);
  padding-right: clamp(1.6rem, 0.3490566038rem + 3.2075471698vw, 5rem);
}
.l_cv_catch {
  font-size: clamp(2.8rem, 2.1009433962rem + 1.7924528302vw, 4.7rem);
  font-family: "Noto Serif", serif;
  letter-spacing: 2.45px;
  text-align: center;
  line-height: 1.7;
  white-space: nowrap;
  font-weight: 550;
}
.l_cv_text {
  text-align: center;
  font-size: clamp(2rem, 1.7424528302rem + 0.6603773585vw, 2.7rem);
  font-family: "Noto Serif", serif;
  margin-top: 15px;
  line-height: 1.7;
}
.l_cv._02 {
  position: relative;
}
.l_cv._02 .l_cv_icon {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: clamp(10.5rem, 6.6367924528rem + 9.9056603774vw, 21rem);
}
@media only screen and (max-width: 768px) {
  .l_cv._02 .l_cv_icon {
    right: 0;
  }
}

.l_jobs {
  position: relative;
  padding-top: clamp(5.2rem, 4.9056603774rem + 0.7547169811vw, 6rem);
  padding-bottom: clamp(6rem, 5.4481132075rem + 1.4150943396vw, 7.5rem);
}
.l_jobs_h2 {
  font-size: clamp(3.4rem, 2.4433962264rem + 2.4528301887vw, 6rem);
  font-weight: 500;
  letter-spacing: 3.4px;
  line-height: 1.7;
  font-family: "Jost", sans-serif;
}
.l_jobs_catch {
  color: #5895FF;
  font-family: "Noto Serif", serif;
  font-size: clamp(1.8rem, 1.2849056604rem + 1.320754717vw, 3.2rem);
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.l_jobs_catch img {
  width: 25px;
}
.l_jobs_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 3rem;
}
.l_jobs_item {
  width: 285px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .l_jobs_item {
    width: 120px;
  }
}
.l_jobs_item img {
  max-width: 70%;
}
.l_jobs_swiper {
  margin-top: 5rem;
  position: relative;
}
.l_jobs_contents figure {
  aspect-ratio: 323/196;
}
.l_jobs_contents img {
  aspect-ratio: 323/196;
  -o-object-fit: cover;
     object-fit: cover;
}
.l_jobs_h3 {
  font-size: clamp(2rem, 1.779245283rem + 0.5660377358vw, 2.6rem);
  color: #5895FF;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-bottom: 1px solid;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-weight: 700;
}
.l_jobs_details {
  display: flex;
  gap: 8px;
  align-items: center;
}
.l_jobs_details:not(:first-of-type) {
  margin-top: 10px;
}
.l_jobs_details dt {
  background-color: #5895FF;
  color: #ffffff;
  font-size: 15px;
  width: 84px;
  text-align: center;
  padding: 3px 5px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.l_jobs_details dd {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.l_jobs .swiper-button-next {
  right: -5%;
}
@media only screen and (max-width: 768px) {
  .l_jobs .swiper-button-next {
    top: 25%;
  }
}
.l_jobs .swiper-button-prev {
  left: -5%;
}
@media only screen and (max-width: 768px) {
  .l_jobs .swiper-button-prev {
    top: 25%;
  }
}
.l_jobs .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -15%;
}
.l_jobs_catch_area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(10rem, 8.8962264151rem + 2.8301886792vw, 13rem);
}
.l_jobs_catch_02 {
  text-align: center;
  font-family: "Noto Serif", serif;
  font-size: clamp(2.2rem, 1.8320754717rem + 0.9433962264vw, 3.2rem);
  letter-spacing: 3.2px;
  line-height: 1.8;
  display: inline;
  background: linear-gradient(transparent 80%, #FFEB00 0%);
  padding: 0 1px 0;
}
@media only screen and (max-width: 768px) {
  .l_jobs_catch_02 {
    letter-spacing: 1.2px;
  }
}

/* 非スライダー時は矢印・ページネーション非表示 */
.l_jobs_swiper:not(.is-slider) .swiper-button-prev,
.l_jobs_swiper:not(.is-slider) .swiper-button-next,
.l_jobs_swiper:not(.is-slider) .swiper-pagination {
  display: none !important;
}

/* 非スライダー時のレイアウト（例） */
.l_jobs_swiper:not(.is-slider) .swiper-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.l_jobs_swiper:not(.is-slider) .swiper-slide {
  flex: 1 1 calc(33.333% - 20px);
  /* PC: 3カラム */
  max-width: calc(33.333% - 20px);
}

@media (max-width: 767px) {
  .l_jpbs_swiper:not(.is-slider) .swiper-slide {
    flex: 1 1 calc(50% - 20px);
    /* SP: 2カラム */
    max-width: calc(50% - 20px);
  }
}
.l_consultant {
  background: transparent linear-gradient(180deg, rgba(88, 160, 255, 0.19) 0%, rgba(88, 136, 255, 0.19) 45%, rgba(89, 102, 255, 0.19) 100%) 0% 0% no-repeat padding-box;
  position: relative;
  padding-top: clamp(4.5rem, 1.7405660377rem + 7.0754716981vw, 12rem);
  padding-bottom: clamp(4.5rem, 1.7405660377rem + 7.0754716981vw, 12rem);
  isolation: isolate;
}
.l_consultant .l_container {
  position: relative;
  z-index: 1;
}
.l_consultant::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(rgba(89, 102, 255, 0.17), rgba(222, 234, 255, 0));
  z-index: 2;
}
.l_consultant_h2 {
  font-size: clamp(2rem, 1.558490566rem + 1.1320754717vw, 3.2rem);
  font-family: "Noto Serif", serif;
  letter-spacing: 3.2px;
}
.l_consultant_h2 span {
  font-family: "Jost", sans-serif;
  font-size: clamp(3.4rem, 2.4433962264rem + 2.4528301887vw, 6rem);
  letter-spacing: 6px;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.l_consultant_list {
  margin-top: clamp(2rem, 1.3377358491rem + 1.6981132075vw, 3.8rem);
}
.l_consultant_item {
  display: flex;
  height: 354px;
}
@media only screen and (max-width: 768px) {
  .l_consultant_item {
    flex-direction: column;
    height: auto;
  }
}
.l_consultant_item:not(:first-of-type) {
  margin-top: clamp(2.5rem, 1.5801886792rem + 2.358490566vw, 5rem);
}
.l_consultant_item figure {
  width: 20.5517241379vw;
  aspect-ratio: 298/354;
}
@media only screen and (max-width: 768px) {
  .l_consultant_item figure {
    width: 100%;
    aspect-ratio: 338/246;
  }
}
.l_consultant_item img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 298/354;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .l_consultant_item img {
    aspect-ratio: 338/246;
    -o-object-position: top;
       object-position: top;
  }
}
.l_consultant_details {
  width: 54.6875vw;
  background-color: #ffffff;
  padding-top: clamp(1rem, -0.1037735849rem + 2.8301886792vw, 4rem);
  padding-bottom: clamp(2.4rem, 0.7443396226rem + 4.2452830189vw, 6.9rem);
  padding-left: clamp(1.8rem, -0.0028301887rem + 4.6226415094vw, 6.7rem);
  padding-right: clamp(1.8rem, 0.6226415094rem + 3.0188679245vw, 5rem);
}
@media only screen and (max-width: 768px) {
  .l_consultant_details {
    width: 100%;
  }
}
.l_consultant_name {
  font-size: clamp(2.8rem, 2.6528301887rem + 0.3773584906vw, 3.2rem);
  font-family: "Noto Serif", serif;
  letter-spacing: 2.8px;
  padding-bottom: clamp(1rem, 0.8160377358rem + 0.4716981132vw, 1.5rem);
  margin-bottom: clamp(1rem, 0.8160377358rem + 0.4716981132vw, 1.5rem);
  border-bottom: 0.5px solid #887474;
}
.l_consultant_name span {
  font-size: 2rem;
}
.l_consultant_text {
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 1.7;
  font-weight: 350;
}
.l_consultant_logo {
  width: clamp(8rem, 1.929245283rem + 15.5660377358vw, 24.5rem);
  position: absolute;
  top: 11%;
  right: 15%;
}
@media only screen and (max-width: 768px) {
  .l_consultant_logo {
    top: 3.5%;
    right: 3%;
  }
}
.l_consultant::before {
  content: "";
  width: 375px;
  height: 472px;
  background-image: url("../img/symbol.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 5%;
  right: 5.5%;
  opacity: 0.5;
  mix-blend-mode: lighten;
}
@media only screen and (max-width: 768px) {
  .l_consultant::before {
    width: 256px;
    top: 3%;
  }
}

.l_flow {
  position: relative;
  padding-top: clamp(9rem, 6.4981132075rem + 6.4150943396vw, 15.8rem);
  padding-bottom: clamp(5.5rem, 4.2858490566rem + 3.1132075472vw, 8.8rem);
  background-color: rgba(222, 234, 255, 0.24);
}
.l_flow_h2 {
  text-align: center;
  font-family: "Jost", sans-serif;
  letter-spacing: 6px;
  line-height: 1.4;
  font-weight: 500;
  font-size: clamp(3.4rem, 2.4433962264rem + 2.4528301887vw, 6rem);
  position: relative;
  z-index: 0;
}
.l_flow_h2::after {
  content: "";
  background-image: url("../img/flow_bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(14rem, 11.2405660377rem + 7.0754716981vw, 21.5rem);
  height: clamp(13.4rem, 10.7509433962rem + 6.7924528302vw, 20.6rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.l_flow_h2_sub {
  text-align: center;
  font-family: "Noto Serif", serif;
  font-weight: 500;
  font-size: clamp(2rem, 1.558490566rem + 1.1320754717vw, 3.2rem);
  margin-top: 1rem;
  letter-spacing: 3.2px;
}
.l_flow_content {
  margin-top: 20px;
}
.l_flow_item {
  display: flex;
  gap: clamp(1.3rem, -0.3556603774rem + 4.2452830189vw, 5.8rem);
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .l_flow_item {
    flex-direction: column;
  }
}
.l_flow_item figure {
  width: clamp(10.9rem, 8.6924528302rem + 5.6603773585vw, 16.9rem);
}
.l_flow_box {
  width: clamp(33rem, 16.4433962264rem + 42.4528301887vw, 78rem);
}
@media only screen and (max-width: 768px) {
  .l_flow_box {
    width: 100%;
  }
}
.l_flow_num {
  color: #5895FF;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 3.4px;
  line-height: 0.8;
  font-size: 3.4rem;
}
.l_flow_h3 {
  font-size: clamp(1.8rem, 1.6160377358rem + 0.4716981132vw, 2.3rem);
  font-weight: 500;
  letter-spacing: 2.3px;
  line-height: 1.7;
  margin-top: 10px;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.l_flow_h3 span {
  font-size: clamp(1.6rem, 1.5264150943rem + 0.1886792453vw, 1.8rem);
}
.l_flow_text {
  margin-top: 15px;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 1.8;
}
.l_flow_arrow {
  width: 36px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 768px) {
  .l_flow_arrow {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.l_flow_catch {
  margin-top: 1.6rem;
  font-size: clamp(1.8rem, 1.6160377358rem + 0.4716981132vw, 2.3rem);
  text-align: center;
  letter-spacing: 1.8px;
  line-height: 1.7;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .l_flow_catch {
    margin-top: 4.2rem;
  }
}
.l_flow_catch_sub {
  font-size: clamp(1.4rem, 1.2528301887rem + 0.3773584906vw, 1.8rem);
  text-align: center;
  letter-spacing: 0.7px;
  line-height: 1.7;
  font-weight: 700;
  margin-top: 10px;
}
.l_flow_point {
  display: flex;
  gap: 20px;
  margin-top: clamp(5.4rem, 5.179245283rem + 0.5660377358vw, 6rem);
}
@media only screen and (max-width: 768px) {
  .l_flow_point {
    flex-direction: column;
  }
}
.l_flow_point_item {
  width: calc((100% - 40px) / 3);
  background-color: #ffffff;
  border-radius: 21px;
  padding: 9px 24px 32px;
}
@media only screen and (max-width: 768px) {
  .l_flow_point_item {
    width: 100%;
  }
}
.l_flow_point_item figure {
  width: 38px;
  margin-left: auto;
  margin-right: auto;
}
.l_flow_point_num {
  color: #FF7E00;
  font-size: 1.7rem;
  letter-spacing: 1.7px;
  font-family: 500;
}
.l_flow_point_title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 15px;
  text-align: center;
}
.l_flow_point_text {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.7;
  margin-top: 15px;
}

.l_faq {
  position: relative;
  background-image: url("../img/fac_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: clamp(5.2rem, 3.8386792453rem + 3.4905660377vw, 8.9rem);
  padding-bottom: clamp(8rem, 6.491509434rem + 3.8679245283vw, 12.1rem);
}
@media only screen and (max-width: 768px) {
  .l_faq {
    background-image: url("../img/faq_bg_sp.webp");
  }
}
.l_faq_img {
  width: clamp(21.2rem, 22.3773584906rem - 3.0188679245vw, 18rem);
  margin-left: auto;
  margin-right: auto;
}
.l_faq_h2 {
  font-size: clamp(5.1rem, 4.7688679245rem + 0.8490566038vw, 6rem);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 6px;
  line-height: 1.4;
  text-align: center;
}
.l_faq_area {
  margin-top: clamp(1.8rem, 1.1377358491rem + 1.6981132075vw, 3.6rem);
}

.faq__toggleIcon {
  transition: transform 0.3s ease-in-out;
}

.faq__question {
  display: flex;
  align-items: center;
  color: #181818;
  padding: 10px 20px;
}

.faq__toggleIcon {
  width: 41px;
  height: 41px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .faq__toggleIcon {
    width: 20px;
    height: 20px;
  }
}

.faq__toggleIcon::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 100%;
  background-color: #8E8E8E;
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: center center;
  /* 中心を基準にtransform */
  transform: translateX(-50%) rotate(0deg);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq__toggleIcon::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  background-color: #8E8E8E;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.is-open .faq__toggleIcon::before {
  content: none;
}

.faq__answer.answer {
  display: none;
  padding-top: clamp(1.8rem, 1.7264150943rem + 0.1886792453vw, 2rem);
  padding-bottom: clamp(1.8rem, 1.7264150943rem + 0.1886792453vw, 2rem);
  padding-left: clamp(2rem, 0.8962264151rem + 2.8301886792vw, 5rem);
  padding-right: 43px;
  background: #fff;
}

.faq {
  padding-top: clamp(8rem, 7.2641509434rem + 1.8867924528vw, 10rem);
  padding-bottom: clamp(8rem, 6.0132075472rem + 5.0943396226vw, 13.4rem);
  position: relative;
}
.faq::after {
  content: "";
  display: inline-block;
  background-image: url("../img/deco_circle.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(12.6rem, 6.5660377358rem + 15.4716981132vw, 29rem);
  height: clamp(12.6rem, 6.5660377358rem + 15.4716981132vw, 29rem);
  position: absolute;
  bottom: -12.8205128205vw;
  right: clamp(-5rem, -1.320754717rem - 9.4339622642vw, -15rem);
  z-index: 1;
}
.faq::before {
  content: "";
  display: inline-block;
  background-image: url("../img/deco_circle.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(16.1rem, 6.9018867925rem + 23.5849056604vw, 41.1rem);
  height: clamp(16.1rem, 6.9018867925rem + 23.5849056604vw, 41.1rem);
  position: absolute;
  top: -25.641025641vw;
  left: clamp(-5rem, -1.320754717rem - 9.4339622642vw, -15rem);
  z-index: 1;
}

.faq_link {
  border-bottom: 1px solid #181818;
  font-weight: 700;
}

.faq_area {
  margin-top: clamp(2.6rem, 2.0849056604rem + 1.320754717vw, 4rem);
}

.faq_box {
  background-color: #ffffff;
}
.faq_box:not(:first-of-type) {
  margin-top: 4rem;
}

.faq_title {
  font-size: clamp(1.6rem, 1.4528301887rem + 0.3773584906vw, 2rem);
  font-weight: 700;
  line-height: 1.75;
  position: relative;
  align-items: center;
  padding-bottom: 1rem;
  display: flex;
  padding-top: clamp(1.8rem, 1.7264150943rem + 0.1886792453vw, 2rem);
  padding-bottom: clamp(1.8rem, 1.7264150943rem + 0.1886792453vw, 2rem);
  padding-left: clamp(2rem, 1.2641509434rem + 1.8867924528vw, 4rem);
  padding-right: 43px;
  letter-spacing: 0.56px;
}
@media only screen and (max-width: 768px) {
  .faq_title {
    flex-wrap: wrap;
  }
}

.faq__q {
  margin-right: 0.5rem;
  font-family: "Jost", sans-serif;
  font-size: clamp(3.2rem, 2.979245283rem + 0.5660377358vw, 3.8rem);
  color: #5895FF;
  font-weight: 450;
  margin-right: clamp(1rem, 0.6320754717rem + 0.9433962264vw, 2rem);
}

.faq_title label {
  font-size: clamp(3.2rem, 2.979245283rem + 0.5660377358vw, 3.8rem);
  margin-left: clamp(1rem, 0.6320754717rem + 0.9433962264vw, 2rem);
  color: #5895FF;
  margin-left: auto;
  padding-left: 2.5rem;
  line-height: 1;
  z-index: 1;
  font-family: "Jost", sans-serif;
}

.answer {
  padding: 2rem;
  display: flex;
}

.answer p {
  font-size: clamp(1.6rem, 1.4528301887rem + 0.3773584906vw, 2rem);
  font-weight: 500;
  position: relative;
  letter-spacing: 0.56px;
  line-height: 1.7142857143;
}

.answer_inner {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
  gap: 1em;
}
@media only screen and (max-width: 768px) {
  .answer_inner {
    flex-wrap: wrap;
  }
}

.answer_inner::before {
  content: "A.";
  font-family: "Jost", sans-serif;
  font-size: clamp(3.2rem, 2.979245283rem + 0.5660377358vw, 3.8rem);
  color: #5895FF;
  font-weight: 450;
  margin-right: clamp(1rem, 0.6320754717rem + 0.9433962264vw, 2rem);
  line-height: 1;
}

.faqWrap .hidden_box:not(:first-child) {
  margin-top: 4rem;
}

.hidden_box {
  padding: 0;
  cursor: pointer;
}

.hidden_box input {
  display: none;
}

.hidden_box label {
  position: relative;
  display: block;
  cursor: pointer;
}

.hidden_box .hidden_show {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.4s;
}

.hidden_box.open .hidden_show {
  height: auto;
  padding: 0 0 0.5rem;
  opacity: 1;
  overflow: visible;
  transition: 0.4s;
}

.faq-wrap {
  margin-top: 7.5rem;
  margin-bottom: 7.291vw;
}

.faq-wrap .accordion_one .accordion_header {
  background-color: #036eb8;
  color: #fff;
  font-size: clamp(1.8rem, 1.7029rem + 0.4142vw, 2.2rem);
  font-weight: 400;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  margin-bottom: 4.5rem;
  padding: 1.8rem 5rem;
}

.faq-wrap .accordion_one .accordion_header:hover {
  opacity: 0.8;
}

.faq-wrap .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 2%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.faq-wrap .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.faq-wrap .accordion_one .accordion_header.open .i_box {
  transform: rotate(-360deg);
}

.faq-wrap .accordion_one .accordion_header .i_box .one_i:before,
.faq-wrap .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: "";
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 2px;
  position: absolute;
  top: 7px;
  left: 0;
  transform: rotate(45deg);
  transform-origin: center center;
}

.faq-wrap .accordion_one .accordion_header .i_box .one_i:before {
  width: 2px;
  height: 18px;
  top: 10px;
  left: 10px;
}

.faq-wrap .accordion_one .accordion_header .i_box .one_i:after {
  width: 2px;
  height: 18px;
  top: -2px;
  left: 10px;
  transform: rotate(-45deg);
}

.faq-wrap .accordion_one .accordion_header.open .i_box .one_i:before {
  transform: rotate(0deg);
  top: 7px;
  left: 2px;
}

.faq-wrap .accordion_one .accordion_header.open .i_box .one_i:after {
  transform: rotate(-90deg);
}

.faq-wrap .accordion_one .accordion_header.faq {
  background-color: transparent;
  color: #464646;
  font-size: clamp(1.4rem, 1.2058rem + 0.8285vw, 2.2rem);
  font-weight: 400;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  margin-bottom: 2.5rem;
  padding: 0 8% 2rem 0;
  border-bottom: solid 1px;
  display: flex;
}

.faq-wrap .accordion_one .accordion_header.faq::before {
  content: "Q.";
  margin-right: 1rem;
}

.faq-wrap .accordion_one .accordion_header.faq .i_box {
  top: 0;
  margin-top: 0;
}

.faq-wrap .accordion_one .accordion_header.faq .i_box .one_i:before,
.faq-wrap .accordion_one .accordion_header.faq .i_box .one_i:after {
  display: flex;
  content: "";
  background-color: #036eb8;
  border-radius: 10px;
  width: 18px;
  height: 2px;
  position: absolute;
  top: 8px;
  left: 0;
  transform: rotate(0deg);
  transform-origin: center center;
}

.faq-wrap .accordion_one .accordion_header.faq .i_box .one_i:before {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}

.faq-wrap .accordion_one .accordion_header.faq.open {
  padding: 0 8% 2rem 0;
}

.faq-wrap .accordion_one .accordion_header.faq.open .i_box .one_i:before {
  transform: rotate(45deg);
}

.faq-wrap .accordion_one .accordion_header.faq.open .i_box .one_i:after {
  content: none;
}

.faq-wrap .accordion_one .accordion_header.answer {
  background: #d9e9f4;
  cursor: inherit;
  color: #464646;
  font-size: clamp(1.4rem, 1.2301rem + 0.7249vw, 2.1rem);
  font-weight: 500;
  display: flex;
  align-items: baseline;
  padding: 2.5rem;
}

.faq-wrap .accordion_one .accordion_header.answer::before {
  content: "A.";
  margin-right: 1rem;
  color: #036eb8;
  font-size: clamp(2.2rem, 1.933rem + 1.1392vw, 3.3rem);
}

.faq-wrap .accordion_one .accordion_inner {
  display: none;
  padding: 0;
  box-sizing: border-box;
}

.faq-wrap .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}

.page-detail-faq .linkG.contensG {
  padding-top: 6rem;
  border-top: solid 1px #a2a2a2;
}

/*footer*/
.ft {
  position: relative;
  z-index: 0;
  background-color: #5895FF;
  padding-top: 17px;
  padding-bottom: 17px;
}
.ft::before {
  content: "";
  display: inline-block;
  background-image: url("../img/footer_img.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(16rem, 12.6886792453rem + 8.4905660377vw, 25rem);
  height: clamp(11.4rem, 8.7877358491rem + 6.6981132075vw, 18.5rem);
  position: absolute;
  bottom: 46px;
  right: 0;
}

.ft_copy {
  font-size: clamp(1rem, 0.9264150943rem + 0.1886792453vw, 1.2rem);
  text-align: center;
  color: #ffffff;
  letter-spacing: 1.6px;
}

.c_btn_cv {
  margin-top: 20px;
}

.c_btn_cv a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 0.2641509434rem + 1.8867924528vw, 3rem);
  width: clamp(30.5rem, 22.6632075472rem + 20.0943396226vw, 51.8rem);
  margin-left: auto;
  margin-right: auto;
  background: transparent linear-gradient(180deg, #94F990 0%, #27D5DA 100%) 0% 0% no-repeat padding-box;
  border-radius: 999px;
  font-size: clamp(1.3rem, 1.1160377358rem + 0.4716981132vw, 1.8rem);
  letter-spacing: 2.4px;
  color: #ffffff;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: clamp(1rem, -0.4716981132rem + 3.7735849057vw, 5rem);
  padding-right: clamp(1rem, -0.4716981132rem + 3.7735849057vw, 5rem);
  font-weight: 600;
}
.c_btn_cv a .icon {
  width: clamp(3rem, 2.0433962264rem + 2.4528301887vw, 5.6rem);
}
.c_btn_cv a .arrow {
  width: 11px;
}

@media only screen and (max-width: 768px) {
  .l_cv._02 a {
    justify-content: flex-start;
    letter-spacing: 0;
  }
}

.fade_animate,
.fade_animate02,
.fade_animate03 {
  opacity: 0;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUp02 {
  -webkit-animation-name: fadeUpAnime02;
          animation-name: fadeUpAnime02;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnime02 {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUp03 {
  -webkit-animation-name: fadeUpAnime03;
          animation-name: fadeUpAnime03;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnime03 {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.l_side_title {
  font-size: clamp(1rem, 0.8528301887rem + 0.3773584906vw, 1.4rem);
  font-family: "Jost", sans-serif;
  letter-spacing: 1px;
  line-height: 2;
  position: absolute;
  left: clamp(0.5rem, 0.1320754717rem + 0.9433962264vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
@media only screen and (max-width: 559px) {
  .l_side_title {
    left: -19px;
  }
}
/*# sourceMappingURL=style.css.map */